deepline 0.3.65 → 0.3.67
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/client.ts +2 -0
- 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/context.ts +89 -2
- package/dist/bundling-sources/shared_libs/play-runtime/log-provenance.ts +80 -3
- package/dist/bundling-sources/shared_libs/play-runtime/protocol.ts +3 -0
- package/dist/cli/index.js +278 -155
- package/dist/cli/index.mjs +190 -67
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1026,6 +1026,8 @@ interface PlayRunListItem {
|
|
|
1026
1026
|
startTime?: string | null;
|
|
1027
1027
|
/** Unix epoch milliseconds when the run started, returned by normalized V2 run summaries. */
|
|
1028
1028
|
startedAt?: number | string | null;
|
|
1029
|
+
/** Unix epoch milliseconds when the run was created. */
|
|
1030
|
+
createdAt?: number | string | null;
|
|
1029
1031
|
/** ISO 8601 timestamp when the run finished. */
|
|
1030
1032
|
closeTime?: string | null;
|
|
1031
1033
|
/** Unix epoch milliseconds when the run finished, returned by normalized V2 run summaries. */
|
|
@@ -2437,6 +2439,8 @@ type MonitorListEntry = {
|
|
|
2437
2439
|
monitor_key?: string;
|
|
2438
2440
|
status?: string;
|
|
2439
2441
|
tool?: string;
|
|
2442
|
+
/** Generic provider-authored event category for this deployed monitor. */
|
|
2443
|
+
type?: string;
|
|
2440
2444
|
name?: string;
|
|
2441
2445
|
configured?: boolean;
|
|
2442
2446
|
active?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -1026,6 +1026,8 @@ interface PlayRunListItem {
|
|
|
1026
1026
|
startTime?: string | null;
|
|
1027
1027
|
/** Unix epoch milliseconds when the run started, returned by normalized V2 run summaries. */
|
|
1028
1028
|
startedAt?: number | string | null;
|
|
1029
|
+
/** Unix epoch milliseconds when the run was created. */
|
|
1030
|
+
createdAt?: number | string | null;
|
|
1029
1031
|
/** ISO 8601 timestamp when the run finished. */
|
|
1030
1032
|
closeTime?: string | null;
|
|
1031
1033
|
/** Unix epoch milliseconds when the run finished, returned by normalized V2 run summaries. */
|
|
@@ -2437,6 +2439,8 @@ type MonitorListEntry = {
|
|
|
2437
2439
|
monitor_key?: string;
|
|
2438
2440
|
status?: string;
|
|
2439
2441
|
tool?: string;
|
|
2442
|
+
/** Generic provider-authored event category for this deployed monitor. */
|
|
2443
|
+
type?: string;
|
|
2440
2444
|
name?: string;
|
|
2441
2445
|
configured?: boolean;
|
|
2442
2446
|
active?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -832,7 +832,7 @@ var SDK_RELEASE = {
|
|
|
832
832
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
833
833
|
// getters keep their established compatibility behavior.
|
|
834
834
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
835
|
-
version: "0.3.
|
|
835
|
+
version: "0.3.67",
|
|
836
836
|
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.",
|
|
837
837
|
packageCapabilities: {
|
|
838
838
|
updatePreferences: 1
|
package/dist/index.mjs
CHANGED
|
@@ -744,7 +744,7 @@ var SDK_RELEASE = {
|
|
|
744
744
|
// available at toolResponse.rawV2 while toolResponse.raw and all declared
|
|
745
745
|
// getters keep their established compatibility behavior.
|
|
746
746
|
// 0.3.1 deprecated the legacy `deepline enrich` command in favor of Plays.
|
|
747
|
-
version: "0.3.
|
|
747
|
+
version: "0.3.67",
|
|
748
748
|
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.",
|
|
749
749
|
packageCapabilities: {
|
|
750
750
|
updatePreferences: 1
|