deepline 0.1.237 → 0.1.238

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,20 +106,22 @@ 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
+ // 0.1.230 propagates enrich extractor failures as failed rows rather than
110
+ // silently materializing them as unmatched results.
109
111
  // 0.1.220 deprecates SDK CLI versions below 0.1.219 and updates them
110
112
  // automatically without blocking their current command.
111
- version: '0.1.237',
113
+ version: '0.1.238',
112
114
  apiContract: '2026-06-dataset-handle-results-hard-cutover',
113
115
  supportPolicy: {
114
- latest: '0.1.237',
116
+ latest: '0.1.238',
115
117
  minimumSupported: '0.1.53',
116
118
  deprecatedBelow: '0.1.219',
117
119
  commandMinimumSupported: [
118
120
  {
119
121
  command: 'enrich',
120
- minimumSupported: '0.1.175',
122
+ minimumSupported: '0.1.238',
121
123
  reason:
122
- '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.',
124
+ '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.',
123
125
  },
124
126
  {
125
127
  command: 'plays',
package/dist/cli/index.js CHANGED
@@ -623,19 +623,21 @@ 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
+ // 0.1.230 propagates enrich extractor failures as failed rows rather than
627
+ // silently materializing them as unmatched results.
626
628
  // 0.1.220 deprecates SDK CLI versions below 0.1.219 and updates them
627
629
  // automatically without blocking their current command.
628
- version: "0.1.237",
630
+ version: "0.1.238",
629
631
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
630
632
  supportPolicy: {
631
- latest: "0.1.237",
633
+ latest: "0.1.238",
632
634
  minimumSupported: "0.1.53",
633
635
  deprecatedBelow: "0.1.219",
634
636
  commandMinimumSupported: [
635
637
  {
636
638
  command: "enrich",
637
- minimumSupported: "0.1.175",
638
- 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."
639
+ minimumSupported: "0.1.238",
640
+ 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.'
639
641
  },
640
642
  {
641
643
  command: "plays",
@@ -18749,7 +18751,7 @@ function helperSource() {
18749
18751
  ``,
18750
18752
  `function __dlKeyPaths(key: string): string[] {`,
18751
18753
  ` const normalized = String(key || '').trim();`,
18752
- ` if (normalized === 'email') return ['email', 'email_address', 'person.email', 'contact.email', 'data.email', 'result.data.email'];`,
18754
+ ` if (normalized === 'email') return ['email', 'email_address', 'person.email.email', 'data.person.email.email', 'result.person.email.email', 'result.data.person.email.email', 'person.email', 'contact.email', 'data.email', 'result.data.email'];`,
18753
18755
  ` if (normalized === 'personal_email') return ['personal_email', 'email', 'email_address', 'data.personal_email', 'data.email'];`,
18754
18756
  ` if (normalized === 'phone') return ['phone', 'phone_number', 'mobile_phone', 'mobile_phone_number', 'data.phone'];`,
18755
18757
  ` if (normalized === 'linkedin') return ['linkedin', 'linkedin_url', 'linkedin_profile', 'profile_url', 'person.linkedin', 'person.linkedin_url'];`,
@@ -18918,15 +18920,15 @@ function helperSource() {
18918
18920
  ` const raw = __dlRawToolOutput(result);`,
18919
18921
  ` if (!extractor) return raw;`,
18920
18922
  ` const pick = (paths: string[] | string) => {`,
18921
- ` const candidates = Array.isArray(paths) ? paths : [paths];`,
18922
- ` for (const path of candidates) {`,
18923
- ` if (typeof path === 'string') {`,
18923
+ ` const requestedPaths = Array.isArray(paths) ? paths : [paths];`,
18924
+ ` for (const requestedPath of requestedPaths) {`,
18925
+ ` for (const path of __dlKeyPaths(String(requestedPath))) {`,
18924
18926
  ` const extractedValue = __dlExtractedValue(result, path);`,
18925
18927
  ` if (__dlMeaningful(extractedValue)) return extractedValue;`,
18926
- ` }`,
18927
- ` for (const candidate of __dlRawToolCandidates(raw)) {`,
18928
- ` const value = __dlGetByPath(candidate, String(path));`,
18929
- ` if (__dlMeaningful(value)) return value;`,
18928
+ ` for (const candidate of __dlRawToolCandidates(raw)) {`,
18929
+ ` const value = __dlGetByPath(candidate, path);`,
18930
+ ` if (__dlMeaningful(value)) return value;`,
18931
+ ` }`,
18930
18932
  ` }`,
18931
18933
  ` }`,
18932
18934
  ` return null;`,
@@ -608,19 +608,21 @@ 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
+ // 0.1.230 propagates enrich extractor failures as failed rows rather than
612
+ // silently materializing them as unmatched results.
611
613
  // 0.1.220 deprecates SDK CLI versions below 0.1.219 and updates them
612
614
  // automatically without blocking their current command.
613
- version: "0.1.237",
615
+ version: "0.1.238",
614
616
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
615
617
  supportPolicy: {
616
- latest: "0.1.237",
618
+ latest: "0.1.238",
617
619
  minimumSupported: "0.1.53",
618
620
  deprecatedBelow: "0.1.219",
619
621
  commandMinimumSupported: [
620
622
  {
621
623
  command: "enrich",
622
- minimumSupported: "0.1.175",
623
- 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."
624
+ minimumSupported: "0.1.238",
625
+ 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.'
624
626
  },
625
627
  {
626
628
  command: "plays",
@@ -18778,7 +18780,7 @@ function helperSource() {
18778
18780
  ``,
18779
18781
  `function __dlKeyPaths(key: string): string[] {`,
18780
18782
  ` const normalized = String(key || '').trim();`,
18781
- ` if (normalized === 'email') return ['email', 'email_address', 'person.email', 'contact.email', 'data.email', 'result.data.email'];`,
18783
+ ` if (normalized === 'email') return ['email', 'email_address', 'person.email.email', 'data.person.email.email', 'result.person.email.email', 'result.data.person.email.email', 'person.email', 'contact.email', 'data.email', 'result.data.email'];`,
18782
18784
  ` if (normalized === 'personal_email') return ['personal_email', 'email', 'email_address', 'data.personal_email', 'data.email'];`,
18783
18785
  ` if (normalized === 'phone') return ['phone', 'phone_number', 'mobile_phone', 'mobile_phone_number', 'data.phone'];`,
18784
18786
  ` if (normalized === 'linkedin') return ['linkedin', 'linkedin_url', 'linkedin_profile', 'profile_url', 'person.linkedin', 'person.linkedin_url'];`,
@@ -18947,15 +18949,15 @@ function helperSource() {
18947
18949
  ` const raw = __dlRawToolOutput(result);`,
18948
18950
  ` if (!extractor) return raw;`,
18949
18951
  ` const pick = (paths: string[] | string) => {`,
18950
- ` const candidates = Array.isArray(paths) ? paths : [paths];`,
18951
- ` for (const path of candidates) {`,
18952
- ` if (typeof path === 'string') {`,
18952
+ ` const requestedPaths = Array.isArray(paths) ? paths : [paths];`,
18953
+ ` for (const requestedPath of requestedPaths) {`,
18954
+ ` for (const path of __dlKeyPaths(String(requestedPath))) {`,
18953
18955
  ` const extractedValue = __dlExtractedValue(result, path);`,
18954
18956
  ` if (__dlMeaningful(extractedValue)) return extractedValue;`,
18955
- ` }`,
18956
- ` for (const candidate of __dlRawToolCandidates(raw)) {`,
18957
- ` const value = __dlGetByPath(candidate, String(path));`,
18958
- ` if (__dlMeaningful(value)) return value;`,
18957
+ ` for (const candidate of __dlRawToolCandidates(raw)) {`,
18958
+ ` const value = __dlGetByPath(candidate, path);`,
18959
+ ` if (__dlMeaningful(value)) return value;`,
18960
+ ` }`,
18959
18961
  ` }`,
18960
18962
  ` }`,
18961
18963
  ` return null;`,
package/dist/index.js CHANGED
@@ -422,19 +422,21 @@ 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
+ // 0.1.230 propagates enrich extractor failures as failed rows rather than
426
+ // silently materializing them as unmatched results.
425
427
  // 0.1.220 deprecates SDK CLI versions below 0.1.219 and updates them
426
428
  // automatically without blocking their current command.
427
- version: "0.1.237",
429
+ version: "0.1.238",
428
430
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
429
431
  supportPolicy: {
430
- latest: "0.1.237",
432
+ latest: "0.1.238",
431
433
  minimumSupported: "0.1.53",
432
434
  deprecatedBelow: "0.1.219",
433
435
  commandMinimumSupported: [
434
436
  {
435
437
  command: "enrich",
436
- minimumSupported: "0.1.175",
437
- 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."
438
+ minimumSupported: "0.1.238",
439
+ 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.'
438
440
  },
439
441
  {
440
442
  command: "plays",
package/dist/index.mjs CHANGED
@@ -352,19 +352,21 @@ 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
+ // 0.1.230 propagates enrich extractor failures as failed rows rather than
356
+ // silently materializing them as unmatched results.
355
357
  // 0.1.220 deprecates SDK CLI versions below 0.1.219 and updates them
356
358
  // automatically without blocking their current command.
357
- version: "0.1.237",
359
+ version: "0.1.238",
358
360
  apiContract: "2026-06-dataset-handle-results-hard-cutover",
359
361
  supportPolicy: {
360
- latest: "0.1.237",
362
+ latest: "0.1.238",
361
363
  minimumSupported: "0.1.53",
362
364
  deprecatedBelow: "0.1.219",
363
365
  commandMinimumSupported: [
364
366
  {
365
367
  command: "enrich",
366
- minimumSupported: "0.1.175",
367
- 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."
368
+ minimumSupported: "0.1.238",
369
+ 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.'
368
370
  },
369
371
  {
370
372
  command: "plays",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.237",
3
+ "version": "0.1.238",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {