deepline 0.1.111 → 0.1.112
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 +18 -3
- package/dist/cli/index.mjs +18 -3
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/dist/repo/sdk/src/release.ts +2 -2
- package/package.json +1 -1
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.
|
|
406
|
+
version: "0.1.112",
|
|
407
407
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
408
408
|
supportPolicy: {
|
|
409
|
-
latest: "0.1.
|
|
409
|
+
latest: "0.1.112",
|
|
410
410
|
minimumSupported: "0.1.53",
|
|
411
411
|
deprecatedBelow: "0.1.53",
|
|
412
412
|
commandMinimumSupported: [
|
|
@@ -20142,6 +20142,9 @@ function writeActiveFamily(family) {
|
|
|
20142
20142
|
`, "utf-8");
|
|
20143
20143
|
return path;
|
|
20144
20144
|
}
|
|
20145
|
+
function forcePythonCliFamily() {
|
|
20146
|
+
return writeActiveFamily("python");
|
|
20147
|
+
}
|
|
20145
20148
|
function handleSwitch(action, options) {
|
|
20146
20149
|
const normalized = (action || "status").trim().toLowerCase();
|
|
20147
20150
|
if (normalized === "status") {
|
|
@@ -22712,7 +22715,7 @@ async function maybeAutoUpdateAndRelaunch(response) {
|
|
|
22712
22715
|
if (plan.kind !== "npm-global") {
|
|
22713
22716
|
return false;
|
|
22714
22717
|
}
|
|
22715
|
-
const label = autoUpdate.required ? "requires an update" : "is more than the supported auto-update lag behind";
|
|
22718
|
+
const label = autoUpdate.reason === "rollback_forced" ? "has a server rollback pending and needs the latest rollback-aware CLI" : autoUpdate.required ? "requires an update" : "is more than the supported auto-update lag behind";
|
|
22716
22719
|
process.stderr.write(
|
|
22717
22720
|
`Deepline SDK/CLI ${label}; running ${plan.manualCommand}
|
|
22718
22721
|
`
|
|
@@ -23515,6 +23518,18 @@ Exit codes:
|
|
|
23515
23518
|
if (relaunched) {
|
|
23516
23519
|
return;
|
|
23517
23520
|
}
|
|
23521
|
+
if (compatibility.response?.cli_family?.action === "force_python") {
|
|
23522
|
+
forcePythonCliFamily();
|
|
23523
|
+
process.stderr.write(
|
|
23524
|
+
"Deepline SDK CLI rollback is active; switched installer-managed `deepline` back to the Python CLI. Re-run your command.\n"
|
|
23525
|
+
);
|
|
23526
|
+
const error = new Error(
|
|
23527
|
+
"SDK CLI rollback is active"
|
|
23528
|
+
);
|
|
23529
|
+
error.code = "deepline.sdk_cli_rollback";
|
|
23530
|
+
error.exitCode = 7;
|
|
23531
|
+
throw error;
|
|
23532
|
+
}
|
|
23518
23533
|
enforceSdkCompatibilityResponse(compatibility.response);
|
|
23519
23534
|
if (printStartupPhase) {
|
|
23520
23535
|
progress?.phase("checking sdk skills");
|
package/dist/cli/index.mjs
CHANGED
|
@@ -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.
|
|
383
|
+
version: "0.1.112",
|
|
384
384
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
385
385
|
supportPolicy: {
|
|
386
|
-
latest: "0.1.
|
|
386
|
+
latest: "0.1.112",
|
|
387
387
|
minimumSupported: "0.1.53",
|
|
388
388
|
deprecatedBelow: "0.1.53",
|
|
389
389
|
commandMinimumSupported: [
|
|
@@ -20167,6 +20167,9 @@ function writeActiveFamily(family) {
|
|
|
20167
20167
|
`, "utf-8");
|
|
20168
20168
|
return path;
|
|
20169
20169
|
}
|
|
20170
|
+
function forcePythonCliFamily() {
|
|
20171
|
+
return writeActiveFamily("python");
|
|
20172
|
+
}
|
|
20170
20173
|
function handleSwitch(action, options) {
|
|
20171
20174
|
const normalized = (action || "status").trim().toLowerCase();
|
|
20172
20175
|
if (normalized === "status") {
|
|
@@ -22743,7 +22746,7 @@ async function maybeAutoUpdateAndRelaunch(response) {
|
|
|
22743
22746
|
if (plan.kind !== "npm-global") {
|
|
22744
22747
|
return false;
|
|
22745
22748
|
}
|
|
22746
|
-
const label = autoUpdate.required ? "requires an update" : "is more than the supported auto-update lag behind";
|
|
22749
|
+
const label = autoUpdate.reason === "rollback_forced" ? "has a server rollback pending and needs the latest rollback-aware CLI" : autoUpdate.required ? "requires an update" : "is more than the supported auto-update lag behind";
|
|
22747
22750
|
process.stderr.write(
|
|
22748
22751
|
`Deepline SDK/CLI ${label}; running ${plan.manualCommand}
|
|
22749
22752
|
`
|
|
@@ -23546,6 +23549,18 @@ Exit codes:
|
|
|
23546
23549
|
if (relaunched) {
|
|
23547
23550
|
return;
|
|
23548
23551
|
}
|
|
23552
|
+
if (compatibility.response?.cli_family?.action === "force_python") {
|
|
23553
|
+
forcePythonCliFamily();
|
|
23554
|
+
process.stderr.write(
|
|
23555
|
+
"Deepline SDK CLI rollback is active; switched installer-managed `deepline` back to the Python CLI. Re-run your command.\n"
|
|
23556
|
+
);
|
|
23557
|
+
const error = new Error(
|
|
23558
|
+
"SDK CLI rollback is active"
|
|
23559
|
+
);
|
|
23560
|
+
error.code = "deepline.sdk_cli_rollback";
|
|
23561
|
+
error.exitCode = 7;
|
|
23562
|
+
throw error;
|
|
23563
|
+
}
|
|
23549
23564
|
enforceSdkCompatibilityResponse(compatibility.response);
|
|
23550
23565
|
if (printStartupPhase) {
|
|
23551
23566
|
progress?.phase("checking sdk skills");
|
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.
|
|
277
|
+
version: "0.1.112",
|
|
278
278
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
279
279
|
supportPolicy: {
|
|
280
|
-
latest: "0.1.
|
|
280
|
+
latest: "0.1.112",
|
|
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.
|
|
199
|
+
version: "0.1.112",
|
|
200
200
|
apiContract: "2026-06-dataset-column-cell-stale-hard-cutover",
|
|
201
201
|
supportPolicy: {
|
|
202
|
-
latest: "0.1.
|
|
202
|
+
latest: "0.1.112",
|
|
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.
|
|
102
|
+
version: '0.1.112',
|
|
103
103
|
apiContract: '2026-06-dataset-column-cell-stale-hard-cutover',
|
|
104
104
|
supportPolicy: {
|
|
105
|
-
latest: '0.1.
|
|
105
|
+
latest: '0.1.112',
|
|
106
106
|
minimumSupported: '0.1.53',
|
|
107
107
|
deprecatedBelow: '0.1.53',
|
|
108
108
|
commandMinimumSupported: [
|