builder.io 1.6.143 → 1.6.145
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.
- package/cli/index.cjs +211 -211
- package/cli/index.cjs.map +4 -4
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +100 -100
- package/server/index.mjs +85 -85
- package/types/cli/codegen.d.ts +7 -1
- package/types/cli/launch/helpers.d.ts +2 -1
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -55,7 +55,13 @@ export declare class CodeGenSession {
|
|
|
55
55
|
getRepoUrl(): string | undefined;
|
|
56
56
|
setPrUrl(prUrl: string): void;
|
|
57
57
|
prExists(): boolean;
|
|
58
|
-
pushRepo(
|
|
58
|
+
pushRepo(...args: [
|
|
59
|
+
{
|
|
60
|
+
repoFullName: string;
|
|
61
|
+
githubToken: string;
|
|
62
|
+
githubBaseUrl?: string;
|
|
63
|
+
}
|
|
64
|
+
] | [string, string, string?]): Promise<{
|
|
59
65
|
success: boolean;
|
|
60
66
|
error: string;
|
|
61
67
|
details?: undefined;
|
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
* @param githubToken - The GitHub token to use for the remote URL
|
|
5
5
|
* @returns The GitHub remote URL
|
|
6
6
|
*/
|
|
7
|
-
export declare const getGitHubRemoteUrl: ({ repoFullName, githubToken, }: {
|
|
7
|
+
export declare const getGitHubRemoteUrl: ({ repoFullName, githubToken, githubHost, }: {
|
|
8
8
|
repoFullName: string;
|
|
9
9
|
githubToken: string | undefined;
|
|
10
|
+
githubHost: string;
|
|
10
11
|
}) => string;
|
|
11
12
|
export declare const getActiveBranchCommand: () => string;
|
|
12
13
|
export declare const getActiveBranch: (cwd?: string) => string;
|