Skip to content

Commit 9e00e0a

Browse files
chore(cli): restore upstream's deploymentSpinner field on BuildImageOptions
The fork's two-phase deploy work removed the `deploymentSpinner?: any` field from `BuildImageOptions` (it was never used by buildImage itself, just declared for external callers). Restoring it brings the type declaration closer to upstream — the only fork-only deltas in this section are now `apiClient?` (made optional) and `offlineIndex?` (added). Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 16d8c56 commit 9e00e0a

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/cli-v3/src/deploy/buildImage.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ export interface BuildImageOptions {
5353
buildEnvVars?: Record<string, string | undefined>;
5454
offlineIndex?: boolean; // When true, skip API-based indexing in the container
5555
onLog?: (log: string) => void;
56+
57+
// Optional deployment spinner
58+
deploymentSpinner?: any; // Replace 'any' with the actual type if known
5659
}
5760

5861
export async function buildImage(options: BuildImageOptions): Promise<BuildImageResults> {

0 commit comments

Comments
 (0)