deepline 0.3.49 → 0.3.50
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/sdk/src/types.ts +2 -0
- package/dist/bundling-sources/shared_libs/play-runtime/app-runtime-api.ts +1 -0
- package/dist/bundling-sources/shared_libs/play-runtime/context.ts +25 -69
- package/dist/bundling-sources/shared_libs/play-runtime/ctx-types.ts +0 -2
- package/dist/bundling-sources/shared_libs/play-runtime/governor/governor.ts +45 -5
- package/dist/bundling-sources/shared_libs/play-runtime/governor/policy.ts +11 -3
- package/dist/bundling-sources/shared_libs/play-runtime/protocol.ts +0 -2
- package/dist/bundling-sources/shared_libs/play-runtime/resource-governor.ts +11 -0
- package/dist/bundling-sources/shared_libs/play-runtime/test-runtime-seams.ts +1 -14
- package/dist/bundling-sources/shared_libs/play-runtime/tool-call/contract.ts +17 -7
- package/dist/bundling-sources/shared_libs/play-runtime/tool-call/index.ts +0 -1
- package/dist/cli/index.js +730 -433
- package/dist/cli/index.mjs +700 -398
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -779,6 +779,8 @@ interface PlayRunPackage {
|
|
|
779
779
|
playName: string;
|
|
780
780
|
status: string;
|
|
781
781
|
dashboardUrl?: string;
|
|
782
|
+
/** Durable acceptance time: the run record was created. */
|
|
783
|
+
acceptedAt?: number | null;
|
|
782
784
|
updatedAt?: number | null;
|
|
783
785
|
startedAt?: number | null;
|
|
784
786
|
finishedAt?: number | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -779,6 +779,8 @@ interface PlayRunPackage {
|
|
|
779
779
|
playName: string;
|
|
780
780
|
status: string;
|
|
781
781
|
dashboardUrl?: string;
|
|
782
|
+
/** Durable acceptance time: the run record was created. */
|
|
783
|
+
acceptedAt?: number | null;
|
|
782
784
|
updatedAt?: number | null;
|
|
783
785
|
startedAt?: number | null;
|
|
784
786
|
finishedAt?: number | null;
|
package/dist/index.js
CHANGED
|
@@ -815,7 +815,7 @@ var SDK_RELEASE = {
|
|
|
815
815
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
816
816
|
// getters keep their established compatibility behavior.
|
|
817
817
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
818
|
-
version: "0.3.
|
|
818
|
+
version: "0.3.50",
|
|
819
819
|
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.",
|
|
820
820
|
packageCapabilities: {
|
|
821
821
|
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.
|
|
741
|
+
version: "0.3.50",
|
|
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
|