@vm0/cli 9.111.13 → 9.111.14

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.
@@ -34652,7 +34652,7 @@ if (DSN) {
34652
34652
  Sentry.init({
34653
34653
  dsn: DSN,
34654
34654
  environment: process.env.SENTRY_ENVIRONMENT ?? "production",
34655
- release: "9.111.13",
34655
+ release: "9.111.14",
34656
34656
  sendDefaultPii: false,
34657
34657
  tracesSampleRate: 0,
34658
34658
  shutdownTimeout: 500,
@@ -34671,7 +34671,7 @@ if (DSN) {
34671
34671
  }
34672
34672
  });
34673
34673
  Sentry.setContext("cli", {
34674
- version: "9.111.13",
34674
+ version: "9.111.14",
34675
34675
  command: process.argv.slice(2).join(" ")
34676
34676
  });
34677
34677
  Sentry.setContext("runtime", {
@@ -73465,6 +73465,15 @@ var taskItemSchema = external_exports.object({
73465
73465
  createdAt: external_exports.string(),
73466
73466
  updatedAt: external_exports.string()
73467
73467
  });
73468
+ var archiveTaskBodySchema = external_exports.object({
73469
+ taskId: external_exports.string(),
73470
+ taskType: taskTypeSchema,
73471
+ runId: external_exports.string().nullable()
73472
+ });
73473
+ var unarchiveTaskBodySchema = external_exports.object({
73474
+ taskId: external_exports.string(),
73475
+ taskType: taskTypeSchema
73476
+ });
73468
73477
  var tasksContract = c46.router({
73469
73478
  list: {
73470
73479
  method: "GET",
@@ -73478,6 +73487,28 @@ var tasksContract = c46.router({
73478
73487
  401: apiErrorSchema
73479
73488
  },
73480
73489
  summary: "List unified tasks across all sources"
73490
+ },
73491
+ archive: {
73492
+ method: "POST",
73493
+ path: "/api/zero/tasks/archive",
73494
+ headers: authHeadersSchema,
73495
+ body: archiveTaskBodySchema,
73496
+ responses: {
73497
+ 200: external_exports.object({ ok: external_exports.literal(true) }),
73498
+ 401: apiErrorSchema
73499
+ },
73500
+ summary: "Archive a task (exclude from task list until new run arrives)"
73501
+ },
73502
+ unarchive: {
73503
+ method: "POST",
73504
+ path: "/api/zero/tasks/unarchive",
73505
+ headers: authHeadersSchema,
73506
+ body: unarchiveTaskBodySchema,
73507
+ responses: {
73508
+ 200: external_exports.object({ ok: external_exports.literal(true) }),
73509
+ 401: apiErrorSchema
73510
+ },
73511
+ summary: "Unarchive a task (restore to task list immediately)"
73481
73512
  }
73482
73513
  });
73483
73514
 
@@ -76211,4 +76242,4 @@ undici/lib/web/fetch/body.js:
76211
76242
  undici/lib/web/websocket/frame.js:
76212
76243
  (*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
76213
76244
  */
76214
- //# sourceMappingURL=chunk-INHTSSEU.js.map
76245
+ //# sourceMappingURL=chunk-5GIQKOJM.js.map