@blaxel/core 0.2.63-dev.68 → 0.2.63-preview.67
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.63-
|
|
13
|
-
const BUILD_COMMIT = "
|
|
12
|
+
const BUILD_VERSION = "0.2.63-preview.67";
|
|
13
|
+
const BUILD_COMMIT = "e5a0fbcd932aa9637e91beca34e36d5046a476ff";
|
|
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;
|
|
@@ -123,16 +123,9 @@ export type ProcessRequest = {
|
|
|
123
123
|
env?: {
|
|
124
124
|
[key: string]: string;
|
|
125
125
|
};
|
|
126
|
-
/**
|
|
127
|
-
* Disable scale-to-zero while process runs. Default timeout is 600s (10 minutes). Set timeout to 0 for infinite.
|
|
128
|
-
*/
|
|
129
|
-
keepAlive?: boolean;
|
|
130
126
|
maxRestarts?: number;
|
|
131
127
|
name?: string;
|
|
132
128
|
restartOnFailure?: boolean;
|
|
133
|
-
/**
|
|
134
|
-
* Timeout in seconds. When keepAlive is true, defaults to 600s (10 minutes). Set to 0 for infinite (no auto-kill).
|
|
135
|
-
*/
|
|
136
129
|
timeout?: number;
|
|
137
130
|
waitForCompletion?: boolean;
|
|
138
131
|
waitForPorts?: Array<number>;
|
|
@@ -142,10 +135,6 @@ export type ProcessResponse = {
|
|
|
142
135
|
command: string;
|
|
143
136
|
completedAt: string;
|
|
144
137
|
exitCode: number;
|
|
145
|
-
/**
|
|
146
|
-
* Whether scale-to-zero is disabled for this process
|
|
147
|
-
*/
|
|
148
|
-
keepAlive?: boolean;
|
|
149
138
|
logs: string;
|
|
150
139
|
maxRestarts?: number;
|
|
151
140
|
name: string;
|