deepline 0.3.60 → 0.3.61

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.
@@ -199,7 +199,7 @@ export const SDK_RELEASE = {
199
199
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
200
200
  // getters keep their established compatibility behavior.
201
201
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
202
- version: '0.3.60',
202
+ version: '0.3.61',
203
203
  updateSummary:
204
204
  'Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.',
205
205
  packageCapabilities: {
@@ -13286,14 +13286,12 @@ export class PlayContextImpl implements ScalarPlayAuthoringRuntimeContext {
13286
13286
  ...(requestsDurableInvocationFence
13287
13287
  ? { canonical_operation: canonicalOperation }
13288
13288
  : {}),
13289
- // This is deliberately the provider receipt, rather than the
13290
- // worker-owned response cache receipt. It keeps a newer
13291
- // worker wire-compatible with an already active Vercel app
13292
- // while its runtime cache can still partition by response
13293
- // representation.
13294
- ...(providerIdempotencyReceiptKey
13289
+ // The worker-owned receipt coordinates this physical durable
13290
+ // call. Provider idempotency is carried separately below so
13291
+ // exact-payload reuse never replaces batch receipt ownership.
13292
+ ...(durableCallReceiptKey
13295
13293
  ? {
13296
- durable_call_receipt_key: providerIdempotencyReceiptKey,
13294
+ durable_call_receipt_key: durableCallReceiptKey,
13297
13295
  ...(executionAuthScopeDigest
13298
13296
  ? {
13299
13297
  execution_auth_scope_digest:
@@ -13302,6 +13300,12 @@ export class PlayContextImpl implements ScalarPlayAuthoringRuntimeContext {
13302
13300
  : {}),
13303
13301
  }
13304
13302
  : {}),
13303
+ ...(providerIdempotencyReceiptKey
13304
+ ? {
13305
+ provider_idempotency_receipt_key:
13306
+ providerIdempotencyReceiptKey,
13307
+ }
13308
+ : {}),
13305
13309
  ...(options?.customerDbDataset
13306
13310
  ? {
13307
13311
  query_result_dataset: {
package/dist/cli/index.js CHANGED
@@ -1120,7 +1120,7 @@ var SDK_RELEASE = {
1120
1120
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
1121
1121
  // getters keep their established compatibility behavior.
1122
1122
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
1123
- version: "0.3.60",
1123
+ version: "0.3.61",
1124
1124
  updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
1125
1125
  packageCapabilities: {
1126
1126
  updatePreferences: 1
@@ -1105,7 +1105,7 @@ var SDK_RELEASE = {
1105
1105
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
1106
1106
  // getters keep their established compatibility behavior.
1107
1107
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
1108
- version: "0.3.60",
1108
+ version: "0.3.61",
1109
1109
  updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
1110
1110
  packageCapabilities: {
1111
1111
  updatePreferences: 1
package/dist/index.js CHANGED
@@ -826,7 +826,7 @@ var SDK_RELEASE = {
826
826
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
827
827
  // getters keep their established compatibility behavior.
828
828
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
829
- version: "0.3.60",
829
+ version: "0.3.61",
830
830
  updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
831
831
  packageCapabilities: {
832
832
  updatePreferences: 1
package/dist/index.mjs CHANGED
@@ -738,7 +738,7 @@ var SDK_RELEASE = {
738
738
  // available at toolResponse.rawV2 while toolResponse.raw and all declared
739
739
  // getters keep their established compatibility behavior.
740
740
  // 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
741
- version: "0.3.60",
741
+ version: "0.3.61",
742
742
  updateSummary: "Automatic CLI updates are now enabled by default. To opt out, run `deepline settings autoupdate off`; use `deepline settings autoupdate on` to re-enable updates or `deepline settings autoupdate pin <version>` to hold an exact release. This release also adds raw-v2 tool responses at toolResponse.rawV2 while preserving existing toolResponse.raw and declared getters.",
743
743
  packageCapabilities: {
744
744
  updatePreferences: 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepline",
3
- "version": "0.3.60",
3
+ "version": "0.3.61",
4
4
  "description": "GTM data CLI and TypeScript SDK for coding agents",
5
5
  "license": "MIT",
6
6
  "homepage": "https://code.deepline.com",