deepline 0.3.60 → 0.3.62
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/release.ts +1 -1
- package/dist/bundling-sources/shared_libs/play-runtime/context.ts +11 -7
- package/dist/cli/index.js +372 -279
- package/dist/cli/index.mjs +352 -259
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
202
|
+
version: '0.3.62',
|
|
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
|
-
//
|
|
13290
|
-
//
|
|
13291
|
-
//
|
|
13292
|
-
|
|
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:
|
|
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: {
|