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.
@@ -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
  },