@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.
@@ -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-dev.68";
13
- const BUILD_COMMIT = "f1f44f77869fa950066eca1e644a8576434a9225";
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;