deepline 0.1.103 → 0.1.105
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/cli/index.js +577 -16
- package/dist/cli/index.mjs +577 -16
- package/dist/index.d.mts +184 -1
- package/dist/index.d.ts +184 -1
- package/dist/index.js +135 -9
- package/dist/index.mjs +135 -9
- package/dist/repo/sdk/src/client.ts +312 -6
- package/dist/repo/sdk/src/http.ts +12 -1
- package/dist/repo/sdk/src/index.ts +6 -0
- package/dist/repo/sdk/src/release.ts +5 -2
- package/dist/repo/shared_libs/play-runtime/csv-rename.ts +26 -0
- package/dist/repo/shared_libs/play-runtime/providers.ts +2 -2
- package/dist/repo/shared_libs/play-runtime/scheduler-backend.ts +2 -0
- package/package.json +1 -1
|
@@ -133,6 +133,8 @@ export type PlaySchedulerSubmitInput = {
|
|
|
133
133
|
coordinatorUrl?: string | null;
|
|
134
134
|
/** Request-scoped coordinator auth token for non-production preview/dev runs. */
|
|
135
135
|
coordinatorInternalToken?: string | null;
|
|
136
|
+
/** Request-scoped Vercel Deployment Protection bypass for preview runtime callbacks. */
|
|
137
|
+
vercelProtectionBypassToken?: string | null;
|
|
136
138
|
};
|
|
137
139
|
|
|
138
140
|
export type PlaySchedulerProgressEvent =
|