deepline 0.1.144 → 0.1.146

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/index.mjs CHANGED
@@ -348,10 +348,10 @@ var SDK_RELEASE = {
348
348
  // 0.1.108 ships explicit dataset column/tool recompute policy and removes
349
349
  // the SDK enrich generator's one-second stale policy.
350
350
  // 0.1.110 ships authored V2 prebuilts and required top-level play descriptions.
351
- version: "0.1.144",
351
+ version: "0.1.146",
352
352
  apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
353
353
  supportPolicy: {
354
- latest: "0.1.144",
354
+ latest: "0.1.146",
355
355
  minimumSupported: "0.1.53",
356
356
  deprecatedBelow: "0.1.53",
357
357
  commandMinimumSupported: [
@@ -3228,6 +3228,9 @@ var DeeplineClient = class {
3228
3228
  if (input.runId?.trim()) {
3229
3229
  params.set("runId", input.runId.trim());
3230
3230
  }
3231
+ if (input.rowMode === "all") {
3232
+ params.set("rowMode", "all");
3233
+ }
3231
3234
  return await this.http.get(
3232
3235
  `/api/v2/plays/${encodeURIComponent(input.playName)}/sheet?${params.toString()}`
3233
3236
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.144",
3
+ "version": "0.1.146",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {