builder.io 1.6.76 → 1.6.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -64,13 +64,18 @@ export declare class CodeGenSession {
64
64
  error: string;
65
65
  details?: undefined;
66
66
  } | {
67
- success: boolean;
68
- error: string;
69
- details: string;
70
- } | {
67
+ output: string;
68
+ upToDate: boolean;
69
+ createdBranch: boolean;
70
+ setUpToStream: boolean;
71
+ status: GenerateCompletionStepGit | null;
71
72
  success: boolean;
72
73
  error?: undefined;
73
74
  details?: undefined;
75
+ } | {
76
+ success: boolean;
77
+ error: string;
78
+ details: string;
74
79
  }>;
75
80
  createPR(...args: [
76
81
  {
@@ -80,6 +85,11 @@ export declare class CodeGenSession {
80
85
  projectId: string;
81
86
  }
82
87
  ] | [string, string, string, string]): Promise<{
88
+ output: string;
89
+ upToDate: boolean;
90
+ createdBranch: boolean;
91
+ setUpToStream: boolean;
92
+ status: GenerateCompletionStepGit | null;
83
93
  success: boolean;
84
94
  prUrl: any;
85
95
  prNumber: any;
@@ -89,12 +99,16 @@ export declare class CodeGenSession {
89
99
  success: boolean;
90
100
  error: string;
91
101
  details: unknown;
92
- prUrl?: undefined;
93
- prNumber?: undefined;
94
102
  }>;
95
103
  getCommitMode(): CommitMode | undefined;
96
104
  setCommitMode(commitMode: CommitMode): void;
97
- pushChanges(pullFirst?: boolean): Promise<void>;
105
+ pushChanges(pullFirst?: boolean): Promise<{
106
+ output: string;
107
+ upToDate: boolean;
108
+ createdBranch: boolean;
109
+ setUpToStream: boolean;
110
+ status: GenerateCompletionStepGit | null;
111
+ }>;
98
112
  hasChangesRelativeToRemote(): Promise<boolean>;
99
113
  pullLatestFromRemote(): Promise<void>;
100
114
  /**