deepline 0.3.32 → 0.3.34
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/compat.ts +1 -0
- package/dist/bundling-sources/sdk/src/release.ts +18 -8
- package/dist/bundling-sources/shared_libs/play-runtime/execution-protocol.ts +71 -0
- package/dist/bundling-sources/shared_libs/play-runtime/scheduler-backend.ts +3 -0
- package/dist/cli/index.js +4334 -3907
- package/dist/cli/index.mjs +4357 -3923
- package/dist/index.js +7 -3
- package/dist/index.mjs +7 -3
- package/dist/install-integrity.json +1 -0
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -778,8 +778,12 @@ var SDK_RELEASE = {
|
|
|
778
778
|
// 0.3.0 introduces raw-v2: complete scrubbed provider responses are
|
|
779
779
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
780
780
|
// getters keep their established compatibility behavior.
|
|
781
|
-
|
|
782
|
-
|
|
781
|
+
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
782
|
+
version: "0.3.34",
|
|
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
|
+
packageCapabilities: {
|
|
785
|
+
updatePreferences: 1
|
|
786
|
+
},
|
|
783
787
|
contracts: {
|
|
784
788
|
api: {
|
|
785
789
|
name: "sdk-http-api",
|
|
@@ -806,7 +810,7 @@ var SDK_RELEASE = {
|
|
|
806
810
|
},
|
|
807
811
|
supportPolicy: {
|
|
808
812
|
minimumSupported: "0.1.53",
|
|
809
|
-
deprecatedBelow: "0.1
|
|
813
|
+
deprecatedBelow: "0.3.1",
|
|
810
814
|
commandIntroducedIn: [
|
|
811
815
|
{
|
|
812
816
|
command: "notifications",
|
package/dist/index.mjs
CHANGED
|
@@ -701,8 +701,12 @@ var SDK_RELEASE = {
|
|
|
701
701
|
// 0.3.0 introduces raw-v2: complete scrubbed provider responses are
|
|
702
702
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
703
703
|
// getters keep their established compatibility behavior.
|
|
704
|
-
|
|
705
|
-
|
|
704
|
+
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
705
|
+
version: "0.3.34",
|
|
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
|
+
packageCapabilities: {
|
|
708
|
+
updatePreferences: 1
|
|
709
|
+
},
|
|
706
710
|
contracts: {
|
|
707
711
|
api: {
|
|
708
712
|
name: "sdk-http-api",
|
|
@@ -729,7 +733,7 @@ var SDK_RELEASE = {
|
|
|
729
733
|
},
|
|
730
734
|
supportPolicy: {
|
|
731
735
|
minimumSupported: "0.1.53",
|
|
732
|
-
deprecatedBelow: "0.1
|
|
736
|
+
deprecatedBelow: "0.3.1",
|
|
733
737
|
commandIntroducedIn: [
|
|
734
738
|
{
|
|
735
739
|
command: "notifications",
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"dist/bundling-sources/shared_libs/play-runtime/execution-capabilities.ts",
|
|
68
68
|
"dist/bundling-sources/shared_libs/play-runtime/execution-ledger-store.ts",
|
|
69
69
|
"dist/bundling-sources/shared_libs/play-runtime/execution-plan.ts",
|
|
70
|
+
"dist/bundling-sources/shared_libs/play-runtime/execution-protocol.ts",
|
|
70
71
|
"dist/bundling-sources/shared_libs/play-runtime/extractor-targets.ts",
|
|
71
72
|
"dist/bundling-sources/shared_libs/play-runtime/fixture-behavior.ts",
|
|
72
73
|
"dist/bundling-sources/shared_libs/play-runtime/fullenrich-batching.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deepline",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.34",
|
|
4
4
|
"description": "GTM data CLI and TypeScript SDK for coding agents",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://code.deepline.com",
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"deepline": {
|
|
61
61
|
"apiContract": "2026-07-admin-cli-local-cutover",
|
|
62
62
|
"apiMajor": 2,
|
|
63
|
+
"updatePreferences": 1,
|
|
63
64
|
"installIntegrity": {
|
|
64
65
|
"schemaVersion": 1,
|
|
65
66
|
"manifest": "dist/install-integrity.json"
|