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/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 workers_edge;
1089
- * tests and runtime probes can pass a different profile here. Most callers
1090
- * should leave this unset.
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.213",
425
+ version: "0.1.214",
426
426
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
427
427
  supportPolicy: {
428
- latest: "0.1.213",
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 workers_edge; tests and runtime probes that want a
2850
- // different profile pass `request.profile` explicitly.
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.213",
355
+ version: "0.1.214",
356
356
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
357
357
  supportPolicy: {
358
- latest: "0.1.213",
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 workers_edge; tests and runtime probes that want a
2780
- // different profile pass `request.profile` explicitly.
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.workers_edge;
1836
+ return PLAY_RUNTIME_PROVIDERS.absurd;
1837
1837
  }
1838
1838
  function resolvePlayRuntimeProvider(override) {
1839
1839
  if (override?.trim()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.213",
3
+ "version": "0.1.214",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {