builder.io 1.6.65 → 1.6.66

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.
@@ -78,7 +78,14 @@ export declare class CodeGenSession {
78
78
  error?: undefined;
79
79
  details?: undefined;
80
80
  }>;
81
- createPR(repoFullName: string, githubToken: string, branchName: string, projectId: string): Promise<{
81
+ createPR(...args: [
82
+ {
83
+ repoFullName: string;
84
+ githubToken: string;
85
+ branchName: string;
86
+ projectId: string;
87
+ }
88
+ ] | [string, string, string, string]): Promise<{
82
89
  success: boolean;
83
90
  prUrl: any;
84
91
  prNumber: any;
@@ -121,7 +128,6 @@ export declare class CodeGenSession {
121
128
  } | null>;
122
129
  setDebug(debug: boolean): void;
123
130
  getAllFiles(): Promise<string[]>;
124
- isNextPage(): boolean;
125
131
  getSessionId(): string;
126
132
  getSpaceId(): string | undefined;
127
133
  /**