@dreamboard-games/cli 0.1.30-alpha.23 → 0.1.30-alpha.25
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/dist/agent-verifier/agent-workspace-verifier.mjs +2 -2
- package/dist/agent-verifier/{chunk-UKK5VDZP.mjs → chunk-GG7WCI3I.mjs} +3 -3
- package/dist/agent-verifier/{chunk-UKK5VDZP.mjs.map → chunk-GG7WCI3I.mjs.map} +1 -1
- package/dist/agent-verifier/{materialize-workspace-7M6XBWE6.mjs → materialize-workspace-ESOV6ZY7.mjs} +2 -2
- package/dist/agent-verifier/{static-scaffold-DHZMJMCZ.mjs → static-scaffold-3FOPDXB7.mjs} +2 -2
- package/dist/authoring-compatibility-internal.js +1 -1
- package/dist/{chunk-VCE5JDUI.js → chunk-3TMWDJQR.js} +13 -2
- package/dist/chunk-3TMWDJQR.js.map +1 -0
- package/dist/{chunk-KJJCUOF5.js → chunk-ZFVLYMKV.js} +9 -3
- package/dist/{chunk-KJJCUOF5.js.map → chunk-ZFVLYMKV.js.map} +1 -1
- package/dist/index.js +164 -7
- package/dist/index.js.map +1 -1
- package/dist/internal.js +2 -2
- package/package.json +1 -1
- package/release/authoring-release-set.json +2 -2
- package/dist/chunk-VCE5JDUI.js.map +0 -1
- /package/dist/agent-verifier/{materialize-workspace-7M6XBWE6.mjs.map → materialize-workspace-ESOV6ZY7.mjs.map} +0 -0
- /package/dist/agent-verifier/{static-scaffold-DHZMJMCZ.mjs.map → static-scaffold-3FOPDXB7.mjs.map} +0 -0
|
@@ -822,6 +822,11 @@ var ensureProjectRepository = (options) => (options.client ?? client).put({
|
|
|
822
822
|
url: "/api/projects/{projectId}/repository",
|
|
823
823
|
...options
|
|
824
824
|
});
|
|
825
|
+
var retryProjectRepositoryReconciliation = (options) => (options.client ?? client).post({
|
|
826
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
827
|
+
url: "/api/projects/{projectId}/repository/reconcile",
|
|
828
|
+
...options
|
|
829
|
+
});
|
|
825
830
|
var ensureProjectBuild = (options) => (options.client ?? client).post({
|
|
826
831
|
security: [{ scheme: "bearer", type: "http" }],
|
|
827
832
|
url: "/api/projects/{projectId}/builds",
|
|
@@ -19197,7 +19202,7 @@ var AUTHORING_RELEASE_SET = {
|
|
|
19197
19202
|
"packages": {
|
|
19198
19203
|
"cli": {
|
|
19199
19204
|
"name": "@dreamboard-games/cli",
|
|
19200
|
-
"version": "0.1.30-alpha.
|
|
19205
|
+
"version": "0.1.30-alpha.25"
|
|
19201
19206
|
},
|
|
19202
19207
|
"sdk": {
|
|
19203
19208
|
"name": "@dreamboard-games/sdk",
|
|
@@ -19227,7 +19232,7 @@ var AUTHORING_RELEASE_SET = {
|
|
|
19227
19232
|
"portable": true
|
|
19228
19233
|
},
|
|
19229
19234
|
"packageManager": "pnpm@10.4.1",
|
|
19230
|
-
"releaseSetId": "sha256:
|
|
19235
|
+
"releaseSetId": "sha256:bcc85113593f6e35c9c9ba185dcf211b81a683b39519e7b9c832bb7a4453a9ee"
|
|
19231
19236
|
};
|
|
19232
19237
|
|
|
19233
19238
|
// src/templates/testing-types-content.ts
|
|
@@ -20553,6 +20558,7 @@ export {
|
|
|
20553
20558
|
ensureProject,
|
|
20554
20559
|
getProjectRepository,
|
|
20555
20560
|
ensureProjectRepository,
|
|
20561
|
+
retryProjectRepositoryReconciliation,
|
|
20556
20562
|
ensureProjectBuild,
|
|
20557
20563
|
getProjectCommitStatus,
|
|
20558
20564
|
createProjectPreview,
|
|
@@ -20604,4 +20610,4 @@ export {
|
|
|
20604
20610
|
findProjectRoot,
|
|
20605
20611
|
materializeWorkspaceProject
|
|
20606
20612
|
};
|
|
20607
|
-
//# sourceMappingURL=chunk-
|
|
20613
|
+
//# sourceMappingURL=chunk-ZFVLYMKV.js.map
|