deepline 0.3.11 → 0.3.12

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.
@@ -192,7 +192,7 @@ export const SDK_RELEASE = {
192
192
  // 0.3.0 introduces raw-v2: complete scrubbed provider responses are
193
193
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
194
194
  // getters keep their established compatibility behavior.
195
- version: '0.3.11',
195
+ version: '0.3.12',
196
196
  updateSummary:
197
197
  'New raw-v2 tool responses preserve complete scrubbed provider envelopes at toolResponse.rawV2, including JSON:API included resources, links, cursors, and totals. Existing toolResponse.raw and declared getters keep working unchanged.',
198
198
  contracts: {
@@ -575,6 +575,11 @@ async function acquireOneShotDaytonaSandbox(input: {
575
575
  attempt: result.attempt,
576
576
  elapsedMs: billingStartedAt - input.startedAt,
577
577
  attemptElapsedMs: result.attemptElapsedMs,
578
+ // Daytona's default snapshot is intentionally provider-managed. Record the
579
+ // resolved immutable snapshot identifier so a slow acquisition can be
580
+ // distinguished from a bad warm-pool/default-snapshot selection without
581
+ // logging provider credentials or customer-code details.
582
+ snapshot: sandbox.snapshot?.trim() || null,
578
583
  cpu: granted.cpu,
579
584
  memoryGiB: granted.memoryGiB,
580
585
  diskGiB: granted.diskGiB,
@@ -109,6 +109,13 @@ export type PlaySchedulerSubmitInput = {
109
109
  * When omitted, legacy schedulers fall back to baseUrl.
110
110
  */
111
111
  runtimeApiBaseUrl?: string | null;
112
+ /**
113
+ * Stable signing origin for executor JWTs. This is intentionally distinct
114
+ * from runtimeApiBaseUrl: a staged Vercel deployment must receive the
115
+ * canary's runtime API traffic without forcing a long-lived gateway fleet to
116
+ * trust a one-off deployment hostname.
117
+ */
118
+ runtimeTokenOrigin?: string | null;
112
119
  baseUrl: string;
113
120
  /** Optional per-run provider execution mode. Defaults to server policy when omitted. */
114
121
  integrationMode?: 'live' | 'eval_stub' | 'fixture';
package/dist/cli/index.js CHANGED
@@ -1047,7 +1047,7 @@ var SDK_RELEASE = {
1047
1047
  // 0.3.0 introduces raw-v2: complete scrubbed provider responses are
1048
1048
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
1049
1049
  // getters keep their established compatibility behavior.
1050
- version: "0.3.11",
1050
+ version: "0.3.12",
1051
1051
  updateSummary: "New raw-v2 tool responses preserve complete scrubbed provider envelopes at toolResponse.rawV2, including JSON:API included resources, links, cursors, and totals. Existing toolResponse.raw and declared getters keep working unchanged.",
1052
1052
  contracts: {
1053
1053
  api: {
@@ -1033,7 +1033,7 @@ var SDK_RELEASE = {
1033
1033
  // 0.3.0 introduces raw-v2: complete scrubbed provider responses are
1034
1034
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
1035
1035
  // getters keep their established compatibility behavior.
1036
- version: "0.3.11",
1036
+ version: "0.3.12",
1037
1037
  updateSummary: "New raw-v2 tool responses preserve complete scrubbed provider envelopes at toolResponse.rawV2, including JSON:API included resources, links, cursors, and totals. Existing toolResponse.raw and declared getters keep working unchanged.",
1038
1038
  contracts: {
1039
1039
  api: {
package/dist/index.js CHANGED
@@ -783,7 +783,7 @@ var SDK_RELEASE = {
783
783
  // 0.3.0 introduces raw-v2: complete scrubbed provider responses are
784
784
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
785
785
  // getters keep their established compatibility behavior.
786
- version: "0.3.11",
786
+ version: "0.3.12",
787
787
  updateSummary: "New raw-v2 tool responses preserve complete scrubbed provider envelopes at toolResponse.rawV2, including JSON:API included resources, links, cursors, and totals. Existing toolResponse.raw and declared getters keep working unchanged.",
788
788
  contracts: {
789
789
  api: {
package/dist/index.mjs CHANGED
@@ -706,7 +706,7 @@ var SDK_RELEASE = {
706
706
  // 0.3.0 introduces raw-v2: complete scrubbed provider responses are
707
707
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
708
708
  // getters keep their established compatibility behavior.
709
- version: "0.3.11",
709
+ version: "0.3.12",
710
710
  updateSummary: "New raw-v2 tool responses preserve complete scrubbed provider envelopes at toolResponse.rawV2, including JSON:API included resources, links, cursors, and totals. Existing toolResponse.raw and declared getters keep working unchanged.",
711
711
  contracts: {
712
712
  api: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.3.11",
3
+ "version": "0.3.12",
4
4
  "description": "GTM data CLI and TypeScript SDK for coding agents",
5
5
  "license": "MIT",
6
6
  "homepage": "https://code.deepline.com",