@blaxel/core 0.2.68-dev.94 → 0.2.68-preview.95
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/cjs/.tsbuildinfo +1 -1
- package/dist/cjs/common/settings.js +2 -2
- package/dist/cjs/types/sandbox/client/types.gen.d.ts +0 -11
- package/dist/cjs-browser/.tsbuildinfo +1 -1
- package/dist/cjs-browser/common/settings.js +2 -2
- package/dist/cjs-browser/types/sandbox/client/types.gen.d.ts +0 -11
- package/dist/esm/.tsbuildinfo +1 -1
- package/dist/esm/common/settings.js +2 -2
- package/dist/esm-browser/.tsbuildinfo +1 -1
- package/dist/esm-browser/common/settings.js +2 -2
- package/package.json +1 -1
|
@@ -9,8 +9,8 @@ const index_js_1 = require("../authentication/index.js");
|
|
|
9
9
|
const env_js_1 = require("../common/env.js");
|
|
10
10
|
const node_js_1 = require("../common/node.js");
|
|
11
11
|
// Build info - these placeholders are replaced at build time by build:replace-imports
|
|
12
|
-
const BUILD_VERSION = "0.2.68-
|
|
13
|
-
const BUILD_COMMIT = "
|
|
12
|
+
const BUILD_VERSION = "0.2.68-preview.95";
|
|
13
|
+
const BUILD_COMMIT = "1bc1370c2fda1eb2eb637bb4acf18d1a242dbdea";
|
|
14
14
|
const BUILD_SENTRY_DSN = "https://fd5e60e1c9820e1eef5ccebb84a07127@o4508714045276160.ingest.us.sentry.io/4510465864564736";
|
|
15
15
|
// Cache for config.yaml tracking value
|
|
16
16
|
let configTrackingValue = null;
|
|
@@ -137,16 +137,9 @@ export type ProcessRequest = {
|
|
|
137
137
|
env?: {
|
|
138
138
|
[key: string]: string;
|
|
139
139
|
};
|
|
140
|
-
/**
|
|
141
|
-
* Disable scale-to-zero while process runs. Default timeout is 600s (10 minutes). Set timeout to 0 for infinite.
|
|
142
|
-
*/
|
|
143
|
-
keepAlive?: boolean;
|
|
144
140
|
maxRestarts?: number;
|
|
145
141
|
name?: string;
|
|
146
142
|
restartOnFailure?: boolean;
|
|
147
|
-
/**
|
|
148
|
-
* Timeout in seconds. When keepAlive is true, defaults to 600s (10 minutes). Set to 0 for infinite (no auto-kill).
|
|
149
|
-
*/
|
|
150
143
|
timeout?: number;
|
|
151
144
|
waitForCompletion?: boolean;
|
|
152
145
|
waitForPorts?: Array<number>;
|
|
@@ -156,10 +149,6 @@ export type ProcessResponse = {
|
|
|
156
149
|
command: string;
|
|
157
150
|
completedAt: string;
|
|
158
151
|
exitCode: number;
|
|
159
|
-
/**
|
|
160
|
-
* Whether scale-to-zero is disabled for this process
|
|
161
|
-
*/
|
|
162
|
-
keepAlive?: boolean;
|
|
163
152
|
logs: string;
|
|
164
153
|
maxRestarts?: number;
|
|
165
154
|
name: string;
|