deepline 0.3.44 → 0.3.45
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 +1540 -265
- package/dist/bundling-sources/shared_libs/play-runtime/ctx-types.ts +11 -0
- package/dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/daytona-session-execution.ts +10 -0
- package/dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/daytona.ts +22 -4
- package/dist/bundling-sources/shared_libs/play-runtime/runner-backends/backends/modal.ts +16 -4
- package/dist/bundling-sources/shared_libs/play-runtime/runner-backends/types.ts +56 -0
- package/dist/bundling-sources/shared_libs/play-runtime/sandbox-runs/contract.ts +418 -0
- package/dist/bundling-sources/shared_libs/play-runtime/sandbox-runs/index.ts +452 -0
- package/dist/bundling-sources/shared_libs/play-runtime/sandbox-runs/runner-backend-adapter.ts +304 -0
- package/dist/bundling-sources/shared_libs/play-runtime/sandbox-runs/testkit.ts +83 -0
- package/dist/bundling-sources/shared_libs/play-runtime/tool-call/always-fresh-adapter.ts +50 -0
- package/dist/bundling-sources/shared_libs/play-runtime/tool-call/contract.ts +135 -0
- package/dist/bundling-sources/shared_libs/play-runtime/tool-call/index.ts +291 -0
- package/dist/bundling-sources/shared_libs/play-runtime/tool-call/native-batch.ts +335 -0
- package/dist/bundling-sources/shared_libs/play-runtime/tool-call/receipt-cohort.ts +904 -0
- package/dist/bundling-sources/shared_libs/play-runtime/tool-call/runtime-step-receipts-adapter.ts +522 -0
- package/dist/bundling-sources/shared_libs/play-runtime/tool-call/testkit.ts +165 -0
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/install-integrity.json +11 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -779,7 +779,7 @@ var SDK_RELEASE = {
|
|
|
779
779
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
780
780
|
// getters keep their established compatibility behavior.
|
|
781
781
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
782
|
-
version: "0.3.
|
|
782
|
+
version: "0.3.45",
|
|
783
783
|
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.",
|
|
784
784
|
packageCapabilities: {
|
|
785
785
|
updatePreferences: 1
|
package/dist/index.mjs
CHANGED
|
@@ -702,7 +702,7 @@ var SDK_RELEASE = {
|
|
|
702
702
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
703
703
|
// getters keep their established compatibility behavior.
|
|
704
704
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
705
|
-
version: "0.3.
|
|
705
|
+
version: "0.3.45",
|
|
706
706
|
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.",
|
|
707
707
|
packageCapabilities: {
|
|
708
708
|
updatePreferences: 1
|
|
@@ -164,6 +164,10 @@
|
|
|
164
164
|
"dist/bundling-sources/shared_libs/play-runtime/runtime-sheet-session.ts",
|
|
165
165
|
"dist/bundling-sources/shared_libs/play-runtime/runtime-traffic-policy.ts",
|
|
166
166
|
"dist/bundling-sources/shared_libs/play-runtime/sandbox-compute-usage.ts",
|
|
167
|
+
"dist/bundling-sources/shared_libs/play-runtime/sandbox-runs/contract.ts",
|
|
168
|
+
"dist/bundling-sources/shared_libs/play-runtime/sandbox-runs/index.ts",
|
|
169
|
+
"dist/bundling-sources/shared_libs/play-runtime/sandbox-runs/runner-backend-adapter.ts",
|
|
170
|
+
"dist/bundling-sources/shared_libs/play-runtime/sandbox-runs/testkit.ts",
|
|
167
171
|
"dist/bundling-sources/shared_libs/play-runtime/sandbox-runtime-limits.ts",
|
|
168
172
|
"dist/bundling-sources/shared_libs/play-runtime/scheduler-backend.ts",
|
|
169
173
|
"dist/bundling-sources/shared_libs/play-runtime/secret-capability.ts",
|
|
@@ -179,6 +183,13 @@
|
|
|
179
183
|
"dist/bundling-sources/shared_libs/play-runtime/test-runtime-seams.ts",
|
|
180
184
|
"dist/bundling-sources/shared_libs/play-runtime/tool-batch-executor.ts",
|
|
181
185
|
"dist/bundling-sources/shared_libs/play-runtime/tool-cache-policy.ts",
|
|
186
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-call/always-fresh-adapter.ts",
|
|
187
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-call/contract.ts",
|
|
188
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-call/index.ts",
|
|
189
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-call/native-batch.ts",
|
|
190
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-call/receipt-cohort.ts",
|
|
191
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-call/runtime-step-receipts-adapter.ts",
|
|
192
|
+
"dist/bundling-sources/shared_libs/play-runtime/tool-call/testkit.ts",
|
|
182
193
|
"dist/bundling-sources/shared_libs/play-runtime/tool-execute-retry-policy.ts",
|
|
183
194
|
"dist/bundling-sources/shared_libs/play-runtime/tool-execution-outcome.ts",
|
|
184
195
|
"dist/bundling-sources/shared_libs/play-runtime/tool-http-errors.ts",
|