deepline 0.1.254 → 0.1.255
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.
|
@@ -57,6 +57,12 @@ export type SdkSupportPolicy = {
|
|
|
57
57
|
minimumSupported: string;
|
|
58
58
|
reason: string;
|
|
59
59
|
}>;
|
|
60
|
+
/**
|
|
61
|
+
* Published package versions that must keep working for direct SDK tool
|
|
62
|
+
* callers. CI installs each package from npm and exercises `tools.get` and
|
|
63
|
+
* `tools.execute` without involving the CLI or Play runtime.
|
|
64
|
+
*/
|
|
65
|
+
directToolsCompatibilityVersions?: readonly string[];
|
|
60
66
|
/**
|
|
61
67
|
* Diagnostic freshness threshold reported by `/api/v2/sdk/compat`.
|
|
62
68
|
* Stale-but-supported CLIs warn, but self-update is reserved for unsupported
|
|
@@ -117,7 +123,7 @@ export const SDK_RELEASE = {
|
|
|
117
123
|
// Deepline-native radars. Older clients must update before discovering,
|
|
118
124
|
// checking, or deploying an unlaunched monitor integration.
|
|
119
125
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
120
|
-
version: '0.1.
|
|
126
|
+
version: '0.1.255',
|
|
121
127
|
apiContract: '2026-07-native-monitor-launch-hard-cutover',
|
|
122
128
|
supportPolicy: {
|
|
123
129
|
minimumSupported: '0.1.53',
|
|
@@ -220,6 +226,7 @@ export const SDK_RELEASE = {
|
|
|
220
226
|
'Run result row datasets now use the dataset-handle export contract.',
|
|
221
227
|
},
|
|
222
228
|
],
|
|
229
|
+
directToolsCompatibilityVersions: ['0.1.171'],
|
|
223
230
|
autoUpdatePatchLag: 2,
|
|
224
231
|
},
|
|
225
232
|
} as const satisfies SdkRelease;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import ts from 'typescript';
|
|
1
|
+
import * as ts from 'typescript';
|
|
2
2
|
|
|
3
3
|
type SourceMetadata = {
|
|
4
4
|
name: string | null;
|
|
@@ -37,7 +37,8 @@ function buildContext(sourceFile: ts.SourceFile): SourceContext {
|
|
|
37
37
|
for (const statement of sourceFile.statements) {
|
|
38
38
|
if (ts.isVariableStatement(statement)) {
|
|
39
39
|
const exported = statement.modifiers?.some(
|
|
40
|
-
(modifier) =>
|
|
40
|
+
(modifier: ts.ModifierLike) =>
|
|
41
|
+
modifier.kind === ts.SyntaxKind.ExportKeyword,
|
|
41
42
|
);
|
|
42
43
|
const immutable = Boolean(
|
|
43
44
|
statement.declarationList.flags & ts.NodeFlags.Const,
|
package/dist/cli/index.js
CHANGED
|
@@ -636,7 +636,7 @@ var SDK_RELEASE = {
|
|
|
636
636
|
// Deepline-native radars. Older clients must update before discovering,
|
|
637
637
|
// checking, or deploying an unlaunched monitor integration.
|
|
638
638
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
639
|
-
version: "0.1.
|
|
639
|
+
version: "0.1.255",
|
|
640
640
|
apiContract: "2026-07-native-monitor-launch-hard-cutover",
|
|
641
641
|
supportPolicy: {
|
|
642
642
|
minimumSupported: "0.1.53",
|
|
@@ -724,6 +724,7 @@ var SDK_RELEASE = {
|
|
|
724
724
|
reason: "Run result row datasets now use the dataset-handle export contract."
|
|
725
725
|
}
|
|
726
726
|
],
|
|
727
|
+
directToolsCompatibilityVersions: ["0.1.171"],
|
|
727
728
|
autoUpdatePatchLag: 2
|
|
728
729
|
}
|
|
729
730
|
};
|
package/dist/cli/index.mjs
CHANGED
|
@@ -621,7 +621,7 @@ var SDK_RELEASE = {
|
|
|
621
621
|
// Deepline-native radars. Older clients must update before discovering,
|
|
622
622
|
// checking, or deploying an unlaunched monitor integration.
|
|
623
623
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
624
|
-
version: "0.1.
|
|
624
|
+
version: "0.1.255",
|
|
625
625
|
apiContract: "2026-07-native-monitor-launch-hard-cutover",
|
|
626
626
|
supportPolicy: {
|
|
627
627
|
minimumSupported: "0.1.53",
|
|
@@ -709,6 +709,7 @@ var SDK_RELEASE = {
|
|
|
709
709
|
reason: "Run result row datasets now use the dataset-handle export contract."
|
|
710
710
|
}
|
|
711
711
|
],
|
|
712
|
+
directToolsCompatibilityVersions: ["0.1.171"],
|
|
712
713
|
autoUpdatePatchLag: 2
|
|
713
714
|
}
|
|
714
715
|
};
|
package/dist/index.js
CHANGED
|
@@ -435,7 +435,7 @@ var SDK_RELEASE = {
|
|
|
435
435
|
// Deepline-native radars. Older clients must update before discovering,
|
|
436
436
|
// checking, or deploying an unlaunched monitor integration.
|
|
437
437
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
438
|
-
version: "0.1.
|
|
438
|
+
version: "0.1.255",
|
|
439
439
|
apiContract: "2026-07-native-monitor-launch-hard-cutover",
|
|
440
440
|
supportPolicy: {
|
|
441
441
|
minimumSupported: "0.1.53",
|
|
@@ -523,6 +523,7 @@ var SDK_RELEASE = {
|
|
|
523
523
|
reason: "Run result row datasets now use the dataset-handle export contract."
|
|
524
524
|
}
|
|
525
525
|
],
|
|
526
|
+
directToolsCompatibilityVersions: ["0.1.171"],
|
|
526
527
|
autoUpdatePatchLag: 2
|
|
527
528
|
}
|
|
528
529
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -365,7 +365,7 @@ var SDK_RELEASE = {
|
|
|
365
365
|
// Deepline-native radars. Older clients must update before discovering,
|
|
366
366
|
// checking, or deploying an unlaunched monitor integration.
|
|
367
367
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
368
|
-
version: "0.1.
|
|
368
|
+
version: "0.1.255",
|
|
369
369
|
apiContract: "2026-07-native-monitor-launch-hard-cutover",
|
|
370
370
|
supportPolicy: {
|
|
371
371
|
minimumSupported: "0.1.53",
|
|
@@ -453,6 +453,7 @@ var SDK_RELEASE = {
|
|
|
453
453
|
reason: "Run result row datasets now use the dataset-handle export contract."
|
|
454
454
|
}
|
|
455
455
|
],
|
|
456
|
+
directToolsCompatibilityVersions: ["0.1.171"],
|
|
456
457
|
autoUpdatePatchLag: 2
|
|
457
458
|
}
|
|
458
459
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deepline",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.255",
|
|
4
4
|
"description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/node": "^20.0.0",
|
|
61
61
|
"tsup": "^8.0.0",
|
|
62
|
-
"typescript": "^
|
|
62
|
+
"typescript": "^6.0.2"
|
|
63
63
|
},
|
|
64
64
|
"deepline": {
|
|
65
65
|
"apiContract": "2026-07-native-monitor-launch-hard-cutover"
|