deepline 0.1.138 → 0.1.140
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/README.md +2 -2
- package/dist/bundling-sources/apps/play-runner-workers/src/coordinator-entry.ts +58 -18
- package/dist/bundling-sources/apps/play-runner-workers/src/workflow-retry.ts +15 -1
- package/dist/bundling-sources/sdk/src/config.ts +13 -310
- package/dist/bundling-sources/sdk/src/release.ts +2 -2
- package/dist/bundling-sources/shared_libs/play-runtime/coordinator-headers.ts +17 -0
- package/dist/bundling-sources/shared_libs/play-runtime/run-failure.ts +1 -1
- package/dist/bundling-sources/shared_libs/play-runtime/run-ledger.ts +27 -2
- package/dist/bundling-sources/shared_libs/play-runtime/scheduler-backend.ts +3 -0
- package/dist/cli/index.js +92 -576
- package/dist/cli/index.mjs +108 -600
- package/dist/index.js +14 -148
- package/dist/index.mjs +15 -157
- package/package.json +1 -1
|
@@ -141,6 +141,8 @@ export type PlaySchedulerSubmitInput = {
|
|
|
141
141
|
coordinatorUrl?: string | null;
|
|
142
142
|
/** Request-scoped coordinator auth token for non-production preview/dev runs. */
|
|
143
143
|
coordinatorInternalToken?: string | null;
|
|
144
|
+
/** Runtime deploy generation/version that owns this run, when known. */
|
|
145
|
+
runtimeDeployVersion?: string | null;
|
|
144
146
|
/** Request-scoped Vercel Deployment Protection bypass for preview runtime callbacks. */
|
|
145
147
|
vercelProtectionBypassToken?: string | null;
|
|
146
148
|
/** Millisecond epoch timestamp captured immediately before scheduler submit. */
|
|
@@ -213,6 +215,7 @@ export interface PlaySchedulerBackend {
|
|
|
213
215
|
options?: {
|
|
214
216
|
coordinatorUrl?: string | null;
|
|
215
217
|
coordinatorInternalToken?: string | null;
|
|
218
|
+
runtimeDeployVersion?: string | null;
|
|
216
219
|
initialState?: Record<string, unknown> | null;
|
|
217
220
|
orgId?: string | null;
|
|
218
221
|
},
|