deepline 0.1.254 → 0.1.256

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.
@@ -57,6 +57,12 @@ export type SdkSupportPolicy = {
57
57
  minimumSupported: string;
58
58
  reason: string;
59
59
  }>;
60
+ /**
61
+ * Published package versions that must keep working for direct SDK tool
62
+ * callers. CI installs each package from npm and exercises `tools.get` and
63
+ * `tools.execute` without involving the CLI or Play runtime.
64
+ */
65
+ directToolsCompatibilityVersions?: readonly string[];
60
66
  /**
61
67
  * Diagnostic freshness threshold reported by `/api/v2/sdk/compat`.
62
68
  * Stale-but-supported CLIs warn, but self-update is reserved for unsupported
@@ -117,7 +123,7 @@ export const SDK_RELEASE = {
117
123
  // Deepline-native radars. Older clients must update before discovering,
118
124
  // checking, or deploying an unlaunched monitor integration.
119
125
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
120
- version: '0.1.254',
126
+ version: '0.1.256',
121
127
  apiContract: '2026-07-native-monitor-launch-hard-cutover',
122
128
  supportPolicy: {
123
129
  minimumSupported: '0.1.53',
@@ -125,9 +131,12 @@ export const SDK_RELEASE = {
125
131
  commandMinimumSupported: [
126
132
  {
127
133
  command: 'enrich',
128
- minimumSupported: '0.1.253',
134
+ // Compatibility window through 2026-08-22 (owner: Chirag): versions
135
+ // 0.1.238-0.1.252 differ only in local browser-opening behavior and
136
+ // already contain the enrich data-correctness fixes below.
137
+ minimumSupported: '0.1.238',
129
138
  reason:
130
- 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH; SDK CLI enrich before 0.1.253 opens the generated play page by default and accepts the removed --no-open flag.',
139
+ 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH.',
131
140
  },
132
141
  {
133
142
  command: 'plays',
@@ -220,6 +229,7 @@ export const SDK_RELEASE = {
220
229
  'Run result row datasets now use the dataset-handle export contract.',
221
230
  },
222
231
  ],
232
+ directToolsCompatibilityVersions: ['0.1.171'],
223
233
  autoUpdatePatchLag: 2,
224
234
  },
225
235
  } as const satisfies SdkRelease;
@@ -1,4 +1,4 @@
1
- import ts from 'typescript';
1
+ import * as ts from 'typescript';
2
2
 
3
3
  type SourceMetadata = {
4
4
  name: string | null;
@@ -37,7 +37,8 @@ function buildContext(sourceFile: ts.SourceFile): SourceContext {
37
37
  for (const statement of sourceFile.statements) {
38
38
  if (ts.isVariableStatement(statement)) {
39
39
  const exported = statement.modifiers?.some(
40
- (modifier) => modifier.kind === ts.SyntaxKind.ExportKeyword,
40
+ (modifier: ts.ModifierLike) =>
41
+ modifier.kind === ts.SyntaxKind.ExportKeyword,
41
42
  );
42
43
  const immutable = Boolean(
43
44
  statement.declarationList.flags & ts.NodeFlags.Const,
@@ -138,7 +138,6 @@ export interface PlayStaticColumnProducer {
138
138
  field: string;
139
139
  toolId?: string;
140
140
  playId?: string;
141
- dependsOnFields?: string[];
142
141
  conditional?: boolean;
143
142
  sourceRange?: PlayStaticSourceRange;
144
143
  steps?: PlayStaticColumnProducer[];
@@ -396,16 +395,10 @@ function truncateStaticSubstepsForStorage(
396
395
  ...column,
397
396
  producers: column.producers.map((producer) => ({
398
397
  ...omitUndefinedProperties({ ...producer }),
399
- dependsOnFields: producer.dependsOnFields
400
- ? [...producer.dependsOnFields]
401
- : undefined,
402
398
  sourceRange: cloneStorageSafeSourceRange(producer.sourceRange),
403
399
  steps: producer.steps
404
400
  ? producer.steps.map((stepProducer) => ({
405
401
  ...omitUndefinedProperties({ ...stepProducer }),
406
- dependsOnFields: stepProducer.dependsOnFields
407
- ? [...stepProducer.dependsOnFields]
408
- : undefined,
409
402
  sourceRange: cloneStorageSafeSourceRange(
410
403
  stepProducer.sourceRange,
411
404
  ),
@@ -564,7 +557,6 @@ export interface PlayStaticSourceRange {
564
557
  type PlayStaticSubstepMetadata = {
565
558
  conditional?: boolean;
566
559
  disabled?: boolean;
567
- dependsOnFields?: string[];
568
560
  };
569
561
 
570
562
  /**
@@ -958,9 +950,6 @@ function columnProducerFromSubstep(
958
950
  field,
959
951
  ...(substep.type === 'tool' ? { toolId: substep.toolId } : {}),
960
952
  ...(substep.type === 'play_call' ? { playId: substep.playId } : {}),
961
- ...(substep.dependsOnFields?.length
962
- ? { dependsOnFields: [...substep.dependsOnFields] }
963
- : {}),
964
953
  ...(substep.conditional ? { conditional: true } : {}),
965
954
  ...(substep.disabled ? { disabled: true } : {}),
966
955
  ...(substep.sourceRange ? { sourceRange: substep.sourceRange } : {}),
package/dist/cli/index.js CHANGED
@@ -636,7 +636,7 @@ var SDK_RELEASE = {
636
636
  // Deepline-native radars. Older clients must update before discovering,
637
637
  // checking, or deploying an unlaunched monitor integration.
638
638
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
639
- version: "0.1.254",
639
+ version: "0.1.256",
640
640
  apiContract: "2026-07-native-monitor-launch-hard-cutover",
641
641
  supportPolicy: {
642
642
  minimumSupported: "0.1.53",
@@ -644,8 +644,11 @@ var SDK_RELEASE = {
644
644
  commandMinimumSupported: [
645
645
  {
646
646
  command: "enrich",
647
- minimumSupported: "0.1.253",
648
- reason: 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH; SDK CLI enrich before 0.1.253 opens the generated play page by default and accepts the removed --no-open flag.'
647
+ // Compatibility window through 2026-08-22 (owner: Chirag): versions
648
+ // 0.1.238-0.1.252 differ only in local browser-opening behavior and
649
+ // already contain the enrich data-correctness fixes below.
650
+ minimumSupported: "0.1.238",
651
+ reason: 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH.'
649
652
  },
650
653
  {
651
654
  command: "plays",
@@ -724,6 +727,7 @@ var SDK_RELEASE = {
724
727
  reason: "Run result row datasets now use the dataset-handle export contract."
725
728
  }
726
729
  ],
730
+ directToolsCompatibilityVersions: ["0.1.171"],
727
731
  autoUpdatePatchLag: 2
728
732
  }
729
733
  };
@@ -18697,10 +18701,11 @@ function compileEnrichConfigToPlaySource(config, options = {}) {
18697
18701
  `}, { description: ${stringLiteral("Read a CSV file, run the configured Deepline enrich commands, and return enriched rows.")} });`
18698
18702
  ];
18699
18703
  const helpers = idiomaticGetters ? selectUsedHelpers(helperSource(), body.join("\n")) : helperSource();
18704
+ const typeImports = idiomaticGetters ? inlineTypeImports : [.../* @__PURE__ */ new Set([...inlineTypeImports, "DeeplinePlayRuntimeContext"])].sort();
18700
18705
  return [
18701
18706
  ...inlineRunJavascript && configHasRunJavascript(config) ? ["// @ts-nocheck", "/* eslint-disable */", ""] : [],
18702
18707
  `import { definePlay, steps } from 'deepline';`,
18703
- ...inlineTypeImports.length > 0 ? [`import type { ${inlineTypeImports.join(", ")} } from 'deepline';`] : [],
18708
+ ...typeImports.length > 0 ? [`import type { ${typeImports.join(", ")} } from 'deepline';`] : [],
18704
18709
  ``,
18705
18710
  `type EnrichInput = { file: string; rowStart?: number | null; rowEnd?: number | null };`,
18706
18711
  ``,
@@ -19450,7 +19455,7 @@ function helperSource() {
19450
19455
  ` return result;`,
19451
19456
  `}`,
19452
19457
  ``,
19453
- `async function __dlRunCommand(input: { alias: string; callId: string; tool: string; payload: Record<string, unknown>; extract: ((args: __DlExtractorHelpers) => unknown) | null; runIf: ((row: Record<string, unknown>) => unknown) | null; row: Record<string, unknown>; stepCtx: { tools: { execute: (request: Record<string, unknown>) => Promise<unknown> } }; description?: string; force?: boolean; legacyEnvelope?: boolean }): Promise<unknown> {`,
19458
+ `async function __dlRunCommand(input: { alias: string; callId: string; tool: string; payload: Record<string, unknown>; extract: ((args: __DlExtractorHelpers) => unknown) | null; runIf: ((row: Record<string, unknown>) => unknown) | null; row: Record<string, unknown>; stepCtx: Pick<DeeplinePlayRuntimeContext, 'tools'>; description?: string; force?: boolean; legacyEnvelope?: boolean }): Promise<unknown> {`,
19454
19459
  ` if (input.runIf) {`,
19455
19460
  ` const shouldRun = input.runIf(input.row);`,
19456
19461
  ` if (!shouldRun) return null;`,
@@ -621,7 +621,7 @@ var SDK_RELEASE = {
621
621
  // Deepline-native radars. Older clients must update before discovering,
622
622
  // checking, or deploying an unlaunched monitor integration.
623
623
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
624
- version: "0.1.254",
624
+ version: "0.1.256",
625
625
  apiContract: "2026-07-native-monitor-launch-hard-cutover",
626
626
  supportPolicy: {
627
627
  minimumSupported: "0.1.53",
@@ -629,8 +629,11 @@ var SDK_RELEASE = {
629
629
  commandMinimumSupported: [
630
630
  {
631
631
  command: "enrich",
632
- minimumSupported: "0.1.253",
633
- reason: 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH; SDK CLI enrich before 0.1.253 opens the generated play page by default and accepts the removed --no-open flag.'
632
+ // Compatibility window through 2026-08-22 (owner: Chirag): versions
633
+ // 0.1.238-0.1.252 differ only in local browser-opening behavior and
634
+ // already contain the enrich data-correctness fixes below.
635
+ minimumSupported: "0.1.238",
636
+ reason: 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH.'
634
637
  },
635
638
  {
636
639
  command: "plays",
@@ -709,6 +712,7 @@ var SDK_RELEASE = {
709
712
  reason: "Run result row datasets now use the dataset-handle export contract."
710
713
  }
711
714
  ],
715
+ directToolsCompatibilityVersions: ["0.1.171"],
712
716
  autoUpdatePatchLag: 2
713
717
  }
714
718
  };
@@ -18726,10 +18730,11 @@ function compileEnrichConfigToPlaySource(config, options = {}) {
18726
18730
  `}, { description: ${stringLiteral("Read a CSV file, run the configured Deepline enrich commands, and return enriched rows.")} });`
18727
18731
  ];
18728
18732
  const helpers = idiomaticGetters ? selectUsedHelpers(helperSource(), body.join("\n")) : helperSource();
18733
+ const typeImports = idiomaticGetters ? inlineTypeImports : [.../* @__PURE__ */ new Set([...inlineTypeImports, "DeeplinePlayRuntimeContext"])].sort();
18729
18734
  return [
18730
18735
  ...inlineRunJavascript && configHasRunJavascript(config) ? ["// @ts-nocheck", "/* eslint-disable */", ""] : [],
18731
18736
  `import { definePlay, steps } from 'deepline';`,
18732
- ...inlineTypeImports.length > 0 ? [`import type { ${inlineTypeImports.join(", ")} } from 'deepline';`] : [],
18737
+ ...typeImports.length > 0 ? [`import type { ${typeImports.join(", ")} } from 'deepline';`] : [],
18733
18738
  ``,
18734
18739
  `type EnrichInput = { file: string; rowStart?: number | null; rowEnd?: number | null };`,
18735
18740
  ``,
@@ -19479,7 +19484,7 @@ function helperSource() {
19479
19484
  ` return result;`,
19480
19485
  `}`,
19481
19486
  ``,
19482
- `async function __dlRunCommand(input: { alias: string; callId: string; tool: string; payload: Record<string, unknown>; extract: ((args: __DlExtractorHelpers) => unknown) | null; runIf: ((row: Record<string, unknown>) => unknown) | null; row: Record<string, unknown>; stepCtx: { tools: { execute: (request: Record<string, unknown>) => Promise<unknown> } }; description?: string; force?: boolean; legacyEnvelope?: boolean }): Promise<unknown> {`,
19487
+ `async function __dlRunCommand(input: { alias: string; callId: string; tool: string; payload: Record<string, unknown>; extract: ((args: __DlExtractorHelpers) => unknown) | null; runIf: ((row: Record<string, unknown>) => unknown) | null; row: Record<string, unknown>; stepCtx: Pick<DeeplinePlayRuntimeContext, 'tools'>; description?: string; force?: boolean; legacyEnvelope?: boolean }): Promise<unknown> {`,
19483
19488
  ` if (input.runIf) {`,
19484
19489
  ` const shouldRun = input.runIf(input.row);`,
19485
19490
  ` if (!shouldRun) return null;`,
@@ -71,7 +71,6 @@ interface PlayStaticColumnProducer {
71
71
  field: string;
72
72
  toolId?: string;
73
73
  playId?: string;
74
- dependsOnFields?: string[];
75
74
  conditional?: boolean;
76
75
  sourceRange?: PlayStaticSourceRange;
77
76
  steps?: PlayStaticColumnProducer[];
@@ -93,7 +92,6 @@ interface PlayStaticSourceRange {
93
92
  type PlayStaticSubstepMetadata = {
94
93
  conditional?: boolean;
95
94
  disabled?: boolean;
96
- dependsOnFields?: string[];
97
95
  };
98
96
  /**
99
97
  * One arm of a conditional `control_flow` substep — an `if`/`else if`/`else`
@@ -71,7 +71,6 @@ interface PlayStaticColumnProducer {
71
71
  field: string;
72
72
  toolId?: string;
73
73
  playId?: string;
74
- dependsOnFields?: string[];
75
74
  conditional?: boolean;
76
75
  sourceRange?: PlayStaticSourceRange;
77
76
  steps?: PlayStaticColumnProducer[];
@@ -93,7 +92,6 @@ interface PlayStaticSourceRange {
93
92
  type PlayStaticSubstepMetadata = {
94
93
  conditional?: boolean;
95
94
  disabled?: boolean;
96
- dependsOnFields?: string[];
97
95
  };
98
96
  /**
99
97
  * One arm of a conditional `control_flow` substep — an `if`/`else if`/`else`
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { a as PlayCompilerManifest } from './compiler-manifest-DlE7dnRm.mjs';
1
+ import { a as PlayCompilerManifest } from './compiler-manifest-BjopNIqx.mjs';
2
2
 
3
3
  type PlayRuntimeSelection = {
4
4
  environment: 'preview';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { a as PlayCompilerManifest } from './compiler-manifest-DlE7dnRm.js';
1
+ import { a as PlayCompilerManifest } from './compiler-manifest-BjopNIqx.js';
2
2
 
3
3
  type PlayRuntimeSelection = {
4
4
  environment: 'preview';
package/dist/index.js CHANGED
@@ -435,7 +435,7 @@ var SDK_RELEASE = {
435
435
  // Deepline-native radars. Older clients must update before discovering,
436
436
  // checking, or deploying an unlaunched monitor integration.
437
437
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
438
- version: "0.1.254",
438
+ version: "0.1.256",
439
439
  apiContract: "2026-07-native-monitor-launch-hard-cutover",
440
440
  supportPolicy: {
441
441
  minimumSupported: "0.1.53",
@@ -443,8 +443,11 @@ var SDK_RELEASE = {
443
443
  commandMinimumSupported: [
444
444
  {
445
445
  command: "enrich",
446
- minimumSupported: "0.1.253",
447
- reason: 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH; SDK CLI enrich before 0.1.253 opens the generated play page by default and accepts the removed --no-open flag.'
446
+ // Compatibility window through 2026-08-22 (owner: Chirag): versions
447
+ // 0.1.238-0.1.252 differ only in local browser-opening behavior and
448
+ // already contain the enrich data-correctness fixes below.
449
+ minimumSupported: "0.1.238",
450
+ reason: 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH.'
448
451
  },
449
452
  {
450
453
  command: "plays",
@@ -523,6 +526,7 @@ var SDK_RELEASE = {
523
526
  reason: "Run result row datasets now use the dataset-handle export contract."
524
527
  }
525
528
  ],
529
+ directToolsCompatibilityVersions: ["0.1.171"],
526
530
  autoUpdatePatchLag: 2
527
531
  }
528
532
  };
package/dist/index.mjs CHANGED
@@ -365,7 +365,7 @@ var SDK_RELEASE = {
365
365
  // Deepline-native radars. Older clients must update before discovering,
366
366
  // checking, or deploying an unlaunched monitor integration.
367
367
  // 0.1.253 makes play-page browser opening opt-in and retires --no-open.
368
- version: "0.1.254",
368
+ version: "0.1.256",
369
369
  apiContract: "2026-07-native-monitor-launch-hard-cutover",
370
370
  supportPolicy: {
371
371
  minimumSupported: "0.1.53",
@@ -373,8 +373,11 @@ var SDK_RELEASE = {
373
373
  commandMinimumSupported: [
374
374
  {
375
375
  command: "enrich",
376
- minimumSupported: "0.1.253",
377
- reason: 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH; SDK CLI enrich before 0.1.253 opens the generated play page by default and accepts the removed --no-open flag.'
376
+ // Compatibility window through 2026-08-22 (owner: Chirag): versions
377
+ // 0.1.238-0.1.252 differ only in local browser-opening behavior and
378
+ // already contain the enrich data-correctness fixes below.
379
+ minimumSupported: "0.1.238",
380
+ reason: 'Older SDK CLI enrich generated stale play source; SDK CLI enrich 0.1.153 generated removed StepOptions fields in play source; SDK CLI enrich before 0.1.175 could silently succeed on the empty-waterfall bug when a requested waterfall returned no values for selected rows; SDK CLI enrich before 0.1.230 could convert extractor failures into successful unmatched results; SDK CLI enrich before 0.1.238 could drop a nested provider email match during generic pick("email") extraction and materialize it as NO_MATCH.'
378
381
  },
379
382
  {
380
383
  command: "plays",
@@ -453,6 +456,7 @@ var SDK_RELEASE = {
453
456
  reason: "Run result row datasets now use the dataset-handle export contract."
454
457
  }
455
458
  ],
459
+ directToolsCompatibilityVersions: ["0.1.171"],
456
460
  autoUpdatePatchLag: 2
457
461
  }
458
462
  };
@@ -1,5 +1,5 @@
1
- import { P as PlayArtifactKind$1, a as PlayCompilerManifest } from '../compiler-manifest-DlE7dnRm.mjs';
2
- export { b as PLAY_ARTIFACT_KINDS } from '../compiler-manifest-DlE7dnRm.mjs';
1
+ import { P as PlayArtifactKind$1, a as PlayCompilerManifest } from '../compiler-manifest-BjopNIqx.mjs';
2
+ export { b as PLAY_ARTIFACT_KINDS } from '../compiler-manifest-BjopNIqx.mjs';
3
3
 
4
4
  type PlayPackageImport = {
5
5
  name: string;
@@ -1,5 +1,5 @@
1
- import { P as PlayArtifactKind$1, a as PlayCompilerManifest } from '../compiler-manifest-DlE7dnRm.js';
2
- export { b as PLAY_ARTIFACT_KINDS } from '../compiler-manifest-DlE7dnRm.js';
1
+ import { P as PlayArtifactKind$1, a as PlayCompilerManifest } from '../compiler-manifest-BjopNIqx.js';
2
+ export { b as PLAY_ARTIFACT_KINDS } from '../compiler-manifest-BjopNIqx.js';
3
3
 
4
4
  type PlayPackageImport = {
5
5
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.254",
3
+ "version": "0.1.256",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -59,7 +59,7 @@
59
59
  "devDependencies": {
60
60
  "@types/node": "^20.0.0",
61
61
  "tsup": "^8.0.0",
62
- "typescript": "^5.9.3"
62
+ "typescript": "^6.0.2"
63
63
  },
64
64
  "deepline": {
65
65
  "apiContract": "2026-07-native-monitor-launch-hard-cutover"