deepline 0.1.217 → 0.1.219

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.
@@ -1568,6 +1568,11 @@ export class DeeplineClient {
1568
1568
  ...(integrationMode ? { integrationMode } : {}),
1569
1569
  ...(testPolicyOverrides ? { testPolicyOverrides } : {}),
1570
1570
  },
1571
+ undefined,
1572
+ // A start can reach the server even when its response is lost or times
1573
+ // out. Retrying this mutation without an idempotency key can create a
1574
+ // second root run, so callers must resolve ambiguous failures explicitly.
1575
+ { maxRetries: 0, exactUrlOnly: true },
1571
1576
  );
1572
1577
  return normalizePlayRunStart(response);
1573
1578
  }
@@ -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.217',
109
+ version: '0.1.219',
110
110
  apiContract: '2026-06-dataset-handle-results-hard-cutover',
111
111
  supportPolicy: {
112
- latest: '0.1.217',
112
+ latest: '0.1.219',
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.217",
626
+ version: "0.1.219",
627
627
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
628
628
  supportPolicy: {
629
- latest: "0.1.217",
629
+ latest: "0.1.219",
630
630
  minimumSupported: "0.1.53",
631
631
  deprecatedBelow: "0.1.53",
632
632
  commandMinimumSupported: [
@@ -3053,7 +3053,12 @@ var DeeplineClient = class {
3053
3053
  ...request.profile ? { profile: request.profile } : {},
3054
3054
  ...integrationMode ? { integrationMode } : {},
3055
3055
  ...testPolicyOverrides ? { testPolicyOverrides } : {}
3056
- }
3056
+ },
3057
+ void 0,
3058
+ // A start can reach the server even when its response is lost or times
3059
+ // out. Retrying this mutation without an idempotency key can create a
3060
+ // second root run, so callers must resolve ambiguous failures explicitly.
3061
+ { maxRetries: 0, exactUrlOnly: true }
3057
3062
  );
3058
3063
  return normalizePlayRunStart(response);
3059
3064
  }
@@ -19217,7 +19222,14 @@ async function emitSdkEnrichTelemetry(context, event, summary) {
19217
19222
  method: "POST",
19218
19223
  headers: {
19219
19224
  Authorization: `Bearer ${context.apiKey}`,
19220
- "Content-Type": "application/json"
19225
+ "Content-Type": "application/json",
19226
+ "User-Agent": `deepline-ts-sdk/${SDK_VERSION}`,
19227
+ "X-Deepline-Client-Family": "sdk",
19228
+ "X-Deepline-CLI-Family": "sdk",
19229
+ "X-Deepline-Agent-Runtime": detectAgentRuntime(),
19230
+ "X-Deepline-CLI-Version": SDK_VERSION,
19231
+ "X-Deepline-SDK-Version": SDK_VERSION,
19232
+ "X-Deepline-API-Contract": SDK_API_CONTRACT
19221
19233
  },
19222
19234
  body: JSON.stringify(body),
19223
19235
  signal: controller.signal
@@ -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.217",
611
+ version: "0.1.219",
612
612
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
613
613
  supportPolicy: {
614
- latest: "0.1.217",
614
+ latest: "0.1.219",
615
615
  minimumSupported: "0.1.53",
616
616
  deprecatedBelow: "0.1.53",
617
617
  commandMinimumSupported: [
@@ -3038,7 +3038,12 @@ var DeeplineClient = class {
3038
3038
  ...request.profile ? { profile: request.profile } : {},
3039
3039
  ...integrationMode ? { integrationMode } : {},
3040
3040
  ...testPolicyOverrides ? { testPolicyOverrides } : {}
3041
- }
3041
+ },
3042
+ void 0,
3043
+ // A start can reach the server even when its response is lost or times
3044
+ // out. Retrying this mutation without an idempotency key can create a
3045
+ // second root run, so callers must resolve ambiguous failures explicitly.
3046
+ { maxRetries: 0, exactUrlOnly: true }
3042
3047
  );
3043
3048
  return normalizePlayRunStart(response);
3044
3049
  }
@@ -19246,7 +19251,14 @@ async function emitSdkEnrichTelemetry(context, event, summary) {
19246
19251
  method: "POST",
19247
19252
  headers: {
19248
19253
  Authorization: `Bearer ${context.apiKey}`,
19249
- "Content-Type": "application/json"
19254
+ "Content-Type": "application/json",
19255
+ "User-Agent": `deepline-ts-sdk/${SDK_VERSION}`,
19256
+ "X-Deepline-Client-Family": "sdk",
19257
+ "X-Deepline-CLI-Family": "sdk",
19258
+ "X-Deepline-Agent-Runtime": detectAgentRuntime(),
19259
+ "X-Deepline-CLI-Version": SDK_VERSION,
19260
+ "X-Deepline-SDK-Version": SDK_VERSION,
19261
+ "X-Deepline-API-Contract": SDK_API_CONTRACT
19250
19262
  },
19251
19263
  body: JSON.stringify(body),
19252
19264
  signal: controller.signal
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.217",
425
+ version: "0.1.219",
426
426
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
427
427
  supportPolicy: {
428
- latest: "0.1.217",
428
+ latest: "0.1.219",
429
429
  minimumSupported: "0.1.53",
430
430
  deprecatedBelow: "0.1.53",
431
431
  commandMinimumSupported: [
@@ -2852,7 +2852,12 @@ var DeeplineClient = class {
2852
2852
  ...request.profile ? { profile: request.profile } : {},
2853
2853
  ...integrationMode ? { integrationMode } : {},
2854
2854
  ...testPolicyOverrides ? { testPolicyOverrides } : {}
2855
- }
2855
+ },
2856
+ void 0,
2857
+ // A start can reach the server even when its response is lost or times
2858
+ // out. Retrying this mutation without an idempotency key can create a
2859
+ // second root run, so callers must resolve ambiguous failures explicitly.
2860
+ { maxRetries: 0, exactUrlOnly: true }
2856
2861
  );
2857
2862
  return normalizePlayRunStart(response);
2858
2863
  }
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.217",
355
+ version: "0.1.219",
356
356
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
357
357
  supportPolicy: {
358
- latest: "0.1.217",
358
+ latest: "0.1.219",
359
359
  minimumSupported: "0.1.53",
360
360
  deprecatedBelow: "0.1.53",
361
361
  commandMinimumSupported: [
@@ -2782,7 +2782,12 @@ var DeeplineClient = class {
2782
2782
  ...request.profile ? { profile: request.profile } : {},
2783
2783
  ...integrationMode ? { integrationMode } : {},
2784
2784
  ...testPolicyOverrides ? { testPolicyOverrides } : {}
2785
- }
2785
+ },
2786
+ void 0,
2787
+ // A start can reach the server even when its response is lost or times
2788
+ // out. Retrying this mutation without an idempotency key can create a
2789
+ // second root run, so callers must resolve ambiguous failures explicitly.
2790
+ { maxRetries: 0, exactUrlOnly: true }
2786
2791
  );
2787
2792
  return normalizePlayRunStart(response);
2788
2793
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.217",
3
+ "version": "0.1.219",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {