deepline 0.1.184 → 0.1.185

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.
@@ -105,10 +105,10 @@ export const SDK_RELEASE = {
105
105
  // 0.1.154 removes the short-lived generated enrich StepOptions recompute
106
106
  // fields shipped in 0.1.153.
107
107
  // 0.1.175 ships loud `deepline enrich` empty-waterfall reporting.
108
- version: '0.1.184',
108
+ version: '0.1.185',
109
109
  apiContract: '2026-06-dataset-handle-results-hard-cutover',
110
110
  supportPolicy: {
111
- latest: '0.1.184',
111
+ latest: '0.1.185',
112
112
  minimumSupported: '0.1.53',
113
113
  deprecatedBelow: '0.1.53',
114
114
  commandMinimumSupported: [
@@ -22,7 +22,12 @@ export function resolveMapRowOutcomeKey(
22
22
  row: MapRowOutcomeRuntimeRow,
23
23
  ): string | null {
24
24
  const key = row[MAP_ROW_OUTCOME_RUNTIME_FIELDS.rowKey];
25
- return typeof key === 'string' && key.length > 0 ? key : null;
25
+ if (typeof key === 'string' && key.length > 0) return key;
26
+ if (isRecord(row.data)) {
27
+ const dataKey = row.data[MAP_ROW_OUTCOME_RUNTIME_FIELDS.rowKey];
28
+ if (typeof dataKey === 'string' && dataKey.length > 0) return dataKey;
29
+ }
30
+ return null;
26
31
  }
27
32
 
28
33
  export function mapRowOutcomeRuntimeFields(input: {
@@ -6018,8 +6018,15 @@ export async function completeRuntimeMapRows(
6018
6018
  // Dedupe by key. Last write wins on payload, status, and error.
6019
6019
  const uniqueRows = new Map<string, RuntimeApiRowRecord>();
6020
6020
  for (const row of input.rows) {
6021
- if (!row.key) continue;
6022
- uniqueRows.set(row.key, row);
6021
+ if (row.key) {
6022
+ uniqueRows.set(row.key, row);
6023
+ continue;
6024
+ }
6025
+ const resolvedKey = resolveMapRowOutcomeKey(
6026
+ row as unknown as Record<string, unknown>,
6027
+ );
6028
+ if (!resolvedKey) continue;
6029
+ uniqueRows.set(resolvedKey, { ...row, key: resolvedKey });
6023
6030
  }
6024
6031
  if (uniqueRows.size === 0) {
6025
6032
  return { updated: 0, fencedKeys: [] };
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.184",
626
+ version: "0.1.185",
627
627
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
628
628
  supportPolicy: {
629
- latest: "0.1.184",
629
+ latest: "0.1.185",
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.184",
611
+ version: "0.1.185",
612
612
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
613
613
  supportPolicy: {
614
- latest: "0.1.184",
614
+ latest: "0.1.185",
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.184",
425
+ version: "0.1.185",
426
426
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
427
427
  supportPolicy: {
428
- latest: "0.1.184",
428
+ latest: "0.1.185",
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.184",
355
+ version: "0.1.185",
356
356
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
357
357
  supportPolicy: {
358
- latest: "0.1.184",
358
+ latest: "0.1.185",
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.184",
3
+ "version": "0.1.185",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {