@sandblocks/cli 0.6.4 → 0.6.6
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/cli.js +3 -1
- package/dist/cli.js.map +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -13428,6 +13428,7 @@ async function deployUnlocked(args, dependencies) {
|
|
|
13428
13428
|
apiUrl: context.apiUrl,
|
|
13429
13429
|
apiKey: context.apiKey,
|
|
13430
13430
|
idempotencyKey: `preview:${deploymentId}:build-import`,
|
|
13431
|
+
memoryReservationBytes: 2 * 1024 * 1024 * 1024,
|
|
13431
13432
|
source: dependencies.source,
|
|
13432
13433
|
..."image" in loaded.manifest.workspace && loaded.manifest.workspace.image ? { workspaceImage: loaded.manifest.workspace.image } : {}
|
|
13433
13434
|
});
|
|
@@ -14148,6 +14149,7 @@ async function importSource(input) {
|
|
|
14148
14149
|
"x-sandblocks-workspace-id": input.workspaceId,
|
|
14149
14150
|
...input.sandboxId ? { "x-sandblocks-sandbox-id": input.sandboxId } : {},
|
|
14150
14151
|
"x-sandblocks-worker-pool": input.pool,
|
|
14152
|
+
...input.memoryReservationBytes ? { "x-sandblocks-memory-reservation-bytes": String(input.memoryReservationBytes) } : {},
|
|
14151
14153
|
...input.workspaceImage ? { "x-sandblocks-workspace-image": input.workspaceImage } : {},
|
|
14152
14154
|
"idempotency-key": input.idempotencyKey
|
|
14153
14155
|
},
|
|
@@ -16656,4 +16658,4 @@ export {
|
|
|
16656
16658
|
parse2 as parse
|
|
16657
16659
|
};
|
|
16658
16660
|
|
|
16659
|
-
//# debugId=
|
|
16661
|
+
//# debugId=818C8E6D2946F5CD64756E2164756E21
|