deepline 0.3.66 → 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/cli/index.js +198 -136
- package/dist/cli/index.mjs +110 -48
- 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
|
@@ -748,6 +748,8 @@ export type MonitorListEntry = {
|
|
|
748
748
|
monitor_key?: string;
|
|
749
749
|
status?: string;
|
|
750
750
|
tool?: string;
|
|
751
|
+
/** Generic provider-authored event category for this deployed monitor. */
|
|
752
|
+
type?: string;
|
|
751
753
|
name?: string;
|
|
752
754
|
configured?: boolean;
|
|
753
755
|
active?: boolean;
|
|
@@ -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.67',
|
|
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: {
|
|
@@ -915,6 +915,8 @@ export interface PlayRunListItem {
|
|
|
915
915
|
startTime?: string | null;
|
|
916
916
|
/** Unix epoch milliseconds when the run started, returned by normalized V2 run summaries. */
|
|
917
917
|
startedAt?: number | string | null;
|
|
918
|
+
/** Unix epoch milliseconds when the run was created. */
|
|
919
|
+
createdAt?: number | string | null;
|
|
918
920
|
/** ISO 8601 timestamp when the run finished. */
|
|
919
921
|
closeTime?: string | null;
|
|
920
922
|
/** Unix epoch milliseconds when the run finished, returned by normalized V2 run summaries. */
|