deepline 0.1.207 → 0.1.208

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.
@@ -28,6 +28,7 @@ import type { LiveEventEnvelope } from './types.js';
28
28
  import { baseUrlSlug, sdkCliStateDirPath } from './config.js';
29
29
  import { detectAgentRuntime, isCoworkLikeSandbox } from './agent-runtime.js';
30
30
  import {
31
+ ABSURD_RELEASE_OVERRIDE_HEADER,
31
32
  COORDINATOR_INTERNAL_TOKEN_HEADER,
32
33
  COORDINATOR_URL_OVERRIDE_HEADER,
33
34
  RUNTIME_SCHEDULER_SCHEMA_OVERRIDE_HEADER,
@@ -245,6 +246,10 @@ export class HttpClient {
245
246
  typeof process !== 'undefined'
246
247
  ? process.env?.DEEPLINE_INTERNAL_TOKEN
247
248
  : undefined;
249
+ const absurdReleaseOverride =
250
+ typeof process !== 'undefined'
251
+ ? process.env?.DEEPLINE_ABSURD_RELEASE
252
+ : undefined;
248
253
  if (coordinatorUrl?.trim()) {
249
254
  headers[COORDINATOR_URL_OVERRIDE_HEADER] = coordinatorUrl.trim();
250
255
  }
@@ -282,11 +287,15 @@ export class HttpClient {
282
287
  if (runtimeTestFault?.trim()) {
283
288
  headers[PLAY_RUNTIME_TEST_FAULT_HEADER] = runtimeTestFault.trim();
284
289
  }
290
+ if (absurdReleaseOverride?.trim() && coordinatorInternalToken?.trim()) {
291
+ headers[ABSURD_RELEASE_OVERRIDE_HEADER] = absurdReleaseOverride.trim();
292
+ }
285
293
  if (
286
294
  coordinatorInternalToken?.trim() &&
287
295
  (coordinatorUrl?.trim() ||
288
296
  workerCallbackUrl?.trim() ||
289
- runtimeTestFault?.trim())
297
+ runtimeTestFault?.trim() ||
298
+ absurdReleaseOverride?.trim())
290
299
  ) {
291
300
  headers[COORDINATOR_INTERNAL_TOKEN_HEADER] =
292
301
  coordinatorInternalToken.trim();
@@ -106,10 +106,10 @@ export const SDK_RELEASE = {
106
106
  // 0.1.154 removes the short-lived generated enrich StepOptions recompute
107
107
  // fields shipped in 0.1.153.
108
108
  // 0.1.175 ships loud `deepline enrich` empty-waterfall reporting.
109
- version: '0.1.207',
109
+ version: '0.1.208',
110
110
  apiContract: '2026-06-dataset-handle-results-hard-cutover',
111
111
  supportPolicy: {
112
- latest: '0.1.207',
112
+ latest: '0.1.208',
113
113
  minimumSupported: '0.1.53',
114
114
  deprecatedBelow: '0.1.53',
115
115
  commandMinimumSupported: [
package/dist/cli/index.js CHANGED
@@ -623,10 +623,10 @@ var SDK_RELEASE = {
623
623
  // 0.1.154 removes the short-lived generated enrich StepOptions recompute
624
624
  // fields shipped in 0.1.153.
625
625
  // 0.1.175 ships loud `deepline enrich` empty-waterfall reporting.
626
- version: "0.1.207",
626
+ version: "0.1.208",
627
627
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
628
628
  supportPolicy: {
629
- latest: "0.1.207",
629
+ latest: "0.1.208",
630
630
  minimumSupported: "0.1.53",
631
631
  deprecatedBelow: "0.1.53",
632
632
  commandMinimumSupported: [
@@ -782,6 +782,7 @@ var COORDINATOR_INTERNAL_TOKEN_HEADER = "x-deepline-internal-token";
782
782
  var COORDINATOR_URL_OVERRIDE_HEADER = "x-deepline-coordinator-url";
783
783
  var WORKER_CALLBACK_URL_OVERRIDE_HEADER = "x-deepline-worker-callback-url";
784
784
  var RUNTIME_SCHEDULER_SCHEMA_OVERRIDE_HEADER = "x-deepline-runtime-scheduler-schema";
785
+ var ABSURD_RELEASE_OVERRIDE_HEADER = "x-deepline-absurd-release";
785
786
  var SYNTHETIC_RUN_HEADER = "x-deepline-synthetic-run";
786
787
 
787
788
  // ../shared_libs/play-runtime/test-runtime-seams.ts
@@ -903,6 +904,7 @@ var HttpClient = class {
903
904
  }
904
905
  const coordinatorUrl = typeof process !== "undefined" ? process.env?.DEEPLINE_COORDINATOR_URL : void 0;
905
906
  const coordinatorInternalToken = typeof process !== "undefined" ? process.env?.DEEPLINE_INTERNAL_TOKEN : void 0;
907
+ const absurdReleaseOverride = typeof process !== "undefined" ? process.env?.DEEPLINE_ABSURD_RELEASE : void 0;
906
908
  if (coordinatorUrl?.trim()) {
907
909
  headers[COORDINATOR_URL_OVERRIDE_HEADER] = coordinatorUrl.trim();
908
910
  }
@@ -922,7 +924,10 @@ var HttpClient = class {
922
924
  if (runtimeTestFault?.trim()) {
923
925
  headers[PLAY_RUNTIME_TEST_FAULT_HEADER] = runtimeTestFault.trim();
924
926
  }
925
- if (coordinatorInternalToken?.trim() && (coordinatorUrl?.trim() || workerCallbackUrl?.trim() || runtimeTestFault?.trim())) {
927
+ if (absurdReleaseOverride?.trim() && coordinatorInternalToken?.trim()) {
928
+ headers[ABSURD_RELEASE_OVERRIDE_HEADER] = absurdReleaseOverride.trim();
929
+ }
930
+ if (coordinatorInternalToken?.trim() && (coordinatorUrl?.trim() || workerCallbackUrl?.trim() || runtimeTestFault?.trim() || absurdReleaseOverride?.trim())) {
926
931
  headers[COORDINATOR_INTERNAL_TOKEN_HEADER] = coordinatorInternalToken.trim();
927
932
  }
928
933
  return headers;
@@ -608,10 +608,10 @@ var SDK_RELEASE = {
608
608
  // 0.1.154 removes the short-lived generated enrich StepOptions recompute
609
609
  // fields shipped in 0.1.153.
610
610
  // 0.1.175 ships loud `deepline enrich` empty-waterfall reporting.
611
- version: "0.1.207",
611
+ version: "0.1.208",
612
612
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
613
613
  supportPolicy: {
614
- latest: "0.1.207",
614
+ latest: "0.1.208",
615
615
  minimumSupported: "0.1.53",
616
616
  deprecatedBelow: "0.1.53",
617
617
  commandMinimumSupported: [
@@ -767,6 +767,7 @@ var COORDINATOR_INTERNAL_TOKEN_HEADER = "x-deepline-internal-token";
767
767
  var COORDINATOR_URL_OVERRIDE_HEADER = "x-deepline-coordinator-url";
768
768
  var WORKER_CALLBACK_URL_OVERRIDE_HEADER = "x-deepline-worker-callback-url";
769
769
  var RUNTIME_SCHEDULER_SCHEMA_OVERRIDE_HEADER = "x-deepline-runtime-scheduler-schema";
770
+ var ABSURD_RELEASE_OVERRIDE_HEADER = "x-deepline-absurd-release";
770
771
  var SYNTHETIC_RUN_HEADER = "x-deepline-synthetic-run";
771
772
 
772
773
  // ../shared_libs/play-runtime/test-runtime-seams.ts
@@ -888,6 +889,7 @@ var HttpClient = class {
888
889
  }
889
890
  const coordinatorUrl = typeof process !== "undefined" ? process.env?.DEEPLINE_COORDINATOR_URL : void 0;
890
891
  const coordinatorInternalToken = typeof process !== "undefined" ? process.env?.DEEPLINE_INTERNAL_TOKEN : void 0;
892
+ const absurdReleaseOverride = typeof process !== "undefined" ? process.env?.DEEPLINE_ABSURD_RELEASE : void 0;
891
893
  if (coordinatorUrl?.trim()) {
892
894
  headers[COORDINATOR_URL_OVERRIDE_HEADER] = coordinatorUrl.trim();
893
895
  }
@@ -907,7 +909,10 @@ var HttpClient = class {
907
909
  if (runtimeTestFault?.trim()) {
908
910
  headers[PLAY_RUNTIME_TEST_FAULT_HEADER] = runtimeTestFault.trim();
909
911
  }
910
- if (coordinatorInternalToken?.trim() && (coordinatorUrl?.trim() || workerCallbackUrl?.trim() || runtimeTestFault?.trim())) {
912
+ if (absurdReleaseOverride?.trim() && coordinatorInternalToken?.trim()) {
913
+ headers[ABSURD_RELEASE_OVERRIDE_HEADER] = absurdReleaseOverride.trim();
914
+ }
915
+ if (coordinatorInternalToken?.trim() && (coordinatorUrl?.trim() || workerCallbackUrl?.trim() || runtimeTestFault?.trim() || absurdReleaseOverride?.trim())) {
911
916
  headers[COORDINATOR_INTERNAL_TOKEN_HEADER] = coordinatorInternalToken.trim();
912
917
  }
913
918
  return headers;
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.207",
425
+ version: "0.1.208",
426
426
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
427
427
  supportPolicy: {
428
- latest: "0.1.207",
428
+ latest: "0.1.208",
429
429
  minimumSupported: "0.1.53",
430
430
  deprecatedBelow: "0.1.53",
431
431
  commandMinimumSupported: [
@@ -581,6 +581,7 @@ var COORDINATOR_INTERNAL_TOKEN_HEADER = "x-deepline-internal-token";
581
581
  var COORDINATOR_URL_OVERRIDE_HEADER = "x-deepline-coordinator-url";
582
582
  var WORKER_CALLBACK_URL_OVERRIDE_HEADER = "x-deepline-worker-callback-url";
583
583
  var RUNTIME_SCHEDULER_SCHEMA_OVERRIDE_HEADER = "x-deepline-runtime-scheduler-schema";
584
+ var ABSURD_RELEASE_OVERRIDE_HEADER = "x-deepline-absurd-release";
584
585
  var SYNTHETIC_RUN_HEADER = "x-deepline-synthetic-run";
585
586
 
586
587
  // ../shared_libs/play-runtime/test-runtime-seams.ts
@@ -702,6 +703,7 @@ var HttpClient = class {
702
703
  }
703
704
  const coordinatorUrl = typeof process !== "undefined" ? process.env?.DEEPLINE_COORDINATOR_URL : void 0;
704
705
  const coordinatorInternalToken = typeof process !== "undefined" ? process.env?.DEEPLINE_INTERNAL_TOKEN : void 0;
706
+ const absurdReleaseOverride = typeof process !== "undefined" ? process.env?.DEEPLINE_ABSURD_RELEASE : void 0;
705
707
  if (coordinatorUrl?.trim()) {
706
708
  headers[COORDINATOR_URL_OVERRIDE_HEADER] = coordinatorUrl.trim();
707
709
  }
@@ -721,7 +723,10 @@ var HttpClient = class {
721
723
  if (runtimeTestFault?.trim()) {
722
724
  headers[PLAY_RUNTIME_TEST_FAULT_HEADER] = runtimeTestFault.trim();
723
725
  }
724
- if (coordinatorInternalToken?.trim() && (coordinatorUrl?.trim() || workerCallbackUrl?.trim() || runtimeTestFault?.trim())) {
726
+ if (absurdReleaseOverride?.trim() && coordinatorInternalToken?.trim()) {
727
+ headers[ABSURD_RELEASE_OVERRIDE_HEADER] = absurdReleaseOverride.trim();
728
+ }
729
+ if (coordinatorInternalToken?.trim() && (coordinatorUrl?.trim() || workerCallbackUrl?.trim() || runtimeTestFault?.trim() || absurdReleaseOverride?.trim())) {
725
730
  headers[COORDINATOR_INTERNAL_TOKEN_HEADER] = coordinatorInternalToken.trim();
726
731
  }
727
732
  return headers;
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.207",
355
+ version: "0.1.208",
356
356
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
357
357
  supportPolicy: {
358
- latest: "0.1.207",
358
+ latest: "0.1.208",
359
359
  minimumSupported: "0.1.53",
360
360
  deprecatedBelow: "0.1.53",
361
361
  commandMinimumSupported: [
@@ -511,6 +511,7 @@ var COORDINATOR_INTERNAL_TOKEN_HEADER = "x-deepline-internal-token";
511
511
  var COORDINATOR_URL_OVERRIDE_HEADER = "x-deepline-coordinator-url";
512
512
  var WORKER_CALLBACK_URL_OVERRIDE_HEADER = "x-deepline-worker-callback-url";
513
513
  var RUNTIME_SCHEDULER_SCHEMA_OVERRIDE_HEADER = "x-deepline-runtime-scheduler-schema";
514
+ var ABSURD_RELEASE_OVERRIDE_HEADER = "x-deepline-absurd-release";
514
515
  var SYNTHETIC_RUN_HEADER = "x-deepline-synthetic-run";
515
516
 
516
517
  // ../shared_libs/play-runtime/test-runtime-seams.ts
@@ -632,6 +633,7 @@ var HttpClient = class {
632
633
  }
633
634
  const coordinatorUrl = typeof process !== "undefined" ? process.env?.DEEPLINE_COORDINATOR_URL : void 0;
634
635
  const coordinatorInternalToken = typeof process !== "undefined" ? process.env?.DEEPLINE_INTERNAL_TOKEN : void 0;
636
+ const absurdReleaseOverride = typeof process !== "undefined" ? process.env?.DEEPLINE_ABSURD_RELEASE : void 0;
635
637
  if (coordinatorUrl?.trim()) {
636
638
  headers[COORDINATOR_URL_OVERRIDE_HEADER] = coordinatorUrl.trim();
637
639
  }
@@ -651,7 +653,10 @@ var HttpClient = class {
651
653
  if (runtimeTestFault?.trim()) {
652
654
  headers[PLAY_RUNTIME_TEST_FAULT_HEADER] = runtimeTestFault.trim();
653
655
  }
654
- if (coordinatorInternalToken?.trim() && (coordinatorUrl?.trim() || workerCallbackUrl?.trim() || runtimeTestFault?.trim())) {
656
+ if (absurdReleaseOverride?.trim() && coordinatorInternalToken?.trim()) {
657
+ headers[ABSURD_RELEASE_OVERRIDE_HEADER] = absurdReleaseOverride.trim();
658
+ }
659
+ if (coordinatorInternalToken?.trim() && (coordinatorUrl?.trim() || workerCallbackUrl?.trim() || runtimeTestFault?.trim() || absurdReleaseOverride?.trim())) {
655
660
  headers[COORDINATOR_INTERNAL_TOKEN_HEADER] = coordinatorInternalToken.trim();
656
661
  }
657
662
  return headers;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.207",
3
+ "version": "0.1.208",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {