@vm0/cli 9.132.9 → 9.132.10

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.
@@ -66716,7 +66716,7 @@ if (DSN) {
66716
66716
  init2({
66717
66717
  dsn: DSN,
66718
66718
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
66719
- release: "9.132.9",
66719
+ release: "9.132.10",
66720
66720
  sendDefaultPii: false,
66721
66721
  tracesSampleRate: 0,
66722
66722
  shutdownTimeout: 500,
@@ -66735,7 +66735,7 @@ if (DSN) {
66735
66735
  }
66736
66736
  });
66737
66737
  setContext("cli", {
66738
- version: "9.132.9",
66738
+ version: "9.132.10",
66739
66739
  command: process.argv.slice(2).join(" ")
66740
66740
  });
66741
66741
  setContext("runtime", {
@@ -93570,7 +93570,7 @@ var runsByIdContract = c9.router({
93570
93570
  path: "/api/agent/runs/:id",
93571
93571
  headers: authHeadersSchema,
93572
93572
  pathParams: external_exports.object({
93573
- id: external_exports.string().min(1, "Run ID is required")
93573
+ id: external_exports.uuid("Run ID must be a valid UUID")
93574
93574
  }),
93575
93575
  responses: {
93576
93576
  200: getRunResponseSchema,
@@ -93596,7 +93596,7 @@ var runsCancelContract = c9.router({
93596
93596
  path: "/api/agent/runs/:id/cancel",
93597
93597
  headers: authHeadersSchema,
93598
93598
  pathParams: external_exports.object({
93599
- id: external_exports.string().min(1, "Run ID is required")
93599
+ id: external_exports.uuid("Run ID must be a valid UUID")
93600
93600
  }),
93601
93601
  body: external_exports.undefined(),
93602
93602
  responses: {
@@ -93619,7 +93619,7 @@ var runEventsContract = c9.router({
93619
93619
  path: "/api/agent/runs/:id/events",
93620
93620
  headers: authHeadersSchema,
93621
93621
  pathParams: external_exports.object({
93622
- id: external_exports.string().min(1, "Run ID is required")
93622
+ id: external_exports.uuid("Run ID must be a valid UUID")
93623
93623
  }),
93624
93624
  query: external_exports.object({
93625
93625
  since: external_exports.coerce.number().default(-1),
@@ -93707,7 +93707,7 @@ var runTelemetryContract = c9.router({
93707
93707
  path: "/api/agent/runs/:id/telemetry",
93708
93708
  headers: authHeadersSchema,
93709
93709
  pathParams: external_exports.object({
93710
- id: external_exports.string().min(1, "Run ID is required")
93710
+ id: external_exports.uuid("Run ID must be a valid UUID")
93711
93711
  }),
93712
93712
  responses: {
93713
93713
  200: telemetryResponseSchema,
@@ -93727,7 +93727,7 @@ var runSystemLogContract = c9.router({
93727
93727
  path: "/api/agent/runs/:id/telemetry/system-log",
93728
93728
  headers: authHeadersSchema,
93729
93729
  pathParams: external_exports.object({
93730
- id: external_exports.string().min(1, "Run ID is required")
93730
+ id: external_exports.uuid("Run ID must be a valid UUID")
93731
93731
  }),
93732
93732
  query: external_exports.object({
93733
93733
  since: external_exports.coerce.number().optional(),
@@ -93752,7 +93752,7 @@ var runMetricsContract = c9.router({
93752
93752
  path: "/api/agent/runs/:id/telemetry/metrics",
93753
93753
  headers: authHeadersSchema,
93754
93754
  pathParams: external_exports.object({
93755
- id: external_exports.string().min(1, "Run ID is required")
93755
+ id: external_exports.uuid("Run ID must be a valid UUID")
93756
93756
  }),
93757
93757
  query: external_exports.object({
93758
93758
  since: external_exports.coerce.number().optional(),
@@ -93777,7 +93777,7 @@ var runAgentEventsContract = c9.router({
93777
93777
  path: "/api/agent/runs/:id/telemetry/agent",
93778
93778
  headers: authHeadersSchema,
93779
93779
  pathParams: external_exports.object({
93780
- id: external_exports.string().min(1, "Run ID is required")
93780
+ id: external_exports.uuid("Run ID must be a valid UUID")
93781
93781
  }),
93782
93782
  query: external_exports.object({
93783
93783
  since: external_exports.coerce.number().optional(),
@@ -93802,7 +93802,7 @@ var runNetworkLogsContract = c9.router({
93802
93802
  path: "/api/agent/runs/:id/telemetry/network",
93803
93803
  headers: authHeadersSchema,
93804
93804
  pathParams: external_exports.object({
93805
- id: external_exports.string().min(1, "Run ID is required")
93805
+ id: external_exports.uuid("Run ID must be a valid UUID")
93806
93806
  }),
93807
93807
  query: external_exports.object({
93808
93808
  since: external_exports.coerce.number().optional(),
@@ -94186,6 +94186,7 @@ var webhookCompleteContract = c11.router({
94186
94186
  runId: external_exports.string().min(1, "runId is required"),
94187
94187
  exitCode: external_exports.number(),
94188
94188
  error: external_exports.string().optional(),
94189
+ lastEventSequence: external_exports.number().int().nonnegative().optional(),
94189
94190
  // Sandbox id the run executed against. Optional because a run that fails
94190
94191
  // before VM creation has no sandbox. Persisted to agent_runs.sandbox_id;
94191
94192
  // the 255-char cap matches the DB column (defense in depth).
@@ -94573,7 +94574,7 @@ var zeroRunsByIdContract = c12.router({
94573
94574
  path: "/api/zero/runs/:id",
94574
94575
  headers: authHeadersSchema,
94575
94576
  pathParams: external_exports.object({
94576
- id: external_exports.string().min(1, "Run ID is required")
94577
+ id: external_exports.uuid("Run ID must be a valid UUID")
94577
94578
  }),
94578
94579
  responses: {
94579
94580
  200: getRunResponseSchema,
@@ -94590,7 +94591,7 @@ var zeroRunsCancelContract = c12.router({
94590
94591
  path: "/api/zero/runs/:id/cancel",
94591
94592
  headers: authHeadersSchema,
94592
94593
  pathParams: external_exports.object({
94593
- id: external_exports.string().min(1, "Run ID is required")
94594
+ id: external_exports.uuid("Run ID must be a valid UUID")
94594
94595
  }),
94595
94596
  body: external_exports.undefined(),
94596
94597
  responses: {
@@ -94622,7 +94623,7 @@ var zeroRunAgentEventsContract = c12.router({
94622
94623
  path: "/api/zero/runs/:id/telemetry/agent",
94623
94624
  headers: authHeadersSchema,
94624
94625
  pathParams: external_exports.object({
94625
- id: external_exports.string().min(1, "Run ID is required")
94626
+ id: external_exports.uuid("Run ID must be a valid UUID")
94626
94627
  }),
94627
94628
  query: external_exports.object({
94628
94629
  since: external_exports.coerce.number().optional(),
@@ -94683,7 +94684,7 @@ var zeroRunContextContract = c12.router({
94683
94684
  path: "/api/zero/runs/:id/context",
94684
94685
  headers: authHeadersSchema,
94685
94686
  pathParams: external_exports.object({
94686
- id: external_exports.string().min(1, "Run ID is required")
94687
+ id: external_exports.uuid("Run ID must be a valid UUID")
94687
94688
  }),
94688
94689
  responses: {
94689
94690
  200: runContextResponseSchema,
@@ -94700,7 +94701,7 @@ var zeroRunNetworkLogsContract = c12.router({
94700
94701
  path: "/api/zero/runs/:id/network",
94701
94702
  headers: authHeadersSchema,
94702
94703
  pathParams: external_exports.object({
94703
- id: external_exports.string().min(1, "Run ID is required")
94704
+ id: external_exports.uuid("Run ID must be a valid UUID")
94704
94705
  }),
94705
94706
  query: external_exports.object({
94706
94707
  since: external_exports.coerce.number().optional(),
@@ -94725,7 +94726,7 @@ var zeroRunRunnerContract = c12.router({
94725
94726
  path: "/api/zero/runs/:id/runner",
94726
94727
  headers: authHeadersSchema,
94727
94728
  pathParams: external_exports.object({
94728
- id: external_exports.string().min(1, "Run ID is required")
94729
+ id: external_exports.uuid("Run ID must be a valid UUID")
94729
94730
  }),
94730
94731
  responses: {
94731
94732
  200: runRunnerResponseSchema,
@@ -98606,4 +98607,4 @@ undici/lib/web/fetch/body.js:
98606
98607
  undici/lib/web/websocket/frame.js:
98607
98608
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
98608
98609
  */
98609
- //# sourceMappingURL=chunk-MPUU27KS.js.map
98610
+ //# sourceMappingURL=chunk-PUKA5E32.js.map