deepline 0.1.258 → 0.1.259

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.
@@ -123,7 +123,7 @@ 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
- version: '0.1.258',
126
+ version: '0.1.259',
127
127
  apiContract: '2026-07-native-monitor-launch-hard-cutover',
128
128
  supportPolicy: {
129
129
  minimumSupported: '0.1.53',
@@ -2,7 +2,11 @@ export function transientServiceUnavailableDetail(
2
2
  error: unknown,
3
3
  ): string | null {
4
4
  const detail = error instanceof Error ? error.message : String(error);
5
- return /ServiceUnavailable|Service temporarily unavailable|temporarily unavailable \(Code:\s*\d+\)/i.test(
5
+ // Convex uses both an explicit ServiceUnavailable response and this generic
6
+ // InternalServerError envelope for short control-plane outages. The latter
7
+ // text is intentionally exact: application exceptions must not become
8
+ // retryable merely because they mention an internal-server error.
9
+ return /ServiceUnavailable|Service temporarily unavailable|temporarily unavailable \(Code:\s*\d+\)|"code"\s*:\s*"InternalServerError"[\s\S]*Your request couldn't be completed\. Try again later\./i.test(
6
10
  detail,
7
11
  )
8
12
  ? detail
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.258",
639
+ version: "0.1.259",
640
640
  apiContract: "2026-07-native-monitor-launch-hard-cutover",
641
641
  supportPolicy: {
642
642
  minimumSupported: "0.1.53",
@@ -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.258",
624
+ version: "0.1.259",
625
625
  apiContract: "2026-07-native-monitor-launch-hard-cutover",
626
626
  supportPolicy: {
627
627
  minimumSupported: "0.1.53",
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.258",
438
+ version: "0.1.259",
439
439
  apiContract: "2026-07-native-monitor-launch-hard-cutover",
440
440
  supportPolicy: {
441
441
  minimumSupported: "0.1.53",
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.258",
368
+ version: "0.1.259",
369
369
  apiContract: "2026-07-native-monitor-launch-hard-cutover",
370
370
  supportPolicy: {
371
371
  minimumSupported: "0.1.53",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.1.258",
3
+ "version": "0.1.259",
4
4
  "description": "Deepline SDK + CLI — B2B data enrichment powered by durable cloud execution",
5
5
  "license": "MIT",
6
6
  "repository": {