deepline 0.1.205 → 0.1.206

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.
@@ -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.205',
109
+ version: '0.1.206',
110
110
  apiContract: '2026-06-dataset-handle-results-hard-cutover',
111
111
  supportPolicy: {
112
- latest: '0.1.205',
112
+ latest: '0.1.206',
113
113
  minimumSupported: '0.1.53',
114
114
  deprecatedBelow: '0.1.53',
115
115
  commandMinimumSupported: [
@@ -108,9 +108,11 @@ type RuntimeApiRequest =
108
108
  action: 'append_run_events';
109
109
  playId: string;
110
110
  events: PlayRunLedgerEvent[];
111
+ idempotencyKey?: string;
111
112
  }
112
113
  | {
113
114
  action: 'start_inline_child_run';
115
+ idempotencyKey?: string;
114
116
  playName: string;
115
117
  runId: string;
116
118
  parentRunId?: string | null;
@@ -912,7 +914,11 @@ async function updateRunStatusViaAppRuntimeUnlocked(
912
914
 
913
915
  export async function appendRunEventsViaAppRuntime(
914
916
  context: WorkerRuntimeApiContext,
915
- input: { playId: string; events: PlayRunLedgerEvent[] },
917
+ input: {
918
+ playId: string;
919
+ events: PlayRunLedgerEvent[];
920
+ idempotencyKey?: string;
921
+ },
916
922
  ): Promise<void> {
917
923
  await postAppRuntimeApi<{ ok: true }>(context, {
918
924
  action: 'append_run_events',
@@ -938,6 +944,7 @@ export async function startRunViaAppRuntime(
938
944
  maxCreditsPerRun?: number | null;
939
945
  staticPipeline?: unknown;
940
946
  source?: 'published' | 'ad_hoc' | 'draft';
947
+ idempotencyKey?: string;
941
948
  },
942
949
  ): Promise<void> {
943
950
  await postAppRuntimeApi<{ ok: true }>(context, {
@@ -34,7 +34,10 @@ export const RUNTIME_SCHEDULER_SCHEMA_OVERRIDE_HEADER =
34
34
  * `/api/v2/plays/run`. The run route pins the child to this release lane over
35
35
  * the resolver's schema-derived default, so a child always finishes on the
36
36
  * release that launched its parent. Honored ONLY for internal `internalRunPlay`
37
- * child launches (executor-token authed, lineage-validated). Absent =>
37
+ * child launches (executor-token authed, lineage-validated), plus internally
38
+ * authenticated root `profile=absurd` launches used by deploy canaries to pin
39
+ * an exact candidate release before activation. Public API keys cannot use
40
+ * this override. Absent =>
38
41
  * inherit-when-absent back-compat: the resolver default applies unchanged.
39
42
  */
40
43
  export const ABSURD_RELEASE_OVERRIDE_HEADER = 'x-deepline-absurd-release';
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.205",
626
+ version: "0.1.206",
627
627
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
628
628
  supportPolicy: {
629
- latest: "0.1.205",
629
+ latest: "0.1.206",
630
630
  minimumSupported: "0.1.53",
631
631
  deprecatedBelow: "0.1.53",
632
632
  commandMinimumSupported: [
@@ -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.205",
611
+ version: "0.1.206",
612
612
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
613
613
  supportPolicy: {
614
- latest: "0.1.205",
614
+ latest: "0.1.206",
615
615
  minimumSupported: "0.1.53",
616
616
  deprecatedBelow: "0.1.53",
617
617
  commandMinimumSupported: [
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.205",
425
+ version: "0.1.206",
426
426
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
427
427
  supportPolicy: {
428
- latest: "0.1.205",
428
+ latest: "0.1.206",
429
429
  minimumSupported: "0.1.53",
430
430
  deprecatedBelow: "0.1.53",
431
431
  commandMinimumSupported: [
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.205",
355
+ version: "0.1.206",
356
356
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
357
357
  supportPolicy: {
358
- latest: "0.1.205",
358
+ latest: "0.1.206",
359
359
  minimumSupported: "0.1.53",
360
360
  deprecatedBelow: "0.1.53",
361
361
  commandMinimumSupported: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.205",
3
+ "version": "0.1.206",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {