@builder.io/dev-tools 1.28.7-dev.202602240904.9bde2c916 → 1.28.7-dev.202602240934.9bde2c916
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 +19 -14
- package/cli/index.cjs.map +2 -2
- 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 +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/backup.d.ts +2 -1
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/backup.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ type InitialCommitHashResult = {
|
|
|
57
57
|
* For partial backups, we fetch the latest state of the chosen upstream branch from origin
|
|
58
58
|
* to ensure the backup has the correct commit range reference.
|
|
59
59
|
*/
|
|
60
|
-
export declare function getInitialCommitHash({ sys, repoPath, featureBranch, debug, workspace, isConnectedToProvider, forcedFullBackup, credentials, projectId, }: {
|
|
60
|
+
export declare function getInitialCommitHash({ sys, repoPath, featureBranch, debug, workspace, isConnectedToProvider, forcedFullBackup, credentials, projectId, folderName, }: {
|
|
61
61
|
sys: DevToolsSys;
|
|
62
62
|
repoPath: string;
|
|
63
63
|
featureBranch: string;
|
|
@@ -67,6 +67,7 @@ export declare function getInitialCommitHash({ sys, repoPath, featureBranch, deb
|
|
|
67
67
|
forcedFullBackup: boolean;
|
|
68
68
|
credentials: Credentials;
|
|
69
69
|
projectId: string;
|
|
70
|
+
folderName?: string;
|
|
70
71
|
}): Promise<InitialCommitHashResult>;
|
|
71
72
|
/**
|
|
72
73
|
* Requests a signed upload URL for git backup
|