@kici-dev/engine 0.1.24 → 0.1.26

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.
Files changed (136) hide show
  1. package/dist/approval/types.d.ts +1 -1
  2. package/dist/approval/types.js +1 -1
  3. package/dist/audit/access-log-policy.js +3 -2
  4. package/dist/audit/activity.d.ts +2 -0
  5. package/dist/audit/activity.js +15 -1
  6. package/dist/audit/retention-policy.js +3 -3
  7. package/dist/bundler/index.js +1 -1
  8. package/dist/bundler/rolldown-config.js +1 -1
  9. package/dist/check-mode.js +1 -1
  10. package/dist/dev-ops/operations.d.ts +56 -0
  11. package/dist/dev-ops/operations.js +135 -0
  12. package/dist/env/environment-allowlist.js +1 -1
  13. package/dist/environment/host-match.js +1 -1
  14. package/dist/environment/index.js +1 -1
  15. package/dist/environment/multi-env.js +1 -1
  16. package/dist/environment/scope-resolver.js +1 -1
  17. package/dist/environment/scope-template.js +1 -1
  18. package/dist/environment/types.js +1 -1
  19. package/dist/fanout/materialize.js +3 -3
  20. package/dist/index.d.ts +7 -1
  21. package/dist/index.js +16 -10
  22. package/dist/inputs/build.js +1 -1
  23. package/dist/inputs/coerce.js +1 -1
  24. package/dist/inputs/descriptor.js +1 -1
  25. package/dist/inputs/extract.js +1 -1
  26. package/dist/inputs/index.js +1 -1
  27. package/dist/inputs/schedule.js +1 -1
  28. package/dist/inventory.js +1 -1
  29. package/dist/labels/compile.js +1 -1
  30. package/dist/labels-match.js +1 -1
  31. package/dist/labels.js +2 -2
  32. package/dist/matrix/expand.js +1 -1
  33. package/dist/matrix/format.js +1 -1
  34. package/dist/mcp/fence.d.ts +22 -0
  35. package/dist/mcp/fence.js +65 -0
  36. package/dist/mcp/held-run-resolve.d.ts +52 -0
  37. package/dist/mcp/held-run-resolve.js +53 -0
  38. package/dist/mcp/tool-schemas.d.ts +38 -5
  39. package/dist/mcp/tool-schemas.js +38 -9
  40. package/dist/metrics/catalog-policy.js +1 -1
  41. package/dist/metrics/metric-catalog.generated.d.ts +85 -0
  42. package/dist/metrics/metric-catalog.generated.js +103 -1
  43. package/dist/protocol/analytics-events.js +1 -1
  44. package/dist/protocol/cluster-name.js +1 -1
  45. package/dist/protocol/dashboard-global-workflows.js +1 -1
  46. package/dist/protocol/dashboard-write-operations.d.ts +5 -1
  47. package/dist/protocol/dashboard-write-operations.js +13 -2
  48. package/dist/protocol/event-log-payload.js +1 -1
  49. package/dist/protocol/messages/access-log.d.ts +14 -5
  50. package/dist/protocol/messages/access-log.js +13 -1
  51. package/dist/protocol/messages/actor.d.ts +13 -0
  52. package/dist/protocol/messages/actor.js +25 -5
  53. package/dist/protocol/messages/agent-dev-ops.d.ts +118 -0
  54. package/dist/protocol/messages/agent-dev-ops.js +89 -0
  55. package/dist/protocol/messages/agent-run-result.d.ts +77 -2
  56. package/dist/protocol/messages/agent-run-result.js +44 -2
  57. package/dist/protocol/messages/auth.d.ts +1 -0
  58. package/dist/protocol/messages/auth.js +1 -1
  59. package/dist/protocol/messages/browser.js +1 -1
  60. package/dist/protocol/messages/capabilities.d.ts +1 -0
  61. package/dist/protocol/messages/capabilities.js +1 -1
  62. package/dist/protocol/messages/common.js +1 -1
  63. package/dist/protocol/messages/dashboard-global-workflows.d.ts +6 -0
  64. package/dist/protocol/messages/dashboard-global-workflows.js +1 -1
  65. package/dist/protocol/messages/dashboard.d.ts +634 -18
  66. package/dist/protocol/messages/dashboard.js +111 -12
  67. package/dist/protocol/messages/deployment-identity.js +1 -1
  68. package/dist/protocol/messages/event-log.js +1 -1
  69. package/dist/protocol/messages/execution-status.d.ts +15 -3
  70. package/dist/protocol/messages/execution-status.js +19 -4
  71. package/dist/protocol/messages/join.js +1 -1
  72. package/dist/protocol/messages/log-pull.js +1 -1
  73. package/dist/protocol/messages/oidc-mint.d.ts +51 -0
  74. package/dist/protocol/messages/oidc-mint.js +55 -0
  75. package/dist/protocol/messages/oidc-token-relay.d.ts +31 -4
  76. package/dist/protocol/messages/oidc-token-relay.js +22 -7
  77. package/dist/protocol/messages/orchestrator-agent.d.ts +45 -0
  78. package/dist/protocol/messages/orchestrator-agent.js +30 -2
  79. package/dist/protocol/messages/pat-kind.js +1 -1
  80. package/dist/protocol/messages/peer.js +1 -1
  81. package/dist/protocol/messages/platform-orchestrator.d.ts +292 -10
  82. package/dist/protocol/messages/platform-orchestrator.js +5 -2
  83. package/dist/protocol/messages/run-events.d.ts +3 -0
  84. package/dist/protocol/messages/run-events.js +1 -1
  85. package/dist/protocol/messages/scaler-event.js +1 -1
  86. package/dist/protocol/messages/source-registration.js +1 -1
  87. package/dist/protocol/source-origin.d.ts +20 -0
  88. package/dist/protocol/source-origin.js +21 -0
  89. package/dist/protocol/version.js +1 -1
  90. package/dist/provenance/attestation-origin.d.ts +18 -0
  91. package/dist/provenance/attestation-origin.js +22 -0
  92. package/dist/provenance/bundle.js +1 -1
  93. package/dist/provenance/dsse.js +1 -1
  94. package/dist/provenance/schema.d.ts +48 -0
  95. package/dist/provenance/schema.js +21 -7
  96. package/dist/provenance/statement-hash.d.ts +9 -0
  97. package/dist/provenance/statement-hash.js +17 -0
  98. package/dist/provenance/verify.d.ts +7 -0
  99. package/dist/provenance/verify.js +49 -10
  100. package/dist/provider/changed-files-fetcher.js +1 -1
  101. package/dist/provider/check-run-conclusion.js +1 -1
  102. package/dist/provider/check-status-poster.js +1 -1
  103. package/dist/provider/clone-token-provider.js +1 -1
  104. package/dist/provider/contributor-resolver.js +1 -1
  105. package/dist/provider/index.js +1 -1
  106. package/dist/provider/lock-file-fetcher.js +1 -1
  107. package/dist/provider/lock-file-parse-error.js +1 -1
  108. package/dist/provider/repo-url-builder.js +1 -1
  109. package/dist/provider/types.js +1 -1
  110. package/dist/provider/webhook-normalizer.js +1 -1
  111. package/dist/registration/registerable-trigger-type.d.ts +1 -1
  112. package/dist/registration/registerable-trigger-type.js +1 -1
  113. package/dist/{chunk-BTugEXQM.js → rolldown-runtime-ClRpJifh.js} +0 -1
  114. package/dist/scaler/resource-types.js +1 -1
  115. package/dist/scaler/scaler-backend-type.js +1 -1
  116. package/dist/secrets/index.d.ts +1 -1
  117. package/dist/secrets/index.js +1 -1
  118. package/dist/secrets/types.d.ts +0 -24
  119. package/dist/secrets/types.js +1 -1
  120. package/dist/state-machine/index.js +1 -1
  121. package/dist/state-machine/machine.js +1 -1
  122. package/dist/state-machine/types.js +1 -1
  123. package/dist/trigger/decision-trace.js +1 -1
  124. package/dist/trigger/jsonpath-matcher.js +1 -1
  125. package/dist/trigger/matcher.js +1 -1
  126. package/dist/trigger/trigger-event-type.js +1 -1
  127. package/dist/trigger/types.js +1 -1
  128. package/dist/webhook/signature.js +1 -1
  129. package/dist/webhook/webhook-url-format.d.ts +7 -0
  130. package/dist/webhook/webhook-url-format.js +11 -2
  131. package/dist/ws/close-codes.d.ts +8 -2
  132. package/dist/ws/close-codes.js +10 -4
  133. package/dist/ws/rate-limiter.js +1 -1
  134. package/dist/ws/ws-like.js +1 -1
  135. package/package.json +9 -1
  136. package/sbom.spdx.json +5 -5
