deepline 0.1.263 → 0.1.264
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/sdk/src/client.ts +4 -0
- package/dist/bundling-sources/sdk/src/release.ts +4 -2
- package/dist/bundling-sources/sdk/src/types.ts +2 -0
- package/dist/bundling-sources/shared_libs/play-runtime/transient-service-error.ts +9 -0
- package/dist/cli/index.js +86 -206
- package/dist/cli/index.mjs +92 -212
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +7 -2
- package/dist/index.mjs +7 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -150,6 +150,8 @@ interface ToolDefinition {
|
|
|
150
150
|
description: string;
|
|
151
151
|
/** Categorization tags (e.g. `["people", "enrichment"]`). */
|
|
152
152
|
categories: DeeplineToolCategory[];
|
|
153
|
+
/** Searchable provider and account-signal tags. */
|
|
154
|
+
tags?: string[];
|
|
153
155
|
/** Operation slug within the provider. */
|
|
154
156
|
operation?: string;
|
|
155
157
|
/** Normalized operation identifier. */
|
|
@@ -1795,6 +1797,7 @@ declare class DeeplineClient {
|
|
|
1795
1797
|
*/
|
|
1796
1798
|
listTools(options?: {
|
|
1797
1799
|
categories?: string;
|
|
1800
|
+
tags?: string;
|
|
1798
1801
|
grep?: string;
|
|
1799
1802
|
grepMode?: 'all' | 'any' | 'phrase';
|
|
1800
1803
|
compact?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -435,8 +435,10 @@ 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
|
-
|
|
439
|
-
|
|
438
|
+
// 0.1.254 removes the internal operations tree from the published SDK CLI.
|
|
439
|
+
// Operators use the checkout-local deepline-admin binary instead.
|
|
440
|
+
version: "0.1.264",
|
|
441
|
+
apiContract: "2026-07-admin-cli-local-cutover",
|
|
440
442
|
supportPolicy: {
|
|
441
443
|
minimumSupported: "0.1.53",
|
|
442
444
|
deprecatedBelow: "0.1.219",
|
|
@@ -2785,6 +2787,9 @@ var DeeplineClient = class {
|
|
|
2785
2787
|
if (options?.categories?.trim()) {
|
|
2786
2788
|
params.set("categories", options.categories.trim());
|
|
2787
2789
|
}
|
|
2790
|
+
if (options?.tags?.trim()) {
|
|
2791
|
+
params.set("tags", options.tags.trim());
|
|
2792
|
+
}
|
|
2788
2793
|
if (options?.grep?.trim()) {
|
|
2789
2794
|
params.set("grep", options.grep.trim());
|
|
2790
2795
|
params.set("grep_mode", options.grepMode ?? "all");
|
package/dist/index.mjs
CHANGED
|
@@ -365,8 +365,10 @@ 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
|
-
|
|
369
|
-
|
|
368
|
+
// 0.1.254 removes the internal operations tree from the published SDK CLI.
|
|
369
|
+
// Operators use the checkout-local deepline-admin binary instead.
|
|
370
|
+
version: "0.1.264",
|
|
371
|
+
apiContract: "2026-07-admin-cli-local-cutover",
|
|
370
372
|
supportPolicy: {
|
|
371
373
|
minimumSupported: "0.1.53",
|
|
372
374
|
deprecatedBelow: "0.1.219",
|
|
@@ -2715,6 +2717,9 @@ var DeeplineClient = class {
|
|
|
2715
2717
|
if (options?.categories?.trim()) {
|
|
2716
2718
|
params.set("categories", options.categories.trim());
|
|
2717
2719
|
}
|
|
2720
|
+
if (options?.tags?.trim()) {
|
|
2721
|
+
params.set("tags", options.tags.trim());
|
|
2722
|
+
}
|
|
2718
2723
|
if (options?.grep?.trim()) {
|
|
2719
2724
|
params.set("grep", options.grep.trim());
|
|
2720
2725
|
params.set("grep_mode", options.grepMode ?? "all");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deepline",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.264",
|
|
4
4
|
"description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -62,6 +62,6 @@
|
|
|
62
62
|
"typescript": "^6.0.2"
|
|
63
63
|
},
|
|
64
64
|
"deepline": {
|
|
65
|
-
"apiContract": "2026-07-
|
|
65
|
+
"apiContract": "2026-07-admin-cli-local-cutover"
|
|
66
66
|
}
|
|
67
67
|
}
|