@devhelm/sdk 0.3.0 → 0.5.0

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.
@@ -376,6 +376,103 @@ export interface paths {
376
376
  patch?: never;
377
377
  trace?: never;
378
378
  };
379
+ "/api/v1/forensics/incidents/{id}/timeline": {
380
+ parameters: {
381
+ query?: never;
382
+ header?: never;
383
+ path?: never;
384
+ cookie?: never;
385
+ };
386
+ /**
387
+ * Full forensic timeline for an incident
388
+ * @description Returns every state-machine transition for this incident plus the rule evaluations that caused each transition, plus the policy snapshot that triggered confirmation. Correlate evaluations to transitions via evaluation.triggeringTransitionId == transition.id.
389
+ */
390
+ get: operations["getTimeline"];
391
+ put?: never;
392
+ post?: never;
393
+ delete?: never;
394
+ options?: never;
395
+ head?: never;
396
+ patch?: never;
397
+ trace?: never;
398
+ };
399
+ "/api/v1/forensics/monitors/{id}/rule-evaluations": {
400
+ parameters: {
401
+ query?: never;
402
+ header?: never;
403
+ path?: never;
404
+ cookie?: never;
405
+ };
406
+ /**
407
+ * Paged list of rule evaluations for a monitor
408
+ * @description Filter by ruleType (e.g. consecutive_failures), region, onlyMatched=true to narrow to firing evaluations, and occurredAt window.
409
+ */
410
+ get: operations["listMonitorRuleEvaluations"];
411
+ put?: never;
412
+ post?: never;
413
+ delete?: never;
414
+ options?: never;
415
+ head?: never;
416
+ patch?: never;
417
+ trace?: never;
418
+ };
419
+ "/api/v1/forensics/monitors/{id}/transitions": {
420
+ parameters: {
421
+ query?: never;
422
+ header?: never;
423
+ path?: never;
424
+ cookie?: never;
425
+ };
426
+ /** Paged list of state transitions for a monitor (optionally time-bounded) */
427
+ get: operations["listMonitorTransitions"];
428
+ put?: never;
429
+ post?: never;
430
+ delete?: never;
431
+ options?: never;
432
+ head?: never;
433
+ patch?: never;
434
+ trace?: never;
435
+ };
436
+ "/api/v1/forensics/policy-snapshots/{hashHex}": {
437
+ parameters: {
438
+ query?: never;
439
+ header?: never;
440
+ path?: never;
441
+ cookie?: never;
442
+ };
443
+ /**
444
+ * Fetch a policy snapshot by its content hash
445
+ * @description Hash is SHA-256 over canonical policy JSON, hex-encoded. Access is gated: caller's org must have evaluated against this hash at least once.
446
+ */
447
+ get: operations["getPolicySnapshot"];
448
+ put?: never;
449
+ post?: never;
450
+ delete?: never;
451
+ options?: never;
452
+ head?: never;
453
+ patch?: never;
454
+ trace?: never;
455
+ };
456
+ "/api/v1/forensics/traces/{checkId}": {
457
+ parameters: {
458
+ query?: never;
459
+ header?: never;
460
+ path?: never;
461
+ cookie?: never;
462
+ };
463
+ /**
464
+ * Replay a single check execution
465
+ * @description Returns every rule evaluation and state transition emitted for this scheduler-minted check_id (V92), plus the policy snapshot that governed them.
466
+ */
467
+ get: operations["getTrace"];
468
+ put?: never;
469
+ post?: never;
470
+ delete?: never;
471
+ options?: never;
472
+ head?: never;
473
+ patch?: never;
474
+ trace?: never;
475
+ };
379
476
  "/api/v1/heartbeat/{token}": {
380
477
  parameters: {
381
478
  query?: never;
@@ -1866,6 +1963,23 @@ export interface paths {
1866
1963
  patch?: never;
1867
1964
  trace?: never;
1868
1965
  };
1966
+ "/api/v1/status-pages/{id}/domains/{domainId}/primary": {
1967
+ parameters: {
1968
+ query?: never;
1969
+ header?: never;
1970
+ path?: never;
1971
+ cookie?: never;
1972
+ };
1973
+ get?: never;
1974
+ put?: never;
1975
+ /** Mark a verified custom domain as the page's primary host */
1976
+ post: operations["setPrimaryDomain"];
1977
+ delete?: never;
1978
+ options?: never;
1979
+ head?: never;
1980
+ patch?: never;
1981
+ trace?: never;
1982
+ };
1869
1983
  "/api/v1/status-pages/{id}/domains/{domainId}/verify": {
1870
1984
  parameters: {
1871
1985
  query?: never;
@@ -2604,16 +2718,15 @@ export interface components {
2604
2718
  resourceId?: string | null;
2605
2719
  /** @description Human-readable name of the affected resource */
2606
2720
  resourceName?: string | null;
2607
- /** @description Additional context about the action */
2608
- metadata?: {
2609
- [key: string]: Record<string, never> | null;
2610
- } | null;
2721
+ metadata?: Omit<components["schemas"]["AuditMetadata"], "kind"> | null;
2611
2722
  /**
2612
2723
  * Format: date-time
2613
2724
  * @description Timestamp when the action was performed
2614
2725
  */
2615
2726
  createdAt: string;
2616
2727
  };
2728
+ /** @description Typed metadata payload attached to an audit event; null for actions that carry no extra context. */
2729
+ AuditMetadata: components["schemas"]["MemberRoleChangedMetadata"] | null;
2617
2730
  /** @description Identity, organization, plan, and rate-limit info for the authenticated API key */
2618
2731
  AuthMeResponse: {
2619
2732
  key: components["schemas"]["KeyInfo"];
@@ -2810,6 +2923,18 @@ export interface components {
2810
2923
  */
2811
2924
  checkId?: string | null;
2812
2925
  };
2926
+ CheckTraceDto: {
2927
+ /**
2928
+ * Format: uuid
2929
+ * @description The check execution ID this trace is keyed by
2930
+ */
2931
+ checkId: string;
2932
+ /** @description All rule evaluations that ran for this check */
2933
+ evaluations: components["schemas"]["RuleEvaluationDto"][];
2934
+ /** @description State-machine transitions this check caused (may be empty if nothing fired) */
2935
+ transitions: components["schemas"]["IncidentStateTransitionDto"][];
2936
+ policySnapshot?: components["schemas"]["PolicySnapshotDto"] | null;
2937
+ };
2813
2938
  /** @description Check-type-specific details — polymorphic by check_type discriminator */
2814
2939
  CheckTypeDetailsDto: components["schemas"]["Http"] | components["schemas"]["Tcp"] | components["schemas"]["Icmp"] | components["schemas"]["Dns"] | components["schemas"]["McpServer"];
2815
2940
  /** @description One component's uptime contribution for the day */
@@ -2886,7 +3011,7 @@ export interface components {
2886
3011
  ComponentUptimeDayDto: {
2887
3012
  /**
2888
3013
  * Format: date-time
2889
- * @description Date of the daily bucket (ISO 8601)
3014
+ * @description Start-of-day timestamp for this bucket (UTC midnight, ISO 8601)
2890
3015
  */
2891
3016
  date: string;
2892
3017
  /**
@@ -2906,13 +3031,11 @@ export interface components {
2906
3031
  degradedSeconds: number;
2907
3032
  /**
2908
3033
  * Format: double
2909
- * @description Computed uptime percentage for the day
3034
+ * @description Computed uptime percentage using the weighted formula (degraded does not lower it)
2910
3035
  */
2911
3036
  uptimePercentage: number;
2912
- /** @description Incident event references for this day as raw JSON */
2913
- eventsJson?: string | null;
2914
- /** @description Data source: vendor_reported or incident_derived */
2915
- source: string;
3037
+ /** @description Incidents that overlapped this day, in display order */
3038
+ incidents?: components["schemas"]["IncidentRef"][] | null;
2916
3039
  };
2917
3040
  /** @description Inline uptime percentages for 24h, 7d, 30d */
2918
3041
  ComponentUptimeSummaryDto: {
@@ -3881,10 +4004,7 @@ export interface components {
3881
4004
  * @enum {string}
3882
4005
  */
3883
4006
  check_type: "http";
3884
- /** @description Request phase timing breakdown */
3885
- timing?: {
3886
- [key: string]: Record<string, never> | null;
3887
- } | null;
4007
+ timing?: components["schemas"]["TimingPhasesDto"] | null;
3888
4008
  /** @description Whether the response body was truncated before storage */
3889
4009
  bodyTruncated?: boolean | null;
3890
4010
  };
@@ -4122,6 +4242,20 @@ export interface components {
4122
4242
  resourceGroupId?: string | null;
4123
4243
  /** @description Name of the resource group; populated on list responses. Omitted from JSON (undefined to SDKs) on detail responses, treat missing as null. */
4124
4244
  resourceGroupName?: string | null;
4245
+ /**
4246
+ * Format: uuid
4247
+ * @description Scheduler-minted check execution ID whose result confirmed this incident; joins to check_results, rule_evaluations, and incident_state_transitions. Omitted from JSON (undefined to SDKs) when null, treat missing as null.
4248
+ */
4249
+ triggeringCheckId?: string | null;
4250
+ /** @description Hex SHA-256 of the canonical policy snapshot that fired; combined with triggeredByRuleIndex points to the exact TriggerRule. Omitted from JSON when null, treat missing as null. */
4251
+ triggeredByRuleSnapshotHashHex?: string | null;
4252
+ /**
4253
+ * Format: int32
4254
+ * @description Index of the fired rule inside the policy's trigger_rules array. Omitted from JSON when null, treat missing as null.
4255
+ */
4256
+ triggeredByRuleIndex?: number | null;
4257
+ /** @description Detection engine semver that evaluated the rule. Omitted from JSON when null, treat missing as null. */
4258
+ engineVersion?: string | null;
4125
4259
  };
4126
4260
  IncidentFilterParams: {
4127
4261
  /**
@@ -4224,16 +4358,16 @@ export interface components {
4224
4358
  */
4225
4359
  checkFrequencySeconds?: number | null;
4226
4360
  };
4227
- /** @description Lightweight reference to an incident overlapping this day */
4361
+ /** @description Lightweight reference to an incident overlapping a given uptime day */
4228
4362
  IncidentRef: {
4229
4363
  /**
4230
4364
  * Format: uuid
4231
- * @description Status page incident ID
4365
+ * @description Internal incident ID — UUID for status-page incidents, service incident UUID for catalog
4232
4366
  */
4233
4367
  id: string;
4234
- /** @description Incident title */
4368
+ /** @description Incident title at the time of the overlap */
4235
4369
  title: string;
4236
- /** @description Incident impact level */
4370
+ /** @description Incident impact level (e.g. minor, major, critical for catalog; NONE/MINOR/MAJOR/CRITICAL for status pages) */
4237
4371
  impact: string;
4238
4372
  };
4239
4373
  /** @description Incident summary counters */
@@ -4245,6 +4379,56 @@ export interface components {
4245
4379
  /** Format: double */
4246
4380
  mttr30d?: number | null;
4247
4381
  };
4382
+ /** @description State-machine transitions this check caused (may be empty if nothing fired) */
4383
+ IncidentStateTransitionDto: {
4384
+ /**
4385
+ * Format: uuid
4386
+ * @description Forensic row UUID
4387
+ */
4388
+ id: string;
4389
+ /**
4390
+ * Format: date-time
4391
+ * @description When the state transition occurred
4392
+ */
4393
+ occurredAt: string;
4394
+ /**
4395
+ * Format: uuid
4396
+ * @description Monitor this transition pertains to
4397
+ */
4398
+ monitorId: string;
4399
+ /**
4400
+ * Format: uuid
4401
+ * @description Incident this transition belongs to; null for pre-incident (auto-cleared) transitions
4402
+ */
4403
+ incidentId?: string | null;
4404
+ /** @description Previous status (WATCHING | TRIGGERED | CONFIRMED | RESOLVED) */
4405
+ fromStatus: string;
4406
+ /** @description New status (WATCHING | TRIGGERED | CONFIRMED | RESOLVED) */
4407
+ toStatus: string;
4408
+ /** @description Why the transition fired (trigger | confirm | resolve | auto_clear | reopen) */
4409
+ reason: string;
4410
+ /** @description rule_evaluation ids that caused this transition (may be empty for timeout-driven edges) */
4411
+ triggeringEvaluationIds: string[];
4412
+ /** @description Regions whose evaluations contributed to this transition */
4413
+ affectedRegions: string[];
4414
+ /** @description Hex-encoded hash of the policy snapshot that governed this transition */
4415
+ policySnapshotHashHex: string;
4416
+ /** @description Detection engine version that emitted this transition */
4417
+ engineVersion: string;
4418
+ /**
4419
+ * Format: uuid
4420
+ * @description Scheduler-minted check execution ID (V92) of the triggering result
4421
+ */
4422
+ checkId: string;
4423
+ details: components["schemas"]["StateTransitionDetails"];
4424
+ };
4425
+ IncidentTimelineDto: {
4426
+ /** @description State-machine transitions in chronological order */
4427
+ transitions: components["schemas"]["IncidentStateTransitionDto"][];
4428
+ /** @description Rule evaluations that caused any of the transitions above. Correlate via evaluation.triggeringTransitionId == transition.id */
4429
+ triggeringEvaluations: components["schemas"]["RuleEvaluationDto"][];
4430
+ policySnapshot?: components["schemas"]["PolicySnapshotDto"] | null;
4431
+ };
4248
4432
  IncidentUpdateDto: {
4249
4433
  /** Format: uuid */
4250
4434
  id: string;
@@ -4582,6 +4766,24 @@ export interface components {
4582
4766
  */
4583
4767
  createdAt: string;
4584
4768
  };
4769
+ /** @description Role transition recorded when an organization member's role changes. */
4770
+ MemberRoleChangedMetadata: {
4771
+ /**
4772
+ * @description discriminator enum property added by openapi-typescript
4773
+ * @enum {string}
4774
+ */
4775
+ kind: "member_role_changed";
4776
+ /**
4777
+ * @description Role the member held before the change
4778
+ * @enum {string}
4779
+ */
4780
+ oldRole: "OWNER" | "ADMIN" | "MEMBER";
4781
+ /**
4782
+ * @description Role the member holds after the change
4783
+ * @enum {string}
4784
+ */
4785
+ newRole: "OWNER" | "ADMIN" | "MEMBER";
4786
+ };
4585
4787
  MonitorAssertionDto: {
4586
4788
  /** Format: uuid */
4587
4789
  id: string;
@@ -4998,6 +5200,27 @@ export interface components {
4998
5200
  [key: string]: number;
4999
5201
  };
5000
5202
  };
5203
+ /** @description Policy snapshot used during this check (all evaluations of a single check are against one policy) */
5204
+ PolicySnapshotDto: {
5205
+ /** @description Hex-encoded SHA-256 of the canonical policy JSON */
5206
+ hashHex: string;
5207
+ /** @description Canonical policy document (snake_case, sorted keys) */
5208
+ policy: {
5209
+ [key: string]: Record<string, never>;
5210
+ };
5211
+ /** @description Detection engine version that observed this policy */
5212
+ engineVersion: string;
5213
+ /**
5214
+ * Format: date-time
5215
+ * @description First time the detection engine evaluated against this policy bytes
5216
+ */
5217
+ firstSeenAt: string;
5218
+ /**
5219
+ * Format: date-time
5220
+ * @description Most recent time the engine evaluated against this policy bytes
5221
+ */
5222
+ lastSeenAt: string;
5223
+ } | null;
5001
5224
  /** @description Aggregated poll metrics for a time bucket */
5002
5225
  PollChartBucketDto: {
5003
5226
  /**
@@ -5395,6 +5618,57 @@ export interface components {
5395
5618
  */
5396
5619
  interval: number;
5397
5620
  };
5621
+ /** @description All rule evaluations that ran for this check */
5622
+ RuleEvaluationDto: {
5623
+ /**
5624
+ * Format: uuid
5625
+ * @description Forensic row UUID
5626
+ */
5627
+ id: string;
5628
+ /**
5629
+ * Format: date-time
5630
+ * @description When the evaluation ran
5631
+ */
5632
+ occurredAt: string;
5633
+ /**
5634
+ * Format: uuid
5635
+ * @description Monitor that produced the input check result
5636
+ */
5637
+ monitorId: string;
5638
+ /** @description Probe region of the input check result */
5639
+ region: string;
5640
+ /** @description Hex-encoded hash of the policy snapshot this rule came from */
5641
+ policySnapshotHashHex: string;
5642
+ /**
5643
+ * Format: int32
5644
+ * @description Index into the policy's triggerRules array (0-based)
5645
+ */
5646
+ ruleIndex: number;
5647
+ /** @description Rule type (e.g. consecutive_failures, failures_in_window) */
5648
+ ruleType: string;
5649
+ /** @description Rule scope (per_region | multi_region) */
5650
+ ruleScope: string;
5651
+ /** @description check_results IDs that were inputs to this evaluation (newest first) */
5652
+ inputResultIds: string[];
5653
+ /** @description Whether the rule fired on this evaluation */
5654
+ outputMatched: boolean;
5655
+ /** @description Structured details (e.g. failure counts, response-time aggregates) */
5656
+ evaluationDetails: {
5657
+ [key: string]: Record<string, never>;
5658
+ };
5659
+ /** @description Detection engine version that ran this evaluation */
5660
+ engineVersion: string;
5661
+ /**
5662
+ * Format: uuid
5663
+ * @description Scheduler-minted check execution ID (V92) — the causal chain identifier
5664
+ */
5665
+ checkId: string;
5666
+ /**
5667
+ * Format: uuid
5668
+ * @description If this evaluation caused a state transition, points to that transition's id
5669
+ */
5670
+ triggeringTransitionId?: string | null;
5671
+ };
5398
5672
  /** @description A scheduled maintenance window from a vendor status page */
5399
5673
  ScheduledMaintenanceDto: {
5400
5674
  /**
@@ -5869,6 +6143,9 @@ export interface components {
5869
6143
  SingleValueResponseBulkMonitorActionResult: {
5870
6144
  data: components["schemas"]["BulkMonitorActionResult"];
5871
6145
  };
6146
+ SingleValueResponseCheckTraceDto: {
6147
+ data: components["schemas"]["CheckTraceDto"];
6148
+ };
5872
6149
  SingleValueResponseDashboardOverviewDto: {
5873
6150
  data: components["schemas"]["DashboardOverviewDto"];
5874
6151
  };
@@ -5890,6 +6167,9 @@ export interface components {
5890
6167
  SingleValueResponseIncidentPolicyDto: {
5891
6168
  data: components["schemas"]["IncidentPolicyDto"];
5892
6169
  };
6170
+ SingleValueResponseIncidentTimelineDto: {
6171
+ data: components["schemas"]["IncidentTimelineDto"];
6172
+ };
5893
6173
  SingleValueResponseInviteDto: {
5894
6174
  data: components["schemas"]["InviteDto"];
5895
6175
  };
@@ -5927,6 +6207,9 @@ export interface components {
5927
6207
  SingleValueResponseOrganizationDto: {
5928
6208
  data: components["schemas"]["OrganizationDto"];
5929
6209
  };
6210
+ SingleValueResponsePolicySnapshotDto: {
6211
+ data: components["schemas"]["PolicySnapshotDto"];
6212
+ };
5930
6213
  SingleValueResponseResourceGroupDto: {
5931
6214
  data: components["schemas"]["ResourceGroupDto"];
5932
6215
  };
@@ -6025,6 +6308,14 @@ export interface components {
6025
6308
  */
6026
6309
  minDaysRemaining: number;
6027
6310
  };
6311
+ /** @description Typed metadata about this transition (currently: actor source) */
6312
+ StateTransitionDetails: {
6313
+ /**
6314
+ * @description Actor that produced this transition (pipeline | public-api)
6315
+ * @enum {string}
6316
+ */
6317
+ source: "pipeline" | "public-api";
6318
+ };
6028
6319
  StatusCodeAssertion: {
6029
6320
  /** @enum {string} */
6030
6321
  type: "status_code";
@@ -6116,31 +6407,6 @@ export interface components {
6116
6407
  /** Format: date-time */
6117
6408
  updatedAt: string;
6118
6409
  };
6119
- /** @description Daily uptime data for a status page component */
6120
- StatusPageComponentUptimeDayDto: {
6121
- /**
6122
- * Format: date-time
6123
- * @description Start-of-day timestamp for this bucket (UTC midnight)
6124
- */
6125
- date: string;
6126
- /**
6127
- * Format: int32
6128
- * @description Seconds of partial outage on this day
6129
- */
6130
- partialOutageSeconds: number;
6131
- /**
6132
- * Format: int32
6133
- * @description Seconds of major outage on this day
6134
- */
6135
- majorOutageSeconds: number;
6136
- /**
6137
- * Format: double
6138
- * @description Computed uptime percentage using weighted formula
6139
- */
6140
- uptimePercentage: number;
6141
- /** @description Incidents that overlapped this day */
6142
- incidents?: components["schemas"]["IncidentRef"][] | null;
6143
- };
6144
6410
  StatusPageCustomDomainDto: {
6145
6411
  /** Format: uuid */
6146
6412
  id: string;
@@ -6154,6 +6420,10 @@ export interface components {
6154
6420
  /** Format: date-time */
6155
6421
  verifiedAt?: string | null;
6156
6422
  verificationError?: string | null;
6423
+ cfCustomHostnameId?: string | null;
6424
+ cfSslStatus?: string | null;
6425
+ /** Format: date-time */
6426
+ sslActiveAt?: string | null;
6157
6427
  /** Format: date-time */
6158
6428
  createdAt: string;
6159
6429
  /** Format: date-time */
@@ -6339,6 +6609,15 @@ export interface components {
6339
6609
  /** Format: int32 */
6340
6610
  totalPages?: number | null;
6341
6611
  };
6612
+ TableValueResultIncidentStateTransitionDto: {
6613
+ data: components["schemas"]["IncidentStateTransitionDto"][];
6614
+ hasNext: boolean;
6615
+ hasPrev: boolean;
6616
+ /** Format: int64 */
6617
+ totalElements?: number | null;
6618
+ /** Format: int32 */
6619
+ totalPages?: number | null;
6620
+ };
6342
6621
  TableValueResultIntegrationDto: {
6343
6622
  data: components["schemas"]["IntegrationDto"][];
6344
6623
  hasNext: boolean;
@@ -6429,6 +6708,15 @@ export interface components {
6429
6708
  /** Format: int32 */
6430
6709
  totalPages?: number | null;
6431
6710
  };
6711
+ TableValueResultRuleEvaluationDto: {
6712
+ data: components["schemas"]["RuleEvaluationDto"][];
6713
+ hasNext: boolean;
6714
+ hasPrev: boolean;
6715
+ /** Format: int64 */
6716
+ totalElements?: number | null;
6717
+ /** Format: int32 */
6718
+ totalPages?: number | null;
6719
+ };
6432
6720
  TableValueResultScheduledMaintenanceDto: {
6433
6721
  data: components["schemas"]["ScheduledMaintenanceDto"][];
6434
6722
  hasNext: boolean;
@@ -6492,15 +6780,6 @@ export interface components {
6492
6780
  /** Format: int32 */
6493
6781
  totalPages?: number | null;
6494
6782
  };
6495
- TableValueResultStatusPageComponentUptimeDayDto: {
6496
- data: components["schemas"]["StatusPageComponentUptimeDayDto"][];
6497
- hasNext: boolean;
6498
- hasPrev: boolean;
6499
- /** Format: int64 */
6500
- totalElements?: number | null;
6501
- /** Format: int32 */
6502
- totalPages?: number | null;
6503
- };
6504
6783
  TableValueResultStatusPageCustomDomainDto: {
6505
6784
  data: components["schemas"]["StatusPageCustomDomainDto"][];
6506
6785
  hasNext: boolean;
@@ -6710,6 +6989,45 @@ export interface components {
6710
6989
  /** @description Event type to simulate (e.g. monitor.created); null uses a default */
6711
6990
  eventType?: string | null;
6712
6991
  };
6992
+ /** @description Per-phase HTTP request timing breakdown (milliseconds) */
6993
+ TimingPhasesDto: {
6994
+ /**
6995
+ * Format: int32
6996
+ * @description DNS resolution time in milliseconds
6997
+ * @example 12
6998
+ */
6999
+ dns_ms?: number | null;
7000
+ /**
7001
+ * Format: int32
7002
+ * @description TCP connect time in milliseconds
7003
+ * @example 18
7004
+ */
7005
+ tcp_ms?: number | null;
7006
+ /**
7007
+ * Format: int32
7008
+ * @description TLS handshake time in milliseconds (null for plain HTTP)
7009
+ * @example 34
7010
+ */
7011
+ tls_ms?: number | null;
7012
+ /**
7013
+ * Format: int32
7014
+ * @description Time to first response byte in milliseconds
7015
+ * @example 42
7016
+ */
7017
+ ttfb_ms?: number | null;
7018
+ /**
7019
+ * Format: int32
7020
+ * @description Response body download time in milliseconds
7021
+ * @example 8
7022
+ */
7023
+ download_ms?: number | null;
7024
+ /**
7025
+ * Format: int32
7026
+ * @description Total wall-clock request time in milliseconds
7027
+ * @example 114
7028
+ */
7029
+ total_ms?: number | null;
7030
+ };
6713
7031
  /** @description TLS/SSL certificate details for HTTPS targets */
6714
7032
  TlsInfoDto: {
6715
7033
  /**
@@ -8782,15 +9100,479 @@ export interface operations {
8782
9100
  path?: never;
8783
9101
  cookie?: never;
8784
9102
  };
8785
- requestBody?: never;
9103
+ requestBody?: never;
9104
+ responses: {
9105
+ /** @description OK */
9106
+ 200: {
9107
+ headers: {
9108
+ [name: string]: unknown;
9109
+ };
9110
+ content: {
9111
+ "*/*": components["schemas"]["TableValueResultAuditEventDto"];
9112
+ };
9113
+ };
9114
+ /** @description Bad request — the payload failed validation */
9115
+ 400: {
9116
+ headers: {
9117
+ [name: string]: unknown;
9118
+ };
9119
+ content: {
9120
+ "application/json": components["schemas"]["ErrorResponse"];
9121
+ };
9122
+ };
9123
+ /** @description Unauthorized — missing or invalid credentials */
9124
+ 401: {
9125
+ headers: {
9126
+ [name: string]: unknown;
9127
+ };
9128
+ content: {
9129
+ "application/json": components["schemas"]["ErrorResponse"];
9130
+ };
9131
+ };
9132
+ /** @description Forbidden — the actor lacks permission for this resource */
9133
+ 403: {
9134
+ headers: {
9135
+ [name: string]: unknown;
9136
+ };
9137
+ content: {
9138
+ "application/json": components["schemas"]["ErrorResponse"];
9139
+ };
9140
+ };
9141
+ /** @description Not found — the requested resource does not exist */
9142
+ 404: {
9143
+ headers: {
9144
+ [name: string]: unknown;
9145
+ };
9146
+ content: {
9147
+ "application/json": components["schemas"]["ErrorResponse"];
9148
+ };
9149
+ };
9150
+ /** @description Conflict — the request collides with current resource state */
9151
+ 409: {
9152
+ headers: {
9153
+ [name: string]: unknown;
9154
+ };
9155
+ content: {
9156
+ "application/json": components["schemas"]["ErrorResponse"];
9157
+ };
9158
+ };
9159
+ /** @description Internal server error — see the message field for details */
9160
+ 500: {
9161
+ headers: {
9162
+ [name: string]: unknown;
9163
+ };
9164
+ content: {
9165
+ "application/json": components["schemas"]["ErrorResponse"];
9166
+ };
9167
+ };
9168
+ /** @description Bad gateway — an upstream provider returned an error */
9169
+ 502: {
9170
+ headers: {
9171
+ [name: string]: unknown;
9172
+ };
9173
+ content: {
9174
+ "application/json": components["schemas"]["ErrorResponse"];
9175
+ };
9176
+ };
9177
+ /** @description Service unavailable — try again shortly */
9178
+ 503: {
9179
+ headers: {
9180
+ [name: string]: unknown;
9181
+ };
9182
+ content: {
9183
+ "application/json": components["schemas"]["ErrorResponse"];
9184
+ };
9185
+ };
9186
+ };
9187
+ };
9188
+ me_1: {
9189
+ parameters: {
9190
+ query?: never;
9191
+ header?: never;
9192
+ path?: never;
9193
+ cookie?: never;
9194
+ };
9195
+ requestBody?: never;
9196
+ responses: {
9197
+ /** @description OK */
9198
+ 200: {
9199
+ headers: {
9200
+ [name: string]: unknown;
9201
+ };
9202
+ content: {
9203
+ "*/*": components["schemas"]["SingleValueResponseAuthMeResponse"];
9204
+ };
9205
+ };
9206
+ /** @description Bad request — the payload failed validation */
9207
+ 400: {
9208
+ headers: {
9209
+ [name: string]: unknown;
9210
+ };
9211
+ content: {
9212
+ "application/json": components["schemas"]["ErrorResponse"];
9213
+ };
9214
+ };
9215
+ /** @description Unauthorized — missing or invalid credentials */
9216
+ 401: {
9217
+ headers: {
9218
+ [name: string]: unknown;
9219
+ };
9220
+ content: {
9221
+ "application/json": components["schemas"]["ErrorResponse"];
9222
+ };
9223
+ };
9224
+ /** @description Forbidden — the actor lacks permission for this resource */
9225
+ 403: {
9226
+ headers: {
9227
+ [name: string]: unknown;
9228
+ };
9229
+ content: {
9230
+ "application/json": components["schemas"]["ErrorResponse"];
9231
+ };
9232
+ };
9233
+ /** @description Not found — the requested resource does not exist */
9234
+ 404: {
9235
+ headers: {
9236
+ [name: string]: unknown;
9237
+ };
9238
+ content: {
9239
+ "application/json": components["schemas"]["ErrorResponse"];
9240
+ };
9241
+ };
9242
+ /** @description Conflict — the request collides with current resource state */
9243
+ 409: {
9244
+ headers: {
9245
+ [name: string]: unknown;
9246
+ };
9247
+ content: {
9248
+ "application/json": components["schemas"]["ErrorResponse"];
9249
+ };
9250
+ };
9251
+ /** @description Internal server error — see the message field for details */
9252
+ 500: {
9253
+ headers: {
9254
+ [name: string]: unknown;
9255
+ };
9256
+ content: {
9257
+ "application/json": components["schemas"]["ErrorResponse"];
9258
+ };
9259
+ };
9260
+ /** @description Bad gateway — an upstream provider returned an error */
9261
+ 502: {
9262
+ headers: {
9263
+ [name: string]: unknown;
9264
+ };
9265
+ content: {
9266
+ "application/json": components["schemas"]["ErrorResponse"];
9267
+ };
9268
+ };
9269
+ /** @description Service unavailable — try again shortly */
9270
+ 503: {
9271
+ headers: {
9272
+ [name: string]: unknown;
9273
+ };
9274
+ content: {
9275
+ "application/json": components["schemas"]["ErrorResponse"];
9276
+ };
9277
+ };
9278
+ };
9279
+ };
9280
+ listCategories: {
9281
+ parameters: {
9282
+ query?: never;
9283
+ header?: never;
9284
+ path?: never;
9285
+ cookie?: never;
9286
+ };
9287
+ requestBody?: never;
9288
+ responses: {
9289
+ /** @description OK */
9290
+ 200: {
9291
+ headers: {
9292
+ [name: string]: unknown;
9293
+ };
9294
+ content: {
9295
+ "*/*": components["schemas"]["TableValueResultCategoryDto"];
9296
+ };
9297
+ };
9298
+ /** @description Bad request — the payload failed validation */
9299
+ 400: {
9300
+ headers: {
9301
+ [name: string]: unknown;
9302
+ };
9303
+ content: {
9304
+ "application/json": components["schemas"]["ErrorResponse"];
9305
+ };
9306
+ };
9307
+ /** @description Unauthorized — missing or invalid credentials */
9308
+ 401: {
9309
+ headers: {
9310
+ [name: string]: unknown;
9311
+ };
9312
+ content: {
9313
+ "application/json": components["schemas"]["ErrorResponse"];
9314
+ };
9315
+ };
9316
+ /** @description Forbidden — the actor lacks permission for this resource */
9317
+ 403: {
9318
+ headers: {
9319
+ [name: string]: unknown;
9320
+ };
9321
+ content: {
9322
+ "application/json": components["schemas"]["ErrorResponse"];
9323
+ };
9324
+ };
9325
+ /** @description Not found — the requested resource does not exist */
9326
+ 404: {
9327
+ headers: {
9328
+ [name: string]: unknown;
9329
+ };
9330
+ content: {
9331
+ "application/json": components["schemas"]["ErrorResponse"];
9332
+ };
9333
+ };
9334
+ /** @description Conflict — the request collides with current resource state */
9335
+ 409: {
9336
+ headers: {
9337
+ [name: string]: unknown;
9338
+ };
9339
+ content: {
9340
+ "application/json": components["schemas"]["ErrorResponse"];
9341
+ };
9342
+ };
9343
+ /** @description Internal server error — see the message field for details */
9344
+ 500: {
9345
+ headers: {
9346
+ [name: string]: unknown;
9347
+ };
9348
+ content: {
9349
+ "application/json": components["schemas"]["ErrorResponse"];
9350
+ };
9351
+ };
9352
+ /** @description Bad gateway — an upstream provider returned an error */
9353
+ 502: {
9354
+ headers: {
9355
+ [name: string]: unknown;
9356
+ };
9357
+ content: {
9358
+ "application/json": components["schemas"]["ErrorResponse"];
9359
+ };
9360
+ };
9361
+ /** @description Service unavailable — try again shortly */
9362
+ 503: {
9363
+ headers: {
9364
+ [name: string]: unknown;
9365
+ };
9366
+ content: {
9367
+ "application/json": components["schemas"]["ErrorResponse"];
9368
+ };
9369
+ };
9370
+ };
9371
+ };
9372
+ overview: {
9373
+ parameters: {
9374
+ query?: never;
9375
+ header?: never;
9376
+ path?: never;
9377
+ cookie?: never;
9378
+ };
9379
+ requestBody?: never;
9380
+ responses: {
9381
+ /** @description OK */
9382
+ 200: {
9383
+ headers: {
9384
+ [name: string]: unknown;
9385
+ };
9386
+ content: {
9387
+ "*/*": components["schemas"]["SingleValueResponseDashboardOverviewDto"];
9388
+ };
9389
+ };
9390
+ /** @description Bad request — the payload failed validation */
9391
+ 400: {
9392
+ headers: {
9393
+ [name: string]: unknown;
9394
+ };
9395
+ content: {
9396
+ "application/json": components["schemas"]["ErrorResponse"];
9397
+ };
9398
+ };
9399
+ /** @description Unauthorized — missing or invalid credentials */
9400
+ 401: {
9401
+ headers: {
9402
+ [name: string]: unknown;
9403
+ };
9404
+ content: {
9405
+ "application/json": components["schemas"]["ErrorResponse"];
9406
+ };
9407
+ };
9408
+ /** @description Forbidden — the actor lacks permission for this resource */
9409
+ 403: {
9410
+ headers: {
9411
+ [name: string]: unknown;
9412
+ };
9413
+ content: {
9414
+ "application/json": components["schemas"]["ErrorResponse"];
9415
+ };
9416
+ };
9417
+ /** @description Not found — the requested resource does not exist */
9418
+ 404: {
9419
+ headers: {
9420
+ [name: string]: unknown;
9421
+ };
9422
+ content: {
9423
+ "application/json": components["schemas"]["ErrorResponse"];
9424
+ };
9425
+ };
9426
+ /** @description Conflict — the request collides with current resource state */
9427
+ 409: {
9428
+ headers: {
9429
+ [name: string]: unknown;
9430
+ };
9431
+ content: {
9432
+ "application/json": components["schemas"]["ErrorResponse"];
9433
+ };
9434
+ };
9435
+ /** @description Internal server error — see the message field for details */
9436
+ 500: {
9437
+ headers: {
9438
+ [name: string]: unknown;
9439
+ };
9440
+ content: {
9441
+ "application/json": components["schemas"]["ErrorResponse"];
9442
+ };
9443
+ };
9444
+ /** @description Bad gateway — an upstream provider returned an error */
9445
+ 502: {
9446
+ headers: {
9447
+ [name: string]: unknown;
9448
+ };
9449
+ content: {
9450
+ "application/json": components["schemas"]["ErrorResponse"];
9451
+ };
9452
+ };
9453
+ /** @description Service unavailable — try again shortly */
9454
+ 503: {
9455
+ headers: {
9456
+ [name: string]: unknown;
9457
+ };
9458
+ content: {
9459
+ "application/json": components["schemas"]["ErrorResponse"];
9460
+ };
9461
+ };
9462
+ };
9463
+ };
9464
+ current: {
9465
+ parameters: {
9466
+ query?: never;
9467
+ header?: never;
9468
+ path?: never;
9469
+ cookie?: never;
9470
+ };
9471
+ requestBody?: never;
9472
+ responses: {
9473
+ /** @description OK */
9474
+ 200: {
9475
+ headers: {
9476
+ [name: string]: unknown;
9477
+ };
9478
+ content: {
9479
+ "*/*": components["schemas"]["SingleValueResponseDeployLockDto"];
9480
+ };
9481
+ };
9482
+ /** @description Bad request — the payload failed validation */
9483
+ 400: {
9484
+ headers: {
9485
+ [name: string]: unknown;
9486
+ };
9487
+ content: {
9488
+ "application/json": components["schemas"]["ErrorResponse"];
9489
+ };
9490
+ };
9491
+ /** @description Unauthorized — missing or invalid credentials */
9492
+ 401: {
9493
+ headers: {
9494
+ [name: string]: unknown;
9495
+ };
9496
+ content: {
9497
+ "application/json": components["schemas"]["ErrorResponse"];
9498
+ };
9499
+ };
9500
+ /** @description Forbidden — the actor lacks permission for this resource */
9501
+ 403: {
9502
+ headers: {
9503
+ [name: string]: unknown;
9504
+ };
9505
+ content: {
9506
+ "application/json": components["schemas"]["ErrorResponse"];
9507
+ };
9508
+ };
9509
+ /** @description Not found — the requested resource does not exist */
9510
+ 404: {
9511
+ headers: {
9512
+ [name: string]: unknown;
9513
+ };
9514
+ content: {
9515
+ "application/json": components["schemas"]["ErrorResponse"];
9516
+ };
9517
+ };
9518
+ /** @description Conflict — the request collides with current resource state */
9519
+ 409: {
9520
+ headers: {
9521
+ [name: string]: unknown;
9522
+ };
9523
+ content: {
9524
+ "application/json": components["schemas"]["ErrorResponse"];
9525
+ };
9526
+ };
9527
+ /** @description Internal server error — see the message field for details */
9528
+ 500: {
9529
+ headers: {
9530
+ [name: string]: unknown;
9531
+ };
9532
+ content: {
9533
+ "application/json": components["schemas"]["ErrorResponse"];
9534
+ };
9535
+ };
9536
+ /** @description Bad gateway — an upstream provider returned an error */
9537
+ 502: {
9538
+ headers: {
9539
+ [name: string]: unknown;
9540
+ };
9541
+ content: {
9542
+ "application/json": components["schemas"]["ErrorResponse"];
9543
+ };
9544
+ };
9545
+ /** @description Service unavailable — try again shortly */
9546
+ 503: {
9547
+ headers: {
9548
+ [name: string]: unknown;
9549
+ };
9550
+ content: {
9551
+ "application/json": components["schemas"]["ErrorResponse"];
9552
+ };
9553
+ };
9554
+ };
9555
+ };
9556
+ acquire: {
9557
+ parameters: {
9558
+ query?: never;
9559
+ header?: never;
9560
+ path?: never;
9561
+ cookie?: never;
9562
+ };
9563
+ requestBody: {
9564
+ content: {
9565
+ "application/json": components["schemas"]["AcquireDeployLockRequest"];
9566
+ };
9567
+ };
8786
9568
  responses: {
8787
- /** @description OK */
8788
- 200: {
9569
+ /** @description Created */
9570
+ 201: {
8789
9571
  headers: {
8790
9572
  [name: string]: unknown;
8791
9573
  };
8792
9574
  content: {
8793
- "*/*": components["schemas"]["TableValueResultAuditEventDto"];
9575
+ "*/*": components["schemas"]["SingleValueResponseDeployLockDto"];
8794
9576
  };
8795
9577
  };
8796
9578
  /** @description Bad request — the payload failed validation */
@@ -8867,23 +9649,23 @@ export interface operations {
8867
9649
  };
8868
9650
  };
8869
9651
  };
8870
- me_1: {
9652
+ release: {
8871
9653
  parameters: {
8872
9654
  query?: never;
8873
9655
  header?: never;
8874
- path?: never;
9656
+ path: {
9657
+ lockId: string;
9658
+ };
8875
9659
  cookie?: never;
8876
9660
  };
8877
9661
  requestBody?: never;
8878
9662
  responses: {
8879
- /** @description OK */
8880
- 200: {
9663
+ /** @description No Content */
9664
+ 204: {
8881
9665
  headers: {
8882
9666
  [name: string]: unknown;
8883
9667
  };
8884
- content: {
8885
- "*/*": components["schemas"]["SingleValueResponseAuthMeResponse"];
8886
- };
9668
+ content?: never;
8887
9669
  };
8888
9670
  /** @description Bad request — the payload failed validation */
8889
9671
  400: {
@@ -8959,7 +9741,7 @@ export interface operations {
8959
9741
  };
8960
9742
  };
8961
9743
  };
8962
- listCategories: {
9744
+ forceRelease: {
8963
9745
  parameters: {
8964
9746
  query?: never;
8965
9747
  header?: never;
@@ -8968,14 +9750,12 @@ export interface operations {
8968
9750
  };
8969
9751
  requestBody?: never;
8970
9752
  responses: {
8971
- /** @description OK */
8972
- 200: {
9753
+ /** @description No Content */
9754
+ 204: {
8973
9755
  headers: {
8974
9756
  [name: string]: unknown;
8975
9757
  };
8976
- content: {
8977
- "*/*": components["schemas"]["TableValueResultCategoryDto"];
8978
- };
9758
+ content?: never;
8979
9759
  };
8980
9760
  /** @description Bad request — the payload failed validation */
8981
9761
  400: {
@@ -9051,7 +9831,7 @@ export interface operations {
9051
9831
  };
9052
9832
  };
9053
9833
  };
9054
- overview: {
9834
+ list_12: {
9055
9835
  parameters: {
9056
9836
  query?: never;
9057
9837
  header?: never;
@@ -9066,7 +9846,7 @@ export interface operations {
9066
9846
  [name: string]: unknown;
9067
9847
  };
9068
9848
  content: {
9069
- "*/*": components["schemas"]["SingleValueResponseDashboardOverviewDto"];
9849
+ "*/*": components["schemas"]["TableValueResultEnvironmentDto"];
9070
9850
  };
9071
9851
  };
9072
9852
  /** @description Bad request — the payload failed validation */
@@ -9143,22 +9923,26 @@ export interface operations {
9143
9923
  };
9144
9924
  };
9145
9925
  };
9146
- current: {
9926
+ create_13: {
9147
9927
  parameters: {
9148
9928
  query?: never;
9149
9929
  header?: never;
9150
9930
  path?: never;
9151
9931
  cookie?: never;
9152
9932
  };
9153
- requestBody?: never;
9933
+ requestBody: {
9934
+ content: {
9935
+ "application/json": components["schemas"]["CreateEnvironmentRequest"];
9936
+ };
9937
+ };
9154
9938
  responses: {
9155
- /** @description OK */
9156
- 200: {
9939
+ /** @description Created */
9940
+ 201: {
9157
9941
  headers: {
9158
9942
  [name: string]: unknown;
9159
9943
  };
9160
9944
  content: {
9161
- "*/*": components["schemas"]["SingleValueResponseDeployLockDto"];
9945
+ "*/*": components["schemas"]["SingleValueResponseEnvironmentDto"];
9162
9946
  };
9163
9947
  };
9164
9948
  /** @description Bad request — the payload failed validation */
@@ -9235,26 +10019,24 @@ export interface operations {
9235
10019
  };
9236
10020
  };
9237
10021
  };
9238
- acquire: {
10022
+ get_7: {
9239
10023
  parameters: {
9240
10024
  query?: never;
9241
10025
  header?: never;
9242
- path?: never;
9243
- cookie?: never;
9244
- };
9245
- requestBody: {
9246
- content: {
9247
- "application/json": components["schemas"]["AcquireDeployLockRequest"];
10026
+ path: {
10027
+ slug: string;
9248
10028
  };
10029
+ cookie?: never;
9249
10030
  };
10031
+ requestBody?: never;
9250
10032
  responses: {
9251
- /** @description Created */
9252
- 201: {
10033
+ /** @description OK */
10034
+ 200: {
9253
10035
  headers: {
9254
10036
  [name: string]: unknown;
9255
10037
  };
9256
10038
  content: {
9257
- "*/*": components["schemas"]["SingleValueResponseDeployLockDto"];
10039
+ "*/*": components["schemas"]["SingleValueResponseEnvironmentDto"];
9258
10040
  };
9259
10041
  };
9260
10042
  /** @description Bad request — the payload failed validation */
@@ -9331,23 +10113,29 @@ export interface operations {
9331
10113
  };
9332
10114
  };
9333
10115
  };
9334
- release: {
10116
+ update_13: {
9335
10117
  parameters: {
9336
10118
  query?: never;
9337
10119
  header?: never;
9338
10120
  path: {
9339
- lockId: string;
10121
+ slug: string;
9340
10122
  };
9341
10123
  cookie?: never;
9342
10124
  };
9343
- requestBody?: never;
10125
+ requestBody: {
10126
+ content: {
10127
+ "application/json": components["schemas"]["UpdateEnvironmentRequest"];
10128
+ };
10129
+ };
9344
10130
  responses: {
9345
- /** @description No Content */
9346
- 204: {
10131
+ /** @description OK */
10132
+ 200: {
9347
10133
  headers: {
9348
10134
  [name: string]: unknown;
9349
10135
  };
9350
- content?: never;
10136
+ content: {
10137
+ "*/*": components["schemas"]["SingleValueResponseEnvironmentDto"];
10138
+ };
9351
10139
  };
9352
10140
  /** @description Bad request — the payload failed validation */
9353
10141
  400: {
@@ -9423,11 +10211,13 @@ export interface operations {
9423
10211
  };
9424
10212
  };
9425
10213
  };
9426
- forceRelease: {
10214
+ delete_9: {
9427
10215
  parameters: {
9428
10216
  query?: never;
9429
10217
  header?: never;
9430
- path?: never;
10218
+ path: {
10219
+ slug: string;
10220
+ };
9431
10221
  cookie?: never;
9432
10222
  };
9433
10223
  requestBody?: never;
@@ -9513,11 +10303,13 @@ export interface operations {
9513
10303
  };
9514
10304
  };
9515
10305
  };
9516
- list_12: {
10306
+ getTimeline: {
9517
10307
  parameters: {
9518
10308
  query?: never;
9519
10309
  header?: never;
9520
- path?: never;
10310
+ path: {
10311
+ id: string;
10312
+ };
9521
10313
  cookie?: never;
9522
10314
  };
9523
10315
  requestBody?: never;
@@ -9528,7 +10320,7 @@ export interface operations {
9528
10320
  [name: string]: unknown;
9529
10321
  };
9530
10322
  content: {
9531
- "*/*": components["schemas"]["TableValueResultEnvironmentDto"];
10323
+ "*/*": components["schemas"]["SingleValueResponseIncidentTimelineDto"];
9532
10324
  };
9533
10325
  };
9534
10326
  /** @description Bad request — the payload failed validation */
@@ -9605,26 +10397,31 @@ export interface operations {
9605
10397
  };
9606
10398
  };
9607
10399
  };
9608
- create_13: {
10400
+ listMonitorRuleEvaluations: {
9609
10401
  parameters: {
9610
- query?: never;
10402
+ query: {
10403
+ ruleType?: string;
10404
+ region?: string;
10405
+ onlyMatched?: boolean;
10406
+ from?: string;
10407
+ to?: string;
10408
+ pageable: components["schemas"]["Pageable"];
10409
+ };
9611
10410
  header?: never;
9612
- path?: never;
9613
- cookie?: never;
9614
- };
9615
- requestBody: {
9616
- content: {
9617
- "application/json": components["schemas"]["CreateEnvironmentRequest"];
10411
+ path: {
10412
+ id: string;
9618
10413
  };
10414
+ cookie?: never;
9619
10415
  };
10416
+ requestBody?: never;
9620
10417
  responses: {
9621
- /** @description Created */
9622
- 201: {
10418
+ /** @description OK */
10419
+ 200: {
9623
10420
  headers: {
9624
10421
  [name: string]: unknown;
9625
10422
  };
9626
10423
  content: {
9627
- "*/*": components["schemas"]["SingleValueResponseEnvironmentDto"];
10424
+ "*/*": components["schemas"]["TableValueResultRuleEvaluationDto"];
9628
10425
  };
9629
10426
  };
9630
10427
  /** @description Bad request — the payload failed validation */
@@ -9701,12 +10498,16 @@ export interface operations {
9701
10498
  };
9702
10499
  };
9703
10500
  };
9704
- get_7: {
10501
+ listMonitorTransitions: {
9705
10502
  parameters: {
9706
- query?: never;
10503
+ query: {
10504
+ from?: string;
10505
+ to?: string;
10506
+ pageable: components["schemas"]["Pageable"];
10507
+ };
9707
10508
  header?: never;
9708
10509
  path: {
9709
- slug: string;
10510
+ id: string;
9710
10511
  };
9711
10512
  cookie?: never;
9712
10513
  };
@@ -9718,7 +10519,7 @@ export interface operations {
9718
10519
  [name: string]: unknown;
9719
10520
  };
9720
10521
  content: {
9721
- "*/*": components["schemas"]["SingleValueResponseEnvironmentDto"];
10522
+ "*/*": components["schemas"]["TableValueResultIncidentStateTransitionDto"];
9722
10523
  };
9723
10524
  };
9724
10525
  /** @description Bad request — the payload failed validation */
@@ -9795,20 +10596,16 @@ export interface operations {
9795
10596
  };
9796
10597
  };
9797
10598
  };
9798
- update_13: {
10599
+ getPolicySnapshot: {
9799
10600
  parameters: {
9800
10601
  query?: never;
9801
10602
  header?: never;
9802
10603
  path: {
9803
- slug: string;
10604
+ hashHex: string;
9804
10605
  };
9805
10606
  cookie?: never;
9806
10607
  };
9807
- requestBody: {
9808
- content: {
9809
- "application/json": components["schemas"]["UpdateEnvironmentRequest"];
9810
- };
9811
- };
10608
+ requestBody?: never;
9812
10609
  responses: {
9813
10610
  /** @description OK */
9814
10611
  200: {
@@ -9816,7 +10613,7 @@ export interface operations {
9816
10613
  [name: string]: unknown;
9817
10614
  };
9818
10615
  content: {
9819
- "*/*": components["schemas"]["SingleValueResponseEnvironmentDto"];
10616
+ "*/*": components["schemas"]["SingleValueResponsePolicySnapshotDto"];
9820
10617
  };
9821
10618
  };
9822
10619
  /** @description Bad request — the payload failed validation */
@@ -9893,23 +10690,25 @@ export interface operations {
9893
10690
  };
9894
10691
  };
9895
10692
  };
9896
- delete_9: {
10693
+ getTrace: {
9897
10694
  parameters: {
9898
10695
  query?: never;
9899
10696
  header?: never;
9900
10697
  path: {
9901
- slug: string;
10698
+ checkId: string;
9902
10699
  };
9903
10700
  cookie?: never;
9904
10701
  };
9905
10702
  requestBody?: never;
9906
10703
  responses: {
9907
- /** @description No Content */
9908
- 204: {
10704
+ /** @description OK */
10705
+ 200: {
9909
10706
  headers: {
9910
10707
  [name: string]: unknown;
9911
10708
  };
9912
- content?: never;
10709
+ content: {
10710
+ "*/*": components["schemas"]["SingleValueResponseCheckTraceDto"];
10711
+ };
9913
10712
  };
9914
10713
  /** @description Bad request — the payload failed validation */
9915
10714
  400: {
@@ -20150,7 +20949,7 @@ export interface operations {
20150
20949
  [name: string]: unknown;
20151
20950
  };
20152
20951
  content: {
20153
- "*/*": components["schemas"]["TableValueResultStatusPageComponentUptimeDayDto"];
20952
+ "*/*": components["schemas"]["TableValueResultComponentUptimeDayDto"];
20154
20953
  };
20155
20954
  };
20156
20955
  /** @description Bad request — the payload failed validation */
@@ -20608,6 +21407,101 @@ export interface operations {
20608
21407
  };
20609
21408
  };
20610
21409
  };
21410
+ setPrimaryDomain: {
21411
+ parameters: {
21412
+ query?: never;
21413
+ header?: never;
21414
+ path: {
21415
+ id: string;
21416
+ domainId: string;
21417
+ };
21418
+ cookie?: never;
21419
+ };
21420
+ requestBody?: never;
21421
+ responses: {
21422
+ /** @description OK */
21423
+ 200: {
21424
+ headers: {
21425
+ [name: string]: unknown;
21426
+ };
21427
+ content: {
21428
+ "*/*": components["schemas"]["SingleValueResponseStatusPageCustomDomainDto"];
21429
+ };
21430
+ };
21431
+ /** @description Bad request — the payload failed validation */
21432
+ 400: {
21433
+ headers: {
21434
+ [name: string]: unknown;
21435
+ };
21436
+ content: {
21437
+ "application/json": components["schemas"]["ErrorResponse"];
21438
+ };
21439
+ };
21440
+ /** @description Unauthorized — missing or invalid credentials */
21441
+ 401: {
21442
+ headers: {
21443
+ [name: string]: unknown;
21444
+ };
21445
+ content: {
21446
+ "application/json": components["schemas"]["ErrorResponse"];
21447
+ };
21448
+ };
21449
+ /** @description Forbidden — the actor lacks permission for this resource */
21450
+ 403: {
21451
+ headers: {
21452
+ [name: string]: unknown;
21453
+ };
21454
+ content: {
21455
+ "application/json": components["schemas"]["ErrorResponse"];
21456
+ };
21457
+ };
21458
+ /** @description Not found — the requested resource does not exist */
21459
+ 404: {
21460
+ headers: {
21461
+ [name: string]: unknown;
21462
+ };
21463
+ content: {
21464
+ "application/json": components["schemas"]["ErrorResponse"];
21465
+ };
21466
+ };
21467
+ /** @description Conflict — the request collides with current resource state */
21468
+ 409: {
21469
+ headers: {
21470
+ [name: string]: unknown;
21471
+ };
21472
+ content: {
21473
+ "application/json": components["schemas"]["ErrorResponse"];
21474
+ };
21475
+ };
21476
+ /** @description Internal server error — see the message field for details */
21477
+ 500: {
21478
+ headers: {
21479
+ [name: string]: unknown;
21480
+ };
21481
+ content: {
21482
+ "application/json": components["schemas"]["ErrorResponse"];
21483
+ };
21484
+ };
21485
+ /** @description Bad gateway — an upstream provider returned an error */
21486
+ 502: {
21487
+ headers: {
21488
+ [name: string]: unknown;
21489
+ };
21490
+ content: {
21491
+ "application/json": components["schemas"]["ErrorResponse"];
21492
+ };
21493
+ };
21494
+ /** @description Service unavailable — try again shortly */
21495
+ 503: {
21496
+ headers: {
21497
+ [name: string]: unknown;
21498
+ };
21499
+ content: {
21500
+ "application/json": components["schemas"]["ErrorResponse"];
21501
+ };
21502
+ };
21503
+ };
21504
+ };
20611
21505
  verifyDomain: {
20612
21506
  parameters: {
20613
21507
  query?: never;