deepline 0.1.213 → 0.1.214
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/bundling-sources/sdk/src/client.ts +2 -2
- package/dist/bundling-sources/sdk/src/release.ts +2 -2
- package/dist/bundling-sources/sdk/src/types.ts +3 -3
- package/dist/bundling-sources/shared_libs/play-runtime/context.ts +67 -22
- package/dist/bundling-sources/shared_libs/play-runtime/providers.ts +1 -1
- package/dist/bundling-sources/shared_libs/play-runtime/scheduler-backend.ts +2 -2
- package/dist/cli/index.js +50 -436
- package/dist/cli/index.mjs +50 -436
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/dist/plays/bundle-play-file.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1085,9 +1085,9 @@ interface StartPlayRunRequest {
|
|
|
1085
1085
|
/** Optionally let the start request wait briefly and return a terminal result. */
|
|
1086
1086
|
waitForCompletionMs?: number;
|
|
1087
1087
|
/**
|
|
1088
|
-
* Per-run execution profile override. The server defaults to
|
|
1089
|
-
*
|
|
1090
|
-
*
|
|
1088
|
+
* Per-run execution profile override. The server defaults to absurd;
|
|
1089
|
+
* callers that need workers_edge can pass it here. Most callers should leave
|
|
1090
|
+
* this unset.
|
|
1091
1091
|
*/
|
|
1092
1092
|
profile?: string;
|
|
1093
1093
|
/** Optional per-run provider execution mode for eval/smoke runs. */
|
package/dist/index.js
CHANGED
|
@@ -422,10 +422,10 @@ var SDK_RELEASE = {
|
|
|
422
422
|
// 0.1.154 removes the short-lived generated enrich StepOptions recompute
|
|
423
423
|
// fields shipped in 0.1.153.
|
|
424
424
|
// 0.1.175 ships loud `deepline enrich` empty-waterfall reporting.
|
|
425
|
-
version: "0.1.
|
|
425
|
+
version: "0.1.214",
|
|
426
426
|
apiContract: "2026-06-dataset-handle-results-hard-cutover",
|
|
427
427
|
supportPolicy: {
|
|
428
|
-
latest: "0.1.
|
|
428
|
+
latest: "0.1.214",
|
|
429
429
|
minimumSupported: "0.1.53",
|
|
430
430
|
deprecatedBelow: "0.1.53",
|
|
431
431
|
commandMinimumSupported: [
|
|
@@ -2846,8 +2846,8 @@ var DeeplineClient = class {
|
|
|
2846
2846
|
...forceToolRefresh ? { forceToolRefresh: true } : {},
|
|
2847
2847
|
...typeof request.waitForCompletionMs === "number" ? { waitForCompletionMs: request.waitForCompletionMs } : {},
|
|
2848
2848
|
// Profile selection is the API's job, not the CLI's. The server
|
|
2849
|
-
// defaults to
|
|
2850
|
-
//
|
|
2849
|
+
// defaults to absurd; callers that need workers_edge pass
|
|
2850
|
+
// `request.profile` explicitly.
|
|
2851
2851
|
...request.profile ? { profile: request.profile } : {},
|
|
2852
2852
|
...integrationMode ? { integrationMode } : {},
|
|
2853
2853
|
...testPolicyOverrides ? { testPolicyOverrides } : {}
|
package/dist/index.mjs
CHANGED
|
@@ -352,10 +352,10 @@ var SDK_RELEASE = {
|
|
|
352
352
|
// 0.1.154 removes the short-lived generated enrich StepOptions recompute
|
|
353
353
|
// fields shipped in 0.1.153.
|
|
354
354
|
// 0.1.175 ships loud `deepline enrich` empty-waterfall reporting.
|
|
355
|
-
version: "0.1.
|
|
355
|
+
version: "0.1.214",
|
|
356
356
|
apiContract: "2026-06-dataset-handle-results-hard-cutover",
|
|
357
357
|
supportPolicy: {
|
|
358
|
-
latest: "0.1.
|
|
358
|
+
latest: "0.1.214",
|
|
359
359
|
minimumSupported: "0.1.53",
|
|
360
360
|
deprecatedBelow: "0.1.53",
|
|
361
361
|
commandMinimumSupported: [
|
|
@@ -2776,8 +2776,8 @@ var DeeplineClient = class {
|
|
|
2776
2776
|
...forceToolRefresh ? { forceToolRefresh: true } : {},
|
|
2777
2777
|
...typeof request.waitForCompletionMs === "number" ? { waitForCompletionMs: request.waitForCompletionMs } : {},
|
|
2778
2778
|
// Profile selection is the API's job, not the CLI's. The server
|
|
2779
|
-
// defaults to
|
|
2780
|
-
//
|
|
2779
|
+
// defaults to absurd; callers that need workers_edge pass
|
|
2780
|
+
// `request.profile` explicitly.
|
|
2781
2781
|
...request.profile ? { profile: request.profile } : {},
|
|
2782
2782
|
...integrationMode ? { integrationMode } : {},
|
|
2783
2783
|
...testPolicyOverrides ? { testPolicyOverrides } : {}
|
|
@@ -1833,7 +1833,7 @@ var PLAY_RUNTIME_PROVIDERS = {
|
|
|
1833
1833
|
}
|
|
1834
1834
|
};
|
|
1835
1835
|
function defaultPlayRuntimeProvider() {
|
|
1836
|
-
return PLAY_RUNTIME_PROVIDERS.
|
|
1836
|
+
return PLAY_RUNTIME_PROVIDERS.absurd;
|
|
1837
1837
|
}
|
|
1838
1838
|
function resolvePlayRuntimeProvider(override) {
|
|
1839
1839
|
if (override?.trim()) {
|