@@ -14,6 +14,9 @@ export declare const dashboardRunDetailRequestSchema: z.ZodObject<{
14
14
  type: z.ZodLiteral<"api_key">;
15
15
  keyId: z.ZodString;
16
16
  ownerSub: z.ZodString;
17
+ agent: z.ZodOptional<z.ZodObject<{
18
+ label: z.ZodString;
19
+ }, z.core.$strip>>;
17
20
  }, z.core.$strip>, z.ZodObject<{
18
21
  type: z.ZodLiteral<"service_account">;
19
22
  id: z.ZodString;
@@ -47,6 +50,9 @@ export declare const dashboardRunStructuredRequestSchema: z.ZodObject<{
47
50
  type: z.ZodLiteral<"api_key">;
48
51
  keyId: z.ZodString;
49
52
  ownerSub: z.ZodString;
53
+ agent: z.ZodOptional<z.ZodObject<{
54
+ label: z.ZodString;
55
+ }, z.core.$strip>>;
50
56
  }, z.core.$strip>, z.ZodObject<{
51
57
  type: z.ZodLiteral<"service_account">;
52
58
  id: z.ZodString;
@@ -117,6 +123,7 @@ export declare const dashboardRunStructuredResponseSchema: z.ZodObject<{
117
123
  value: z.ZodString;
118
124
  }, z.core.$strip>>;
119
125
  triggeredBy: z.ZodNullable<z.ZodString>;
126
+ triggeredByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
120
127
  jobs: z.ZodArray<z.ZodObject<{
121
128
  jobId: z.ZodString;
122
129
  jobName: z.ZodObject<{
@@ -146,8 +153,8 @@ export declare const dashboardRunStructuredResponseSchema: z.ZodObject<{
146
153
  }, z.core.$strip>>;
147
154
  initFailure: z.ZodNullable<z.ZodObject<{
148
155
  scope: z.ZodEnum<{
149
- run: "run";
150
156
  job: "job";
157
+ run: "run";
151
158
  }>;
152
159
  category: z.ZodEnum<{
153
160
  secret_resolution: "secret_resolution";
@@ -240,6 +247,9 @@ export declare const dashboardStepLogsRequestSchema: z.ZodObject<{
240
247
  type: z.ZodLiteral<"api_key">;
241
248
  keyId: z.ZodString;
242
249
  ownerSub: z.ZodString;
250
+ agent: z.ZodOptional<z.ZodObject<{
251
+ label: z.ZodString;
252
+ }, z.core.$strip>>;
243
253
  }, z.core.$strip>, z.ZodObject<{
244
254
  type: z.ZodLiteral<"service_account">;
245
255
  id: z.ZodString;
@@ -255,6 +265,8 @@ export declare const dashboardStepLogsRequestSchema: z.ZodObject<{
255
265
  runId: z.ZodString;
256
266
  jobId: z.ZodString;
257
267
  stepIndex: z.ZodNumber;
268
+ cursor: z.ZodOptional<z.ZodString>;
269
+ limit: z.ZodOptional<z.ZodNumber>;
258
270
  }, z.core.$strip>;
259
271
  /** Job detail within a run detail response. */
260
272
  export declare const dashboardJobDetailSchema: z.ZodObject<{
@@ -273,12 +285,14 @@ export declare const dashboardJobDetailSchema: z.ZodObject<{
273
285
  errorMessage: z.ZodNullable<z.ZodString>;
274
286
  runsOnLabels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
275
287
  environments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
288
+ skippedEnvironments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
289
+ envWarning: z.ZodOptional<z.ZodNullable<z.ZodString>>;
276
290
  outputs: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
277
291
  secretOutputKeys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
278
292
  initFailure: z.ZodOptional<z.ZodObject<{
279
293
  scope: z.ZodEnum<{
280
- run: "run";
281
294
  job: "job";
295
+ run: "run";
282
296
  }>;
283
297
  category: z.ZodEnum<{
284
298
  secret_resolution: "secret_resolution";
@@ -356,12 +370,14 @@ export declare const dashboardRunDetailResponseSchema: z.ZodObject<{
356
370
  errorMessage: z.ZodNullable<z.ZodString>;
357
371
  runsOnLabels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
358
372
  environments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
373
+ skippedEnvironments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
374
+ envWarning: z.ZodOptional<z.ZodNullable<z.ZodString>>;
359
375
  outputs: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
360
376
  secretOutputKeys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
361
377
  initFailure: z.ZodOptional<z.ZodObject<{
362
378
  scope: z.ZodEnum<{
363
- run: "run";
364
379
  job: "job";
380
+ run: "run";
365
381
  }>;
366
382
  category: z.ZodEnum<{
367
383
  secret_resolution: "secret_resolution";
@@ -433,8 +449,8 @@ export declare const dashboardRunDetailResponseSchema: z.ZodObject<{
433
449
  }, z.core.$strip>>;
434
450
  initFailure: z.ZodOptional<z.ZodObject<{
435
451
  scope: z.ZodEnum<{
436
- run: "run";
437
452
  job: "job";
453
+ run: "run";
438
454
  }>;
439
455
  category: z.ZodEnum<{
440
456
  secret_resolution: "secret_resolution";
@@ -457,6 +473,7 @@ export declare const dashboardStepLogsResponseSchema: z.ZodObject<{
457
473
  requestId: z.ZodString;
458
474
  lines: z.ZodArray<z.ZodString>;
459
475
  totalLines: z.ZodNumber;
476
+ nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
460
477
  error: z.ZodOptional<z.ZodString>;
461
478
  }, z.core.$strip>;
462
479
  /** Request the build-provenance attestations for a run. */
@@ -474,6 +491,9 @@ export declare const dashboardAttestationsListRequestSchema: z.ZodObject<{
474
491
  type: z.ZodLiteral<"api_key">;
475
492
  keyId: z.ZodString;
476
493
  ownerSub: z.ZodString;
494
+ agent: z.ZodOptional<z.ZodObject<{
495
+ label: z.ZodString;
496
+ }, z.core.$strip>>;
477
497
  }, z.core.$strip>, z.ZodObject<{
478
498
  type: z.ZodLiteral<"service_account">;
479
499
  id: z.ZodString;
@@ -543,6 +563,16 @@ export declare const attestationListItemSchema: z.ZodObject<{
543
563
  unverifiable: "unverifiable";
544
564
  }>>;
545
565
  verifyReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
566
+ sourceOrigin: z.ZodOptional<z.ZodEnum<{
567
+ triggered: "triggered";
568
+ "run-remote": "run-remote";
569
+ }>>;
570
+ originOrgId: z.ZodOptional<z.ZodString>;
571
+ attestationOrigin: z.ZodOptional<z.ZodEnum<{
572
+ live: "live";
573
+ deferred: "deferred";
574
+ "offline-backfill": "offline-backfill";
575
+ }>>;
546
576
  }, z.core.$strip>;
547
577
  export type AttestationListItem = z.infer<typeof attestationListItemSchema>;
548
578
  /** Response with the run's attestations (correlates to dashboard.attestations.list). */
@@ -581,6 +611,16 @@ export declare const dashboardAttestationsListResponseSchema: z.ZodObject<{
581
611
  unverifiable: "unverifiable";
582
612
  }>>;
583
613
  verifyReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
614
+ sourceOrigin: z.ZodOptional<z.ZodEnum<{
615
+ triggered: "triggered";
616
+ "run-remote": "run-remote";
617
+ }>>;
618
+ originOrgId: z.ZodOptional<z.ZodString>;
619
+ attestationOrigin: z.ZodOptional<z.ZodEnum<{
620
+ live: "live";
621
+ deferred: "deferred";
622
+ "offline-backfill": "offline-backfill";
623
+ }>>;
584
624
  }, z.core.$strip>>;
585
625
  error: z.ZodOptional<z.ZodString>;
586
626
  }, z.core.$strip>;
@@ -609,6 +649,16 @@ export declare const attestationListSummarySchema: z.ZodObject<{
609
649
  verifyReason: z.ZodNullable<z.ZodString>;
610
650
  repository: z.ZodNullable<z.ZodString>;
611
651
  workflow: z.ZodNullable<z.ZodString>;
652
+ sourceOrigin: z.ZodOptional<z.ZodEnum<{
653
+ triggered: "triggered";
654
+ "run-remote": "run-remote";
655
+ }>>;
656
+ attestationOrigin: z.ZodOptional<z.ZodEnum<{
657
+ live: "live";
658
+ deferred: "deferred";
659
+ "offline-backfill": "offline-backfill";
660
+ }>>;
661
+ pending: z.ZodOptional<z.ZodBoolean>;
612
662
  }, z.core.$strip>;
613
663
  export type AttestationListSummary = z.infer<typeof attestationListSummarySchema>;
614
664
  /** Filters for the org-wide attestations list. */
@@ -643,6 +693,9 @@ export declare const dashboardAttestationsListAllRequestSchema: z.ZodObject<{
643
693
  type: z.ZodLiteral<"api_key">;
644
694
  keyId: z.ZodString;
645
695
  ownerSub: z.ZodString;
696
+ agent: z.ZodOptional<z.ZodObject<{
697
+ label: z.ZodString;
698
+ }, z.core.$strip>>;
646
699
  }, z.core.$strip>, z.ZodObject<{
647
700
  type: z.ZodLiteral<"service_account">;
648
701
  id: z.ZodString;
@@ -697,6 +750,16 @@ export declare const dashboardAttestationsListAllResponseSchema: z.ZodObject<{
697
750
  verifyReason: z.ZodNullable<z.ZodString>;
698
751
  repository: z.ZodNullable<z.ZodString>;
699
752
  workflow: z.ZodNullable<z.ZodString>;
753
+ sourceOrigin: z.ZodOptional<z.ZodEnum<{
754
+ triggered: "triggered";
755
+ "run-remote": "run-remote";
756
+ }>>;
757
+ attestationOrigin: z.ZodOptional<z.ZodEnum<{
758
+ live: "live";
759
+ deferred: "deferred";
760
+ "offline-backfill": "offline-backfill";
761
+ }>>;
762
+ pending: z.ZodOptional<z.ZodBoolean>;
700
763
  }, z.core.$strip>>;
701
764
  page: z.ZodNumber;
702
765
  pageSize: z.ZodNumber;
@@ -719,6 +782,9 @@ export declare const dashboardAttestationGetRequestSchema: z.ZodObject<{
719
782
  type: z.ZodLiteral<"api_key">;
720
783
  keyId: z.ZodString;
721
784
  ownerSub: z.ZodString;
785
+ agent: z.ZodOptional<z.ZodObject<{
786
+ label: z.ZodString;
787
+ }, z.core.$strip>>;
722
788
  }, z.core.$strip>, z.ZodObject<{
723
789
  type: z.ZodLiteral<"service_account">;
724
790
  id: z.ZodString;
@@ -770,10 +836,62 @@ export declare const dashboardAttestationGetResponseSchema: z.ZodObject<{
770
836
  unverifiable: "unverifiable";
771
837
  }>>;
772
838
  verifyReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
839
+ sourceOrigin: z.ZodOptional<z.ZodEnum<{
840
+ triggered: "triggered";
841
+ "run-remote": "run-remote";
842
+ }>>;
843
+ originOrgId: z.ZodOptional<z.ZodString>;
844
+ attestationOrigin: z.ZodOptional<z.ZodEnum<{
845
+ live: "live";
846
+ deferred: "deferred";
847
+ "offline-backfill": "offline-backfill";
848
+ }>>;
773
849
  }, z.core.$strip>>;
774
850
  error: z.ZodOptional<z.ZodString>;
775
851
  }, z.core.$strip>;
776
852
  export type DashboardAttestationGetResponse = z.infer<typeof dashboardAttestationGetResponseSchema>;
853
+ /** Request an on-demand drain of the deferred-attestation outbox (optionally one run). */
854
+ export declare const dashboardAttestationRetryRequestSchema: z.ZodObject<{
855
+ type: z.ZodLiteral<"dashboard.attestation.retry">;
856
+ requestId: z.ZodString;
857
+ actor: z.ZodDiscriminatedUnion<[z.ZodObject<{
858
+ type: z.ZodLiteral<"user">;
859
+ sub: z.ZodString;
860
+ agent: z.ZodOptional<z.ZodObject<{
861
+ patId: z.ZodString;
862
+ label: z.ZodString;
863
+ }, z.core.$strip>>;
864
+ }, z.core.$strip>, z.ZodObject<{
865
+ type: z.ZodLiteral<"api_key">;
866
+ keyId: z.ZodString;
867
+ ownerSub: z.ZodString;
868
+ agent: z.ZodOptional<z.ZodObject<{
869
+ label: z.ZodString;
870
+ }, z.core.$strip>>;
871
+ }, z.core.$strip>, z.ZodObject<{
872
+ type: z.ZodLiteral<"service_account">;
873
+ id: z.ZodString;
874
+ }, z.core.$strip>, z.ZodObject<{
875
+ type: z.ZodLiteral<"platform_operator">;
876
+ sub: z.ZodString;
877
+ reason: z.ZodString;
878
+ sessionId: z.ZodOptional<z.ZodString>;
879
+ }, z.core.$strip>, z.ZodObject<{
880
+ type: z.ZodLiteral<"system">;
881
+ component: z.ZodString;
882
+ }, z.core.$strip>], "type">;
883
+ runId: z.ZodOptional<z.ZodString>;
884
+ }, z.core.$strip>;
885
+ export type DashboardAttestationRetryRequest = z.infer<typeof dashboardAttestationRetryRequestSchema>;
886
+ /** Response with the drain counts. */
887
+ export declare const dashboardAttestationRetryResponseSchema: z.ZodObject<{
888
+ type: z.ZodLiteral<"dashboard.attestation.retry.response">;
889
+ requestId: z.ZodString;
890
+ minted: z.ZodNumber;
891
+ stillPending: z.ZodNumber;
892
+ error: z.ZodOptional<z.ZodString>;
893
+ }, z.core.$strip>;
894
+ export type DashboardAttestationRetryResponse = z.infer<typeof dashboardAttestationRetryResponseSchema>;
777
895
  /**
778
896
  * Run-summary projection from the orchestrator's execution_runs table.
779
897
  *
@@ -802,7 +920,9 @@ export declare const dashboardRunSummarySchema: z.ZodObject<{
802
920
  parentRunId: z.ZodOptional<z.ZodString>;
803
921
  originalRunId: z.ZodOptional<z.ZodString>;
804
922
  triggeredBy: z.ZodOptional<z.ZodString>;
923
+ triggeredByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
805
924
  cancelledBy: z.ZodOptional<z.ZodString>;
925
+ cancelledByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
806
926
  failureReason: z.ZodOptional<z.ZodString>;
807
927
  hadCompileJob: z.ZodOptional<z.ZodBoolean>;
808
928
  compileJobId: z.ZodOptional<z.ZodString>;
@@ -829,6 +949,9 @@ export declare const dashboardRunsListRequestSchema: z.ZodObject<{
829
949
  type: z.ZodLiteral<"api_key">;
830
950
  keyId: z.ZodString;
831
951
  ownerSub: z.ZodString;
952
+ agent: z.ZodOptional<z.ZodObject<{
953
+ label: z.ZodString;
954
+ }, z.core.$strip>>;
832
955
  }, z.core.$strip>, z.ZodObject<{
833
956
  type: z.ZodLiteral<"service_account">;
834
957
  id: z.ZodString;
@@ -870,7 +993,9 @@ export declare const dashboardRunsListResponseSchema: z.ZodObject<{
870
993
  parentRunId: z.ZodOptional<z.ZodString>;
871
994
  originalRunId: z.ZodOptional<z.ZodString>;
872
995
  triggeredBy: z.ZodOptional<z.ZodString>;
996
+ triggeredByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
873
997
  cancelledBy: z.ZodOptional<z.ZodString>;
998
+ cancelledByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
874
999
  failureReason: z.ZodOptional<z.ZodString>;
875
1000
  hadCompileJob: z.ZodOptional<z.ZodBoolean>;
876
1001
  compileJobId: z.ZodOptional<z.ZodString>;
@@ -900,6 +1025,9 @@ export declare const dashboardRunsFiltersRequestSchema: z.ZodObject<{
900
1025
  type: z.ZodLiteral<"api_key">;
901
1026
  keyId: z.ZodString;
902
1027
  ownerSub: z.ZodString;
1028
+ agent: z.ZodOptional<z.ZodObject<{
1029
+ label: z.ZodString;
1030
+ }, z.core.$strip>>;
903
1031
  }, z.core.$strip>, z.ZodObject<{
904
1032
  type: z.ZodLiteral<"service_account">;
905
1033
  id: z.ZodString;
@@ -960,6 +1088,9 @@ export declare const dashboardSourcesListRequestSchema: z.ZodObject<{
960
1088
  type: z.ZodLiteral<"api_key">;
961
1089
  keyId: z.ZodString;
962
1090
  ownerSub: z.ZodString;
1091
+ agent: z.ZodOptional<z.ZodObject<{
1092
+ label: z.ZodString;
1093
+ }, z.core.$strip>>;
963
1094
  }, z.core.$strip>, z.ZodObject<{
964
1095
  type: z.ZodLiteral<"service_account">;
965
1096
  id: z.ZodString;
@@ -1012,6 +1143,9 @@ export declare const runRerunRequestSchema: z.ZodObject<{
1012
1143
  type: z.ZodLiteral<"api_key">;
1013
1144
  keyId: z.ZodString;
1014
1145
  ownerSub: z.ZodString;
1146
+ agent: z.ZodOptional<z.ZodObject<{
1147
+ label: z.ZodString;
1148
+ }, z.core.$strip>>;
1015
1149
  }, z.core.$strip>, z.ZodObject<{
1016
1150
  type: z.ZodLiteral<"service_account">;
1017
1151
  id: z.ZodString;
@@ -1042,6 +1176,9 @@ export declare const manualScheduleRequestSchema: z.ZodObject<{
1042
1176
  type: z.ZodLiteral<"api_key">;
1043
1177
  keyId: z.ZodString;
1044
1178
  ownerSub: z.ZodString;
1179
+ agent: z.ZodOptional<z.ZodObject<{
1180
+ label: z.ZodString;
1181
+ }, z.core.$strip>>;
1045
1182
  }, z.core.$strip>, z.ZodObject<{
1046
1183
  type: z.ZodLiteral<"service_account">;
1047
1184
  id: z.ZodString;
@@ -1055,6 +1192,7 @@ export declare const manualScheduleRequestSchema: z.ZodObject<{
1055
1192
  component: z.ZodString;
1056
1193
  }, z.core.$strip>], "type">;
1057
1194
  registrationId: z.ZodString;
1195
+ triggeredByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1058
1196
  }, z.core.$strip>;
1059
1197
  /** Request to cancel a running run. */
1060
1198
  export declare const runCancelRequestSchema: z.ZodObject<{
@@ -1071,6 +1209,9 @@ export declare const runCancelRequestSchema: z.ZodObject<{
1071
1209
  type: z.ZodLiteral<"api_key">;
1072
1210
  keyId: z.ZodString;
1073
1211
  ownerSub: z.ZodString;
1212
+ agent: z.ZodOptional<z.ZodObject<{
1213
+ label: z.ZodString;
1214
+ }, z.core.$strip>>;
1074
1215
  }, z.core.$strip>, z.ZodObject<{
1075
1216
  type: z.ZodLiteral<"service_account">;
1076
1217
  id: z.ZodString;
@@ -1101,6 +1242,9 @@ export declare const dashboardPayloadRequestSchema: z.ZodObject<{
1101
1242
  type: z.ZodLiteral<"api_key">;
1102
1243
  keyId: z.ZodString;
1103
1244
  ownerSub: z.ZodString;
1245
+ agent: z.ZodOptional<z.ZodObject<{
1246
+ label: z.ZodString;
1247
+ }, z.core.$strip>>;
1104
1248
  }, z.core.$strip>, z.ZodObject<{
1105
1249
  type: z.ZodLiteral<"service_account">;
1106
1250
  id: z.ZodString;
@@ -1171,6 +1315,9 @@ export declare const dashboardEventLogListRequestSchema: z.ZodObject<{
1171
1315
  type: z.ZodLiteral<"api_key">;
1172
1316
  keyId: z.ZodString;
1173
1317
  ownerSub: z.ZodString;
1318
+ agent: z.ZodOptional<z.ZodObject<{
1319
+ label: z.ZodString;
1320
+ }, z.core.$strip>>;
1174
1321
  }, z.core.$strip>, z.ZodObject<{
1175
1322
  type: z.ZodLiteral<"service_account">;
1176
1323
  id: z.ZodString;
@@ -1254,6 +1401,9 @@ export declare const dashboardEventLogDetailRequestSchema: z.ZodObject<{
1254
1401
  type: z.ZodLiteral<"api_key">;
1255
1402
  keyId: z.ZodString;
1256
1403
  ownerSub: z.ZodString;
1404
+ agent: z.ZodOptional<z.ZodObject<{
1405
+ label: z.ZodString;
1406
+ }, z.core.$strip>>;
1257
1407
  }, z.core.$strip>, z.ZodObject<{
1258
1408
  type: z.ZodLiteral<"service_account">;
1259
1409
  id: z.ZodString;
@@ -1356,6 +1506,9 @@ export declare const dashboardEventLogPayloadStreamRequestSchema: z.ZodObject<{
1356
1506
  type: z.ZodLiteral<"api_key">;
1357
1507
  keyId: z.ZodString;
1358
1508
  ownerSub: z.ZodString;
1509
+ agent: z.ZodOptional<z.ZodObject<{
1510
+ label: z.ZodString;
1511
+ }, z.core.$strip>>;
1359
1512
  }, z.core.$strip>, z.ZodObject<{
1360
1513
  type: z.ZodLiteral<"service_account">;
1361
1514
  id: z.ZodString;
@@ -1455,6 +1608,9 @@ export declare const dashboardEventDlqListRequestSchema: z.ZodObject<{
1455
1608
  type: z.ZodLiteral<"api_key">;
1456
1609
  keyId: z.ZodString;
1457
1610
  ownerSub: z.ZodString;
1611
+ agent: z.ZodOptional<z.ZodObject<{
1612
+ label: z.ZodString;
1613
+ }, z.core.$strip>>;
1458
1614
  }, z.core.$strip>, z.ZodObject<{
1459
1615
  type: z.ZodLiteral<"service_account">;
1460
1616
  id: z.ZodString;
@@ -1507,6 +1663,9 @@ export declare const dashboardEventDlqCountRequestSchema: z.ZodObject<{
1507
1663
  type: z.ZodLiteral<"api_key">;
1508
1664
  keyId: z.ZodString;
1509
1665
  ownerSub: z.ZodString;
1666
+ agent: z.ZodOptional<z.ZodObject<{
1667
+ label: z.ZodString;
1668
+ }, z.core.$strip>>;
1510
1669
  }, z.core.$strip>, z.ZodObject<{
1511
1670
  type: z.ZodLiteral<"service_account">;
1512
1671
  id: z.ZodString;
@@ -1542,6 +1701,9 @@ export declare const dashboardEventDlqRetryRequestSchema: z.ZodObject<{
1542
1701
  type: z.ZodLiteral<"api_key">;
1543
1702
  keyId: z.ZodString;
1544
1703
  ownerSub: z.ZodString;
1704
+ agent: z.ZodOptional<z.ZodObject<{
1705
+ label: z.ZodString;
1706
+ }, z.core.$strip>>;
1545
1707
  }, z.core.$strip>, z.ZodObject<{
1546
1708
  type: z.ZodLiteral<"service_account">;
1547
1709
  id: z.ZodString;
@@ -1578,6 +1740,9 @@ export declare const dashboardEventDlqDiscardRequestSchema: z.ZodObject<{
1578
1740
  type: z.ZodLiteral<"api_key">;
1579
1741
  keyId: z.ZodString;
1580
1742
  ownerSub: z.ZodString;
1743
+ agent: z.ZodOptional<z.ZodObject<{
1744
+ label: z.ZodString;
1745
+ }, z.core.$strip>>;
1581
1746
  }, z.core.$strip>, z.ZodObject<{
1582
1747
  type: z.ZodLiteral<"service_account">;
1583
1748
  id: z.ZodString;
@@ -1614,6 +1779,9 @@ export declare const envListRequestSchema: z.ZodObject<{
1614
1779
  type: z.ZodLiteral<"api_key">;
1615
1780
  keyId: z.ZodString;
1616
1781
  ownerSub: z.ZodString;
1782
+ agent: z.ZodOptional<z.ZodObject<{
1783
+ label: z.ZodString;
1784
+ }, z.core.$strip>>;
1617
1785
  }, z.core.$strip>, z.ZodObject<{
1618
1786
  type: z.ZodLiteral<"service_account">;
1619
1787
  id: z.ZodString;
@@ -1663,6 +1831,9 @@ export declare const envGetRequestSchema: z.ZodObject<{
1663
1831
  type: z.ZodLiteral<"api_key">;
1664
1832
  keyId: z.ZodString;
1665
1833
  ownerSub: z.ZodString;
1834
+ agent: z.ZodOptional<z.ZodObject<{
1835
+ label: z.ZodString;
1836
+ }, z.core.$strip>>;
1666
1837
  }, z.core.$strip>, z.ZodObject<{
1667
1838
  type: z.ZodLiteral<"service_account">;
1668
1839
  id: z.ZodString;
@@ -1719,6 +1890,9 @@ export declare const envCreateRequestSchema: z.ZodObject<{
1719
1890
  type: z.ZodLiteral<"api_key">;
1720
1891
  keyId: z.ZodString;
1721
1892
  ownerSub: z.ZodString;
1893
+ agent: z.ZodOptional<z.ZodObject<{
1894
+ label: z.ZodString;
1895
+ }, z.core.$strip>>;
1722
1896
  }, z.core.$strip>, z.ZodObject<{
1723
1897
  type: z.ZodLiteral<"service_account">;
1724
1898
  id: z.ZodString;
@@ -1763,6 +1937,9 @@ export declare const envUpdateRequestSchema: z.ZodObject<{
1763
1937
  type: z.ZodLiteral<"api_key">;
1764
1938
  keyId: z.ZodString;
1765
1939
  ownerSub: z.ZodString;
1940
+ agent: z.ZodOptional<z.ZodObject<{
1941
+ label: z.ZodString;
1942
+ }, z.core.$strip>>;
1766
1943
  }, z.core.$strip>, z.ZodObject<{
1767
1944
  type: z.ZodLiteral<"service_account">;
1768
1945
  id: z.ZodString;
@@ -1810,6 +1987,9 @@ export declare const envTestAccessSetRequestSchema: z.ZodObject<{
1810
1987
  type: z.ZodLiteral<"api_key">;
1811
1988
  keyId: z.ZodString;
1812
1989
  ownerSub: z.ZodString;
1990
+ agent: z.ZodOptional<z.ZodObject<{
1991
+ label: z.ZodString;
1992
+ }, z.core.$strip>>;
1813
1993
  }, z.core.$strip>, z.ZodObject<{
1814
1994
  type: z.ZodLiteral<"service_account">;
1815
1995
  id: z.ZodString;
@@ -1840,6 +2020,9 @@ export declare const envDeleteRequestSchema: z.ZodObject<{
1840
2020
  type: z.ZodLiteral<"api_key">;
1841
2021
  keyId: z.ZodString;
1842
2022
  ownerSub: z.ZodString;
2023
+ agent: z.ZodOptional<z.ZodObject<{
2024
+ label: z.ZodString;
2025
+ }, z.core.$strip>>;
1843
2026
  }, z.core.$strip>, z.ZodObject<{
1844
2027
  type: z.ZodLiteral<"service_account">;
1845
2028
  id: z.ZodString;
@@ -1883,6 +2066,9 @@ export declare const envVarsListRequestSchema: z.ZodObject<{
1883
2066
  type: z.ZodLiteral<"api_key">;
1884
2067
  keyId: z.ZodString;
1885
2068
  ownerSub: z.ZodString;
2069
+ agent: z.ZodOptional<z.ZodObject<{
2070
+ label: z.ZodString;
2071
+ }, z.core.$strip>>;
1886
2072
  }, z.core.$strip>, z.ZodObject<{
1887
2073
  type: z.ZodLiteral<"service_account">;
1888
2074
  id: z.ZodString;
@@ -1922,6 +2108,9 @@ export declare const envVarSetRequestSchema: z.ZodObject<{
1922
2108
  type: z.ZodLiteral<"api_key">;
1923
2109
  keyId: z.ZodString;
1924
2110
  ownerSub: z.ZodString;
2111
+ agent: z.ZodOptional<z.ZodObject<{
2112
+ label: z.ZodString;
2113
+ }, z.core.$strip>>;
1925
2114
  }, z.core.$strip>, z.ZodObject<{
1926
2115
  type: z.ZodLiteral<"service_account">;
1927
2116
  id: z.ZodString;
@@ -1954,6 +2143,9 @@ export declare const envVarDeleteRequestSchema: z.ZodObject<{
1954
2143
  type: z.ZodLiteral<"api_key">;
1955
2144
  keyId: z.ZodString;
1956
2145
  ownerSub: z.ZodString;
2146
+ agent: z.ZodOptional<z.ZodObject<{
2147
+ label: z.ZodString;
2148
+ }, z.core.$strip>>;
1957
2149
  }, z.core.$strip>, z.ZodObject<{
1958
2150
  type: z.ZodLiteral<"service_account">;
1959
2151
  id: z.ZodString;
@@ -1984,6 +2176,9 @@ export declare const envSourceOverridesListRequestSchema: z.ZodObject<{
1984
2176
  type: z.ZodLiteral<"api_key">;
1985
2177
  keyId: z.ZodString;
1986
2178
  ownerSub: z.ZodString;
2179
+ agent: z.ZodOptional<z.ZodObject<{
2180
+ label: z.ZodString;
2181
+ }, z.core.$strip>>;
1987
2182
  }, z.core.$strip>, z.ZodObject<{
1988
2183
  type: z.ZodLiteral<"service_account">;
1989
2184
  id: z.ZodString;
@@ -2014,6 +2209,9 @@ export declare const envSourceOverrideSetRequestSchema: z.ZodObject<{
2014
2209
  type: z.ZodLiteral<"api_key">;
2015
2210
  keyId: z.ZodString;
2016
2211
  ownerSub: z.ZodString;
2212
+ agent: z.ZodOptional<z.ZodObject<{
2213
+ label: z.ZodString;
2214
+ }, z.core.$strip>>;
2017
2215
  }, z.core.$strip>, z.ZodObject<{
2018
2216
  type: z.ZodLiteral<"service_account">;
2019
2217
  id: z.ZodString;
@@ -2046,6 +2244,9 @@ export declare const envSourceOverrideDeleteRequestSchema: z.ZodObject<{
2046
2244
  type: z.ZodLiteral<"api_key">;
2047
2245
  keyId: z.ZodString;
2048
2246
  ownerSub: z.ZodString;
2247
+ agent: z.ZodOptional<z.ZodObject<{
2248
+ label: z.ZodString;
2249
+ }, z.core.$strip>>;
2049
2250
  }, z.core.$strip>, z.ZodObject<{
2050
2251
  type: z.ZodLiteral<"service_account">;
2051
2252
  id: z.ZodString;
@@ -2087,6 +2288,9 @@ export declare const envBindingsListRequestSchema: z.ZodObject<{
2087
2288
  type: z.ZodLiteral<"api_key">;
2088
2289
  keyId: z.ZodString;
2089
2290
  ownerSub: z.ZodString;
2291
+ agent: z.ZodOptional<z.ZodObject<{
2292
+ label: z.ZodString;
2293
+ }, z.core.$strip>>;
2090
2294
  }, z.core.$strip>, z.ZodObject<{
2091
2295
  type: z.ZodLiteral<"service_account">;
2092
2296
  id: z.ZodString;
@@ -2116,6 +2320,9 @@ export declare const envBindingsSetRequestSchema: z.ZodObject<{
2116
2320
  type: z.ZodLiteral<"api_key">;
2117
2321
  keyId: z.ZodString;
2118
2322
  ownerSub: z.ZodString;
2323
+ agent: z.ZodOptional<z.ZodObject<{
2324
+ label: z.ZodString;
2325
+ }, z.core.$strip>>;
2119
2326
  }, z.core.$strip>, z.ZodObject<{
2120
2327
  type: z.ZodLiteral<"service_account">;
2121
2328
  id: z.ZodString;
@@ -2149,6 +2356,9 @@ export declare const envSecretsListRequestSchema: z.ZodObject<{
2149
2356
  type: z.ZodLiteral<"api_key">;
2150
2357
  keyId: z.ZodString;
2151
2358
  ownerSub: z.ZodString;
2359
+ agent: z.ZodOptional<z.ZodObject<{
2360
+ label: z.ZodString;
2361
+ }, z.core.$strip>>;
2152
2362
  }, z.core.$strip>, z.ZodObject<{
2153
2363
  type: z.ZodLiteral<"service_account">;
2154
2364
  id: z.ZodString;
@@ -2177,6 +2387,9 @@ export declare const envSecretSetRequestSchema: z.ZodObject<{
2177
2387
  type: z.ZodLiteral<"api_key">;
2178
2388
  keyId: z.ZodString;
2179
2389
  ownerSub: z.ZodString;
2390
+ agent: z.ZodOptional<z.ZodObject<{
2391
+ label: z.ZodString;
2392
+ }, z.core.$strip>>;
2180
2393
  }, z.core.$strip>, z.ZodObject<{
2181
2394
  type: z.ZodLiteral<"service_account">;
2182
2395
  id: z.ZodString;
@@ -2208,6 +2421,9 @@ export declare const envSecretDeleteRequestSchema: z.ZodObject<{
2208
2421
  type: z.ZodLiteral<"api_key">;
2209
2422
  keyId: z.ZodString;
2210
2423
  ownerSub: z.ZodString;
2424
+ agent: z.ZodOptional<z.ZodObject<{
2425
+ label: z.ZodString;
2426
+ }, z.core.$strip>>;
2211
2427
  }, z.core.$strip>, z.ZodObject<{
2212
2428
  type: z.ZodLiteral<"service_account">;
2213
2429
  id: z.ZodString;
@@ -2238,6 +2454,9 @@ export declare const envSecretScopeCreateRequestSchema: z.ZodObject<{
2238
2454
  type: z.ZodLiteral<"api_key">;
2239
2455
  keyId: z.ZodString;
2240
2456
  ownerSub: z.ZodString;
2457
+ agent: z.ZodOptional<z.ZodObject<{
2458
+ label: z.ZodString;
2459
+ }, z.core.$strip>>;
2241
2460
  }, z.core.$strip>, z.ZodObject<{
2242
2461
  type: z.ZodLiteral<"service_account">;
2243
2462
  id: z.ZodString;
@@ -2267,6 +2486,9 @@ export declare const envSecretScopeRenameRequestSchema: z.ZodObject<{
2267
2486
  type: z.ZodLiteral<"api_key">;
2268
2487
  keyId: z.ZodString;
2269
2488
  ownerSub: z.ZodString;
2489
+ agent: z.ZodOptional<z.ZodObject<{
2490
+ label: z.ZodString;
2491
+ }, z.core.$strip>>;
2270
2492
  }, z.core.$strip>, z.ZodObject<{
2271
2493
  type: z.ZodLiteral<"service_account">;
2272
2494
  id: z.ZodString;
@@ -2297,6 +2519,9 @@ export declare const envSecretScopeDeleteRequestSchema: z.ZodObject<{
2297
2519
  type: z.ZodLiteral<"api_key">;
2298
2520
  keyId: z.ZodString;
2299
2521
  ownerSub: z.ZodString;
2522
+ agent: z.ZodOptional<z.ZodObject<{
2523
+ label: z.ZodString;
2524
+ }, z.core.$strip>>;
2300
2525
  }, z.core.$strip>, z.ZodObject<{
2301
2526
  type: z.ZodLiteral<"service_account">;
2302
2527
  id: z.ZodString;
@@ -2311,7 +2536,7 @@ export declare const envSecretScopeDeleteRequestSchema: z.ZodObject<{
2311
2536
  }, z.core.$strip>], "type">;
2312
2537
  scope: z.ZodString;
2313
2538
  }, z.core.$strip>;
2314
- /** Fetch runs that targeted a specific environment. */
2539
+ /** Fetch runs that targeted a specific environment, keyed by environment id. */
2315
2540
  export declare const envHistoryRequestSchema: z.ZodObject<{
2316
2541
  type: z.ZodLiteral<"dashboard.environments.history">;
2317
2542
  requestId: z.ZodString;
@@ -2326,6 +2551,9 @@ export declare const envHistoryRequestSchema: z.ZodObject<{
2326
2551
  type: z.ZodLiteral<"api_key">;
2327
2552
  keyId: z.ZodString;
2328
2553
  ownerSub: z.ZodString;
2554
+ agent: z.ZodOptional<z.ZodObject<{
2555
+ label: z.ZodString;
2556
+ }, z.core.$strip>>;
2329
2557
  }, z.core.$strip>, z.ZodObject<{
2330
2558
  type: z.ZodLiteral<"service_account">;
2331
2559
  id: z.ZodString;
@@ -2338,7 +2566,7 @@ export declare const envHistoryRequestSchema: z.ZodObject<{
2338
2566
  type: z.ZodLiteral<"system">;
2339
2567
  component: z.ZodString;
2340
2568
  }, z.core.$strip>], "type">;
2341
- environmentName: z.ZodString;
2569
+ environmentId: z.ZodString;
2342
2570
  limit: z.ZodOptional<z.ZodNumber>;
2343
2571
  offset: z.ZodOptional<z.ZodNumber>;
2344
2572
  }, z.core.$strip>;
@@ -2371,6 +2599,9 @@ export declare const heldRunsListRequestSchema: z.ZodObject<{
2371
2599
  type: z.ZodLiteral<"api_key">;
2372
2600
  keyId: z.ZodString;
2373
2601
  ownerSub: z.ZodString;
2602
+ agent: z.ZodOptional<z.ZodObject<{
2603
+ label: z.ZodString;
2604
+ }, z.core.$strip>>;
2374
2605
  }, z.core.$strip>, z.ZodObject<{
2375
2606
  type: z.ZodLiteral<"service_account">;
2376
2607
  id: z.ZodString;
@@ -2394,6 +2625,7 @@ export declare const heldRunsListRequestSchema: z.ZodObject<{
2394
2625
  security: "security";
2395
2626
  }>>;
2396
2627
  runId: z.ZodOptional<z.ZodString>;
2628
+ orgId: z.ZodOptional<z.ZodString>;
2397
2629
  }, z.core.$strip>;
2398
2630
  declare const heldRunsListResponseSchema: z.ZodObject<{
2399
2631
  type: z.ZodLiteral<"dashboard.held-runs.list.response">;
@@ -2423,8 +2655,8 @@ declare const heldRunsListResponseSchema: z.ZodObject<{
2423
2655
  trustTier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2424
2656
  jobId: z.ZodOptional<z.ZodString>;
2425
2657
  holdScope: z.ZodOptional<z.ZodEnum<{
2426
- job: "job";
2427
2658
  workflow: "workflow";
2659
+ job: "job";
2428
2660
  step: "step";
2429
2661
  }>>;
2430
2662
  stepIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -2471,6 +2703,9 @@ export declare const heldRunApproveRequestSchema: z.ZodObject<{
2471
2703
  type: z.ZodLiteral<"api_key">;
2472
2704
  keyId: z.ZodString;
2473
2705
  ownerSub: z.ZodString;
2706
+ agent: z.ZodOptional<z.ZodObject<{
2707
+ label: z.ZodString;
2708
+ }, z.core.$strip>>;
2474
2709
  }, z.core.$strip>, z.ZodObject<{
2475
2710
  type: z.ZodLiteral<"service_account">;
2476
2711
  id: z.ZodString;
@@ -2485,6 +2720,7 @@ export declare const heldRunApproveRequestSchema: z.ZodObject<{
2485
2720
  }, z.core.$strip>], "type">;
2486
2721
  heldRunId: z.ZodString;
2487
2722
  autoApprove: z.ZodOptional<z.ZodBoolean>;
2723
+ orgId: z.ZodOptional<z.ZodString>;
2488
2724
  }, z.core.$strip>;
2489
2725
  /** Reject a held run. */
2490
2726
  export declare const heldRunRejectRequestSchema: z.ZodObject<{
@@ -2501,6 +2737,9 @@ export declare const heldRunRejectRequestSchema: z.ZodObject<{
2501
2737
  type: z.ZodLiteral<"api_key">;
2502
2738
  keyId: z.ZodString;
2503
2739
  ownerSub: z.ZodString;
2740
+ agent: z.ZodOptional<z.ZodObject<{
2741
+ label: z.ZodString;
2742
+ }, z.core.$strip>>;
2504
2743
  }, z.core.$strip>, z.ZodObject<{
2505
2744
  type: z.ZodLiteral<"service_account">;
2506
2745
  id: z.ZodString;
@@ -2515,6 +2754,7 @@ export declare const heldRunRejectRequestSchema: z.ZodObject<{
2515
2754
  }, z.core.$strip>], "type">;
2516
2755
  heldRunId: z.ZodString;
2517
2756
  reason: z.ZodOptional<z.ZodString>;
2757
+ orgId: z.ZodOptional<z.ZodString>;
2518
2758
  }, z.core.$strip>;
2519
2759
  /** Request diagnostics info (orchestrator metadata + agent list) from orchestrator. */
2520
2760
  export declare const dashboardDiagnosticsRequestSchema: z.ZodObject<{
@@ -2531,6 +2771,9 @@ export declare const dashboardDiagnosticsRequestSchema: z.ZodObject<{
2531
2771
  type: z.ZodLiteral<"api_key">;
2532
2772
  keyId: z.ZodString;
2533
2773
  ownerSub: z.ZodString;
2774
+ agent: z.ZodOptional<z.ZodObject<{
2775
+ label: z.ZodString;
2776
+ }, z.core.$strip>>;
2534
2777
  }, z.core.$strip>, z.ZodObject<{
2535
2778
  type: z.ZodLiteral<"service_account">;
2536
2779
  id: z.ZodString;
@@ -2601,6 +2844,9 @@ export declare const dashboardFleetHostsRequestSchema: z.ZodObject<{
2601
2844
  type: z.ZodLiteral<"api_key">;
2602
2845
  keyId: z.ZodString;
2603
2846
  ownerSub: z.ZodString;
2847
+ agent: z.ZodOptional<z.ZodObject<{
2848
+ label: z.ZodString;
2849
+ }, z.core.$strip>>;
2604
2850
  }, z.core.$strip>, z.ZodObject<{
2605
2851
  type: z.ZodLiteral<"service_account">;
2606
2852
  id: z.ZodString;
@@ -2628,6 +2874,9 @@ export declare const dashboardFleetHostRequestSchema: z.ZodObject<{
2628
2874
  type: z.ZodLiteral<"api_key">;
2629
2875
  keyId: z.ZodString;
2630
2876
  ownerSub: z.ZodString;
2877
+ agent: z.ZodOptional<z.ZodObject<{
2878
+ label: z.ZodString;
2879
+ }, z.core.$strip>>;
2631
2880
  }, z.core.$strip>, z.ZodObject<{
2632
2881
  type: z.ZodLiteral<"service_account">;
2633
2882
  id: z.ZodString;
@@ -2656,6 +2905,9 @@ export declare const dashboardFleetPreviewRequestSchema: z.ZodObject<{
2656
2905
  type: z.ZodLiteral<"api_key">;
2657
2906
  keyId: z.ZodString;
2658
2907
  ownerSub: z.ZodString;
2908
+ agent: z.ZodOptional<z.ZodObject<{
2909
+ label: z.ZodString;
2910
+ }, z.core.$strip>>;
2659
2911
  }, z.core.$strip>, z.ZodObject<{
2660
2912
  type: z.ZodLiteral<"service_account">;
2661
2913
  id: z.ZodString;
@@ -2776,6 +3028,9 @@ export declare const dashboardFleetWorkflowsForHostRequestSchema: z.ZodObject<{
2776
3028
  type: z.ZodLiteral<"api_key">;
2777
3029
  keyId: z.ZodString;
2778
3030
  ownerSub: z.ZodString;
3031
+ agent: z.ZodOptional<z.ZodObject<{
3032
+ label: z.ZodString;
3033
+ }, z.core.$strip>>;
2779
3034
  }, z.core.$strip>, z.ZodObject<{
2780
3035
  type: z.ZodLiteral<"service_account">;
2781
3036
  id: z.ZodString;
@@ -2843,6 +3098,9 @@ export declare const fleetHostDeclareRequestSchema: z.ZodObject<{
2843
3098
  type: z.ZodLiteral<"api_key">;
2844
3099
  keyId: z.ZodString;
2845
3100
  ownerSub: z.ZodString;
3101
+ agent: z.ZodOptional<z.ZodObject<{
3102
+ label: z.ZodString;
3103
+ }, z.core.$strip>>;
2846
3104
  }, z.core.$strip>, z.ZodObject<{
2847
3105
  type: z.ZodLiteral<"service_account">;
2848
3106
  id: z.ZodString;
@@ -2882,6 +3140,9 @@ export declare const fleetHostRemoveRequestSchema: z.ZodObject<{
2882
3140
  type: z.ZodLiteral<"api_key">;
2883
3141
  keyId: z.ZodString;
2884
3142
  ownerSub: z.ZodString;
3143
+ agent: z.ZodOptional<z.ZodObject<{
3144
+ label: z.ZodString;
3145
+ }, z.core.$strip>>;
2885
3146
  }, z.core.$strip>, z.ZodObject<{
2886
3147
  type: z.ZodLiteral<"service_account">;
2887
3148
  id: z.ZodString;
@@ -3100,6 +3361,9 @@ export declare const dashboardScalerCapacityRequestSchema: z.ZodObject<{
3100
3361
  type: z.ZodLiteral<"api_key">;
3101
3362
  keyId: z.ZodString;
3102
3363
  ownerSub: z.ZodString;
3364
+ agent: z.ZodOptional<z.ZodObject<{
3365
+ label: z.ZodString;
3366
+ }, z.core.$strip>>;
3103
3367
  }, z.core.$strip>, z.ZodObject<{
3104
3368
  type: z.ZodLiteral<"service_account">;
3105
3369
  id: z.ZodString;
@@ -3141,6 +3405,9 @@ export declare const dashboardScalerAgentsRequestSchema: z.ZodObject<{
3141
3405
  type: z.ZodLiteral<"api_key">;
3142
3406
  keyId: z.ZodString;
3143
3407
  ownerSub: z.ZodString;
3408
+ agent: z.ZodOptional<z.ZodObject<{
3409
+ label: z.ZodString;
3410
+ }, z.core.$strip>>;
3144
3411
  }, z.core.$strip>, z.ZodObject<{
3145
3412
  type: z.ZodLiteral<"service_account">;
3146
3413
  id: z.ZodString;
@@ -3200,6 +3467,9 @@ export declare const registrationDisableRequestSchema: z.ZodObject<{
3200
3467
  type: z.ZodLiteral<"api_key">;
3201
3468
  keyId: z.ZodString;
3202
3469
  ownerSub: z.ZodString;
3470
+ agent: z.ZodOptional<z.ZodObject<{
3471
+ label: z.ZodString;
3472
+ }, z.core.$strip>>;
3203
3473
  }, z.core.$strip>, z.ZodObject<{
3204
3474
  type: z.ZodLiteral<"service_account">;
3205
3475
  id: z.ZodString;
@@ -3230,6 +3500,9 @@ export declare const registrationDeleteRequestSchema: z.ZodObject<{
3230
3500
  type: z.ZodLiteral<"api_key">;
3231
3501
  keyId: z.ZodString;
3232
3502
  ownerSub: z.ZodString;
3503
+ agent: z.ZodOptional<z.ZodObject<{
3504
+ label: z.ZodString;
3505
+ }, z.core.$strip>>;
3233
3506
  }, z.core.$strip>, z.ZodObject<{
3234
3507
  type: z.ZodLiteral<"service_account">;
3235
3508
  id: z.ZodString;
@@ -3260,6 +3533,9 @@ export declare const registrationsListRequestSchema: z.ZodObject<{
3260
3533
  type: z.ZodLiteral<"api_key">;
3261
3534
  keyId: z.ZodString;
3262
3535
  ownerSub: z.ZodString;
3536
+ agent: z.ZodOptional<z.ZodObject<{
3537
+ label: z.ZodString;
3538
+ }, z.core.$strip>>;
3263
3539
  }, z.core.$strip>, z.ZodObject<{
3264
3540
  type: z.ZodLiteral<"service_account">;
3265
3541
  id: z.ZodString;
@@ -3351,6 +3627,9 @@ export declare const backendsListRequestSchema: z.ZodObject<{
3351
3627
  type: z.ZodLiteral<"api_key">;
3352
3628
  keyId: z.ZodString;
3353
3629
  ownerSub: z.ZodString;
3630
+ agent: z.ZodOptional<z.ZodObject<{
3631
+ label: z.ZodString;
3632
+ }, z.core.$strip>>;
3354
3633
  }, z.core.$strip>, z.ZodObject<{
3355
3634
  type: z.ZodLiteral<"service_account">;
3356
3635
  id: z.ZodString;
@@ -3432,6 +3711,9 @@ export declare const backendGetRequestSchema: z.ZodObject<{
3432
3711
  type: z.ZodLiteral<"api_key">;
3433
3712
  keyId: z.ZodString;
3434
3713
  ownerSub: z.ZodString;
3714
+ agent: z.ZodOptional<z.ZodObject<{
3715
+ label: z.ZodString;
3716
+ }, z.core.$strip>>;
3435
3717
  }, z.core.$strip>, z.ZodObject<{
3436
3718
  type: z.ZodLiteral<"service_account">;
3437
3719
  id: z.ZodString;
@@ -3490,6 +3772,9 @@ export declare const backendsSyncAllRequestSchema: z.ZodObject<{
3490
3772
  type: z.ZodLiteral<"api_key">;
3491
3773
  keyId: z.ZodString;
3492
3774
  ownerSub: z.ZodString;
3775
+ agent: z.ZodOptional<z.ZodObject<{
3776
+ label: z.ZodString;
3777
+ }, z.core.$strip>>;
3493
3778
  }, z.core.$strip>, z.ZodObject<{
3494
3779
  type: z.ZodLiteral<"service_account">;
3495
3780
  id: z.ZodString;
@@ -3525,6 +3810,9 @@ export declare const backendSyncRequestSchema: z.ZodObject<{
3525
3810
  type: z.ZodLiteral<"api_key">;
3526
3811
  keyId: z.ZodString;
3527
3812
  ownerSub: z.ZodString;
3813
+ agent: z.ZodOptional<z.ZodObject<{
3814
+ label: z.ZodString;
3815
+ }, z.core.$strip>>;
3528
3816
  }, z.core.$strip>, z.ZodObject<{
3529
3817
  type: z.ZodLiteral<"service_account">;
3530
3818
  id: z.ZodString;
@@ -3562,6 +3850,9 @@ export declare const backendTestRequestSchema: z.ZodObject<{
3562
3850
  type: z.ZodLiteral<"api_key">;
3563
3851
  keyId: z.ZodString;
3564
3852
  ownerSub: z.ZodString;
3853
+ agent: z.ZodOptional<z.ZodObject<{
3854
+ label: z.ZodString;
3855
+ }, z.core.$strip>>;
3565
3856
  }, z.core.$strip>, z.ZodObject<{
3566
3857
  type: z.ZodLiteral<"service_account">;
3567
3858
  id: z.ZodString;
@@ -3608,6 +3899,9 @@ export declare const testRelayUploadsInitRequestSchema: z.ZodObject<{
3608
3899
  type: z.ZodLiteral<"api_key">;
3609
3900
  keyId: z.ZodString;
3610
3901
  ownerSub: z.ZodString;
3902
+ agent: z.ZodOptional<z.ZodObject<{
3903
+ label: z.ZodString;
3904
+ }, z.core.$strip>>;
3611
3905
  }, z.core.$strip>, z.ZodObject<{
3612
3906
  type: z.ZodLiteral<"service_account">;
3613
3907
  id: z.ZodString;
@@ -3652,6 +3946,9 @@ export declare const testRelayTriggerRequestSchema: z.ZodObject<{
3652
3946
  type: z.ZodLiteral<"api_key">;
3653
3947
  keyId: z.ZodString;
3654
3948
  ownerSub: z.ZodString;
3949
+ agent: z.ZodOptional<z.ZodObject<{
3950
+ label: z.ZodString;
3951
+ }, z.core.$strip>>;
3655
3952
  }, z.core.$strip>, z.ZodObject<{
3656
3953
  type: z.ZodLiteral<"service_account">;
3657
3954
  id: z.ZodString;
@@ -3722,6 +4019,7 @@ export declare const testRelayTriggerResponseSchema: z.ZodObject<{
3722
4019
  }>>;
3723
4020
  reason: z.ZodOptional<z.ZodString>;
3724
4021
  jobIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
4022
+ warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
3725
4023
  error: z.ZodOptional<z.ZodString>;
3726
4024
  }, z.core.$strip>;
3727
4025
  export type TestRelayTriggerResponse = z.infer<typeof testRelayTriggerResponseSchema>;
@@ -3740,6 +4038,9 @@ export declare const testRelayRunStatusRequestSchema: z.ZodObject<{
3740
4038
  type: z.ZodLiteral<"api_key">;
3741
4039
  keyId: z.ZodString;
3742
4040
  ownerSub: z.ZodString;
4041
+ agent: z.ZodOptional<z.ZodObject<{
4042
+ label: z.ZodString;
4043
+ }, z.core.$strip>>;
3743
4044
  }, z.core.$strip>, z.ZodObject<{
3744
4045
  type: z.ZodLiteral<"service_account">;
3745
4046
  id: z.ZodString;
@@ -3787,6 +4088,9 @@ export declare const testRelayRunLogsRequestSchema: z.ZodObject<{
3787
4088
  type: z.ZodLiteral<"api_key">;
3788
4089
  keyId: z.ZodString;
3789
4090
  ownerSub: z.ZodString;
4091
+ agent: z.ZodOptional<z.ZodObject<{
4092
+ label: z.ZodString;
4093
+ }, z.core.$strip>>;
3790
4094
  }, z.core.$strip>, z.ZodObject<{
3791
4095
  type: z.ZodLiteral<"service_account">;
3792
4096
  id: z.ZodString;
@@ -3828,8 +4132,11 @@ export declare const testRelayCancelRequestSchema: z.ZodObject<{
3828
4132
  type: z.ZodLiteral<"api_key">;
3829
4133
  keyId: z.ZodString;
3830
4134
  ownerSub: z.ZodString;
3831
- }, z.core.$strip>, z.ZodObject<{
3832
- type: z.ZodLiteral<"service_account">;
4135
+ agent: z.ZodOptional<z.ZodObject<{
4136
+ label: z.ZodString;
4137
+ }, z.core.$strip>>;
4138
+ }, z.core.$strip>, z.ZodObject<{
4139
+ type: z.ZodLiteral<"service_account">;
3833
4140
  id: z.ZodString;
3834
4141
  }, z.core.$strip>, z.ZodObject<{
3835
4142
  type: z.ZodLiteral<"platform_operator">;
@@ -3869,6 +4176,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
3869
4176
  type: z.ZodLiteral<"api_key">;
3870
4177
  keyId: z.ZodString;
3871
4178
  ownerSub: z.ZodString;
4179
+ agent: z.ZodOptional<z.ZodObject<{
4180
+ label: z.ZodString;
4181
+ }, z.core.$strip>>;
3872
4182
  }, z.core.$strip>, z.ZodObject<{
3873
4183
  type: z.ZodLiteral<"service_account">;
3874
4184
  id: z.ZodString;
@@ -3896,6 +4206,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
3896
4206
  type: z.ZodLiteral<"api_key">;
3897
4207
  keyId: z.ZodString;
3898
4208
  ownerSub: z.ZodString;
4209
+ agent: z.ZodOptional<z.ZodObject<{
4210
+ label: z.ZodString;
4211
+ }, z.core.$strip>>;
3899
4212
  }, z.core.$strip>, z.ZodObject<{
3900
4213
  type: z.ZodLiteral<"service_account">;
3901
4214
  id: z.ZodString;
@@ -3923,6 +4236,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
3923
4236
  type: z.ZodLiteral<"api_key">;
3924
4237
  keyId: z.ZodString;
3925
4238
  ownerSub: z.ZodString;
4239
+ agent: z.ZodOptional<z.ZodObject<{
4240
+ label: z.ZodString;
4241
+ }, z.core.$strip>>;
3926
4242
  }, z.core.$strip>, z.ZodObject<{
3927
4243
  type: z.ZodLiteral<"service_account">;
3928
4244
  id: z.ZodString;
@@ -3938,6 +4254,8 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
3938
4254
  runId: z.ZodString;
3939
4255
  jobId: z.ZodString;
3940
4256
  stepIndex: z.ZodNumber;
4257
+ cursor: z.ZodOptional<z.ZodString>;
4258
+ limit: z.ZodOptional<z.ZodNumber>;
3941
4259
  }, z.core.$strip>, z.ZodObject<{
3942
4260
  type: z.ZodLiteral<"dashboard.attestations.list">;
3943
4261
  requestId: z.ZodString;
@@ -3952,6 +4270,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
3952
4270
  type: z.ZodLiteral<"api_key">;
3953
4271
  keyId: z.ZodString;
3954
4272
  ownerSub: z.ZodString;
4273
+ agent: z.ZodOptional<z.ZodObject<{
4274
+ label: z.ZodString;
4275
+ }, z.core.$strip>>;
3955
4276
  }, z.core.$strip>, z.ZodObject<{
3956
4277
  type: z.ZodLiteral<"service_account">;
3957
4278
  id: z.ZodString;
@@ -3979,6 +4300,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
3979
4300
  type: z.ZodLiteral<"api_key">;
3980
4301
  keyId: z.ZodString;
3981
4302
  ownerSub: z.ZodString;
4303
+ agent: z.ZodOptional<z.ZodObject<{
4304
+ label: z.ZodString;
4305
+ }, z.core.$strip>>;
3982
4306
  }, z.core.$strip>, z.ZodObject<{
3983
4307
  type: z.ZodLiteral<"service_account">;
3984
4308
  id: z.ZodString;
@@ -4022,6 +4346,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4022
4346
  type: z.ZodLiteral<"api_key">;
4023
4347
  keyId: z.ZodString;
4024
4348
  ownerSub: z.ZodString;
4349
+ agent: z.ZodOptional<z.ZodObject<{
4350
+ label: z.ZodString;
4351
+ }, z.core.$strip>>;
4025
4352
  }, z.core.$strip>, z.ZodObject<{
4026
4353
  type: z.ZodLiteral<"service_account">;
4027
4354
  id: z.ZodString;
@@ -4035,6 +4362,36 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4035
4362
  component: z.ZodString;
4036
4363
  }, z.core.$strip>], "type">;
4037
4364
  attestationId: z.ZodString;
4365
+ }, z.core.$strip>, z.ZodObject<{
4366
+ type: z.ZodLiteral<"dashboard.attestation.retry">;
4367
+ requestId: z.ZodString;
4368
+ actor: z.ZodDiscriminatedUnion<[z.ZodObject<{
4369
+ type: z.ZodLiteral<"user">;
4370
+ sub: z.ZodString;
4371
+ agent: z.ZodOptional<z.ZodObject<{
4372
+ patId: z.ZodString;
4373
+ label: z.ZodString;
4374
+ }, z.core.$strip>>;
4375
+ }, z.core.$strip>, z.ZodObject<{
4376
+ type: z.ZodLiteral<"api_key">;
4377
+ keyId: z.ZodString;
4378
+ ownerSub: z.ZodString;
4379
+ agent: z.ZodOptional<z.ZodObject<{
4380
+ label: z.ZodString;
4381
+ }, z.core.$strip>>;
4382
+ }, z.core.$strip>, z.ZodObject<{
4383
+ type: z.ZodLiteral<"service_account">;
4384
+ id: z.ZodString;
4385
+ }, z.core.$strip>, z.ZodObject<{
4386
+ type: z.ZodLiteral<"platform_operator">;
4387
+ sub: z.ZodString;
4388
+ reason: z.ZodString;
4389
+ sessionId: z.ZodOptional<z.ZodString>;
4390
+ }, z.core.$strip>, z.ZodObject<{
4391
+ type: z.ZodLiteral<"system">;
4392
+ component: z.ZodString;
4393
+ }, z.core.$strip>], "type">;
4394
+ runId: z.ZodOptional<z.ZodString>;
4038
4395
  }, z.core.$strip>, z.ZodObject<{
4039
4396
  type: z.ZodLiteral<"dashboard.runs.list">;
4040
4397
  requestId: z.ZodString;
@@ -4049,6 +4406,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4049
4406
  type: z.ZodLiteral<"api_key">;
4050
4407
  keyId: z.ZodString;
4051
4408
  ownerSub: z.ZodString;
4409
+ agent: z.ZodOptional<z.ZodObject<{
4410
+ label: z.ZodString;
4411
+ }, z.core.$strip>>;
4052
4412
  }, z.core.$strip>, z.ZodObject<{
4053
4413
  type: z.ZodLiteral<"service_account">;
4054
4414
  id: z.ZodString;
@@ -4077,6 +4437,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4077
4437
  type: z.ZodLiteral<"api_key">;
4078
4438
  keyId: z.ZodString;
4079
4439
  ownerSub: z.ZodString;
4440
+ agent: z.ZodOptional<z.ZodObject<{
4441
+ label: z.ZodString;
4442
+ }, z.core.$strip>>;
4080
4443
  }, z.core.$strip>, z.ZodObject<{
4081
4444
  type: z.ZodLiteral<"service_account">;
4082
4445
  id: z.ZodString;
@@ -4103,6 +4466,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4103
4466
  type: z.ZodLiteral<"api_key">;
4104
4467
  keyId: z.ZodString;
4105
4468
  ownerSub: z.ZodString;
4469
+ agent: z.ZodOptional<z.ZodObject<{
4470
+ label: z.ZodString;
4471
+ }, z.core.$strip>>;
4106
4472
  }, z.core.$strip>, z.ZodObject<{
4107
4473
  type: z.ZodLiteral<"service_account">;
4108
4474
  id: z.ZodString;
@@ -4131,6 +4497,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4131
4497
  type: z.ZodLiteral<"api_key">;
4132
4498
  keyId: z.ZodString;
4133
4499
  ownerSub: z.ZodString;
4500
+ agent: z.ZodOptional<z.ZodObject<{
4501
+ label: z.ZodString;
4502
+ }, z.core.$strip>>;
4134
4503
  }, z.core.$strip>, z.ZodObject<{
4135
4504
  type: z.ZodLiteral<"service_account">;
4136
4505
  id: z.ZodString;
@@ -4159,6 +4528,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4159
4528
  type: z.ZodLiteral<"api_key">;
4160
4529
  keyId: z.ZodString;
4161
4530
  ownerSub: z.ZodString;
4531
+ agent: z.ZodOptional<z.ZodObject<{
4532
+ label: z.ZodString;
4533
+ }, z.core.$strip>>;
4162
4534
  }, z.core.$strip>, z.ZodObject<{
4163
4535
  type: z.ZodLiteral<"service_account">;
4164
4536
  id: z.ZodString;
@@ -4172,6 +4544,7 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4172
4544
  component: z.ZodString;
4173
4545
  }, z.core.$strip>], "type">;
4174
4546
  registrationId: z.ZodString;
4547
+ triggeredByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4175
4548
  }, z.core.$strip>, z.ZodObject<{
4176
4549
  type: z.ZodLiteral<"run.cancel.request">;
4177
4550
  requestId: z.ZodString;
@@ -4186,6 +4559,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4186
4559
  type: z.ZodLiteral<"api_key">;
4187
4560
  keyId: z.ZodString;
4188
4561
  ownerSub: z.ZodString;
4562
+ agent: z.ZodOptional<z.ZodObject<{
4563
+ label: z.ZodString;
4564
+ }, z.core.$strip>>;
4189
4565
  }, z.core.$strip>, z.ZodObject<{
4190
4566
  type: z.ZodLiteral<"service_account">;
4191
4567
  id: z.ZodString;
@@ -4214,6 +4590,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4214
4590
  type: z.ZodLiteral<"api_key">;
4215
4591
  keyId: z.ZodString;
4216
4592
  ownerSub: z.ZodString;
4593
+ agent: z.ZodOptional<z.ZodObject<{
4594
+ label: z.ZodString;
4595
+ }, z.core.$strip>>;
4217
4596
  }, z.core.$strip>, z.ZodObject<{
4218
4597
  type: z.ZodLiteral<"service_account">;
4219
4598
  id: z.ZodString;
@@ -4241,6 +4620,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4241
4620
  type: z.ZodLiteral<"api_key">;
4242
4621
  keyId: z.ZodString;
4243
4622
  ownerSub: z.ZodString;
4623
+ agent: z.ZodOptional<z.ZodObject<{
4624
+ label: z.ZodString;
4625
+ }, z.core.$strip>>;
4244
4626
  }, z.core.$strip>, z.ZodObject<{
4245
4627
  type: z.ZodLiteral<"service_account">;
4246
4628
  id: z.ZodString;
@@ -4269,6 +4651,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4269
4651
  type: z.ZodLiteral<"api_key">;
4270
4652
  keyId: z.ZodString;
4271
4653
  ownerSub: z.ZodString;
4654
+ agent: z.ZodOptional<z.ZodObject<{
4655
+ label: z.ZodString;
4656
+ }, z.core.$strip>>;
4272
4657
  }, z.core.$strip>, z.ZodObject<{
4273
4658
  type: z.ZodLiteral<"service_account">;
4274
4659
  id: z.ZodString;
@@ -4297,6 +4682,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4297
4682
  type: z.ZodLiteral<"api_key">;
4298
4683
  keyId: z.ZodString;
4299
4684
  ownerSub: z.ZodString;
4685
+ agent: z.ZodOptional<z.ZodObject<{
4686
+ label: z.ZodString;
4687
+ }, z.core.$strip>>;
4300
4688
  }, z.core.$strip>, z.ZodObject<{
4301
4689
  type: z.ZodLiteral<"service_account">;
4302
4690
  id: z.ZodString;
@@ -4324,6 +4712,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4324
4712
  type: z.ZodLiteral<"api_key">;
4325
4713
  keyId: z.ZodString;
4326
4714
  ownerSub: z.ZodString;
4715
+ agent: z.ZodOptional<z.ZodObject<{
4716
+ label: z.ZodString;
4717
+ }, z.core.$strip>>;
4327
4718
  }, z.core.$strip>, z.ZodObject<{
4328
4719
  type: z.ZodLiteral<"service_account">;
4329
4720
  id: z.ZodString;
@@ -4366,6 +4757,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4366
4757
  type: z.ZodLiteral<"api_key">;
4367
4758
  keyId: z.ZodString;
4368
4759
  ownerSub: z.ZodString;
4760
+ agent: z.ZodOptional<z.ZodObject<{
4761
+ label: z.ZodString;
4762
+ }, z.core.$strip>>;
4369
4763
  }, z.core.$strip>, z.ZodObject<{
4370
4764
  type: z.ZodLiteral<"service_account">;
4371
4765
  id: z.ZodString;
@@ -4411,6 +4805,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4411
4805
  type: z.ZodLiteral<"api_key">;
4412
4806
  keyId: z.ZodString;
4413
4807
  ownerSub: z.ZodString;
4808
+ agent: z.ZodOptional<z.ZodObject<{
4809
+ label: z.ZodString;
4810
+ }, z.core.$strip>>;
4414
4811
  }, z.core.$strip>, z.ZodObject<{
4415
4812
  type: z.ZodLiteral<"service_account">;
4416
4813
  id: z.ZodString;
@@ -4439,6 +4836,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4439
4836
  type: z.ZodLiteral<"api_key">;
4440
4837
  keyId: z.ZodString;
4441
4838
  ownerSub: z.ZodString;
4839
+ agent: z.ZodOptional<z.ZodObject<{
4840
+ label: z.ZodString;
4841
+ }, z.core.$strip>>;
4442
4842
  }, z.core.$strip>, z.ZodObject<{
4443
4843
  type: z.ZodLiteral<"service_account">;
4444
4844
  id: z.ZodString;
@@ -4466,6 +4866,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4466
4866
  type: z.ZodLiteral<"api_key">;
4467
4867
  keyId: z.ZodString;
4468
4868
  ownerSub: z.ZodString;
4869
+ agent: z.ZodOptional<z.ZodObject<{
4870
+ label: z.ZodString;
4871
+ }, z.core.$strip>>;
4469
4872
  }, z.core.$strip>, z.ZodObject<{
4470
4873
  type: z.ZodLiteral<"service_account">;
4471
4874
  id: z.ZodString;
@@ -4493,6 +4896,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4493
4896
  type: z.ZodLiteral<"api_key">;
4494
4897
  keyId: z.ZodString;
4495
4898
  ownerSub: z.ZodString;
4899
+ agent: z.ZodOptional<z.ZodObject<{
4900
+ label: z.ZodString;
4901
+ }, z.core.$strip>>;
4496
4902
  }, z.core.$strip>, z.ZodObject<{
4497
4903
  type: z.ZodLiteral<"service_account">;
4498
4904
  id: z.ZodString;
@@ -4523,6 +4929,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4523
4929
  type: z.ZodLiteral<"api_key">;
4524
4930
  keyId: z.ZodString;
4525
4931
  ownerSub: z.ZodString;
4932
+ agent: z.ZodOptional<z.ZodObject<{
4933
+ label: z.ZodString;
4934
+ }, z.core.$strip>>;
4526
4935
  }, z.core.$strip>, z.ZodObject<{
4527
4936
  type: z.ZodLiteral<"service_account">;
4528
4937
  id: z.ZodString;
@@ -4551,6 +4960,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4551
4960
  type: z.ZodLiteral<"api_key">;
4552
4961
  keyId: z.ZodString;
4553
4962
  ownerSub: z.ZodString;
4963
+ agent: z.ZodOptional<z.ZodObject<{
4964
+ label: z.ZodString;
4965
+ }, z.core.$strip>>;
4554
4966
  }, z.core.$strip>, z.ZodObject<{
4555
4967
  type: z.ZodLiteral<"service_account">;
4556
4968
  id: z.ZodString;
@@ -4579,6 +4991,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4579
4991
  type: z.ZodLiteral<"api_key">;
4580
4992
  keyId: z.ZodString;
4581
4993
  ownerSub: z.ZodString;
4994
+ agent: z.ZodOptional<z.ZodObject<{
4995
+ label: z.ZodString;
4996
+ }, z.core.$strip>>;
4582
4997
  }, z.core.$strip>, z.ZodObject<{
4583
4998
  type: z.ZodLiteral<"service_account">;
4584
4999
  id: z.ZodString;
@@ -4609,6 +5024,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4609
5024
  type: z.ZodLiteral<"api_key">;
4610
5025
  keyId: z.ZodString;
4611
5026
  ownerSub: z.ZodString;
5027
+ agent: z.ZodOptional<z.ZodObject<{
5028
+ label: z.ZodString;
5029
+ }, z.core.$strip>>;
4612
5030
  }, z.core.$strip>, z.ZodObject<{
4613
5031
  type: z.ZodLiteral<"service_account">;
4614
5032
  id: z.ZodString;
@@ -4638,6 +5056,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4638
5056
  type: z.ZodLiteral<"api_key">;
4639
5057
  keyId: z.ZodString;
4640
5058
  ownerSub: z.ZodString;
5059
+ agent: z.ZodOptional<z.ZodObject<{
5060
+ label: z.ZodString;
5061
+ }, z.core.$strip>>;
4641
5062
  }, z.core.$strip>, z.ZodObject<{
4642
5063
  type: z.ZodLiteral<"service_account">;
4643
5064
  id: z.ZodString;
@@ -4665,6 +5086,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4665
5086
  type: z.ZodLiteral<"api_key">;
4666
5087
  keyId: z.ZodString;
4667
5088
  ownerSub: z.ZodString;
5089
+ agent: z.ZodOptional<z.ZodObject<{
5090
+ label: z.ZodString;
5091
+ }, z.core.$strip>>;
4668
5092
  }, z.core.$strip>, z.ZodObject<{
4669
5093
  type: z.ZodLiteral<"service_account">;
4670
5094
  id: z.ZodString;
@@ -4696,6 +5120,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4696
5120
  type: z.ZodLiteral<"api_key">;
4697
5121
  keyId: z.ZodString;
4698
5122
  ownerSub: z.ZodString;
5123
+ agent: z.ZodOptional<z.ZodObject<{
5124
+ label: z.ZodString;
5125
+ }, z.core.$strip>>;
4699
5126
  }, z.core.$strip>, z.ZodObject<{
4700
5127
  type: z.ZodLiteral<"service_account">;
4701
5128
  id: z.ZodString;
@@ -4722,6 +5149,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4722
5149
  type: z.ZodLiteral<"api_key">;
4723
5150
  keyId: z.ZodString;
4724
5151
  ownerSub: z.ZodString;
5152
+ agent: z.ZodOptional<z.ZodObject<{
5153
+ label: z.ZodString;
5154
+ }, z.core.$strip>>;
4725
5155
  }, z.core.$strip>, z.ZodObject<{
4726
5156
  type: z.ZodLiteral<"service_account">;
4727
5157
  id: z.ZodString;
@@ -4751,6 +5181,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4751
5181
  type: z.ZodLiteral<"api_key">;
4752
5182
  keyId: z.ZodString;
4753
5183
  ownerSub: z.ZodString;
5184
+ agent: z.ZodOptional<z.ZodObject<{
5185
+ label: z.ZodString;
5186
+ }, z.core.$strip>>;
4754
5187
  }, z.core.$strip>, z.ZodObject<{
4755
5188
  type: z.ZodLiteral<"service_account">;
4756
5189
  id: z.ZodString;
@@ -4779,6 +5212,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4779
5212
  type: z.ZodLiteral<"api_key">;
4780
5213
  keyId: z.ZodString;
4781
5214
  ownerSub: z.ZodString;
5215
+ agent: z.ZodOptional<z.ZodObject<{
5216
+ label: z.ZodString;
5217
+ }, z.core.$strip>>;
4782
5218
  }, z.core.$strip>, z.ZodObject<{
4783
5219
  type: z.ZodLiteral<"service_account">;
4784
5220
  id: z.ZodString;
@@ -4806,6 +5242,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4806
5242
  type: z.ZodLiteral<"api_key">;
4807
5243
  keyId: z.ZodString;
4808
5244
  ownerSub: z.ZodString;
5245
+ agent: z.ZodOptional<z.ZodObject<{
5246
+ label: z.ZodString;
5247
+ }, z.core.$strip>>;
4809
5248
  }, z.core.$strip>, z.ZodObject<{
4810
5249
  type: z.ZodLiteral<"service_account">;
4811
5250
  id: z.ZodString;
@@ -4834,6 +5273,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4834
5273
  type: z.ZodLiteral<"api_key">;
4835
5274
  keyId: z.ZodString;
4836
5275
  ownerSub: z.ZodString;
5276
+ agent: z.ZodOptional<z.ZodObject<{
5277
+ label: z.ZodString;
5278
+ }, z.core.$strip>>;
4837
5279
  }, z.core.$strip>, z.ZodObject<{
4838
5280
  type: z.ZodLiteral<"service_account">;
4839
5281
  id: z.ZodString;
@@ -4861,6 +5303,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4861
5303
  type: z.ZodLiteral<"api_key">;
4862
5304
  keyId: z.ZodString;
4863
5305
  ownerSub: z.ZodString;
5306
+ agent: z.ZodOptional<z.ZodObject<{
5307
+ label: z.ZodString;
5308
+ }, z.core.$strip>>;
4864
5309
  }, z.core.$strip>, z.ZodObject<{
4865
5310
  type: z.ZodLiteral<"service_account">;
4866
5311
  id: z.ZodString;
@@ -4873,7 +5318,7 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4873
5318
  type: z.ZodLiteral<"system">;
4874
5319
  component: z.ZodString;
4875
5320
  }, z.core.$strip>], "type">;
4876
- environmentName: z.ZodString;
5321
+ environmentId: z.ZodString;
4877
5322
  limit: z.ZodOptional<z.ZodNumber>;
4878
5323
  offset: z.ZodOptional<z.ZodNumber>;
4879
5324
  }, z.core.$strip>, z.ZodObject<{
@@ -4890,6 +5335,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4890
5335
  type: z.ZodLiteral<"api_key">;
4891
5336
  keyId: z.ZodString;
4892
5337
  ownerSub: z.ZodString;
5338
+ agent: z.ZodOptional<z.ZodObject<{
5339
+ label: z.ZodString;
5340
+ }, z.core.$strip>>;
4893
5341
  }, z.core.$strip>, z.ZodObject<{
4894
5342
  type: z.ZodLiteral<"service_account">;
4895
5343
  id: z.ZodString;
@@ -4913,6 +5361,7 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4913
5361
  security: "security";
4914
5362
  }>>;
4915
5363
  runId: z.ZodOptional<z.ZodString>;
5364
+ orgId: z.ZodOptional<z.ZodString>;
4916
5365
  }, z.core.$strip>, z.ZodObject<{
4917
5366
  type: z.ZodLiteral<"dashboard.held-runs.approve">;
4918
5367
  requestId: z.ZodString;
@@ -4927,6 +5376,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4927
5376
  type: z.ZodLiteral<"api_key">;
4928
5377
  keyId: z.ZodString;
4929
5378
  ownerSub: z.ZodString;
5379
+ agent: z.ZodOptional<z.ZodObject<{
5380
+ label: z.ZodString;
5381
+ }, z.core.$strip>>;
4930
5382
  }, z.core.$strip>, z.ZodObject<{
4931
5383
  type: z.ZodLiteral<"service_account">;
4932
5384
  id: z.ZodString;
@@ -4941,6 +5393,7 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4941
5393
  }, z.core.$strip>], "type">;
4942
5394
  heldRunId: z.ZodString;
4943
5395
  autoApprove: z.ZodOptional<z.ZodBoolean>;
5396
+ orgId: z.ZodOptional<z.ZodString>;
4944
5397
  }, z.core.$strip>, z.ZodObject<{
4945
5398
  type: z.ZodLiteral<"dashboard.held-runs.reject">;
4946
5399
  requestId: z.ZodString;
@@ -4955,6 +5408,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4955
5408
  type: z.ZodLiteral<"api_key">;
4956
5409
  keyId: z.ZodString;
4957
5410
  ownerSub: z.ZodString;
5411
+ agent: z.ZodOptional<z.ZodObject<{
5412
+ label: z.ZodString;
5413
+ }, z.core.$strip>>;
4958
5414
  }, z.core.$strip>, z.ZodObject<{
4959
5415
  type: z.ZodLiteral<"service_account">;
4960
5416
  id: z.ZodString;
@@ -4969,6 +5425,7 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4969
5425
  }, z.core.$strip>], "type">;
4970
5426
  heldRunId: z.ZodString;
4971
5427
  reason: z.ZodOptional<z.ZodString>;
5428
+ orgId: z.ZodOptional<z.ZodString>;
4972
5429
  }, z.core.$strip>, z.ZodObject<{
4973
5430
  type: z.ZodLiteral<"dashboard.registrations.list">;
4974
5431
  requestId: z.ZodString;
@@ -4983,6 +5440,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
4983
5440
  type: z.ZodLiteral<"api_key">;
4984
5441
  keyId: z.ZodString;
4985
5442
  ownerSub: z.ZodString;
5443
+ agent: z.ZodOptional<z.ZodObject<{
5444
+ label: z.ZodString;
5445
+ }, z.core.$strip>>;
4986
5446
  }, z.core.$strip>, z.ZodObject<{
4987
5447
  type: z.ZodLiteral<"service_account">;
4988
5448
  id: z.ZodString;
@@ -5011,6 +5471,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5011
5471
  type: z.ZodLiteral<"api_key">;
5012
5472
  keyId: z.ZodString;
5013
5473
  ownerSub: z.ZodString;
5474
+ agent: z.ZodOptional<z.ZodObject<{
5475
+ label: z.ZodString;
5476
+ }, z.core.$strip>>;
5014
5477
  }, z.core.$strip>, z.ZodObject<{
5015
5478
  type: z.ZodLiteral<"service_account">;
5016
5479
  id: z.ZodString;
@@ -5039,6 +5502,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5039
5502
  type: z.ZodLiteral<"api_key">;
5040
5503
  keyId: z.ZodString;
5041
5504
  ownerSub: z.ZodString;
5505
+ agent: z.ZodOptional<z.ZodObject<{
5506
+ label: z.ZodString;
5507
+ }, z.core.$strip>>;
5042
5508
  }, z.core.$strip>, z.ZodObject<{
5043
5509
  type: z.ZodLiteral<"service_account">;
5044
5510
  id: z.ZodString;
@@ -5067,6 +5533,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5067
5533
  type: z.ZodLiteral<"api_key">;
5068
5534
  keyId: z.ZodString;
5069
5535
  ownerSub: z.ZodString;
5536
+ agent: z.ZodOptional<z.ZodObject<{
5537
+ label: z.ZodString;
5538
+ }, z.core.$strip>>;
5070
5539
  }, z.core.$strip>, z.ZodObject<{
5071
5540
  type: z.ZodLiteral<"service_account">;
5072
5541
  id: z.ZodString;
@@ -5094,6 +5563,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5094
5563
  type: z.ZodLiteral<"api_key">;
5095
5564
  keyId: z.ZodString;
5096
5565
  ownerSub: z.ZodString;
5566
+ agent: z.ZodOptional<z.ZodObject<{
5567
+ label: z.ZodString;
5568
+ }, z.core.$strip>>;
5097
5569
  }, z.core.$strip>, z.ZodObject<{
5098
5570
  type: z.ZodLiteral<"service_account">;
5099
5571
  id: z.ZodString;
@@ -5120,6 +5592,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5120
5592
  type: z.ZodLiteral<"api_key">;
5121
5593
  keyId: z.ZodString;
5122
5594
  ownerSub: z.ZodString;
5595
+ agent: z.ZodOptional<z.ZodObject<{
5596
+ label: z.ZodString;
5597
+ }, z.core.$strip>>;
5123
5598
  }, z.core.$strip>, z.ZodObject<{
5124
5599
  type: z.ZodLiteral<"service_account">;
5125
5600
  id: z.ZodString;
@@ -5147,6 +5622,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5147
5622
  type: z.ZodLiteral<"api_key">;
5148
5623
  keyId: z.ZodString;
5149
5624
  ownerSub: z.ZodString;
5625
+ agent: z.ZodOptional<z.ZodObject<{
5626
+ label: z.ZodString;
5627
+ }, z.core.$strip>>;
5150
5628
  }, z.core.$strip>, z.ZodObject<{
5151
5629
  type: z.ZodLiteral<"service_account">;
5152
5630
  id: z.ZodString;
@@ -5174,6 +5652,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5174
5652
  type: z.ZodLiteral<"api_key">;
5175
5653
  keyId: z.ZodString;
5176
5654
  ownerSub: z.ZodString;
5655
+ agent: z.ZodOptional<z.ZodObject<{
5656
+ label: z.ZodString;
5657
+ }, z.core.$strip>>;
5177
5658
  }, z.core.$strip>, z.ZodObject<{
5178
5659
  type: z.ZodLiteral<"service_account">;
5179
5660
  id: z.ZodString;
@@ -5201,6 +5682,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5201
5682
  type: z.ZodLiteral<"api_key">;
5202
5683
  keyId: z.ZodString;
5203
5684
  ownerSub: z.ZodString;
5685
+ agent: z.ZodOptional<z.ZodObject<{
5686
+ label: z.ZodString;
5687
+ }, z.core.$strip>>;
5204
5688
  }, z.core.$strip>, z.ZodObject<{
5205
5689
  type: z.ZodLiteral<"service_account">;
5206
5690
  id: z.ZodString;
@@ -5231,6 +5715,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5231
5715
  type: z.ZodLiteral<"api_key">;
5232
5716
  keyId: z.ZodString;
5233
5717
  ownerSub: z.ZodString;
5718
+ agent: z.ZodOptional<z.ZodObject<{
5719
+ label: z.ZodString;
5720
+ }, z.core.$strip>>;
5234
5721
  }, z.core.$strip>, z.ZodObject<{
5235
5722
  type: z.ZodLiteral<"service_account">;
5236
5723
  id: z.ZodString;
@@ -5258,6 +5745,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5258
5745
  type: z.ZodLiteral<"api_key">;
5259
5746
  keyId: z.ZodString;
5260
5747
  ownerSub: z.ZodString;
5748
+ agent: z.ZodOptional<z.ZodObject<{
5749
+ label: z.ZodString;
5750
+ }, z.core.$strip>>;
5261
5751
  }, z.core.$strip>, z.ZodObject<{
5262
5752
  type: z.ZodLiteral<"service_account">;
5263
5753
  id: z.ZodString;
@@ -5284,6 +5774,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5284
5774
  type: z.ZodLiteral<"api_key">;
5285
5775
  keyId: z.ZodString;
5286
5776
  ownerSub: z.ZodString;
5777
+ agent: z.ZodOptional<z.ZodObject<{
5778
+ label: z.ZodString;
5779
+ }, z.core.$strip>>;
5287
5780
  }, z.core.$strip>, z.ZodObject<{
5288
5781
  type: z.ZodLiteral<"service_account">;
5289
5782
  id: z.ZodString;
@@ -5311,6 +5804,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5311
5804
  type: z.ZodLiteral<"api_key">;
5312
5805
  keyId: z.ZodString;
5313
5806
  ownerSub: z.ZodString;
5807
+ agent: z.ZodOptional<z.ZodObject<{
5808
+ label: z.ZodString;
5809
+ }, z.core.$strip>>;
5314
5810
  }, z.core.$strip>, z.ZodObject<{
5315
5811
  type: z.ZodLiteral<"service_account">;
5316
5812
  id: z.ZodString;
@@ -5337,6 +5833,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5337
5833
  type: z.ZodLiteral<"api_key">;
5338
5834
  keyId: z.ZodString;
5339
5835
  ownerSub: z.ZodString;
5836
+ agent: z.ZodOptional<z.ZodObject<{
5837
+ label: z.ZodString;
5838
+ }, z.core.$strip>>;
5340
5839
  }, z.core.$strip>, z.ZodObject<{
5341
5840
  type: z.ZodLiteral<"service_account">;
5342
5841
  id: z.ZodString;
@@ -5364,6 +5863,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5364
5863
  type: z.ZodLiteral<"api_key">;
5365
5864
  keyId: z.ZodString;
5366
5865
  ownerSub: z.ZodString;
5866
+ agent: z.ZodOptional<z.ZodObject<{
5867
+ label: z.ZodString;
5868
+ }, z.core.$strip>>;
5367
5869
  }, z.core.$strip>, z.ZodObject<{
5368
5870
  type: z.ZodLiteral<"service_account">;
5369
5871
  id: z.ZodString;
@@ -5390,6 +5892,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5390
5892
  type: z.ZodLiteral<"api_key">;
5391
5893
  keyId: z.ZodString;
5392
5894
  ownerSub: z.ZodString;
5895
+ agent: z.ZodOptional<z.ZodObject<{
5896
+ label: z.ZodString;
5897
+ }, z.core.$strip>>;
5393
5898
  }, z.core.$strip>, z.ZodObject<{
5394
5899
  type: z.ZodLiteral<"service_account">;
5395
5900
  id: z.ZodString;
@@ -5417,6 +5922,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5417
5922
  type: z.ZodLiteral<"api_key">;
5418
5923
  keyId: z.ZodString;
5419
5924
  ownerSub: z.ZodString;
5925
+ agent: z.ZodOptional<z.ZodObject<{
5926
+ label: z.ZodString;
5927
+ }, z.core.$strip>>;
5420
5928
  }, z.core.$strip>, z.ZodObject<{
5421
5929
  type: z.ZodLiteral<"service_account">;
5422
5930
  id: z.ZodString;
@@ -5444,6 +5952,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5444
5952
  type: z.ZodLiteral<"api_key">;
5445
5953
  keyId: z.ZodString;
5446
5954
  ownerSub: z.ZodString;
5955
+ agent: z.ZodOptional<z.ZodObject<{
5956
+ label: z.ZodString;
5957
+ }, z.core.$strip>>;
5447
5958
  }, z.core.$strip>, z.ZodObject<{
5448
5959
  type: z.ZodLiteral<"service_account">;
5449
5960
  id: z.ZodString;
@@ -5486,6 +5997,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5486
5997
  type: z.ZodLiteral<"api_key">;
5487
5998
  keyId: z.ZodString;
5488
5999
  ownerSub: z.ZodString;
6000
+ agent: z.ZodOptional<z.ZodObject<{
6001
+ label: z.ZodString;
6002
+ }, z.core.$strip>>;
5489
6003
  }, z.core.$strip>, z.ZodObject<{
5490
6004
  type: z.ZodLiteral<"service_account">;
5491
6005
  id: z.ZodString;
@@ -5515,6 +6029,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5515
6029
  type: z.ZodLiteral<"api_key">;
5516
6030
  keyId: z.ZodString;
5517
6031
  ownerSub: z.ZodString;
6032
+ agent: z.ZodOptional<z.ZodObject<{
6033
+ label: z.ZodString;
6034
+ }, z.core.$strip>>;
5518
6035
  }, z.core.$strip>, z.ZodObject<{
5519
6036
  type: z.ZodLiteral<"service_account">;
5520
6037
  id: z.ZodString;
@@ -5544,6 +6061,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5544
6061
  type: z.ZodLiteral<"api_key">;
5545
6062
  keyId: z.ZodString;
5546
6063
  ownerSub: z.ZodString;
6064
+ agent: z.ZodOptional<z.ZodObject<{
6065
+ label: z.ZodString;
6066
+ }, z.core.$strip>>;
5547
6067
  }, z.core.$strip>, z.ZodObject<{
5548
6068
  type: z.ZodLiteral<"service_account">;
5549
6069
  id: z.ZodString;
@@ -5573,6 +6093,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5573
6093
  type: z.ZodLiteral<"api_key">;
5574
6094
  keyId: z.ZodString;
5575
6095
  ownerSub: z.ZodString;
6096
+ agent: z.ZodOptional<z.ZodObject<{
6097
+ label: z.ZodString;
6098
+ }, z.core.$strip>>;
5576
6099
  }, z.core.$strip>, z.ZodObject<{
5577
6100
  type: z.ZodLiteral<"service_account">;
5578
6101
  id: z.ZodString;
@@ -5600,6 +6123,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5600
6123
  type: z.ZodLiteral<"api_key">;
5601
6124
  keyId: z.ZodString;
5602
6125
  ownerSub: z.ZodString;
6126
+ agent: z.ZodOptional<z.ZodObject<{
6127
+ label: z.ZodString;
6128
+ }, z.core.$strip>>;
5603
6129
  }, z.core.$strip>, z.ZodObject<{
5604
6130
  type: z.ZodLiteral<"service_account">;
5605
6131
  id: z.ZodString;
@@ -5628,6 +6154,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5628
6154
  type: z.ZodLiteral<"api_key">;
5629
6155
  keyId: z.ZodString;
5630
6156
  ownerSub: z.ZodString;
6157
+ agent: z.ZodOptional<z.ZodObject<{
6158
+ label: z.ZodString;
6159
+ }, z.core.$strip>>;
5631
6160
  }, z.core.$strip>, z.ZodObject<{
5632
6161
  type: z.ZodLiteral<"service_account">;
5633
6162
  id: z.ZodString;
@@ -5656,6 +6185,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5656
6185
  type: z.ZodLiteral<"api_key">;
5657
6186
  keyId: z.ZodString;
5658
6187
  ownerSub: z.ZodString;
6188
+ agent: z.ZodOptional<z.ZodObject<{
6189
+ label: z.ZodString;
6190
+ }, z.core.$strip>>;
5659
6191
  }, z.core.$strip>, z.ZodObject<{
5660
6192
  type: z.ZodLiteral<"service_account">;
5661
6193
  id: z.ZodString;
@@ -5682,6 +6214,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5682
6214
  type: z.ZodLiteral<"api_key">;
5683
6215
  keyId: z.ZodString;
5684
6216
  ownerSub: z.ZodString;
6217
+ agent: z.ZodOptional<z.ZodObject<{
6218
+ label: z.ZodString;
6219
+ }, z.core.$strip>>;
5685
6220
  }, z.core.$strip>, z.ZodObject<{
5686
6221
  type: z.ZodLiteral<"service_account">;
5687
6222
  id: z.ZodString;
@@ -5721,6 +6256,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5721
6256
  type: z.ZodLiteral<"api_key">;
5722
6257
  keyId: z.ZodString;
5723
6258
  ownerSub: z.ZodString;
6259
+ agent: z.ZodOptional<z.ZodObject<{
6260
+ label: z.ZodString;
6261
+ }, z.core.$strip>>;
5724
6262
  }, z.core.$strip>, z.ZodObject<{
5725
6263
  type: z.ZodLiteral<"service_account">;
5726
6264
  id: z.ZodString;
@@ -5826,9 +6364,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5826
6364
  denied: "denied";
5827
6365
  }>>;
5828
6366
  targetType: z.ZodOptional<z.ZodEnum<{
5829
- run: "run";
5830
6367
  job: "job";
5831
6368
  step: "step";
6369
+ run: "run";
5832
6370
  environment: "environment";
5833
6371
  payload: "payload";
5834
6372
  event_log: "event_log";
@@ -5850,6 +6388,8 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5850
6388
  fromTimestamp: z.ZodOptional<z.ZodString>;
5851
6389
  toTimestamp: z.ZodOptional<z.ZodString>;
5852
6390
  q: z.ZodOptional<z.ZodString>;
6391
+ agentLabel: z.ZodOptional<z.ZodString>;
6392
+ agentOnly: z.ZodOptional<z.ZodBoolean>;
5853
6393
  limit: z.ZodOptional<z.ZodNumber>;
5854
6394
  cursor: z.ZodOptional<z.ZodString>;
5855
6395
  }, z.core.$strip>, z.ZodObject<{
@@ -5866,6 +6406,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5866
6406
  type: z.ZodLiteral<"api_key">;
5867
6407
  keyId: z.ZodString;
5868
6408
  ownerSub: z.ZodString;
6409
+ agent: z.ZodOptional<z.ZodObject<{
6410
+ label: z.ZodString;
6411
+ }, z.core.$strip>>;
5869
6412
  }, z.core.$strip>, z.ZodObject<{
5870
6413
  type: z.ZodLiteral<"service_account">;
5871
6414
  id: z.ZodString;
@@ -5896,6 +6439,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5896
6439
  type: z.ZodLiteral<"api_key">;
5897
6440
  keyId: z.ZodString;
5898
6441
  ownerSub: z.ZodString;
6442
+ agent: z.ZodOptional<z.ZodObject<{
6443
+ label: z.ZodString;
6444
+ }, z.core.$strip>>;
5899
6445
  }, z.core.$strip>, z.ZodObject<{
5900
6446
  type: z.ZodLiteral<"service_account">;
5901
6447
  id: z.ZodString;
@@ -5967,6 +6513,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5967
6513
  type: z.ZodLiteral<"api_key">;
5968
6514
  keyId: z.ZodString;
5969
6515
  ownerSub: z.ZodString;
6516
+ agent: z.ZodOptional<z.ZodObject<{
6517
+ label: z.ZodString;
6518
+ }, z.core.$strip>>;
5970
6519
  }, z.core.$strip>, z.ZodObject<{
5971
6520
  type: z.ZodLiteral<"service_account">;
5972
6521
  id: z.ZodString;
@@ -5994,6 +6543,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
5994
6543
  type: z.ZodLiteral<"api_key">;
5995
6544
  keyId: z.ZodString;
5996
6545
  ownerSub: z.ZodString;
6546
+ agent: z.ZodOptional<z.ZodObject<{
6547
+ label: z.ZodString;
6548
+ }, z.core.$strip>>;
5997
6549
  }, z.core.$strip>, z.ZodObject<{
5998
6550
  type: z.ZodLiteral<"service_account">;
5999
6551
  id: z.ZodString;
@@ -6022,6 +6574,9 @@ export declare const dashboardPlatformToOrchSchema: z.ZodDiscriminatedUnion<[z.Z
6022
6574
  type: z.ZodLiteral<"api_key">;
6023
6575
  keyId: z.ZodString;
6024
6576
  ownerSub: z.ZodString;
6577
+ agent: z.ZodOptional<z.ZodObject<{
6578
+ label: z.ZodString;
6579
+ }, z.core.$strip>>;
6025
6580
  }, z.core.$strip>, z.ZodObject<{
6026
6581
  type: z.ZodLiteral<"service_account">;
6027
6582
  id: z.ZodString;
@@ -6057,12 +6612,14 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6057
6612
  errorMessage: z.ZodNullable<z.ZodString>;
6058
6613
  runsOnLabels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6059
6614
  environments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6615
+ skippedEnvironments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6616
+ envWarning: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6060
6617
  outputs: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
6061
6618
  secretOutputKeys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6062
6619
  initFailure: z.ZodOptional<z.ZodObject<{
6063
6620
  scope: z.ZodEnum<{
6064
- run: "run";
6065
6621
  job: "job";
6622
+ run: "run";
6066
6623
  }>;
6067
6624
  category: z.ZodEnum<{
6068
6625
  secret_resolution: "secret_resolution";
@@ -6134,8 +6691,8 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6134
6691
  }, z.core.$strip>>;
6135
6692
  initFailure: z.ZodOptional<z.ZodObject<{
6136
6693
  scope: z.ZodEnum<{
6137
- run: "run";
6138
6694
  job: "job";
6695
+ run: "run";
6139
6696
  }>;
6140
6697
  category: z.ZodEnum<{
6141
6698
  secret_resolution: "secret_resolution";
@@ -6205,6 +6762,7 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6205
6762
  value: z.ZodString;
6206
6763
  }, z.core.$strip>>;
6207
6764
  triggeredBy: z.ZodNullable<z.ZodString>;
6765
+ triggeredByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6208
6766
  jobs: z.ZodArray<z.ZodObject<{
6209
6767
  jobId: z.ZodString;
6210
6768
  jobName: z.ZodObject<{
@@ -6234,8 +6792,8 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6234
6792
  }, z.core.$strip>>;
6235
6793
  initFailure: z.ZodNullable<z.ZodObject<{
6236
6794
  scope: z.ZodEnum<{
6237
- run: "run";
6238
6795
  job: "job";
6796
+ run: "run";
6239
6797
  }>;
6240
6798
  category: z.ZodEnum<{
6241
6799
  secret_resolution: "secret_resolution";
@@ -6316,6 +6874,7 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6316
6874
  requestId: z.ZodString;
6317
6875
  lines: z.ZodArray<z.ZodString>;
6318
6876
  totalLines: z.ZodNumber;
6877
+ nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6319
6878
  error: z.ZodOptional<z.ZodString>;
6320
6879
  }, z.core.$strip>, z.ZodObject<{
6321
6880
  type: z.ZodLiteral<"dashboard.attestations.list.response">;
@@ -6352,6 +6911,16 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6352
6911
  unverifiable: "unverifiable";
6353
6912
  }>>;
6354
6913
  verifyReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6914
+ sourceOrigin: z.ZodOptional<z.ZodEnum<{
6915
+ triggered: "triggered";
6916
+ "run-remote": "run-remote";
6917
+ }>>;
6918
+ originOrgId: z.ZodOptional<z.ZodString>;
6919
+ attestationOrigin: z.ZodOptional<z.ZodEnum<{
6920
+ live: "live";
6921
+ deferred: "deferred";
6922
+ "offline-backfill": "offline-backfill";
6923
+ }>>;
6355
6924
  }, z.core.$strip>>;
6356
6925
  error: z.ZodOptional<z.ZodString>;
6357
6926
  }, z.core.$strip>, z.ZodObject<{
@@ -6376,6 +6945,16 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6376
6945
  verifyReason: z.ZodNullable<z.ZodString>;
6377
6946
  repository: z.ZodNullable<z.ZodString>;
6378
6947
  workflow: z.ZodNullable<z.ZodString>;
6948
+ sourceOrigin: z.ZodOptional<z.ZodEnum<{
6949
+ triggered: "triggered";
6950
+ "run-remote": "run-remote";
6951
+ }>>;
6952
+ attestationOrigin: z.ZodOptional<z.ZodEnum<{
6953
+ live: "live";
6954
+ deferred: "deferred";
6955
+ "offline-backfill": "offline-backfill";
6956
+ }>>;
6957
+ pending: z.ZodOptional<z.ZodBoolean>;
6379
6958
  }, z.core.$strip>>;
6380
6959
  page: z.ZodNumber;
6381
6960
  pageSize: z.ZodNumber;
@@ -6416,8 +6995,24 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6416
6995
  unverifiable: "unverifiable";
6417
6996
  }>>;
6418
6997
  verifyReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6998
+ sourceOrigin: z.ZodOptional<z.ZodEnum<{
6999
+ triggered: "triggered";
7000
+ "run-remote": "run-remote";
7001
+ }>>;
7002
+ originOrgId: z.ZodOptional<z.ZodString>;
7003
+ attestationOrigin: z.ZodOptional<z.ZodEnum<{
7004
+ live: "live";
7005
+ deferred: "deferred";
7006
+ "offline-backfill": "offline-backfill";
7007
+ }>>;
6419
7008
  }, z.core.$strip>>;
6420
7009
  error: z.ZodOptional<z.ZodString>;
7010
+ }, z.core.$strip>, z.ZodObject<{
7011
+ type: z.ZodLiteral<"dashboard.attestation.retry.response">;
7012
+ requestId: z.ZodString;
7013
+ minted: z.ZodNumber;
7014
+ stillPending: z.ZodNumber;
7015
+ error: z.ZodOptional<z.ZodString>;
6421
7016
  }, z.core.$strip>, z.ZodObject<{
6422
7017
  type: z.ZodLiteral<"dashboard.runs.list.response">;
6423
7018
  requestId: z.ZodString;
@@ -6442,7 +7037,9 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6442
7037
  parentRunId: z.ZodOptional<z.ZodString>;
6443
7038
  originalRunId: z.ZodOptional<z.ZodString>;
6444
7039
  triggeredBy: z.ZodOptional<z.ZodString>;
7040
+ triggeredByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6445
7041
  cancelledBy: z.ZodOptional<z.ZodString>;
7042
+ cancelledByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6446
7043
  failureReason: z.ZodOptional<z.ZodString>;
6447
7044
  hadCompileJob: z.ZodOptional<z.ZodBoolean>;
6448
7045
  compileJobId: z.ZodOptional<z.ZodString>;
@@ -6695,8 +7292,8 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
6695
7292
  trustTier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6696
7293
  jobId: z.ZodOptional<z.ZodString>;
6697
7294
  holdScope: z.ZodOptional<z.ZodEnum<{
6698
- job: "job";
6699
7295
  workflow: "workflow";
7296
+ job: "job";
6700
7297
  step: "step";
6701
7298
  }>>;
6702
7299
  stepIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -7381,9 +7978,9 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
7381
7978
  purge_chunk: "purge_chunk";
7382
7979
  }>;
7383
7980
  targetType: z.ZodNullable<z.ZodEnum<{
7384
- run: "run";
7385
7981
  job: "job";
7386
7982
  step: "step";
7983
+ run: "run";
7387
7984
  environment: "environment";
7388
7985
  payload: "payload";
7389
7986
  event_log: "event_log";
@@ -7415,6 +8012,7 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
7415
8012
  denied: "denied";
7416
8013
  }>;
7417
8014
  errorMessage: z.ZodNullable<z.ZodString>;
8015
+ agentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7418
8016
  createdAt: z.ZodString;
7419
8017
  }, z.core.$strip>>>;
7420
8018
  nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7437,6 +8035,7 @@ export declare const dashboardOrchToPlatformSchema: z.ZodDiscriminatedUnion<[z.Z
7437
8035
  }>>;
7438
8036
  reason: z.ZodOptional<z.ZodString>;
7439
8037
  jobIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
8038
+ warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
7440
8039
  error: z.ZodOptional<z.ZodString>;
7441
8040
  }, z.core.$strip>, z.ZodObject<{
7442
8041
  type: z.ZodLiteral<"test.relay.run.status.response">;
@@ -7549,12 +8148,14 @@ export declare const dashboardRunDetailApiResponseSchema: z.ZodObject<{
7549
8148
  errorMessage: z.ZodNullable<z.ZodString>;
7550
8149
  runsOnLabels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7551
8150
  environments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
8151
+ skippedEnvironments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
8152
+ envWarning: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7552
8153
  outputs: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
7553
8154
  secretOutputKeys: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7554
8155
  initFailure: z.ZodOptional<z.ZodObject<{
7555
8156
  scope: z.ZodEnum<{
7556
- run: "run";
7557
8157
  job: "job";
8158
+ run: "run";
7558
8159
  }>;
7559
8160
  category: z.ZodEnum<{
7560
8161
  secret_resolution: "secret_resolution";
@@ -7631,8 +8232,8 @@ export declare const dashboardRunDetailApiResponseSchema: z.ZodObject<{
7631
8232
  }>>>;
7632
8233
  initFailure: z.ZodOptional<z.ZodObject<{
7633
8234
  scope: z.ZodEnum<{
7634
- run: "run";
7635
8235
  job: "job";
8236
+ run: "run";
7636
8237
  }>;
7637
8238
  category: z.ZodEnum<{
7638
8239
  secret_resolution: "secret_resolution";
@@ -7652,6 +8253,7 @@ export declare const dashboardRunDetailApiResponseSchema: z.ZodObject<{
7652
8253
  export declare const dashboardStepLogsApiResponseSchema: z.ZodObject<{
7653
8254
  lines: z.ZodArray<z.ZodString>;
7654
8255
  totalLines: z.ZodNumber;
8256
+ nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7655
8257
  }, z.core.$strip>;
7656
8258
  /**
7657
8259
  * REST API response for the run attestations list. The orchestrator-relayed
@@ -7698,6 +8300,16 @@ export declare const dashboardAttestationsApiResponseSchema: z.ZodObject<{
7698
8300
  unverifiable: "unverifiable";
7699
8301
  }>>;
7700
8302
  verifyReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8303
+ sourceOrigin: z.ZodOptional<z.ZodEnum<{
8304
+ triggered: "triggered";
8305
+ "run-remote": "run-remote";
8306
+ }>>;
8307
+ originOrgId: z.ZodOptional<z.ZodString>;
8308
+ attestationOrigin: z.ZodOptional<z.ZodEnum<{
8309
+ live: "live";
8310
+ deferred: "deferred";
8311
+ "offline-backfill": "offline-backfill";
8312
+ }>>;
7701
8313
  }, z.core.$strip>>;
7702
8314
  }, z.core.$strip>;
7703
8315
  /** Single run summary in the paginated run list. */
@@ -7717,12 +8329,14 @@ export declare const runListItemSchema: z.ZodObject<{
7717
8329
  parentRunId: z.ZodNullable<z.ZodString>;
7718
8330
  originalRunId: z.ZodNullable<z.ZodString>;
7719
8331
  triggeredBy: z.ZodNullable<z.ZodString>;
8332
+ triggeredByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7720
8333
  triggeredByUser: z.ZodNullable<z.ZodObject<{
7721
8334
  sub: z.ZodString;
7722
8335
  email: z.ZodNullable<z.ZodString>;
7723
8336
  displayName: z.ZodNullable<z.ZodString>;
7724
8337
  }, z.core.$strip>>;
7725
8338
  cancelledBy: z.ZodNullable<z.ZodString>;
8339
+ cancelledByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7726
8340
  cancelledByUser: z.ZodNullable<z.ZodObject<{
7727
8341
  sub: z.ZodString;
7728
8342
  email: z.ZodNullable<z.ZodString>;
@@ -7765,12 +8379,14 @@ export declare const runListResponseSchema: z.ZodObject<{
7765
8379
  parentRunId: z.ZodNullable<z.ZodString>;
7766
8380
  originalRunId: z.ZodNullable<z.ZodString>;
7767
8381
  triggeredBy: z.ZodNullable<z.ZodString>;
8382
+ triggeredByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7768
8383
  triggeredByUser: z.ZodNullable<z.ZodObject<{
7769
8384
  sub: z.ZodString;
7770
8385
  email: z.ZodNullable<z.ZodString>;
7771
8386
  displayName: z.ZodNullable<z.ZodString>;
7772
8387
  }, z.core.$strip>>;
7773
8388
  cancelledBy: z.ZodNullable<z.ZodString>;
8389
+ cancelledByAgentLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7774
8390
  cancelledByUser: z.ZodNullable<z.ZodObject<{
7775
8391
  sub: z.ZodString;
7776
8392
  email: z.ZodNullable<z.ZodString>;