deepline 0.1.71 → 0.1.72
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 +10 -6
- package/dist/cli/index.mjs +10 -6
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/dist/repo/sdk/src/client.ts +1 -1
- package/dist/repo/sdk/src/release.ts +2 -2
- package/dist/repo/sdk/src/types.ts +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -229,10 +229,10 @@ var import_node_path2 = require("path");
|
|
|
229
229
|
|
|
230
230
|
// src/release.ts
|
|
231
231
|
var SDK_RELEASE = {
|
|
232
|
-
version: "0.1.
|
|
232
|
+
version: "0.1.72",
|
|
233
233
|
apiContract: "2026-06-dataset-column-syntax-cutover",
|
|
234
234
|
supportPolicy: {
|
|
235
|
-
latest: "0.1.
|
|
235
|
+
latest: "0.1.72",
|
|
236
236
|
minimumSupported: "0.1.53",
|
|
237
237
|
deprecatedBelow: "0.1.53"
|
|
238
238
|
}
|
|
@@ -10091,7 +10091,7 @@ function activeRunId(run) {
|
|
|
10091
10091
|
}
|
|
10092
10092
|
function formatActiveRunConflictError(input2) {
|
|
10093
10093
|
const lines = [
|
|
10094
|
-
`Active run exists for ${input2.playName}.
|
|
10094
|
+
`Active run exists for ${input2.playName}. Inspect or stop the active run first.`
|
|
10095
10095
|
];
|
|
10096
10096
|
for (const run of input2.activeRuns.slice(0, 3)) {
|
|
10097
10097
|
const runId = activeRunId(run);
|
|
@@ -10108,7 +10108,9 @@ function formatActiveRunConflictError(input2) {
|
|
|
10108
10108
|
` stop: deepline runs stop ${runId} --reason "stale lock" --json`
|
|
10109
10109
|
);
|
|
10110
10110
|
}
|
|
10111
|
-
lines.push(
|
|
10111
|
+
lines.push(
|
|
10112
|
+
` rerun: start another run with the same deepline plays run command`
|
|
10113
|
+
);
|
|
10112
10114
|
return lines.join("\n");
|
|
10113
10115
|
}
|
|
10114
10116
|
var PLAY_SYNTAX_MIGRATION_ERROR_MARKERS = [
|
|
@@ -11887,7 +11889,9 @@ Notes:
|
|
|
11887
11889
|
a fire-and-forget run id.
|
|
11888
11890
|
The play page opens in your browser as soon as the run starts; use --no-open
|
|
11889
11891
|
to only print the URL.
|
|
11890
|
-
|
|
11892
|
+
Concurrent runs for the same play are allowed. --force is accepted for
|
|
11893
|
+
compatibility, but it does not cancel active sibling runs or bypass completed
|
|
11894
|
+
reuse.
|
|
11891
11895
|
This command starts cloud work and may spend Deepline credits through tool calls.
|
|
11892
11896
|
|
|
11893
11897
|
Idempotent execution:
|
|
@@ -11926,7 +11930,7 @@ Examples:
|
|
|
11926
11930
|
).option("--watch", "Compatibility alias; run waits by default").option("--wait", "Compatibility alias; run waits by default").option("--no-wait", "Start the run and return immediately").option(
|
|
11927
11931
|
"--logs",
|
|
11928
11932
|
"When output is non-interactive, stream play logs to stderr while waiting"
|
|
11929
|
-
).option("--tail-timeout-ms <ms>", "Timeout while watching the run stream").option("--force", "
|
|
11933
|
+
).option("--tail-timeout-ms <ms>", "Timeout while watching the run stream").option("--force", "Compatibility flag; active sibling runs are allowed").option("--no-open", "Print the play page URL without opening a browser").option("--json", "Emit JSON output").option("--full", "Debug only: with --json, emit the raw status payload").addHelpText(
|
|
11930
11934
|
"afterAll",
|
|
11931
11935
|
`
|
|
11932
11936
|
Pass-through input flags:
|
package/dist/cli/index.mjs
CHANGED
|
@@ -206,10 +206,10 @@ import { join as join2 } from "path";
|
|
|
206
206
|
|
|
207
207
|
// src/release.ts
|
|
208
208
|
var SDK_RELEASE = {
|
|
209
|
-
version: "0.1.
|
|
209
|
+
version: "0.1.72",
|
|
210
210
|
apiContract: "2026-06-dataset-column-syntax-cutover",
|
|
211
211
|
supportPolicy: {
|
|
212
|
-
latest: "0.1.
|
|
212
|
+
latest: "0.1.72",
|
|
213
213
|
minimumSupported: "0.1.53",
|
|
214
214
|
deprecatedBelow: "0.1.53"
|
|
215
215
|
}
|
|
@@ -10094,7 +10094,7 @@ function activeRunId(run) {
|
|
|
10094
10094
|
}
|
|
10095
10095
|
function formatActiveRunConflictError(input2) {
|
|
10096
10096
|
const lines = [
|
|
10097
|
-
`Active run exists for ${input2.playName}.
|
|
10097
|
+
`Active run exists for ${input2.playName}. Inspect or stop the active run first.`
|
|
10098
10098
|
];
|
|
10099
10099
|
for (const run of input2.activeRuns.slice(0, 3)) {
|
|
10100
10100
|
const runId = activeRunId(run);
|
|
@@ -10111,7 +10111,9 @@ function formatActiveRunConflictError(input2) {
|
|
|
10111
10111
|
` stop: deepline runs stop ${runId} --reason "stale lock" --json`
|
|
10112
10112
|
);
|
|
10113
10113
|
}
|
|
10114
|
-
lines.push(
|
|
10114
|
+
lines.push(
|
|
10115
|
+
` rerun: start another run with the same deepline plays run command`
|
|
10116
|
+
);
|
|
10115
10117
|
return lines.join("\n");
|
|
10116
10118
|
}
|
|
10117
10119
|
var PLAY_SYNTAX_MIGRATION_ERROR_MARKERS = [
|
|
@@ -11890,7 +11892,9 @@ Notes:
|
|
|
11890
11892
|
a fire-and-forget run id.
|
|
11891
11893
|
The play page opens in your browser as soon as the run starts; use --no-open
|
|
11892
11894
|
to only print the URL.
|
|
11893
|
-
|
|
11895
|
+
Concurrent runs for the same play are allowed. --force is accepted for
|
|
11896
|
+
compatibility, but it does not cancel active sibling runs or bypass completed
|
|
11897
|
+
reuse.
|
|
11894
11898
|
This command starts cloud work and may spend Deepline credits through tool calls.
|
|
11895
11899
|
|
|
11896
11900
|
Idempotent execution:
|
|
@@ -11929,7 +11933,7 @@ Examples:
|
|
|
11929
11933
|
).option("--watch", "Compatibility alias; run waits by default").option("--wait", "Compatibility alias; run waits by default").option("--no-wait", "Start the run and return immediately").option(
|
|
11930
11934
|
"--logs",
|
|
11931
11935
|
"When output is non-interactive, stream play logs to stderr while waiting"
|
|
11932
|
-
).option("--tail-timeout-ms <ms>", "Timeout while watching the run stream").option("--force", "
|
|
11936
|
+
).option("--tail-timeout-ms <ms>", "Timeout while watching the run stream").option("--force", "Compatibility flag; active sibling runs are allowed").option("--no-open", "Print the play page URL without opening a browser").option("--json", "Emit JSON output").option("--full", "Debug only: with --json, emit the raw status payload").addHelpText(
|
|
11933
11937
|
"afterAll",
|
|
11934
11938
|
`
|
|
11935
11939
|
Pass-through input flags:
|
package/dist/index.d.mts
CHANGED
|
@@ -951,7 +951,7 @@ interface StartPlayRunRequest {
|
|
|
951
951
|
inputFile?: unknown;
|
|
952
952
|
/** Additional staged file references (dependencies, data files). */
|
|
953
953
|
packagedFiles?: unknown[];
|
|
954
|
-
/**
|
|
954
|
+
/** Compatibility flag; active sibling runs are allowed. */
|
|
955
955
|
force?: boolean;
|
|
956
956
|
/** Optionally let the start request wait briefly and return a terminal result. */
|
|
957
957
|
waitForCompletionMs?: number;
|
|
@@ -1713,7 +1713,7 @@ declare class DeeplineClient {
|
|
|
1713
1713
|
compilerManifest?: PlayCompilerManifest;
|
|
1714
1714
|
inputFile?: PlayStagedFileRef | null;
|
|
1715
1715
|
packagedFiles?: PlayStagedFileRef[];
|
|
1716
|
-
/**
|
|
1716
|
+
/** Compatibility flag; active sibling runs are allowed. */
|
|
1717
1717
|
force?: boolean;
|
|
1718
1718
|
}): Promise<PlayRunResult>;
|
|
1719
1719
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -951,7 +951,7 @@ interface StartPlayRunRequest {
|
|
|
951
951
|
inputFile?: unknown;
|
|
952
952
|
/** Additional staged file references (dependencies, data files). */
|
|
953
953
|
packagedFiles?: unknown[];
|
|
954
|
-
/**
|
|
954
|
+
/** Compatibility flag; active sibling runs are allowed. */
|
|
955
955
|
force?: boolean;
|
|
956
956
|
/** Optionally let the start request wait briefly and return a terminal result. */
|
|
957
957
|
waitForCompletionMs?: number;
|
|
@@ -1713,7 +1713,7 @@ declare class DeeplineClient {
|
|
|
1713
1713
|
compilerManifest?: PlayCompilerManifest;
|
|
1714
1714
|
inputFile?: PlayStagedFileRef | null;
|
|
1715
1715
|
packagedFiles?: PlayStagedFileRef[];
|
|
1716
|
-
/**
|
|
1716
|
+
/** Compatibility flag; active sibling runs are allowed. */
|
|
1717
1717
|
force?: boolean;
|
|
1718
1718
|
}): Promise<PlayRunResult>;
|
|
1719
1719
|
/**
|
package/dist/index.js
CHANGED
|
@@ -242,10 +242,10 @@ var import_node_path2 = require("path");
|
|
|
242
242
|
|
|
243
243
|
// src/release.ts
|
|
244
244
|
var SDK_RELEASE = {
|
|
245
|
-
version: "0.1.
|
|
245
|
+
version: "0.1.72",
|
|
246
246
|
apiContract: "2026-06-dataset-column-syntax-cutover",
|
|
247
247
|
supportPolicy: {
|
|
248
|
-
latest: "0.1.
|
|
248
|
+
latest: "0.1.72",
|
|
249
249
|
minimumSupported: "0.1.53",
|
|
250
250
|
deprecatedBelow: "0.1.53"
|
|
251
251
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -179,10 +179,10 @@ import { join as join2 } from "path";
|
|
|
179
179
|
|
|
180
180
|
// src/release.ts
|
|
181
181
|
var SDK_RELEASE = {
|
|
182
|
-
version: "0.1.
|
|
182
|
+
version: "0.1.72",
|
|
183
183
|
apiContract: "2026-06-dataset-column-syntax-cutover",
|
|
184
184
|
supportPolicy: {
|
|
185
|
-
latest: "0.1.
|
|
185
|
+
latest: "0.1.72",
|
|
186
186
|
minimumSupported: "0.1.53",
|
|
187
187
|
deprecatedBelow: "0.1.53"
|
|
188
188
|
}
|
|
@@ -1799,7 +1799,7 @@ export class DeeplineClient {
|
|
|
1799
1799
|
compilerManifest?: PlayCompilerManifest;
|
|
1800
1800
|
inputFile?: PlayStagedFileRef | null;
|
|
1801
1801
|
packagedFiles?: PlayStagedFileRef[];
|
|
1802
|
-
/**
|
|
1802
|
+
/** Compatibility flag; active sibling runs are allowed. */
|
|
1803
1803
|
force?: boolean;
|
|
1804
1804
|
},
|
|
1805
1805
|
): Promise<PlayRunResult> {
|
|
@@ -50,10 +50,10 @@ export type SdkRelease = {
|
|
|
50
50
|
};
|
|
51
51
|
|
|
52
52
|
export const SDK_RELEASE = {
|
|
53
|
-
version: '0.1.
|
|
53
|
+
version: '0.1.72',
|
|
54
54
|
apiContract: '2026-06-dataset-column-syntax-cutover',
|
|
55
55
|
supportPolicy: {
|
|
56
|
-
latest: '0.1.
|
|
56
|
+
latest: '0.1.72',
|
|
57
57
|
minimumSupported: '0.1.53',
|
|
58
58
|
deprecatedBelow: '0.1.53',
|
|
59
59
|
},
|
|
@@ -847,7 +847,7 @@ export interface StartPlayRunRequest {
|
|
|
847
847
|
inputFile?: unknown;
|
|
848
848
|
/** Additional staged file references (dependencies, data files). */
|
|
849
849
|
packagedFiles?: unknown[];
|
|
850
|
-
/**
|
|
850
|
+
/** Compatibility flag; active sibling runs are allowed. */
|
|
851
851
|
force?: boolean;
|
|
852
852
|
/** Optionally let the start request wait briefly and return a terminal result. */
|
|
853
853
|
waitForCompletionMs?: number;
|