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/bundling-sources/apps/play-runner-workers/src/coordinator-entry.ts +36 -4
- package/dist/bundling-sources/apps/play-runner-workers/src/entry.ts +5 -2
- package/dist/bundling-sources/sdk/src/client.ts +5 -0
- package/dist/bundling-sources/sdk/src/release.ts +2 -2
- package/dist/bundling-sources/shared_libs/temporal/constants.ts +4 -3
- package/dist/cli/index.js +492 -43
- package/dist/cli/index.mjs +492 -43
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +5 -2
- package/dist/index.mjs +5 -2
- package/package.json +1 -1
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.
|
|
351
|
+
version: "0.1.146",
|
|
352
352
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
353
353
|
supportPolicy: {
|
|
354
|
-
latest: "0.1.
|
|
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
|
);
|