deepline 0.1.263 → 0.1.265
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 +195 -462
- package/dist/cli/index.mjs +199 -466
- 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
|
@@ -1402,6 +1402,7 @@ export class DeeplineClient {
|
|
|
1402
1402
|
*/
|
|
1403
1403
|
async listTools(options?: {
|
|
1404
1404
|
categories?: string;
|
|
1405
|
+
tags?: string;
|
|
1405
1406
|
grep?: string;
|
|
1406
1407
|
grepMode?: 'all' | 'any' | 'phrase';
|
|
1407
1408
|
compact?: boolean;
|
|
@@ -1410,6 +1411,9 @@ export class DeeplineClient {
|
|
|
1410
1411
|
if (options?.categories?.trim()) {
|
|
1411
1412
|
params.set('categories', options.categories.trim());
|
|
1412
1413
|
}
|
|
1414
|
+
if (options?.tags?.trim()) {
|
|
1415
|
+
params.set('tags', options.tags.trim());
|
|
1416
|
+
}
|
|
1413
1417
|
if (options?.grep?.trim()) {
|
|
1414
1418
|
params.set('grep', options.grep.trim());
|
|
1415
1419
|
params.set('grep_mode', options.grepMode ?? 'all');
|
|
@@ -123,8 +123,10 @@ export const SDK_RELEASE = {
|
|
|
123
123
|
// Deepline-native radars. Older clients must update before discovering,
|
|
124
124
|
// checking, or deploying an unlaunched monitor integration.
|
|
125
125
|
// 0.1.253 makes play-page browser opening opt-in and retires --no-open.
|
|
126
|
-
|
|
127
|
-
|
|
126
|
+
// 0.1.254 removes the internal operations tree from the published SDK CLI.
|
|
127
|
+
// Operators use the checkout-local deepline-admin binary instead.
|
|
128
|
+
version: '0.1.265',
|
|
129
|
+
apiContract: '2026-07-admin-cli-local-cutover',
|
|
128
130
|
supportPolicy: {
|
|
129
131
|
minimumSupported: '0.1.53',
|
|
130
132
|
deprecatedBelow: '0.1.219',
|
|
@@ -151,6 +151,8 @@ export interface ToolDefinition {
|
|
|
151
151
|
description: string;
|
|
152
152
|
/** Categorization tags (e.g. `["people", "enrichment"]`). */
|
|
153
153
|
categories: DeeplineToolCategory[];
|
|
154
|
+
/** Searchable provider and account-signal tags. */
|
|
155
|
+
tags?: string[];
|
|
154
156
|
/** Operation slug within the provider. */
|
|
155
157
|
operation?: string;
|
|
156
158
|
/** Normalized operation identifier. */
|
|
@@ -2,6 +2,15 @@ export function transientServiceUnavailableDetail(
|
|
|
2
2
|
error: unknown,
|
|
3
3
|
): string | null {
|
|
4
4
|
const detail = error instanceof Error ? error.message : String(error);
|
|
5
|
+
// The Convex HTTP client surfaces socket/DNS interruptions as the native
|
|
6
|
+
// Undici `TypeError: fetch failed`, without an HTTP envelope. Callers only
|
|
7
|
+
// use this classifier where replay is explicitly safe (for example, reads).
|
|
8
|
+
if (
|
|
9
|
+
error instanceof TypeError &&
|
|
10
|
+
/^fetch failed$/i.test(detail.trim())
|
|
11
|
+
) {
|
|
12
|
+
return detail;
|
|
13
|
+
}
|
|
5
14
|
// Convex uses both an explicit ServiceUnavailable response and this generic
|
|
6
15
|
// InternalServerError envelope for short control-plane outages. The latter
|
|
7
16
|
// text is intentionally exact: application exceptions must not become
|