@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.
@@ -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-dev.94";
13
- const BUILD_COMMIT = "14ccbafeb7ce8418b80f9cf18cc629ce055e6151";
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;