deepline 0.1.117 → 0.1.118

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.
package/dist/cli/index.js CHANGED
@@ -403,10 +403,10 @@ var SDK_RELEASE = {
403
403
  // skill on the sdk sync surface, and the people-search-to-email prebuilt.
404
404
  // 0.1.108 ships explicit dataset column/tool recompute policy and removes
405
405
  // the SDK enrich generator's one-second stale policy.
406
- version: "0.1.117",
406
+ version: "0.1.118",
407
407
  apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
408
408
  supportPolicy: {
409
- latest: "0.1.117",
409
+ latest: "0.1.118",
410
410
  minimumSupported: "0.1.53",
411
411
  deprecatedBelow: "0.1.53",
412
412
  commandMinimumSupported: [
@@ -12608,6 +12608,34 @@ function readFirstDatasetActions(packaged) {
12608
12608
  }
12609
12609
  return {};
12610
12610
  }
12611
+ function formatInlinePackageValue(value) {
12612
+ const compacted = compactReturnValue(value);
12613
+ const json = JSON.stringify(compacted);
12614
+ return clampJsonPreviewText(json ?? String(compacted), 500);
12615
+ }
12616
+ function formatPackageValueOutputLines(packaged) {
12617
+ const outputs = packaged.outputs && typeof packaged.outputs === "object" && !Array.isArray(packaged.outputs) ? packaged.outputs : null;
12618
+ if (!outputs) return [];
12619
+ const valueOutputs = Object.entries(outputs).filter(([, output2]) => {
12620
+ return output2 && typeof output2 === "object" && !Array.isArray(output2) && output2.kind === "value" && Object.prototype.hasOwnProperty.call(output2, "value");
12621
+ });
12622
+ if (valueOutputs.length === 0) return [];
12623
+ const lines = [" outputs:"];
12624
+ for (const [name, output2] of valueOutputs.slice(0, 8)) {
12625
+ const value = output2.value;
12626
+ const compacted = compactReturnValue(value);
12627
+ if (compacted && typeof compacted === "object") {
12628
+ lines.push(` ${name}:`);
12629
+ lines.push(...formatJsonPreview(compacted).map((line) => ` ${line}`));
12630
+ } else {
12631
+ lines.push(` ${name}: ${formatInlinePackageValue(value)}`);
12632
+ }
12633
+ }
12634
+ if (valueOutputs.length > 8) {
12635
+ lines.push(` ... ${valueOutputs.length - 8} more output(s)`);
12636
+ }
12637
+ return lines;
12638
+ }
12611
12639
  function buildRunPackageTextLines(packaged) {
12612
12640
  const run = readRunPackageRun(packaged);
12613
12641
  const runId = typeof run.id === "string" ? run.id : "unknown";
@@ -12632,6 +12660,7 @@ function buildRunPackageTextLines(packaged) {
12632
12660
  if (playName) {
12633
12661
  lines.push(` play: ${playName}`);
12634
12662
  }
12663
+ lines.push(...formatPackageValueOutputLines(packaged));
12635
12664
  const next = packaged.next && typeof packaged.next === "object" && !Array.isArray(packaged.next) ? packaged.next : {};
12636
12665
  const billingCommand = actionToCommand(next.billing);
12637
12666
  if (billingCommand) {
@@ -380,10 +380,10 @@ var SDK_RELEASE = {
380
380
  // skill on the sdk sync surface, and the people-search-to-email prebuilt.
381
381
  // 0.1.108 ships explicit dataset column/tool recompute policy and removes
382
382
  // the SDK enrich generator's one-second stale policy.
383
- version: "0.1.117",
383
+ version: "0.1.118",
384
384
  apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
385
385
  supportPolicy: {
386
- latest: "0.1.117",
386
+ latest: "0.1.118",
387
387
  minimumSupported: "0.1.53",
388
388
  deprecatedBelow: "0.1.53",
389
389
  commandMinimumSupported: [
@@ -12626,6 +12626,34 @@ function readFirstDatasetActions(packaged) {
12626
12626
  }
12627
12627
  return {};
12628
12628
  }
12629
+ function formatInlinePackageValue(value) {
12630
+ const compacted = compactReturnValue(value);
12631
+ const json = JSON.stringify(compacted);
12632
+ return clampJsonPreviewText(json ?? String(compacted), 500);
12633
+ }
12634
+ function formatPackageValueOutputLines(packaged) {
12635
+ const outputs = packaged.outputs && typeof packaged.outputs === "object" && !Array.isArray(packaged.outputs) ? packaged.outputs : null;
12636
+ if (!outputs) return [];
12637
+ const valueOutputs = Object.entries(outputs).filter(([, output2]) => {
12638
+ return output2 && typeof output2 === "object" && !Array.isArray(output2) && output2.kind === "value" && Object.prototype.hasOwnProperty.call(output2, "value");
12639
+ });
12640
+ if (valueOutputs.length === 0) return [];
12641
+ const lines = [" outputs:"];
12642
+ for (const [name, output2] of valueOutputs.slice(0, 8)) {
12643
+ const value = output2.value;
12644
+ const compacted = compactReturnValue(value);
12645
+ if (compacted && typeof compacted === "object") {
12646
+ lines.push(` ${name}:`);
12647
+ lines.push(...formatJsonPreview(compacted).map((line) => ` ${line}`));
12648
+ } else {
12649
+ lines.push(` ${name}: ${formatInlinePackageValue(value)}`);
12650
+ }
12651
+ }
12652
+ if (valueOutputs.length > 8) {
12653
+ lines.push(` ... ${valueOutputs.length - 8} more output(s)`);
12654
+ }
12655
+ return lines;
12656
+ }
12629
12657
  function buildRunPackageTextLines(packaged) {
12630
12658
  const run = readRunPackageRun(packaged);
12631
12659
  const runId = typeof run.id === "string" ? run.id : "unknown";
@@ -12650,6 +12678,7 @@ function buildRunPackageTextLines(packaged) {
12650
12678
  if (playName) {
12651
12679
  lines.push(` play: ${playName}`);
12652
12680
  }
12681
+ lines.push(...formatPackageValueOutputLines(packaged));
12653
12682
  const next = packaged.next && typeof packaged.next === "object" && !Array.isArray(packaged.next) ? packaged.next : {};
12654
12683
  const billingCommand = actionToCommand(next.billing);
12655
12684
  if (billingCommand) {
package/dist/index.js CHANGED
@@ -274,10 +274,10 @@ var SDK_RELEASE = {
274
274
  // skill on the sdk sync surface, and the people-search-to-email prebuilt.
275
275
  // 0.1.108 ships explicit dataset column/tool recompute policy and removes
276
276
  // the SDK enrich generator's one-second stale policy.
277
- version: "0.1.117",
277
+ version: "0.1.118",
278
278
  apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
279
279
  supportPolicy: {
280
- latest: "0.1.117",
280
+ latest: "0.1.118",
281
281
  minimumSupported: "0.1.53",
282
282
  deprecatedBelow: "0.1.53",
283
283
  commandMinimumSupported: [
package/dist/index.mjs CHANGED
@@ -196,10 +196,10 @@ var SDK_RELEASE = {
196
196
  // skill on the sdk sync surface, and the people-search-to-email prebuilt.
197
197
  // 0.1.108 ships explicit dataset column/tool recompute policy and removes
198
198
  // the SDK enrich generator's one-second stale policy.
199
- version: "0.1.117",
199
+ version: "0.1.118",
200
200
  apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
201
201
  supportPolicy: {
202
- latest: "0.1.117",
202
+ latest: "0.1.118",
203
203
  minimumSupported: "0.1.53",
204
204
  deprecatedBelow: "0.1.53",
205
205
  commandMinimumSupported: [
@@ -99,10 +99,10 @@ export const SDK_RELEASE = {
99
99
  // skill on the sdk sync surface, and the people-search-to-email prebuilt.
100
100
  // 0.1.108 ships explicit dataset column/tool recompute policy and removes
101
101
  // the SDK enrich generator's one-second stale policy.
102
- version: '0.1.117',
102
+ version: '0.1.118',
103
103
  apiContract: '2026-06-dataset-column-cell-stale-hard-cutover',
104
104
  supportPolicy: {
105
- latest: '0.1.117',
105
+ latest: '0.1.118',
106
106
  minimumSupported: '0.1.53',
107
107
  deprecatedBelow: '0.1.53',
108
108
  commandMinimumSupported: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.117",
3
+ "version": "0.1.118",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {