@devhelm/sdk 1.0.0 → 1.2.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.
- package/dist/generated/api.d.ts +250 -189
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/schemas.d.ts +512 -1544
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +223 -224
- package/dist/generated/schemas.js.map +1 -1
- package/dist/schemas.d.ts +300 -1109
- package/dist/schemas.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/schemas.d.ts
CHANGED
|
@@ -11,14 +11,7 @@ export declare const MonitorDtoSchema: z.ZodObject<{
|
|
|
11
11
|
id: z.ZodString;
|
|
12
12
|
organizationId: z.ZodNumber;
|
|
13
13
|
name: z.ZodString;
|
|
14
|
-
type: z.
|
|
15
|
-
HTTP: "HTTP";
|
|
16
|
-
DNS: "DNS";
|
|
17
|
-
MCP_SERVER: "MCP_SERVER";
|
|
18
|
-
TCP: "TCP";
|
|
19
|
-
ICMP: "ICMP";
|
|
20
|
-
HEARTBEAT: "HEARTBEAT";
|
|
21
|
-
}>;
|
|
14
|
+
type: z.ZodString;
|
|
22
15
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
23
16
|
hostname: z.ZodString;
|
|
24
17
|
recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
|
|
@@ -69,62 +62,13 @@ export declare const MonitorDtoSchema: z.ZodObject<{
|
|
|
69
62
|
frequencySeconds: z.ZodNumber;
|
|
70
63
|
enabled: z.ZodBoolean;
|
|
71
64
|
regions: z.ZodArray<z.ZodString>;
|
|
72
|
-
managedBy: z.
|
|
73
|
-
DASHBOARD: "DASHBOARD";
|
|
74
|
-
CLI: "CLI";
|
|
75
|
-
TERRAFORM: "TERRAFORM";
|
|
76
|
-
MCP: "MCP";
|
|
77
|
-
API: "API";
|
|
78
|
-
}>;
|
|
65
|
+
managedBy: z.ZodString;
|
|
79
66
|
createdAt: z.ZodString;
|
|
80
67
|
updatedAt: z.ZodString;
|
|
81
68
|
assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
82
69
|
id: z.ZodString;
|
|
83
70
|
monitorId: z.ZodString;
|
|
84
|
-
assertionType: z.
|
|
85
|
-
status_code: "status_code";
|
|
86
|
-
response_time: "response_time";
|
|
87
|
-
body_contains: "body_contains";
|
|
88
|
-
json_path: "json_path";
|
|
89
|
-
header_value: "header_value";
|
|
90
|
-
regex_body: "regex_body";
|
|
91
|
-
dns_resolves: "dns_resolves";
|
|
92
|
-
dns_response_time: "dns_response_time";
|
|
93
|
-
dns_expected_ips: "dns_expected_ips";
|
|
94
|
-
dns_expected_cname: "dns_expected_cname";
|
|
95
|
-
dns_record_contains: "dns_record_contains";
|
|
96
|
-
dns_record_equals: "dns_record_equals";
|
|
97
|
-
dns_txt_contains: "dns_txt_contains";
|
|
98
|
-
dns_min_answers: "dns_min_answers";
|
|
99
|
-
dns_max_answers: "dns_max_answers";
|
|
100
|
-
dns_response_time_warn: "dns_response_time_warn";
|
|
101
|
-
dns_ttl_low: "dns_ttl_low";
|
|
102
|
-
dns_ttl_high: "dns_ttl_high";
|
|
103
|
-
mcp_connects: "mcp_connects";
|
|
104
|
-
mcp_response_time: "mcp_response_time";
|
|
105
|
-
mcp_has_capability: "mcp_has_capability";
|
|
106
|
-
mcp_tool_available: "mcp_tool_available";
|
|
107
|
-
mcp_min_tools: "mcp_min_tools";
|
|
108
|
-
mcp_protocol_version: "mcp_protocol_version";
|
|
109
|
-
mcp_response_time_warn: "mcp_response_time_warn";
|
|
110
|
-
mcp_tool_count_changed: "mcp_tool_count_changed";
|
|
111
|
-
ssl_expiry: "ssl_expiry";
|
|
112
|
-
response_size: "response_size";
|
|
113
|
-
redirect_count: "redirect_count";
|
|
114
|
-
redirect_target: "redirect_target";
|
|
115
|
-
response_time_warn: "response_time_warn";
|
|
116
|
-
tcp_connects: "tcp_connects";
|
|
117
|
-
tcp_response_time: "tcp_response_time";
|
|
118
|
-
tcp_response_time_warn: "tcp_response_time_warn";
|
|
119
|
-
icmp_reachable: "icmp_reachable";
|
|
120
|
-
icmp_response_time: "icmp_response_time";
|
|
121
|
-
icmp_response_time_warn: "icmp_response_time_warn";
|
|
122
|
-
icmp_packet_loss: "icmp_packet_loss";
|
|
123
|
-
heartbeat_received: "heartbeat_received";
|
|
124
|
-
heartbeat_max_interval: "heartbeat_max_interval";
|
|
125
|
-
heartbeat_interval_drift: "heartbeat_interval_drift";
|
|
126
|
-
heartbeat_payload_contains: "heartbeat_payload_contains";
|
|
127
|
-
}>;
|
|
71
|
+
assertionType: z.ZodString;
|
|
128
72
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
129
73
|
type: z.ZodLiteral<"body_contains">;
|
|
130
74
|
substring: z.ZodString;
|
|
@@ -286,10 +230,7 @@ export declare const MonitorDtoSchema: z.ZodObject<{
|
|
|
286
230
|
type: z.ZodLiteral<"tcp_response_time_warn">;
|
|
287
231
|
warnMs: z.ZodNumber;
|
|
288
232
|
}, z.core.$strict>]>;
|
|
289
|
-
severity: z.
|
|
290
|
-
fail: "fail";
|
|
291
|
-
warn: "warn";
|
|
292
|
-
}>;
|
|
233
|
+
severity: z.ZodString;
|
|
293
234
|
}, z.core.$strict>>>>;
|
|
294
235
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
295
236
|
id: z.ZodString;
|
|
@@ -337,8 +278,8 @@ export declare const MonitorDtoSchema: z.ZodObject<{
|
|
|
337
278
|
}>>;
|
|
338
279
|
thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
339
280
|
severity: z.ZodEnum<{
|
|
340
|
-
degraded: "degraded";
|
|
341
281
|
down: "down";
|
|
282
|
+
degraded: "degraded";
|
|
342
283
|
}>;
|
|
343
284
|
aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
344
285
|
all_exceed: "all_exceed";
|
|
@@ -363,36 +304,15 @@ export declare const MonitorDtoSchema: z.ZodObject<{
|
|
|
363
304
|
checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
364
305
|
}, z.core.$strict>>>;
|
|
365
306
|
alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
366
|
-
currentStatus: z.ZodOptional<z.ZodNullable<z.
|
|
367
|
-
up: "up";
|
|
368
|
-
degraded: "degraded";
|
|
369
|
-
down: "down";
|
|
370
|
-
paused: "paused";
|
|
371
|
-
unknown: "unknown";
|
|
372
|
-
}>>>;
|
|
307
|
+
currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
373
308
|
}, z.core.$strict>;
|
|
374
309
|
export declare const IncidentDtoSchema: z.ZodObject<{
|
|
375
310
|
id: z.ZodString;
|
|
376
311
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
377
312
|
organizationId: z.ZodNumber;
|
|
378
|
-
source: z.
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
MONITORS: "MONITORS";
|
|
382
|
-
STATUS_DATA: "STATUS_DATA";
|
|
383
|
-
RESOURCE_GROUP: "RESOURCE_GROUP";
|
|
384
|
-
}>;
|
|
385
|
-
status: z.ZodEnum<{
|
|
386
|
-
WATCHING: "WATCHING";
|
|
387
|
-
TRIGGERED: "TRIGGERED";
|
|
388
|
-
CONFIRMED: "CONFIRMED";
|
|
389
|
-
RESOLVED: "RESOLVED";
|
|
390
|
-
}>;
|
|
391
|
-
severity: z.ZodEnum<{
|
|
392
|
-
DOWN: "DOWN";
|
|
393
|
-
DEGRADED: "DEGRADED";
|
|
394
|
-
MAINTENANCE: "MAINTENANCE";
|
|
395
|
-
}>;
|
|
313
|
+
source: z.ZodString;
|
|
314
|
+
status: z.ZodString;
|
|
315
|
+
severity: z.ZodString;
|
|
396
316
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
397
317
|
triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
398
318
|
affectedRegions: z.ZodArray<z.ZodString>;
|
|
@@ -404,11 +324,7 @@ export declare const IncidentDtoSchema: z.ZodObject<{
|
|
|
404
324
|
externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
405
325
|
affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
406
326
|
shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
407
|
-
resolutionReason: z.ZodOptional<z.ZodNullable<z.
|
|
408
|
-
MANUAL: "MANUAL";
|
|
409
|
-
AUTO_RECOVERED: "AUTO_RECOVERED";
|
|
410
|
-
AUTO_RESOLVED: "AUTO_RESOLVED";
|
|
411
|
-
}>>>;
|
|
327
|
+
resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
412
328
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
413
329
|
confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
414
330
|
resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -431,24 +347,9 @@ export declare const IncidentDetailDtoSchema: z.ZodObject<{
|
|
|
431
347
|
id: z.ZodString;
|
|
432
348
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
433
349
|
organizationId: z.ZodNumber;
|
|
434
|
-
source: z.
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
MONITORS: "MONITORS";
|
|
438
|
-
STATUS_DATA: "STATUS_DATA";
|
|
439
|
-
RESOURCE_GROUP: "RESOURCE_GROUP";
|
|
440
|
-
}>;
|
|
441
|
-
status: z.ZodEnum<{
|
|
442
|
-
WATCHING: "WATCHING";
|
|
443
|
-
TRIGGERED: "TRIGGERED";
|
|
444
|
-
CONFIRMED: "CONFIRMED";
|
|
445
|
-
RESOLVED: "RESOLVED";
|
|
446
|
-
}>;
|
|
447
|
-
severity: z.ZodEnum<{
|
|
448
|
-
DOWN: "DOWN";
|
|
449
|
-
DEGRADED: "DEGRADED";
|
|
450
|
-
MAINTENANCE: "MAINTENANCE";
|
|
451
|
-
}>;
|
|
350
|
+
source: z.ZodString;
|
|
351
|
+
status: z.ZodString;
|
|
352
|
+
severity: z.ZodString;
|
|
452
353
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
453
354
|
triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
454
355
|
affectedRegions: z.ZodArray<z.ZodString>;
|
|
@@ -460,11 +361,7 @@ export declare const IncidentDetailDtoSchema: z.ZodObject<{
|
|
|
460
361
|
externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
461
362
|
affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
462
363
|
shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
463
|
-
resolutionReason: z.ZodOptional<z.ZodNullable<z.
|
|
464
|
-
MANUAL: "MANUAL";
|
|
465
|
-
AUTO_RECOVERED: "AUTO_RECOVERED";
|
|
466
|
-
AUTO_RESOLVED: "AUTO_RESOLVED";
|
|
467
|
-
}>>>;
|
|
364
|
+
resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
468
365
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
469
366
|
confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
470
367
|
resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -485,23 +382,10 @@ export declare const IncidentDetailDtoSchema: z.ZodObject<{
|
|
|
485
382
|
updates: z.ZodArray<z.ZodObject<{
|
|
486
383
|
id: z.ZodString;
|
|
487
384
|
incidentId: z.ZodString;
|
|
488
|
-
oldStatus: z.ZodOptional<z.ZodNullable<z.
|
|
489
|
-
|
|
490
|
-
TRIGGERED: "TRIGGERED";
|
|
491
|
-
CONFIRMED: "CONFIRMED";
|
|
492
|
-
RESOLVED: "RESOLVED";
|
|
493
|
-
}>>>;
|
|
494
|
-
newStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
495
|
-
WATCHING: "WATCHING";
|
|
496
|
-
TRIGGERED: "TRIGGERED";
|
|
497
|
-
CONFIRMED: "CONFIRMED";
|
|
498
|
-
RESOLVED: "RESOLVED";
|
|
499
|
-
}>>>;
|
|
385
|
+
oldStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
386
|
+
newStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
500
387
|
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
501
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.
|
|
502
|
-
SYSTEM: "SYSTEM";
|
|
503
|
-
USER: "USER";
|
|
504
|
-
}>>>;
|
|
388
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
505
389
|
notifySubscribers: z.ZodBoolean;
|
|
506
390
|
createdAt: z.ZodString;
|
|
507
391
|
}, z.core.$strict>>;
|
|
@@ -511,18 +395,8 @@ export declare const IncidentDetailDtoSchema: z.ZodObject<{
|
|
|
511
395
|
statusPageName: z.ZodString;
|
|
512
396
|
statusPageSlug: z.ZodString;
|
|
513
397
|
title: z.ZodString;
|
|
514
|
-
status: z.
|
|
515
|
-
|
|
516
|
-
INVESTIGATING: "INVESTIGATING";
|
|
517
|
-
IDENTIFIED: "IDENTIFIED";
|
|
518
|
-
MONITORING: "MONITORING";
|
|
519
|
-
}>;
|
|
520
|
-
impact: z.ZodEnum<{
|
|
521
|
-
NONE: "NONE";
|
|
522
|
-
MINOR: "MINOR";
|
|
523
|
-
MAJOR: "MAJOR";
|
|
524
|
-
CRITICAL: "CRITICAL";
|
|
525
|
-
}>;
|
|
398
|
+
status: z.ZodString;
|
|
399
|
+
impact: z.ZodString;
|
|
526
400
|
scheduled: z.ZodBoolean;
|
|
527
401
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
528
402
|
}, z.core.$strict>>>>;
|
|
@@ -530,32 +404,28 @@ export declare const IncidentDetailDtoSchema: z.ZodObject<{
|
|
|
530
404
|
export declare const AlertChannelDtoSchema: z.ZodObject<{
|
|
531
405
|
id: z.ZodString;
|
|
532
406
|
name: z.ZodString;
|
|
533
|
-
channelType: z.
|
|
534
|
-
email: "email";
|
|
535
|
-
webhook: "webhook";
|
|
536
|
-
slack: "slack";
|
|
537
|
-
pagerduty: "pagerduty";
|
|
538
|
-
opsgenie: "opsgenie";
|
|
539
|
-
teams: "teams";
|
|
540
|
-
discord: "discord";
|
|
541
|
-
}>;
|
|
407
|
+
channelType: z.ZodString;
|
|
542
408
|
displayConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
543
409
|
recipients: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
544
410
|
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
545
411
|
severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
546
412
|
mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
547
413
|
customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
|
|
414
|
+
chatId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
415
|
+
priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
416
|
+
channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
417
|
+
routingKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
418
|
+
deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
419
|
+
teamId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
420
|
+
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
421
|
+
severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
422
|
+
site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
423
|
+
projectKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
548
424
|
}, z.core.$strict>>>;
|
|
549
425
|
createdAt: z.ZodString;
|
|
550
426
|
updatedAt: z.ZodString;
|
|
551
427
|
configHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
552
|
-
managedBy: z.ZodOptional<z.ZodNullable<z.
|
|
553
|
-
DASHBOARD: "DASHBOARD";
|
|
554
|
-
CLI: "CLI";
|
|
555
|
-
TERRAFORM: "TERRAFORM";
|
|
556
|
-
MCP: "MCP";
|
|
557
|
-
API: "API";
|
|
558
|
-
}>>>;
|
|
428
|
+
managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
559
429
|
lastDeliveryAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
560
430
|
lastDeliveryStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
561
431
|
}, z.core.$strict>;
|
|
@@ -642,29 +512,17 @@ export declare const ResourceGroupDtoSchema: z.ZodObject<{
|
|
|
642
512
|
}, z.core.$strict>>>;
|
|
643
513
|
defaultAlertChannels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
644
514
|
defaultEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
645
|
-
healthThresholdType: z.ZodOptional<z.ZodNullable<z.
|
|
646
|
-
COUNT: "COUNT";
|
|
647
|
-
PERCENTAGE: "PERCENTAGE";
|
|
648
|
-
}>>>;
|
|
515
|
+
healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
649
516
|
healthThresholdValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
650
517
|
suppressMemberAlerts: z.ZodBoolean;
|
|
651
518
|
confirmationDelaySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
652
519
|
recoveryCooldownMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
653
520
|
health: z.ZodObject<{
|
|
654
|
-
status: z.
|
|
655
|
-
degraded: "degraded";
|
|
656
|
-
down: "down";
|
|
657
|
-
operational: "operational";
|
|
658
|
-
maintenance: "maintenance";
|
|
659
|
-
}>;
|
|
521
|
+
status: z.ZodString;
|
|
660
522
|
totalMembers: z.ZodNumber;
|
|
661
523
|
operationalCount: z.ZodNumber;
|
|
662
524
|
activeIncidents: z.ZodNumber;
|
|
663
|
-
thresholdStatus: z.ZodOptional<z.ZodNullable<z.
|
|
664
|
-
degraded: "degraded";
|
|
665
|
-
down: "down";
|
|
666
|
-
healthy: "healthy";
|
|
667
|
-
}>>>;
|
|
525
|
+
thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
668
526
|
failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
669
527
|
}, z.core.$strict>;
|
|
670
528
|
members: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -676,12 +534,7 @@ export declare const ResourceGroupDtoSchema: z.ZodObject<{
|
|
|
676
534
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
677
535
|
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
678
536
|
subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
679
|
-
status: z.
|
|
680
|
-
degraded: "degraded";
|
|
681
|
-
down: "down";
|
|
682
|
-
operational: "operational";
|
|
683
|
-
maintenance: "maintenance";
|
|
684
|
-
}>;
|
|
537
|
+
status: z.ZodString;
|
|
685
538
|
effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
686
539
|
createdAt: z.ZodString;
|
|
687
540
|
uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -692,13 +545,7 @@ export declare const ResourceGroupDtoSchema: z.ZodObject<{
|
|
|
692
545
|
monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
693
546
|
environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
694
547
|
}, z.core.$strict>>>>;
|
|
695
|
-
managedBy: z.ZodOptional<z.ZodNullable<z.
|
|
696
|
-
DASHBOARD: "DASHBOARD";
|
|
697
|
-
CLI: "CLI";
|
|
698
|
-
TERRAFORM: "TERRAFORM";
|
|
699
|
-
MCP: "MCP";
|
|
700
|
-
API: "API";
|
|
701
|
-
}>>>;
|
|
548
|
+
managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
702
549
|
createdAt: z.ZodString;
|
|
703
550
|
updatedAt: z.ZodString;
|
|
704
551
|
}, z.core.$strict>;
|
|
@@ -774,11 +621,7 @@ export declare const ServiceSubscriptionDtoSchema: z.ZodObject<{
|
|
|
774
621
|
lastSeenAt: z.ZodString;
|
|
775
622
|
isGroup: z.ZodBoolean;
|
|
776
623
|
}, z.core.$strict>>>;
|
|
777
|
-
alertSensitivity: z.
|
|
778
|
-
ALL: "ALL";
|
|
779
|
-
INCIDENTS_ONLY: "INCIDENTS_ONLY";
|
|
780
|
-
MAJOR_ONLY: "MAJOR_ONLY";
|
|
781
|
-
}>;
|
|
624
|
+
alertSensitivity: z.ZodString;
|
|
782
625
|
subscribedAt: z.ZodString;
|
|
783
626
|
}, z.core.$strict>;
|
|
784
627
|
export declare const MonitorVersionDtoSchema: z.ZodObject<{
|
|
@@ -789,14 +632,7 @@ export declare const MonitorVersionDtoSchema: z.ZodObject<{
|
|
|
789
632
|
id: z.ZodString;
|
|
790
633
|
organizationId: z.ZodNumber;
|
|
791
634
|
name: z.ZodString;
|
|
792
|
-
type: z.
|
|
793
|
-
HTTP: "HTTP";
|
|
794
|
-
DNS: "DNS";
|
|
795
|
-
MCP_SERVER: "MCP_SERVER";
|
|
796
|
-
TCP: "TCP";
|
|
797
|
-
ICMP: "ICMP";
|
|
798
|
-
HEARTBEAT: "HEARTBEAT";
|
|
799
|
-
}>;
|
|
635
|
+
type: z.ZodString;
|
|
800
636
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
801
637
|
hostname: z.ZodString;
|
|
802
638
|
recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
|
|
@@ -847,62 +683,13 @@ export declare const MonitorVersionDtoSchema: z.ZodObject<{
|
|
|
847
683
|
frequencySeconds: z.ZodNumber;
|
|
848
684
|
enabled: z.ZodBoolean;
|
|
849
685
|
regions: z.ZodArray<z.ZodString>;
|
|
850
|
-
managedBy: z.
|
|
851
|
-
DASHBOARD: "DASHBOARD";
|
|
852
|
-
CLI: "CLI";
|
|
853
|
-
TERRAFORM: "TERRAFORM";
|
|
854
|
-
MCP: "MCP";
|
|
855
|
-
API: "API";
|
|
856
|
-
}>;
|
|
686
|
+
managedBy: z.ZodString;
|
|
857
687
|
createdAt: z.ZodString;
|
|
858
688
|
updatedAt: z.ZodString;
|
|
859
689
|
assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
860
690
|
id: z.ZodString;
|
|
861
691
|
monitorId: z.ZodString;
|
|
862
|
-
assertionType: z.
|
|
863
|
-
status_code: "status_code";
|
|
864
|
-
response_time: "response_time";
|
|
865
|
-
body_contains: "body_contains";
|
|
866
|
-
json_path: "json_path";
|
|
867
|
-
header_value: "header_value";
|
|
868
|
-
regex_body: "regex_body";
|
|
869
|
-
dns_resolves: "dns_resolves";
|
|
870
|
-
dns_response_time: "dns_response_time";
|
|
871
|
-
dns_expected_ips: "dns_expected_ips";
|
|
872
|
-
dns_expected_cname: "dns_expected_cname";
|
|
873
|
-
dns_record_contains: "dns_record_contains";
|
|
874
|
-
dns_record_equals: "dns_record_equals";
|
|
875
|
-
dns_txt_contains: "dns_txt_contains";
|
|
876
|
-
dns_min_answers: "dns_min_answers";
|
|
877
|
-
dns_max_answers: "dns_max_answers";
|
|
878
|
-
dns_response_time_warn: "dns_response_time_warn";
|
|
879
|
-
dns_ttl_low: "dns_ttl_low";
|
|
880
|
-
dns_ttl_high: "dns_ttl_high";
|
|
881
|
-
mcp_connects: "mcp_connects";
|
|
882
|
-
mcp_response_time: "mcp_response_time";
|
|
883
|
-
mcp_has_capability: "mcp_has_capability";
|
|
884
|
-
mcp_tool_available: "mcp_tool_available";
|
|
885
|
-
mcp_min_tools: "mcp_min_tools";
|
|
886
|
-
mcp_protocol_version: "mcp_protocol_version";
|
|
887
|
-
mcp_response_time_warn: "mcp_response_time_warn";
|
|
888
|
-
mcp_tool_count_changed: "mcp_tool_count_changed";
|
|
889
|
-
ssl_expiry: "ssl_expiry";
|
|
890
|
-
response_size: "response_size";
|
|
891
|
-
redirect_count: "redirect_count";
|
|
892
|
-
redirect_target: "redirect_target";
|
|
893
|
-
response_time_warn: "response_time_warn";
|
|
894
|
-
tcp_connects: "tcp_connects";
|
|
895
|
-
tcp_response_time: "tcp_response_time";
|
|
896
|
-
tcp_response_time_warn: "tcp_response_time_warn";
|
|
897
|
-
icmp_reachable: "icmp_reachable";
|
|
898
|
-
icmp_response_time: "icmp_response_time";
|
|
899
|
-
icmp_response_time_warn: "icmp_response_time_warn";
|
|
900
|
-
icmp_packet_loss: "icmp_packet_loss";
|
|
901
|
-
heartbeat_received: "heartbeat_received";
|
|
902
|
-
heartbeat_max_interval: "heartbeat_max_interval";
|
|
903
|
-
heartbeat_interval_drift: "heartbeat_interval_drift";
|
|
904
|
-
heartbeat_payload_contains: "heartbeat_payload_contains";
|
|
905
|
-
}>;
|
|
692
|
+
assertionType: z.ZodString;
|
|
906
693
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
907
694
|
type: z.ZodLiteral<"body_contains">;
|
|
908
695
|
substring: z.ZodString;
|
|
@@ -1064,10 +851,7 @@ export declare const MonitorVersionDtoSchema: z.ZodObject<{
|
|
|
1064
851
|
type: z.ZodLiteral<"tcp_response_time_warn">;
|
|
1065
852
|
warnMs: z.ZodNumber;
|
|
1066
853
|
}, z.core.$strict>]>;
|
|
1067
|
-
severity: z.
|
|
1068
|
-
fail: "fail";
|
|
1069
|
-
warn: "warn";
|
|
1070
|
-
}>;
|
|
854
|
+
severity: z.ZodString;
|
|
1071
855
|
}, z.core.$strict>>>>;
|
|
1072
856
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1073
857
|
id: z.ZodString;
|
|
@@ -1115,8 +899,8 @@ export declare const MonitorVersionDtoSchema: z.ZodObject<{
|
|
|
1115
899
|
}>>;
|
|
1116
900
|
thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1117
901
|
severity: z.ZodEnum<{
|
|
1118
|
-
degraded: "degraded";
|
|
1119
902
|
down: "down";
|
|
903
|
+
degraded: "degraded";
|
|
1120
904
|
}>;
|
|
1121
905
|
aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1122
906
|
all_exceed: "all_exceed";
|
|
@@ -1141,21 +925,10 @@ export declare const MonitorVersionDtoSchema: z.ZodObject<{
|
|
|
1141
925
|
checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1142
926
|
}, z.core.$strict>>>;
|
|
1143
927
|
alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1144
|
-
currentStatus: z.ZodOptional<z.ZodNullable<z.
|
|
1145
|
-
up: "up";
|
|
1146
|
-
degraded: "degraded";
|
|
1147
|
-
down: "down";
|
|
1148
|
-
paused: "paused";
|
|
1149
|
-
unknown: "unknown";
|
|
1150
|
-
}>>>;
|
|
928
|
+
currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1151
929
|
}, z.core.$strict>;
|
|
1152
930
|
changedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1153
|
-
changedVia: z.
|
|
1154
|
-
DASHBOARD: "DASHBOARD";
|
|
1155
|
-
CLI: "CLI";
|
|
1156
|
-
TERRAFORM: "TERRAFORM";
|
|
1157
|
-
API: "API";
|
|
1158
|
-
}>;
|
|
931
|
+
changedVia: z.ZodString;
|
|
1159
932
|
changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1160
933
|
createdAt: z.ZodString;
|
|
1161
934
|
}, z.core.$strict>;
|
|
@@ -1174,10 +947,7 @@ export declare const CheckResultDtoSchema: z.ZodObject<{
|
|
|
1174
947
|
assertionResults: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1175
948
|
type: z.ZodString;
|
|
1176
949
|
passed: z.ZodBoolean;
|
|
1177
|
-
severity: z.
|
|
1178
|
-
fail: "fail";
|
|
1179
|
-
warn: "warn";
|
|
1180
|
-
}>;
|
|
950
|
+
severity: z.ZodString;
|
|
1181
951
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1182
952
|
expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1183
953
|
actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1266,55 +1036,9 @@ export declare const DeployLockDtoSchema: z.ZodObject<{
|
|
|
1266
1036
|
expiresAt: z.ZodString;
|
|
1267
1037
|
}, z.core.$strict>;
|
|
1268
1038
|
export declare const AssertionTestResultDtoSchema: z.ZodObject<{
|
|
1269
|
-
assertionType: z.
|
|
1270
|
-
status_code: "status_code";
|
|
1271
|
-
response_time: "response_time";
|
|
1272
|
-
body_contains: "body_contains";
|
|
1273
|
-
json_path: "json_path";
|
|
1274
|
-
header_value: "header_value";
|
|
1275
|
-
regex_body: "regex_body";
|
|
1276
|
-
dns_resolves: "dns_resolves";
|
|
1277
|
-
dns_response_time: "dns_response_time";
|
|
1278
|
-
dns_expected_ips: "dns_expected_ips";
|
|
1279
|
-
dns_expected_cname: "dns_expected_cname";
|
|
1280
|
-
dns_record_contains: "dns_record_contains";
|
|
1281
|
-
dns_record_equals: "dns_record_equals";
|
|
1282
|
-
dns_txt_contains: "dns_txt_contains";
|
|
1283
|
-
dns_min_answers: "dns_min_answers";
|
|
1284
|
-
dns_max_answers: "dns_max_answers";
|
|
1285
|
-
dns_response_time_warn: "dns_response_time_warn";
|
|
1286
|
-
dns_ttl_low: "dns_ttl_low";
|
|
1287
|
-
dns_ttl_high: "dns_ttl_high";
|
|
1288
|
-
mcp_connects: "mcp_connects";
|
|
1289
|
-
mcp_response_time: "mcp_response_time";
|
|
1290
|
-
mcp_has_capability: "mcp_has_capability";
|
|
1291
|
-
mcp_tool_available: "mcp_tool_available";
|
|
1292
|
-
mcp_min_tools: "mcp_min_tools";
|
|
1293
|
-
mcp_protocol_version: "mcp_protocol_version";
|
|
1294
|
-
mcp_response_time_warn: "mcp_response_time_warn";
|
|
1295
|
-
mcp_tool_count_changed: "mcp_tool_count_changed";
|
|
1296
|
-
ssl_expiry: "ssl_expiry";
|
|
1297
|
-
response_size: "response_size";
|
|
1298
|
-
redirect_count: "redirect_count";
|
|
1299
|
-
redirect_target: "redirect_target";
|
|
1300
|
-
response_time_warn: "response_time_warn";
|
|
1301
|
-
tcp_connects: "tcp_connects";
|
|
1302
|
-
tcp_response_time: "tcp_response_time";
|
|
1303
|
-
tcp_response_time_warn: "tcp_response_time_warn";
|
|
1304
|
-
icmp_reachable: "icmp_reachable";
|
|
1305
|
-
icmp_response_time: "icmp_response_time";
|
|
1306
|
-
icmp_response_time_warn: "icmp_response_time_warn";
|
|
1307
|
-
icmp_packet_loss: "icmp_packet_loss";
|
|
1308
|
-
heartbeat_received: "heartbeat_received";
|
|
1309
|
-
heartbeat_max_interval: "heartbeat_max_interval";
|
|
1310
|
-
heartbeat_interval_drift: "heartbeat_interval_drift";
|
|
1311
|
-
heartbeat_payload_contains: "heartbeat_payload_contains";
|
|
1312
|
-
}>;
|
|
1039
|
+
assertionType: z.ZodString;
|
|
1313
1040
|
passed: z.ZodBoolean;
|
|
1314
|
-
severity: z.
|
|
1315
|
-
fail: "fail";
|
|
1316
|
-
warn: "warn";
|
|
1317
|
-
}>;
|
|
1041
|
+
severity: z.ZodString;
|
|
1318
1042
|
message: z.ZodString;
|
|
1319
1043
|
expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1320
1044
|
actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1330,55 +1054,9 @@ export declare const MonitorTestResultDtoSchema: z.ZodObject<{
|
|
|
1330
1054
|
redirectCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1331
1055
|
finalUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1332
1056
|
assertionResults: z.ZodArray<z.ZodObject<{
|
|
1333
|
-
assertionType: z.
|
|
1334
|
-
status_code: "status_code";
|
|
1335
|
-
response_time: "response_time";
|
|
1336
|
-
body_contains: "body_contains";
|
|
1337
|
-
json_path: "json_path";
|
|
1338
|
-
header_value: "header_value";
|
|
1339
|
-
regex_body: "regex_body";
|
|
1340
|
-
dns_resolves: "dns_resolves";
|
|
1341
|
-
dns_response_time: "dns_response_time";
|
|
1342
|
-
dns_expected_ips: "dns_expected_ips";
|
|
1343
|
-
dns_expected_cname: "dns_expected_cname";
|
|
1344
|
-
dns_record_contains: "dns_record_contains";
|
|
1345
|
-
dns_record_equals: "dns_record_equals";
|
|
1346
|
-
dns_txt_contains: "dns_txt_contains";
|
|
1347
|
-
dns_min_answers: "dns_min_answers";
|
|
1348
|
-
dns_max_answers: "dns_max_answers";
|
|
1349
|
-
dns_response_time_warn: "dns_response_time_warn";
|
|
1350
|
-
dns_ttl_low: "dns_ttl_low";
|
|
1351
|
-
dns_ttl_high: "dns_ttl_high";
|
|
1352
|
-
mcp_connects: "mcp_connects";
|
|
1353
|
-
mcp_response_time: "mcp_response_time";
|
|
1354
|
-
mcp_has_capability: "mcp_has_capability";
|
|
1355
|
-
mcp_tool_available: "mcp_tool_available";
|
|
1356
|
-
mcp_min_tools: "mcp_min_tools";
|
|
1357
|
-
mcp_protocol_version: "mcp_protocol_version";
|
|
1358
|
-
mcp_response_time_warn: "mcp_response_time_warn";
|
|
1359
|
-
mcp_tool_count_changed: "mcp_tool_count_changed";
|
|
1360
|
-
ssl_expiry: "ssl_expiry";
|
|
1361
|
-
response_size: "response_size";
|
|
1362
|
-
redirect_count: "redirect_count";
|
|
1363
|
-
redirect_target: "redirect_target";
|
|
1364
|
-
response_time_warn: "response_time_warn";
|
|
1365
|
-
tcp_connects: "tcp_connects";
|
|
1366
|
-
tcp_response_time: "tcp_response_time";
|
|
1367
|
-
tcp_response_time_warn: "tcp_response_time_warn";
|
|
1368
|
-
icmp_reachable: "icmp_reachable";
|
|
1369
|
-
icmp_response_time: "icmp_response_time";
|
|
1370
|
-
icmp_response_time_warn: "icmp_response_time_warn";
|
|
1371
|
-
icmp_packet_loss: "icmp_packet_loss";
|
|
1372
|
-
heartbeat_received: "heartbeat_received";
|
|
1373
|
-
heartbeat_max_interval: "heartbeat_max_interval";
|
|
1374
|
-
heartbeat_interval_drift: "heartbeat_interval_drift";
|
|
1375
|
-
heartbeat_payload_contains: "heartbeat_payload_contains";
|
|
1376
|
-
}>;
|
|
1057
|
+
assertionType: z.ZodString;
|
|
1377
1058
|
passed: z.ZodBoolean;
|
|
1378
|
-
severity: z.
|
|
1379
|
-
fail: "fail";
|
|
1380
|
-
warn: "warn";
|
|
1381
|
-
}>;
|
|
1059
|
+
severity: z.ZodString;
|
|
1382
1060
|
message: z.ZodString;
|
|
1383
1061
|
expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1384
1062
|
actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1549,36 +1227,17 @@ export declare const StatusPageDtoSchema: z.ZodObject<{
|
|
|
1549
1227
|
theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1550
1228
|
reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1551
1229
|
hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1230
|
+
showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1552
1231
|
customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1553
1232
|
customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1554
1233
|
}, z.core.$strict>;
|
|
1555
|
-
visibility: z.
|
|
1556
|
-
PUBLIC: "PUBLIC";
|
|
1557
|
-
PASSWORD: "PASSWORD";
|
|
1558
|
-
IP_RESTRICTED: "IP_RESTRICTED";
|
|
1559
|
-
}>;
|
|
1234
|
+
visibility: z.ZodString;
|
|
1560
1235
|
enabled: z.ZodBoolean;
|
|
1561
|
-
incidentMode: z.
|
|
1562
|
-
MANUAL: "MANUAL";
|
|
1563
|
-
REVIEW: "REVIEW";
|
|
1564
|
-
AUTOMATIC: "AUTOMATIC";
|
|
1565
|
-
}>;
|
|
1236
|
+
incidentMode: z.ZodString;
|
|
1566
1237
|
componentCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1567
1238
|
subscriberCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1568
|
-
overallStatus: z.ZodOptional<z.ZodNullable<z.
|
|
1569
|
-
|
|
1570
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
1571
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
1572
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
1573
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
1574
|
-
}>>>;
|
|
1575
|
-
managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1576
|
-
DASHBOARD: "DASHBOARD";
|
|
1577
|
-
CLI: "CLI";
|
|
1578
|
-
TERRAFORM: "TERRAFORM";
|
|
1579
|
-
MCP: "MCP";
|
|
1580
|
-
API: "API";
|
|
1581
|
-
}>>>;
|
|
1239
|
+
overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1240
|
+
managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1582
1241
|
createdAt: z.ZodString;
|
|
1583
1242
|
updatedAt: z.ZodString;
|
|
1584
1243
|
}, z.core.$strict>;
|
|
@@ -1588,20 +1247,10 @@ export declare const StatusPageComponentDtoSchema: z.ZodObject<{
|
|
|
1588
1247
|
groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1589
1248
|
name: z.ZodString;
|
|
1590
1249
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1591
|
-
type: z.
|
|
1592
|
-
MONITOR: "MONITOR";
|
|
1593
|
-
GROUP: "GROUP";
|
|
1594
|
-
STATIC: "STATIC";
|
|
1595
|
-
}>;
|
|
1250
|
+
type: z.ZodString;
|
|
1596
1251
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1597
1252
|
resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1598
|
-
currentStatus: z.
|
|
1599
|
-
OPERATIONAL: "OPERATIONAL";
|
|
1600
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
1601
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
1602
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
1603
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
1604
|
-
}>;
|
|
1253
|
+
currentStatus: z.ZodString;
|
|
1605
1254
|
showUptime: z.ZodBoolean;
|
|
1606
1255
|
displayOrder: z.ZodNumber;
|
|
1607
1256
|
pageOrder: z.ZodNumber;
|
|
@@ -1624,20 +1273,10 @@ export declare const StatusPageComponentGroupDtoSchema: z.ZodObject<{
|
|
|
1624
1273
|
groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1625
1274
|
name: z.ZodString;
|
|
1626
1275
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1627
|
-
type: z.
|
|
1628
|
-
MONITOR: "MONITOR";
|
|
1629
|
-
GROUP: "GROUP";
|
|
1630
|
-
STATIC: "STATIC";
|
|
1631
|
-
}>;
|
|
1276
|
+
type: z.ZodString;
|
|
1632
1277
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1633
1278
|
resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1634
|
-
currentStatus: z.
|
|
1635
|
-
OPERATIONAL: "OPERATIONAL";
|
|
1636
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
1637
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
1638
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
1639
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
1640
|
-
}>;
|
|
1279
|
+
currentStatus: z.ZodString;
|
|
1641
1280
|
showUptime: z.ZodBoolean;
|
|
1642
1281
|
displayOrder: z.ZodNumber;
|
|
1643
1282
|
pageOrder: z.ZodNumber;
|
|
@@ -1653,18 +1292,8 @@ export declare const StatusPageIncidentDtoSchema: z.ZodObject<{
|
|
|
1653
1292
|
id: z.ZodString;
|
|
1654
1293
|
statusPageId: z.ZodString;
|
|
1655
1294
|
title: z.ZodString;
|
|
1656
|
-
status: z.
|
|
1657
|
-
|
|
1658
|
-
INVESTIGATING: "INVESTIGATING";
|
|
1659
|
-
IDENTIFIED: "IDENTIFIED";
|
|
1660
|
-
MONITORING: "MONITORING";
|
|
1661
|
-
}>;
|
|
1662
|
-
impact: z.ZodEnum<{
|
|
1663
|
-
NONE: "NONE";
|
|
1664
|
-
MINOR: "MINOR";
|
|
1665
|
-
MAJOR: "MAJOR";
|
|
1666
|
-
CRITICAL: "CRITICAL";
|
|
1667
|
-
}>;
|
|
1295
|
+
status: z.ZodString;
|
|
1296
|
+
impact: z.ZodString;
|
|
1668
1297
|
scheduled: z.ZodBoolean;
|
|
1669
1298
|
scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1670
1299
|
scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1678,28 +1307,14 @@ export declare const StatusPageIncidentDtoSchema: z.ZodObject<{
|
|
|
1678
1307
|
postmortemUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1679
1308
|
affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1680
1309
|
statusPageComponentId: z.ZodString;
|
|
1681
|
-
componentStatus: z.
|
|
1682
|
-
OPERATIONAL: "OPERATIONAL";
|
|
1683
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
1684
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
1685
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
1686
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
1687
|
-
}>;
|
|
1310
|
+
componentStatus: z.ZodString;
|
|
1688
1311
|
componentName: z.ZodString;
|
|
1689
1312
|
}, z.core.$strict>>>>;
|
|
1690
1313
|
updates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1691
1314
|
id: z.ZodString;
|
|
1692
|
-
status: z.
|
|
1693
|
-
RESOLVED: "RESOLVED";
|
|
1694
|
-
INVESTIGATING: "INVESTIGATING";
|
|
1695
|
-
IDENTIFIED: "IDENTIFIED";
|
|
1696
|
-
MONITORING: "MONITORING";
|
|
1697
|
-
}>;
|
|
1315
|
+
status: z.ZodString;
|
|
1698
1316
|
body: z.ZodString;
|
|
1699
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.
|
|
1700
|
-
SYSTEM: "SYSTEM";
|
|
1701
|
-
USER: "USER";
|
|
1702
|
-
}>>>;
|
|
1317
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1703
1318
|
createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1704
1319
|
notifySubscribers: z.ZodBoolean;
|
|
1705
1320
|
createdAt: z.ZodString;
|
|
@@ -1709,30 +1324,16 @@ export declare const StatusPageIncidentDtoSchema: z.ZodObject<{
|
|
|
1709
1324
|
}, z.core.$strict>;
|
|
1710
1325
|
export declare const StatusPageIncidentUpdateDtoSchema: z.ZodObject<{
|
|
1711
1326
|
id: z.ZodString;
|
|
1712
|
-
status: z.
|
|
1713
|
-
RESOLVED: "RESOLVED";
|
|
1714
|
-
INVESTIGATING: "INVESTIGATING";
|
|
1715
|
-
IDENTIFIED: "IDENTIFIED";
|
|
1716
|
-
MONITORING: "MONITORING";
|
|
1717
|
-
}>;
|
|
1327
|
+
status: z.ZodString;
|
|
1718
1328
|
body: z.ZodString;
|
|
1719
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.
|
|
1720
|
-
SYSTEM: "SYSTEM";
|
|
1721
|
-
USER: "USER";
|
|
1722
|
-
}>>>;
|
|
1329
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1723
1330
|
createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1724
1331
|
notifySubscribers: z.ZodBoolean;
|
|
1725
1332
|
createdAt: z.ZodString;
|
|
1726
1333
|
}, z.core.$strict>;
|
|
1727
1334
|
export declare const StatusPageIncidentComponentDtoSchema: z.ZodObject<{
|
|
1728
1335
|
statusPageComponentId: z.ZodString;
|
|
1729
|
-
componentStatus: z.
|
|
1730
|
-
OPERATIONAL: "OPERATIONAL";
|
|
1731
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
1732
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
1733
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
1734
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
1735
|
-
}>;
|
|
1336
|
+
componentStatus: z.ZodString;
|
|
1736
1337
|
componentName: z.ZodString;
|
|
1737
1338
|
}, z.core.$strict>;
|
|
1738
1339
|
export declare const StatusPageSubscriberDtoSchema: z.ZodObject<{
|
|
@@ -1744,19 +1345,8 @@ export declare const StatusPageSubscriberDtoSchema: z.ZodObject<{
|
|
|
1744
1345
|
export declare const StatusPageCustomDomainDtoSchema: z.ZodObject<{
|
|
1745
1346
|
id: z.ZodString;
|
|
1746
1347
|
hostname: z.ZodString;
|
|
1747
|
-
status: z.
|
|
1748
|
-
|
|
1749
|
-
ACTIVE: "ACTIVE";
|
|
1750
|
-
REMOVED: "REMOVED";
|
|
1751
|
-
PENDING_VERIFICATION: "PENDING_VERIFICATION";
|
|
1752
|
-
VERIFICATION_FAILED: "VERIFICATION_FAILED";
|
|
1753
|
-
VERIFIED: "VERIFIED";
|
|
1754
|
-
SSL_PENDING: "SSL_PENDING";
|
|
1755
|
-
}>;
|
|
1756
|
-
verificationMethod: z.ZodEnum<{
|
|
1757
|
-
CNAME: "CNAME";
|
|
1758
|
-
TXT: "TXT";
|
|
1759
|
-
}>;
|
|
1348
|
+
status: z.ZodString;
|
|
1349
|
+
verificationMethod: z.ZodString;
|
|
1760
1350
|
verificationToken: z.ZodString;
|
|
1761
1351
|
verificationCnameTarget: z.ZodString;
|
|
1762
1352
|
verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1780,6 +1370,7 @@ export declare const StatusPageBrandingSchema: z.ZodObject<{
|
|
|
1780
1370
|
theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1781
1371
|
reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1782
1372
|
hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1373
|
+
showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1783
1374
|
customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1784
1375
|
customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1785
1376
|
}, z.core.$strict>;
|
|
@@ -2048,8 +1639,8 @@ export declare const CreateMonitorRequestSchema: z.ZodObject<{
|
|
|
2048
1639
|
}>>;
|
|
2049
1640
|
thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2050
1641
|
severity: z.ZodEnum<{
|
|
2051
|
-
degraded: "degraded";
|
|
2052
1642
|
down: "down";
|
|
1643
|
+
degraded: "degraded";
|
|
2053
1644
|
}>;
|
|
2054
1645
|
aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2055
1646
|
all_exceed: "all_exceed";
|
|
@@ -2337,8 +1928,8 @@ export declare const UpdateMonitorRequestSchema: z.ZodObject<{
|
|
|
2337
1928
|
}>>;
|
|
2338
1929
|
thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2339
1930
|
severity: z.ZodEnum<{
|
|
2340
|
-
degraded: "degraded";
|
|
2341
1931
|
down: "down";
|
|
1932
|
+
degraded: "degraded";
|
|
2342
1933
|
}>;
|
|
2343
1934
|
aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2344
1935
|
all_exceed: "all_exceed";
|
|
@@ -2383,12 +1974,46 @@ export declare const ResolveIncidentRequestSchema: z.ZodObject<{
|
|
|
2383
1974
|
export declare const CreateAlertChannelRequestSchema: z.ZodObject<{
|
|
2384
1975
|
name: z.ZodString;
|
|
2385
1976
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
1977
|
+
channelType: z.ZodLiteral<"datadog">;
|
|
1978
|
+
apiKey: z.ZodString;
|
|
1979
|
+
site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1980
|
+
tags: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1981
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2386
1982
|
channelType: z.ZodLiteral<"discord">;
|
|
2387
1983
|
webhookUrl: z.ZodString;
|
|
2388
1984
|
mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2389
1985
|
}, z.core.$strict>, z.ZodObject<{
|
|
2390
1986
|
channelType: z.ZodLiteral<"email">;
|
|
2391
1987
|
recipients: z.ZodArray<z.ZodString>;
|
|
1988
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1989
|
+
channelType: z.ZodLiteral<"gitlab">;
|
|
1990
|
+
endpointUrl: z.ZodString;
|
|
1991
|
+
authorizationKey: z.ZodString;
|
|
1992
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1993
|
+
channelType: z.ZodLiteral<"google_chat">;
|
|
1994
|
+
webhookUrl: z.ZodString;
|
|
1995
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1996
|
+
channelType: z.ZodLiteral<"incident_io">;
|
|
1997
|
+
apiKey: z.ZodString;
|
|
1998
|
+
severityId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1999
|
+
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2000
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2001
|
+
channelType: z.ZodLiteral<"jira">;
|
|
2002
|
+
domain: z.ZodString;
|
|
2003
|
+
email: z.ZodString;
|
|
2004
|
+
apiToken: z.ZodString;
|
|
2005
|
+
projectKey: z.ZodString;
|
|
2006
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2007
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2008
|
+
channelType: z.ZodLiteral<"linear">;
|
|
2009
|
+
apiKey: z.ZodString;
|
|
2010
|
+
teamId: z.ZodString;
|
|
2011
|
+
labelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2012
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2013
|
+
channelType: z.ZodLiteral<"mattermost">;
|
|
2014
|
+
webhookUrl: z.ZodString;
|
|
2015
|
+
channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2016
|
+
iconUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2392
2017
|
}, z.core.$strict>, z.ZodObject<{
|
|
2393
2018
|
channelType: z.ZodLiteral<"opsgenie">;
|
|
2394
2019
|
apiKey: z.ZodString;
|
|
@@ -2397,18 +2022,43 @@ export declare const CreateAlertChannelRequestSchema: z.ZodObject<{
|
|
|
2397
2022
|
channelType: z.ZodLiteral<"pagerduty">;
|
|
2398
2023
|
routingKey: z.ZodString;
|
|
2399
2024
|
severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2025
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2026
|
+
channelType: z.ZodLiteral<"pushbullet">;
|
|
2027
|
+
accessToken: z.ZodString;
|
|
2028
|
+
deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2029
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2030
|
+
channelType: z.ZodLiteral<"pushover">;
|
|
2031
|
+
userKey: z.ZodString;
|
|
2032
|
+
appToken: z.ZodString;
|
|
2033
|
+
priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2034
|
+
sound: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2035
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2036
|
+
channelType: z.ZodLiteral<"rootly">;
|
|
2037
|
+
apiKey: z.ZodString;
|
|
2038
|
+
severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2400
2039
|
}, z.core.$strict>, z.ZodObject<{
|
|
2401
2040
|
channelType: z.ZodLiteral<"slack">;
|
|
2402
2041
|
webhookUrl: z.ZodString;
|
|
2403
2042
|
mentionText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2043
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2044
|
+
channelType: z.ZodLiteral<"splunk_oncall">;
|
|
2045
|
+
apiKey: z.ZodString;
|
|
2046
|
+
routingKey: z.ZodString;
|
|
2404
2047
|
}, z.core.$strict>, z.ZodObject<{
|
|
2405
2048
|
channelType: z.ZodLiteral<"teams">;
|
|
2406
2049
|
webhookUrl: z.ZodString;
|
|
2050
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2051
|
+
channelType: z.ZodLiteral<"telegram">;
|
|
2052
|
+
botToken: z.ZodString;
|
|
2053
|
+
chatId: z.ZodString;
|
|
2407
2054
|
}, z.core.$strict>, z.ZodObject<{
|
|
2408
2055
|
channelType: z.ZodLiteral<"webhook">;
|
|
2409
2056
|
url: z.ZodString;
|
|
2410
2057
|
signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2411
2058
|
customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
|
|
2059
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2060
|
+
channelType: z.ZodLiteral<"zapier">;
|
|
2061
|
+
webhookUrl: z.ZodString;
|
|
2412
2062
|
}, z.core.$strict>]>;
|
|
2413
2063
|
managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2414
2064
|
DASHBOARD: "DASHBOARD";
|
|
@@ -2421,12 +2071,46 @@ export declare const CreateAlertChannelRequestSchema: z.ZodObject<{
|
|
|
2421
2071
|
export declare const UpdateAlertChannelRequestSchema: z.ZodObject<{
|
|
2422
2072
|
name: z.ZodString;
|
|
2423
2073
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
2074
|
+
channelType: z.ZodLiteral<"datadog">;
|
|
2075
|
+
apiKey: z.ZodString;
|
|
2076
|
+
site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2077
|
+
tags: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2078
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2424
2079
|
channelType: z.ZodLiteral<"discord">;
|
|
2425
2080
|
webhookUrl: z.ZodString;
|
|
2426
2081
|
mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2427
2082
|
}, z.core.$strict>, z.ZodObject<{
|
|
2428
2083
|
channelType: z.ZodLiteral<"email">;
|
|
2429
2084
|
recipients: z.ZodArray<z.ZodString>;
|
|
2085
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2086
|
+
channelType: z.ZodLiteral<"gitlab">;
|
|
2087
|
+
endpointUrl: z.ZodString;
|
|
2088
|
+
authorizationKey: z.ZodString;
|
|
2089
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2090
|
+
channelType: z.ZodLiteral<"google_chat">;
|
|
2091
|
+
webhookUrl: z.ZodString;
|
|
2092
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2093
|
+
channelType: z.ZodLiteral<"incident_io">;
|
|
2094
|
+
apiKey: z.ZodString;
|
|
2095
|
+
severityId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2096
|
+
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2097
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2098
|
+
channelType: z.ZodLiteral<"jira">;
|
|
2099
|
+
domain: z.ZodString;
|
|
2100
|
+
email: z.ZodString;
|
|
2101
|
+
apiToken: z.ZodString;
|
|
2102
|
+
projectKey: z.ZodString;
|
|
2103
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2104
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2105
|
+
channelType: z.ZodLiteral<"linear">;
|
|
2106
|
+
apiKey: z.ZodString;
|
|
2107
|
+
teamId: z.ZodString;
|
|
2108
|
+
labelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2109
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2110
|
+
channelType: z.ZodLiteral<"mattermost">;
|
|
2111
|
+
webhookUrl: z.ZodString;
|
|
2112
|
+
channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2113
|
+
iconUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2430
2114
|
}, z.core.$strict>, z.ZodObject<{
|
|
2431
2115
|
channelType: z.ZodLiteral<"opsgenie">;
|
|
2432
2116
|
apiKey: z.ZodString;
|
|
@@ -2435,18 +2119,43 @@ export declare const UpdateAlertChannelRequestSchema: z.ZodObject<{
|
|
|
2435
2119
|
channelType: z.ZodLiteral<"pagerduty">;
|
|
2436
2120
|
routingKey: z.ZodString;
|
|
2437
2121
|
severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2122
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2123
|
+
channelType: z.ZodLiteral<"pushbullet">;
|
|
2124
|
+
accessToken: z.ZodString;
|
|
2125
|
+
deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2126
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2127
|
+
channelType: z.ZodLiteral<"pushover">;
|
|
2128
|
+
userKey: z.ZodString;
|
|
2129
|
+
appToken: z.ZodString;
|
|
2130
|
+
priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2131
|
+
sound: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2132
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2133
|
+
channelType: z.ZodLiteral<"rootly">;
|
|
2134
|
+
apiKey: z.ZodString;
|
|
2135
|
+
severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2438
2136
|
}, z.core.$strict>, z.ZodObject<{
|
|
2439
2137
|
channelType: z.ZodLiteral<"slack">;
|
|
2440
2138
|
webhookUrl: z.ZodString;
|
|
2441
2139
|
mentionText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2140
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2141
|
+
channelType: z.ZodLiteral<"splunk_oncall">;
|
|
2142
|
+
apiKey: z.ZodString;
|
|
2143
|
+
routingKey: z.ZodString;
|
|
2442
2144
|
}, z.core.$strict>, z.ZodObject<{
|
|
2443
2145
|
channelType: z.ZodLiteral<"teams">;
|
|
2444
2146
|
webhookUrl: z.ZodString;
|
|
2147
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2148
|
+
channelType: z.ZodLiteral<"telegram">;
|
|
2149
|
+
botToken: z.ZodString;
|
|
2150
|
+
chatId: z.ZodString;
|
|
2445
2151
|
}, z.core.$strict>, z.ZodObject<{
|
|
2446
2152
|
channelType: z.ZodLiteral<"webhook">;
|
|
2447
2153
|
url: z.ZodString;
|
|
2448
2154
|
signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2449
2155
|
customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
|
|
2156
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2157
|
+
channelType: z.ZodLiteral<"zapier">;
|
|
2158
|
+
webhookUrl: z.ZodString;
|
|
2450
2159
|
}, z.core.$strict>]>;
|
|
2451
2160
|
managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2452
2161
|
DASHBOARD: "DASHBOARD";
|
|
@@ -2683,6 +2392,7 @@ export declare const CreateStatusPageRequestSchema: z.ZodObject<{
|
|
|
2683
2392
|
theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2684
2393
|
reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2685
2394
|
hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2395
|
+
showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2686
2396
|
customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2687
2397
|
customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2688
2398
|
}, z.core.$strict>>>;
|
|
@@ -2720,6 +2430,7 @@ export declare const UpdateStatusPageRequestSchema: z.ZodObject<{
|
|
|
2720
2430
|
theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2721
2431
|
reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2722
2432
|
hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2433
|
+
showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2723
2434
|
customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2724
2435
|
customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2725
2436
|
}, z.core.$strict>>>;
|
|
@@ -2944,20 +2655,18 @@ export declare const ErrorResponseSchema: z.ZodObject<{
|
|
|
2944
2655
|
message: z.ZodString;
|
|
2945
2656
|
timestamp: z.ZodNumber;
|
|
2946
2657
|
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2658
|
+
errors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodObject<{
|
|
2659
|
+
code: z.ZodString;
|
|
2660
|
+
field: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2661
|
+
message: z.ZodString;
|
|
2662
|
+
}, z.core.$strict>>>>>;
|
|
2947
2663
|
}, z.core.$strict>;
|
|
2948
2664
|
export declare const SingleValueResponseMonitorDtoSchema: z.ZodObject<{
|
|
2949
2665
|
data: z.ZodObject<{
|
|
2950
2666
|
id: z.ZodString;
|
|
2951
2667
|
organizationId: z.ZodNumber;
|
|
2952
2668
|
name: z.ZodString;
|
|
2953
|
-
type: z.
|
|
2954
|
-
HTTP: "HTTP";
|
|
2955
|
-
DNS: "DNS";
|
|
2956
|
-
MCP_SERVER: "MCP_SERVER";
|
|
2957
|
-
TCP: "TCP";
|
|
2958
|
-
ICMP: "ICMP";
|
|
2959
|
-
HEARTBEAT: "HEARTBEAT";
|
|
2960
|
-
}>;
|
|
2669
|
+
type: z.ZodString;
|
|
2961
2670
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
2962
2671
|
hostname: z.ZodString;
|
|
2963
2672
|
recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
|
|
@@ -3008,62 +2717,13 @@ export declare const SingleValueResponseMonitorDtoSchema: z.ZodObject<{
|
|
|
3008
2717
|
frequencySeconds: z.ZodNumber;
|
|
3009
2718
|
enabled: z.ZodBoolean;
|
|
3010
2719
|
regions: z.ZodArray<z.ZodString>;
|
|
3011
|
-
managedBy: z.
|
|
3012
|
-
DASHBOARD: "DASHBOARD";
|
|
3013
|
-
CLI: "CLI";
|
|
3014
|
-
TERRAFORM: "TERRAFORM";
|
|
3015
|
-
MCP: "MCP";
|
|
3016
|
-
API: "API";
|
|
3017
|
-
}>;
|
|
2720
|
+
managedBy: z.ZodString;
|
|
3018
2721
|
createdAt: z.ZodString;
|
|
3019
2722
|
updatedAt: z.ZodString;
|
|
3020
2723
|
assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3021
2724
|
id: z.ZodString;
|
|
3022
2725
|
monitorId: z.ZodString;
|
|
3023
|
-
assertionType: z.
|
|
3024
|
-
status_code: "status_code";
|
|
3025
|
-
response_time: "response_time";
|
|
3026
|
-
body_contains: "body_contains";
|
|
3027
|
-
json_path: "json_path";
|
|
3028
|
-
header_value: "header_value";
|
|
3029
|
-
regex_body: "regex_body";
|
|
3030
|
-
dns_resolves: "dns_resolves";
|
|
3031
|
-
dns_response_time: "dns_response_time";
|
|
3032
|
-
dns_expected_ips: "dns_expected_ips";
|
|
3033
|
-
dns_expected_cname: "dns_expected_cname";
|
|
3034
|
-
dns_record_contains: "dns_record_contains";
|
|
3035
|
-
dns_record_equals: "dns_record_equals";
|
|
3036
|
-
dns_txt_contains: "dns_txt_contains";
|
|
3037
|
-
dns_min_answers: "dns_min_answers";
|
|
3038
|
-
dns_max_answers: "dns_max_answers";
|
|
3039
|
-
dns_response_time_warn: "dns_response_time_warn";
|
|
3040
|
-
dns_ttl_low: "dns_ttl_low";
|
|
3041
|
-
dns_ttl_high: "dns_ttl_high";
|
|
3042
|
-
mcp_connects: "mcp_connects";
|
|
3043
|
-
mcp_response_time: "mcp_response_time";
|
|
3044
|
-
mcp_has_capability: "mcp_has_capability";
|
|
3045
|
-
mcp_tool_available: "mcp_tool_available";
|
|
3046
|
-
mcp_min_tools: "mcp_min_tools";
|
|
3047
|
-
mcp_protocol_version: "mcp_protocol_version";
|
|
3048
|
-
mcp_response_time_warn: "mcp_response_time_warn";
|
|
3049
|
-
mcp_tool_count_changed: "mcp_tool_count_changed";
|
|
3050
|
-
ssl_expiry: "ssl_expiry";
|
|
3051
|
-
response_size: "response_size";
|
|
3052
|
-
redirect_count: "redirect_count";
|
|
3053
|
-
redirect_target: "redirect_target";
|
|
3054
|
-
response_time_warn: "response_time_warn";
|
|
3055
|
-
tcp_connects: "tcp_connects";
|
|
3056
|
-
tcp_response_time: "tcp_response_time";
|
|
3057
|
-
tcp_response_time_warn: "tcp_response_time_warn";
|
|
3058
|
-
icmp_reachable: "icmp_reachable";
|
|
3059
|
-
icmp_response_time: "icmp_response_time";
|
|
3060
|
-
icmp_response_time_warn: "icmp_response_time_warn";
|
|
3061
|
-
icmp_packet_loss: "icmp_packet_loss";
|
|
3062
|
-
heartbeat_received: "heartbeat_received";
|
|
3063
|
-
heartbeat_max_interval: "heartbeat_max_interval";
|
|
3064
|
-
heartbeat_interval_drift: "heartbeat_interval_drift";
|
|
3065
|
-
heartbeat_payload_contains: "heartbeat_payload_contains";
|
|
3066
|
-
}>;
|
|
2726
|
+
assertionType: z.ZodString;
|
|
3067
2727
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
3068
2728
|
type: z.ZodLiteral<"body_contains">;
|
|
3069
2729
|
substring: z.ZodString;
|
|
@@ -3225,10 +2885,7 @@ export declare const SingleValueResponseMonitorDtoSchema: z.ZodObject<{
|
|
|
3225
2885
|
type: z.ZodLiteral<"tcp_response_time_warn">;
|
|
3226
2886
|
warnMs: z.ZodNumber;
|
|
3227
2887
|
}, z.core.$strict>]>;
|
|
3228
|
-
severity: z.
|
|
3229
|
-
fail: "fail";
|
|
3230
|
-
warn: "warn";
|
|
3231
|
-
}>;
|
|
2888
|
+
severity: z.ZodString;
|
|
3232
2889
|
}, z.core.$strict>>>>;
|
|
3233
2890
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3234
2891
|
id: z.ZodString;
|
|
@@ -3276,8 +2933,8 @@ export declare const SingleValueResponseMonitorDtoSchema: z.ZodObject<{
|
|
|
3276
2933
|
}>>;
|
|
3277
2934
|
thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3278
2935
|
severity: z.ZodEnum<{
|
|
3279
|
-
degraded: "degraded";
|
|
3280
2936
|
down: "down";
|
|
2937
|
+
degraded: "degraded";
|
|
3281
2938
|
}>;
|
|
3282
2939
|
aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3283
2940
|
all_exceed: "all_exceed";
|
|
@@ -3302,13 +2959,7 @@ export declare const SingleValueResponseMonitorDtoSchema: z.ZodObject<{
|
|
|
3302
2959
|
checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3303
2960
|
}, z.core.$strict>>>;
|
|
3304
2961
|
alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
3305
|
-
currentStatus: z.ZodOptional<z.ZodNullable<z.
|
|
3306
|
-
up: "up";
|
|
3307
|
-
degraded: "degraded";
|
|
3308
|
-
down: "down";
|
|
3309
|
-
paused: "paused";
|
|
3310
|
-
unknown: "unknown";
|
|
3311
|
-
}>>>;
|
|
2962
|
+
currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3312
2963
|
}, z.core.$strict>;
|
|
3313
2964
|
}, z.core.$strict>;
|
|
3314
2965
|
export declare const SingleValueResponseIncidentDetailDtoSchema: z.ZodObject<{
|
|
@@ -3317,24 +2968,9 @@ export declare const SingleValueResponseIncidentDetailDtoSchema: z.ZodObject<{
|
|
|
3317
2968
|
id: z.ZodString;
|
|
3318
2969
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3319
2970
|
organizationId: z.ZodNumber;
|
|
3320
|
-
source: z.
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
MONITORS: "MONITORS";
|
|
3324
|
-
STATUS_DATA: "STATUS_DATA";
|
|
3325
|
-
RESOURCE_GROUP: "RESOURCE_GROUP";
|
|
3326
|
-
}>;
|
|
3327
|
-
status: z.ZodEnum<{
|
|
3328
|
-
WATCHING: "WATCHING";
|
|
3329
|
-
TRIGGERED: "TRIGGERED";
|
|
3330
|
-
CONFIRMED: "CONFIRMED";
|
|
3331
|
-
RESOLVED: "RESOLVED";
|
|
3332
|
-
}>;
|
|
3333
|
-
severity: z.ZodEnum<{
|
|
3334
|
-
DOWN: "DOWN";
|
|
3335
|
-
DEGRADED: "DEGRADED";
|
|
3336
|
-
MAINTENANCE: "MAINTENANCE";
|
|
3337
|
-
}>;
|
|
2971
|
+
source: z.ZodString;
|
|
2972
|
+
status: z.ZodString;
|
|
2973
|
+
severity: z.ZodString;
|
|
3338
2974
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3339
2975
|
triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3340
2976
|
affectedRegions: z.ZodArray<z.ZodString>;
|
|
@@ -3346,11 +2982,7 @@ export declare const SingleValueResponseIncidentDetailDtoSchema: z.ZodObject<{
|
|
|
3346
2982
|
externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3347
2983
|
affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
3348
2984
|
shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3349
|
-
resolutionReason: z.ZodOptional<z.ZodNullable<z.
|
|
3350
|
-
MANUAL: "MANUAL";
|
|
3351
|
-
AUTO_RECOVERED: "AUTO_RECOVERED";
|
|
3352
|
-
AUTO_RESOLVED: "AUTO_RESOLVED";
|
|
3353
|
-
}>>>;
|
|
2985
|
+
resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3354
2986
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3355
2987
|
confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3356
2988
|
resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3371,23 +3003,10 @@ export declare const SingleValueResponseIncidentDetailDtoSchema: z.ZodObject<{
|
|
|
3371
3003
|
updates: z.ZodArray<z.ZodObject<{
|
|
3372
3004
|
id: z.ZodString;
|
|
3373
3005
|
incidentId: z.ZodString;
|
|
3374
|
-
oldStatus: z.ZodOptional<z.ZodNullable<z.
|
|
3375
|
-
|
|
3376
|
-
TRIGGERED: "TRIGGERED";
|
|
3377
|
-
CONFIRMED: "CONFIRMED";
|
|
3378
|
-
RESOLVED: "RESOLVED";
|
|
3379
|
-
}>>>;
|
|
3380
|
-
newStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3381
|
-
WATCHING: "WATCHING";
|
|
3382
|
-
TRIGGERED: "TRIGGERED";
|
|
3383
|
-
CONFIRMED: "CONFIRMED";
|
|
3384
|
-
RESOLVED: "RESOLVED";
|
|
3385
|
-
}>>>;
|
|
3006
|
+
oldStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3007
|
+
newStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3386
3008
|
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3387
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.
|
|
3388
|
-
SYSTEM: "SYSTEM";
|
|
3389
|
-
USER: "USER";
|
|
3390
|
-
}>>>;
|
|
3009
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3391
3010
|
notifySubscribers: z.ZodBoolean;
|
|
3392
3011
|
createdAt: z.ZodString;
|
|
3393
3012
|
}, z.core.$strict>>;
|
|
@@ -3397,18 +3016,8 @@ export declare const SingleValueResponseIncidentDetailDtoSchema: z.ZodObject<{
|
|
|
3397
3016
|
statusPageName: z.ZodString;
|
|
3398
3017
|
statusPageSlug: z.ZodString;
|
|
3399
3018
|
title: z.ZodString;
|
|
3400
|
-
status: z.
|
|
3401
|
-
|
|
3402
|
-
INVESTIGATING: "INVESTIGATING";
|
|
3403
|
-
IDENTIFIED: "IDENTIFIED";
|
|
3404
|
-
MONITORING: "MONITORING";
|
|
3405
|
-
}>;
|
|
3406
|
-
impact: z.ZodEnum<{
|
|
3407
|
-
NONE: "NONE";
|
|
3408
|
-
MINOR: "MINOR";
|
|
3409
|
-
MAJOR: "MAJOR";
|
|
3410
|
-
CRITICAL: "CRITICAL";
|
|
3411
|
-
}>;
|
|
3019
|
+
status: z.ZodString;
|
|
3020
|
+
impact: z.ZodString;
|
|
3412
3021
|
scheduled: z.ZodBoolean;
|
|
3413
3022
|
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3414
3023
|
}, z.core.$strict>>>>;
|
|
@@ -3418,32 +3027,28 @@ export declare const SingleValueResponseAlertChannelDtoSchema: z.ZodObject<{
|
|
|
3418
3027
|
data: z.ZodObject<{
|
|
3419
3028
|
id: z.ZodString;
|
|
3420
3029
|
name: z.ZodString;
|
|
3421
|
-
channelType: z.
|
|
3422
|
-
email: "email";
|
|
3423
|
-
webhook: "webhook";
|
|
3424
|
-
slack: "slack";
|
|
3425
|
-
pagerduty: "pagerduty";
|
|
3426
|
-
opsgenie: "opsgenie";
|
|
3427
|
-
teams: "teams";
|
|
3428
|
-
discord: "discord";
|
|
3429
|
-
}>;
|
|
3030
|
+
channelType: z.ZodString;
|
|
3430
3031
|
displayConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3431
3032
|
recipients: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
3432
3033
|
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3433
3034
|
severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3434
3035
|
mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3435
3036
|
customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
|
|
3037
|
+
chatId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3038
|
+
priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3039
|
+
channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3040
|
+
routingKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3041
|
+
deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3042
|
+
teamId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3043
|
+
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3044
|
+
severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3045
|
+
site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3046
|
+
projectKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3436
3047
|
}, z.core.$strict>>>;
|
|
3437
3048
|
createdAt: z.ZodString;
|
|
3438
3049
|
updatedAt: z.ZodString;
|
|
3439
3050
|
configHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3440
|
-
managedBy: z.ZodOptional<z.ZodNullable<z.
|
|
3441
|
-
DASHBOARD: "DASHBOARD";
|
|
3442
|
-
CLI: "CLI";
|
|
3443
|
-
TERRAFORM: "TERRAFORM";
|
|
3444
|
-
MCP: "MCP";
|
|
3445
|
-
API: "API";
|
|
3446
|
-
}>>>;
|
|
3051
|
+
managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3447
3052
|
lastDeliveryAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3448
3053
|
lastDeliveryStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3449
3054
|
}, z.core.$strict>;
|
|
@@ -3540,29 +3145,17 @@ export declare const SingleValueResponseResourceGroupDtoSchema: z.ZodObject<{
|
|
|
3540
3145
|
}, z.core.$strict>>>;
|
|
3541
3146
|
defaultAlertChannels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
3542
3147
|
defaultEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3543
|
-
healthThresholdType: z.ZodOptional<z.ZodNullable<z.
|
|
3544
|
-
COUNT: "COUNT";
|
|
3545
|
-
PERCENTAGE: "PERCENTAGE";
|
|
3546
|
-
}>>>;
|
|
3148
|
+
healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3547
3149
|
healthThresholdValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3548
3150
|
suppressMemberAlerts: z.ZodBoolean;
|
|
3549
3151
|
confirmationDelaySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3550
3152
|
recoveryCooldownMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3551
3153
|
health: z.ZodObject<{
|
|
3552
|
-
status: z.
|
|
3553
|
-
degraded: "degraded";
|
|
3554
|
-
down: "down";
|
|
3555
|
-
operational: "operational";
|
|
3556
|
-
maintenance: "maintenance";
|
|
3557
|
-
}>;
|
|
3154
|
+
status: z.ZodString;
|
|
3558
3155
|
totalMembers: z.ZodNumber;
|
|
3559
3156
|
operationalCount: z.ZodNumber;
|
|
3560
3157
|
activeIncidents: z.ZodNumber;
|
|
3561
|
-
thresholdStatus: z.ZodOptional<z.ZodNullable<z.
|
|
3562
|
-
degraded: "degraded";
|
|
3563
|
-
down: "down";
|
|
3564
|
-
healthy: "healthy";
|
|
3565
|
-
}>>>;
|
|
3158
|
+
thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3566
3159
|
failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3567
3160
|
}, z.core.$strict>;
|
|
3568
3161
|
members: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -3574,12 +3167,7 @@ export declare const SingleValueResponseResourceGroupDtoSchema: z.ZodObject<{
|
|
|
3574
3167
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3575
3168
|
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3576
3169
|
subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3577
|
-
status: z.
|
|
3578
|
-
degraded: "degraded";
|
|
3579
|
-
down: "down";
|
|
3580
|
-
operational: "operational";
|
|
3581
|
-
maintenance: "maintenance";
|
|
3582
|
-
}>;
|
|
3170
|
+
status: z.ZodString;
|
|
3583
3171
|
effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3584
3172
|
createdAt: z.ZodString;
|
|
3585
3173
|
uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -3590,13 +3178,7 @@ export declare const SingleValueResponseResourceGroupDtoSchema: z.ZodObject<{
|
|
|
3590
3178
|
monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3591
3179
|
environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3592
3180
|
}, z.core.$strict>>>>;
|
|
3593
|
-
managedBy: z.ZodOptional<z.ZodNullable<z.
|
|
3594
|
-
DASHBOARD: "DASHBOARD";
|
|
3595
|
-
CLI: "CLI";
|
|
3596
|
-
TERRAFORM: "TERRAFORM";
|
|
3597
|
-
MCP: "MCP";
|
|
3598
|
-
API: "API";
|
|
3599
|
-
}>>>;
|
|
3181
|
+
managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3600
3182
|
createdAt: z.ZodString;
|
|
3601
3183
|
updatedAt: z.ZodString;
|
|
3602
3184
|
}, z.core.$strict>;
|
|
@@ -3680,11 +3262,7 @@ export declare const SingleValueResponseServiceSubscriptionDtoSchema: z.ZodObjec
|
|
|
3680
3262
|
lastSeenAt: z.ZodString;
|
|
3681
3263
|
isGroup: z.ZodBoolean;
|
|
3682
3264
|
}, z.core.$strict>>>;
|
|
3683
|
-
alertSensitivity: z.
|
|
3684
|
-
ALL: "ALL";
|
|
3685
|
-
INCIDENTS_ONLY: "INCIDENTS_ONLY";
|
|
3686
|
-
MAJOR_ONLY: "MAJOR_ONLY";
|
|
3687
|
-
}>;
|
|
3265
|
+
alertSensitivity: z.ZodString;
|
|
3688
3266
|
subscribedAt: z.ZodString;
|
|
3689
3267
|
}, z.core.$strict>;
|
|
3690
3268
|
}, z.core.$strict>;
|
|
@@ -3726,55 +3304,9 @@ export declare const SingleValueResponseMonitorTestResultDtoSchema: z.ZodObject<
|
|
|
3726
3304
|
redirectCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3727
3305
|
finalUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3728
3306
|
assertionResults: z.ZodArray<z.ZodObject<{
|
|
3729
|
-
assertionType: z.
|
|
3730
|
-
status_code: "status_code";
|
|
3731
|
-
response_time: "response_time";
|
|
3732
|
-
body_contains: "body_contains";
|
|
3733
|
-
json_path: "json_path";
|
|
3734
|
-
header_value: "header_value";
|
|
3735
|
-
regex_body: "regex_body";
|
|
3736
|
-
dns_resolves: "dns_resolves";
|
|
3737
|
-
dns_response_time: "dns_response_time";
|
|
3738
|
-
dns_expected_ips: "dns_expected_ips";
|
|
3739
|
-
dns_expected_cname: "dns_expected_cname";
|
|
3740
|
-
dns_record_contains: "dns_record_contains";
|
|
3741
|
-
dns_record_equals: "dns_record_equals";
|
|
3742
|
-
dns_txt_contains: "dns_txt_contains";
|
|
3743
|
-
dns_min_answers: "dns_min_answers";
|
|
3744
|
-
dns_max_answers: "dns_max_answers";
|
|
3745
|
-
dns_response_time_warn: "dns_response_time_warn";
|
|
3746
|
-
dns_ttl_low: "dns_ttl_low";
|
|
3747
|
-
dns_ttl_high: "dns_ttl_high";
|
|
3748
|
-
mcp_connects: "mcp_connects";
|
|
3749
|
-
mcp_response_time: "mcp_response_time";
|
|
3750
|
-
mcp_has_capability: "mcp_has_capability";
|
|
3751
|
-
mcp_tool_available: "mcp_tool_available";
|
|
3752
|
-
mcp_min_tools: "mcp_min_tools";
|
|
3753
|
-
mcp_protocol_version: "mcp_protocol_version";
|
|
3754
|
-
mcp_response_time_warn: "mcp_response_time_warn";
|
|
3755
|
-
mcp_tool_count_changed: "mcp_tool_count_changed";
|
|
3756
|
-
ssl_expiry: "ssl_expiry";
|
|
3757
|
-
response_size: "response_size";
|
|
3758
|
-
redirect_count: "redirect_count";
|
|
3759
|
-
redirect_target: "redirect_target";
|
|
3760
|
-
response_time_warn: "response_time_warn";
|
|
3761
|
-
tcp_connects: "tcp_connects";
|
|
3762
|
-
tcp_response_time: "tcp_response_time";
|
|
3763
|
-
tcp_response_time_warn: "tcp_response_time_warn";
|
|
3764
|
-
icmp_reachable: "icmp_reachable";
|
|
3765
|
-
icmp_response_time: "icmp_response_time";
|
|
3766
|
-
icmp_response_time_warn: "icmp_response_time_warn";
|
|
3767
|
-
icmp_packet_loss: "icmp_packet_loss";
|
|
3768
|
-
heartbeat_received: "heartbeat_received";
|
|
3769
|
-
heartbeat_max_interval: "heartbeat_max_interval";
|
|
3770
|
-
heartbeat_interval_drift: "heartbeat_interval_drift";
|
|
3771
|
-
heartbeat_payload_contains: "heartbeat_payload_contains";
|
|
3772
|
-
}>;
|
|
3307
|
+
assertionType: z.ZodString;
|
|
3773
3308
|
passed: z.ZodBoolean;
|
|
3774
|
-
severity: z.
|
|
3775
|
-
fail: "fail";
|
|
3776
|
-
warn: "warn";
|
|
3777
|
-
}>;
|
|
3309
|
+
severity: z.ZodString;
|
|
3778
3310
|
message: z.ZodString;
|
|
3779
3311
|
expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3780
3312
|
actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3815,36 +3347,17 @@ export declare const SingleValueResponseStatusPageDtoSchema: z.ZodObject<{
|
|
|
3815
3347
|
theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3816
3348
|
reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3817
3349
|
hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3350
|
+
showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3818
3351
|
customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3819
3352
|
customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3820
3353
|
}, z.core.$strict>;
|
|
3821
|
-
visibility: z.
|
|
3822
|
-
PUBLIC: "PUBLIC";
|
|
3823
|
-
PASSWORD: "PASSWORD";
|
|
3824
|
-
IP_RESTRICTED: "IP_RESTRICTED";
|
|
3825
|
-
}>;
|
|
3354
|
+
visibility: z.ZodString;
|
|
3826
3355
|
enabled: z.ZodBoolean;
|
|
3827
|
-
incidentMode: z.
|
|
3828
|
-
MANUAL: "MANUAL";
|
|
3829
|
-
REVIEW: "REVIEW";
|
|
3830
|
-
AUTOMATIC: "AUTOMATIC";
|
|
3831
|
-
}>;
|
|
3356
|
+
incidentMode: z.ZodString;
|
|
3832
3357
|
componentCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3833
3358
|
subscriberCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3834
|
-
overallStatus: z.ZodOptional<z.ZodNullable<z.
|
|
3835
|
-
|
|
3836
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
3837
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
3838
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
3839
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
3840
|
-
}>>>;
|
|
3841
|
-
managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3842
|
-
DASHBOARD: "DASHBOARD";
|
|
3843
|
-
CLI: "CLI";
|
|
3844
|
-
TERRAFORM: "TERRAFORM";
|
|
3845
|
-
MCP: "MCP";
|
|
3846
|
-
API: "API";
|
|
3847
|
-
}>>>;
|
|
3359
|
+
overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3360
|
+
managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3848
3361
|
createdAt: z.ZodString;
|
|
3849
3362
|
updatedAt: z.ZodString;
|
|
3850
3363
|
}, z.core.$strict>;
|
|
@@ -3856,20 +3369,10 @@ export declare const SingleValueResponseStatusPageComponentDtoSchema: z.ZodObjec
|
|
|
3856
3369
|
groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3857
3370
|
name: z.ZodString;
|
|
3858
3371
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3859
|
-
type: z.
|
|
3860
|
-
MONITOR: "MONITOR";
|
|
3861
|
-
GROUP: "GROUP";
|
|
3862
|
-
STATIC: "STATIC";
|
|
3863
|
-
}>;
|
|
3372
|
+
type: z.ZodString;
|
|
3864
3373
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3865
3374
|
resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3866
|
-
currentStatus: z.
|
|
3867
|
-
OPERATIONAL: "OPERATIONAL";
|
|
3868
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
3869
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
3870
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
3871
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
3872
|
-
}>;
|
|
3375
|
+
currentStatus: z.ZodString;
|
|
3873
3376
|
showUptime: z.ZodBoolean;
|
|
3874
3377
|
displayOrder: z.ZodNumber;
|
|
3875
3378
|
pageOrder: z.ZodNumber;
|
|
@@ -3894,20 +3397,10 @@ export declare const SingleValueResponseStatusPageComponentGroupDtoSchema: z.Zod
|
|
|
3894
3397
|
groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3895
3398
|
name: z.ZodString;
|
|
3896
3399
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3897
|
-
type: z.
|
|
3898
|
-
MONITOR: "MONITOR";
|
|
3899
|
-
GROUP: "GROUP";
|
|
3900
|
-
STATIC: "STATIC";
|
|
3901
|
-
}>;
|
|
3400
|
+
type: z.ZodString;
|
|
3902
3401
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3903
3402
|
resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3904
|
-
currentStatus: z.
|
|
3905
|
-
OPERATIONAL: "OPERATIONAL";
|
|
3906
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
3907
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
3908
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
3909
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
3910
|
-
}>;
|
|
3403
|
+
currentStatus: z.ZodString;
|
|
3911
3404
|
showUptime: z.ZodBoolean;
|
|
3912
3405
|
displayOrder: z.ZodNumber;
|
|
3913
3406
|
pageOrder: z.ZodNumber;
|
|
@@ -3925,18 +3418,8 @@ export declare const SingleValueResponseStatusPageIncidentDtoSchema: z.ZodObject
|
|
|
3925
3418
|
id: z.ZodString;
|
|
3926
3419
|
statusPageId: z.ZodString;
|
|
3927
3420
|
title: z.ZodString;
|
|
3928
|
-
status: z.
|
|
3929
|
-
|
|
3930
|
-
INVESTIGATING: "INVESTIGATING";
|
|
3931
|
-
IDENTIFIED: "IDENTIFIED";
|
|
3932
|
-
MONITORING: "MONITORING";
|
|
3933
|
-
}>;
|
|
3934
|
-
impact: z.ZodEnum<{
|
|
3935
|
-
NONE: "NONE";
|
|
3936
|
-
MINOR: "MINOR";
|
|
3937
|
-
MAJOR: "MAJOR";
|
|
3938
|
-
CRITICAL: "CRITICAL";
|
|
3939
|
-
}>;
|
|
3421
|
+
status: z.ZodString;
|
|
3422
|
+
impact: z.ZodString;
|
|
3940
3423
|
scheduled: z.ZodBoolean;
|
|
3941
3424
|
scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3942
3425
|
scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3950,28 +3433,14 @@ export declare const SingleValueResponseStatusPageIncidentDtoSchema: z.ZodObject
|
|
|
3950
3433
|
postmortemUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3951
3434
|
affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3952
3435
|
statusPageComponentId: z.ZodString;
|
|
3953
|
-
componentStatus: z.
|
|
3954
|
-
OPERATIONAL: "OPERATIONAL";
|
|
3955
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
3956
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
3957
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
3958
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
3959
|
-
}>;
|
|
3436
|
+
componentStatus: z.ZodString;
|
|
3960
3437
|
componentName: z.ZodString;
|
|
3961
3438
|
}, z.core.$strict>>>>;
|
|
3962
3439
|
updates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3963
3440
|
id: z.ZodString;
|
|
3964
|
-
status: z.
|
|
3965
|
-
RESOLVED: "RESOLVED";
|
|
3966
|
-
INVESTIGATING: "INVESTIGATING";
|
|
3967
|
-
IDENTIFIED: "IDENTIFIED";
|
|
3968
|
-
MONITORING: "MONITORING";
|
|
3969
|
-
}>;
|
|
3441
|
+
status: z.ZodString;
|
|
3970
3442
|
body: z.ZodString;
|
|
3971
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.
|
|
3972
|
-
SYSTEM: "SYSTEM";
|
|
3973
|
-
USER: "USER";
|
|
3974
|
-
}>>>;
|
|
3443
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3975
3444
|
createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3976
3445
|
notifySubscribers: z.ZodBoolean;
|
|
3977
3446
|
createdAt: z.ZodString;
|
|
@@ -3992,19 +3461,8 @@ export declare const SingleValueResponseStatusPageCustomDomainDtoSchema: z.ZodOb
|
|
|
3992
3461
|
data: z.ZodObject<{
|
|
3993
3462
|
id: z.ZodString;
|
|
3994
3463
|
hostname: z.ZodString;
|
|
3995
|
-
status: z.
|
|
3996
|
-
|
|
3997
|
-
ACTIVE: "ACTIVE";
|
|
3998
|
-
REMOVED: "REMOVED";
|
|
3999
|
-
PENDING_VERIFICATION: "PENDING_VERIFICATION";
|
|
4000
|
-
VERIFICATION_FAILED: "VERIFICATION_FAILED";
|
|
4001
|
-
VERIFIED: "VERIFIED";
|
|
4002
|
-
SSL_PENDING: "SSL_PENDING";
|
|
4003
|
-
}>;
|
|
4004
|
-
verificationMethod: z.ZodEnum<{
|
|
4005
|
-
CNAME: "CNAME";
|
|
4006
|
-
TXT: "TXT";
|
|
4007
|
-
}>;
|
|
3464
|
+
status: z.ZodString;
|
|
3465
|
+
verificationMethod: z.ZodString;
|
|
4008
3466
|
verificationToken: z.ZodString;
|
|
4009
3467
|
verificationCnameTarget: z.ZodString;
|
|
4010
3468
|
verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4041,12 +3499,7 @@ export declare const SingleValueResponseResourceGroupMemberDtoSchema: z.ZodObjec
|
|
|
4041
3499
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4042
3500
|
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4043
3501
|
subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4044
|
-
status: z.
|
|
4045
|
-
degraded: "degraded";
|
|
4046
|
-
down: "down";
|
|
4047
|
-
operational: "operational";
|
|
4048
|
-
maintenance: "maintenance";
|
|
4049
|
-
}>;
|
|
3502
|
+
status: z.ZodString;
|
|
4050
3503
|
effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4051
3504
|
createdAt: z.ZodString;
|
|
4052
3505
|
uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -4063,14 +3516,7 @@ export declare const TableValueResultMonitorDtoSchema: z.ZodObject<{
|
|
|
4063
3516
|
id: z.ZodString;
|
|
4064
3517
|
organizationId: z.ZodNumber;
|
|
4065
3518
|
name: z.ZodString;
|
|
4066
|
-
type: z.
|
|
4067
|
-
HTTP: "HTTP";
|
|
4068
|
-
DNS: "DNS";
|
|
4069
|
-
MCP_SERVER: "MCP_SERVER";
|
|
4070
|
-
TCP: "TCP";
|
|
4071
|
-
ICMP: "ICMP";
|
|
4072
|
-
HEARTBEAT: "HEARTBEAT";
|
|
4073
|
-
}>;
|
|
3519
|
+
type: z.ZodString;
|
|
4074
3520
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
4075
3521
|
hostname: z.ZodString;
|
|
4076
3522
|
recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
|
|
@@ -4121,62 +3567,13 @@ export declare const TableValueResultMonitorDtoSchema: z.ZodObject<{
|
|
|
4121
3567
|
frequencySeconds: z.ZodNumber;
|
|
4122
3568
|
enabled: z.ZodBoolean;
|
|
4123
3569
|
regions: z.ZodArray<z.ZodString>;
|
|
4124
|
-
managedBy: z.
|
|
4125
|
-
DASHBOARD: "DASHBOARD";
|
|
4126
|
-
CLI: "CLI";
|
|
4127
|
-
TERRAFORM: "TERRAFORM";
|
|
4128
|
-
MCP: "MCP";
|
|
4129
|
-
API: "API";
|
|
4130
|
-
}>;
|
|
3570
|
+
managedBy: z.ZodString;
|
|
4131
3571
|
createdAt: z.ZodString;
|
|
4132
3572
|
updatedAt: z.ZodString;
|
|
4133
3573
|
assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4134
3574
|
id: z.ZodString;
|
|
4135
3575
|
monitorId: z.ZodString;
|
|
4136
|
-
assertionType: z.
|
|
4137
|
-
status_code: "status_code";
|
|
4138
|
-
response_time: "response_time";
|
|
4139
|
-
body_contains: "body_contains";
|
|
4140
|
-
json_path: "json_path";
|
|
4141
|
-
header_value: "header_value";
|
|
4142
|
-
regex_body: "regex_body";
|
|
4143
|
-
dns_resolves: "dns_resolves";
|
|
4144
|
-
dns_response_time: "dns_response_time";
|
|
4145
|
-
dns_expected_ips: "dns_expected_ips";
|
|
4146
|
-
dns_expected_cname: "dns_expected_cname";
|
|
4147
|
-
dns_record_contains: "dns_record_contains";
|
|
4148
|
-
dns_record_equals: "dns_record_equals";
|
|
4149
|
-
dns_txt_contains: "dns_txt_contains";
|
|
4150
|
-
dns_min_answers: "dns_min_answers";
|
|
4151
|
-
dns_max_answers: "dns_max_answers";
|
|
4152
|
-
dns_response_time_warn: "dns_response_time_warn";
|
|
4153
|
-
dns_ttl_low: "dns_ttl_low";
|
|
4154
|
-
dns_ttl_high: "dns_ttl_high";
|
|
4155
|
-
mcp_connects: "mcp_connects";
|
|
4156
|
-
mcp_response_time: "mcp_response_time";
|
|
4157
|
-
mcp_has_capability: "mcp_has_capability";
|
|
4158
|
-
mcp_tool_available: "mcp_tool_available";
|
|
4159
|
-
mcp_min_tools: "mcp_min_tools";
|
|
4160
|
-
mcp_protocol_version: "mcp_protocol_version";
|
|
4161
|
-
mcp_response_time_warn: "mcp_response_time_warn";
|
|
4162
|
-
mcp_tool_count_changed: "mcp_tool_count_changed";
|
|
4163
|
-
ssl_expiry: "ssl_expiry";
|
|
4164
|
-
response_size: "response_size";
|
|
4165
|
-
redirect_count: "redirect_count";
|
|
4166
|
-
redirect_target: "redirect_target";
|
|
4167
|
-
response_time_warn: "response_time_warn";
|
|
4168
|
-
tcp_connects: "tcp_connects";
|
|
4169
|
-
tcp_response_time: "tcp_response_time";
|
|
4170
|
-
tcp_response_time_warn: "tcp_response_time_warn";
|
|
4171
|
-
icmp_reachable: "icmp_reachable";
|
|
4172
|
-
icmp_response_time: "icmp_response_time";
|
|
4173
|
-
icmp_response_time_warn: "icmp_response_time_warn";
|
|
4174
|
-
icmp_packet_loss: "icmp_packet_loss";
|
|
4175
|
-
heartbeat_received: "heartbeat_received";
|
|
4176
|
-
heartbeat_max_interval: "heartbeat_max_interval";
|
|
4177
|
-
heartbeat_interval_drift: "heartbeat_interval_drift";
|
|
4178
|
-
heartbeat_payload_contains: "heartbeat_payload_contains";
|
|
4179
|
-
}>;
|
|
3576
|
+
assertionType: z.ZodString;
|
|
4180
3577
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
4181
3578
|
type: z.ZodLiteral<"body_contains">;
|
|
4182
3579
|
substring: z.ZodString;
|
|
@@ -4338,10 +3735,7 @@ export declare const TableValueResultMonitorDtoSchema: z.ZodObject<{
|
|
|
4338
3735
|
type: z.ZodLiteral<"tcp_response_time_warn">;
|
|
4339
3736
|
warnMs: z.ZodNumber;
|
|
4340
3737
|
}, z.core.$strict>]>;
|
|
4341
|
-
severity: z.
|
|
4342
|
-
fail: "fail";
|
|
4343
|
-
warn: "warn";
|
|
4344
|
-
}>;
|
|
3738
|
+
severity: z.ZodString;
|
|
4345
3739
|
}, z.core.$strict>>>>;
|
|
4346
3740
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4347
3741
|
id: z.ZodString;
|
|
@@ -4389,8 +3783,8 @@ export declare const TableValueResultMonitorDtoSchema: z.ZodObject<{
|
|
|
4389
3783
|
}>>;
|
|
4390
3784
|
thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4391
3785
|
severity: z.ZodEnum<{
|
|
4392
|
-
degraded: "degraded";
|
|
4393
3786
|
down: "down";
|
|
3787
|
+
degraded: "degraded";
|
|
4394
3788
|
}>;
|
|
4395
3789
|
aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4396
3790
|
all_exceed: "all_exceed";
|
|
@@ -4415,13 +3809,7 @@ export declare const TableValueResultMonitorDtoSchema: z.ZodObject<{
|
|
|
4415
3809
|
checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4416
3810
|
}, z.core.$strict>>>;
|
|
4417
3811
|
alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
4418
|
-
currentStatus: z.ZodOptional<z.ZodNullable<z.
|
|
4419
|
-
up: "up";
|
|
4420
|
-
degraded: "degraded";
|
|
4421
|
-
down: "down";
|
|
4422
|
-
paused: "paused";
|
|
4423
|
-
unknown: "unknown";
|
|
4424
|
-
}>>>;
|
|
3812
|
+
currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4425
3813
|
}, z.core.$strict>>;
|
|
4426
3814
|
hasNext: z.ZodBoolean;
|
|
4427
3815
|
hasPrev: z.ZodBoolean;
|
|
@@ -4433,24 +3821,9 @@ export declare const TableValueResultIncidentDtoSchema: z.ZodObject<{
|
|
|
4433
3821
|
id: z.ZodString;
|
|
4434
3822
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4435
3823
|
organizationId: z.ZodNumber;
|
|
4436
|
-
source: z.
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
MONITORS: "MONITORS";
|
|
4440
|
-
STATUS_DATA: "STATUS_DATA";
|
|
4441
|
-
RESOURCE_GROUP: "RESOURCE_GROUP";
|
|
4442
|
-
}>;
|
|
4443
|
-
status: z.ZodEnum<{
|
|
4444
|
-
WATCHING: "WATCHING";
|
|
4445
|
-
TRIGGERED: "TRIGGERED";
|
|
4446
|
-
CONFIRMED: "CONFIRMED";
|
|
4447
|
-
RESOLVED: "RESOLVED";
|
|
4448
|
-
}>;
|
|
4449
|
-
severity: z.ZodEnum<{
|
|
4450
|
-
DOWN: "DOWN";
|
|
4451
|
-
DEGRADED: "DEGRADED";
|
|
4452
|
-
MAINTENANCE: "MAINTENANCE";
|
|
4453
|
-
}>;
|
|
3824
|
+
source: z.ZodString;
|
|
3825
|
+
status: z.ZodString;
|
|
3826
|
+
severity: z.ZodString;
|
|
4454
3827
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4455
3828
|
triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4456
3829
|
affectedRegions: z.ZodArray<z.ZodString>;
|
|
@@ -4462,11 +3835,7 @@ export declare const TableValueResultIncidentDtoSchema: z.ZodObject<{
|
|
|
4462
3835
|
externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4463
3836
|
affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
4464
3837
|
shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4465
|
-
resolutionReason: z.ZodOptional<z.ZodNullable<z.
|
|
4466
|
-
MANUAL: "MANUAL";
|
|
4467
|
-
AUTO_RECOVERED: "AUTO_RECOVERED";
|
|
4468
|
-
AUTO_RESOLVED: "AUTO_RESOLVED";
|
|
4469
|
-
}>>>;
|
|
3838
|
+
resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4470
3839
|
startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4471
3840
|
confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4472
3841
|
resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4493,32 +3862,28 @@ export declare const TableValueResultAlertChannelDtoSchema: z.ZodObject<{
|
|
|
4493
3862
|
data: z.ZodArray<z.ZodObject<{
|
|
4494
3863
|
id: z.ZodString;
|
|
4495
3864
|
name: z.ZodString;
|
|
4496
|
-
channelType: z.
|
|
4497
|
-
email: "email";
|
|
4498
|
-
webhook: "webhook";
|
|
4499
|
-
slack: "slack";
|
|
4500
|
-
pagerduty: "pagerduty";
|
|
4501
|
-
opsgenie: "opsgenie";
|
|
4502
|
-
teams: "teams";
|
|
4503
|
-
discord: "discord";
|
|
4504
|
-
}>;
|
|
3865
|
+
channelType: z.ZodString;
|
|
4505
3866
|
displayConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4506
3867
|
recipients: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
4507
3868
|
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4508
3869
|
severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4509
3870
|
mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4510
3871
|
customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
|
|
3872
|
+
chatId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3873
|
+
priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3874
|
+
channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3875
|
+
routingKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3876
|
+
deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3877
|
+
teamId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3878
|
+
visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3879
|
+
severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3880
|
+
site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3881
|
+
projectKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4511
3882
|
}, z.core.$strict>>>;
|
|
4512
3883
|
createdAt: z.ZodString;
|
|
4513
3884
|
updatedAt: z.ZodString;
|
|
4514
3885
|
configHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4515
|
-
managedBy: z.ZodOptional<z.ZodNullable<z.
|
|
4516
|
-
DASHBOARD: "DASHBOARD";
|
|
4517
|
-
CLI: "CLI";
|
|
4518
|
-
TERRAFORM: "TERRAFORM";
|
|
4519
|
-
MCP: "MCP";
|
|
4520
|
-
API: "API";
|
|
4521
|
-
}>>>;
|
|
3886
|
+
managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4522
3887
|
lastDeliveryAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4523
3888
|
lastDeliveryStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4524
3889
|
}, z.core.$strict>>;
|
|
@@ -4635,29 +4000,17 @@ export declare const TableValueResultResourceGroupDtoSchema: z.ZodObject<{
|
|
|
4635
4000
|
}, z.core.$strict>>>;
|
|
4636
4001
|
defaultAlertChannels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
4637
4002
|
defaultEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4638
|
-
healthThresholdType: z.ZodOptional<z.ZodNullable<z.
|
|
4639
|
-
COUNT: "COUNT";
|
|
4640
|
-
PERCENTAGE: "PERCENTAGE";
|
|
4641
|
-
}>>>;
|
|
4003
|
+
healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4642
4004
|
healthThresholdValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4643
4005
|
suppressMemberAlerts: z.ZodBoolean;
|
|
4644
4006
|
confirmationDelaySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4645
4007
|
recoveryCooldownMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4646
4008
|
health: z.ZodObject<{
|
|
4647
|
-
status: z.
|
|
4648
|
-
degraded: "degraded";
|
|
4649
|
-
down: "down";
|
|
4650
|
-
operational: "operational";
|
|
4651
|
-
maintenance: "maintenance";
|
|
4652
|
-
}>;
|
|
4009
|
+
status: z.ZodString;
|
|
4653
4010
|
totalMembers: z.ZodNumber;
|
|
4654
4011
|
operationalCount: z.ZodNumber;
|
|
4655
4012
|
activeIncidents: z.ZodNumber;
|
|
4656
|
-
thresholdStatus: z.ZodOptional<z.ZodNullable<z.
|
|
4657
|
-
degraded: "degraded";
|
|
4658
|
-
down: "down";
|
|
4659
|
-
healthy: "healthy";
|
|
4660
|
-
}>>>;
|
|
4013
|
+
thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4661
4014
|
failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4662
4015
|
}, z.core.$strict>;
|
|
4663
4016
|
members: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -4669,12 +4022,7 @@ export declare const TableValueResultResourceGroupDtoSchema: z.ZodObject<{
|
|
|
4669
4022
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4670
4023
|
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4671
4024
|
subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4672
|
-
status: z.
|
|
4673
|
-
degraded: "degraded";
|
|
4674
|
-
down: "down";
|
|
4675
|
-
operational: "operational";
|
|
4676
|
-
maintenance: "maintenance";
|
|
4677
|
-
}>;
|
|
4025
|
+
status: z.ZodString;
|
|
4678
4026
|
effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4679
4027
|
createdAt: z.ZodString;
|
|
4680
4028
|
uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -4685,13 +4033,7 @@ export declare const TableValueResultResourceGroupDtoSchema: z.ZodObject<{
|
|
|
4685
4033
|
monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4686
4034
|
environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4687
4035
|
}, z.core.$strict>>>>;
|
|
4688
|
-
managedBy: z.ZodOptional<z.ZodNullable<z.
|
|
4689
|
-
DASHBOARD: "DASHBOARD";
|
|
4690
|
-
CLI: "CLI";
|
|
4691
|
-
TERRAFORM: "TERRAFORM";
|
|
4692
|
-
MCP: "MCP";
|
|
4693
|
-
API: "API";
|
|
4694
|
-
}>>>;
|
|
4036
|
+
managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4695
4037
|
createdAt: z.ZodString;
|
|
4696
4038
|
updatedAt: z.ZodString;
|
|
4697
4039
|
}, z.core.$strict>>;
|
|
@@ -4778,11 +4120,7 @@ export declare const TableValueResultServiceSubscriptionDtoSchema: z.ZodObject<{
|
|
|
4778
4120
|
lastSeenAt: z.ZodString;
|
|
4779
4121
|
isGroup: z.ZodBoolean;
|
|
4780
4122
|
}, z.core.$strict>>>;
|
|
4781
|
-
alertSensitivity: z.
|
|
4782
|
-
ALL: "ALL";
|
|
4783
|
-
INCIDENTS_ONLY: "INCIDENTS_ONLY";
|
|
4784
|
-
MAJOR_ONLY: "MAJOR_ONLY";
|
|
4785
|
-
}>;
|
|
4123
|
+
alertSensitivity: z.ZodString;
|
|
4786
4124
|
subscribedAt: z.ZodString;
|
|
4787
4125
|
}, z.core.$strict>>;
|
|
4788
4126
|
hasNext: z.ZodBoolean;
|
|
@@ -4799,14 +4137,7 @@ export declare const TableValueResultMonitorVersionDtoSchema: z.ZodObject<{
|
|
|
4799
4137
|
id: z.ZodString;
|
|
4800
4138
|
organizationId: z.ZodNumber;
|
|
4801
4139
|
name: z.ZodString;
|
|
4802
|
-
type: z.
|
|
4803
|
-
HTTP: "HTTP";
|
|
4804
|
-
DNS: "DNS";
|
|
4805
|
-
MCP_SERVER: "MCP_SERVER";
|
|
4806
|
-
TCP: "TCP";
|
|
4807
|
-
ICMP: "ICMP";
|
|
4808
|
-
HEARTBEAT: "HEARTBEAT";
|
|
4809
|
-
}>;
|
|
4140
|
+
type: z.ZodString;
|
|
4810
4141
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
4811
4142
|
hostname: z.ZodString;
|
|
4812
4143
|
recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
|
|
@@ -4857,62 +4188,13 @@ export declare const TableValueResultMonitorVersionDtoSchema: z.ZodObject<{
|
|
|
4857
4188
|
frequencySeconds: z.ZodNumber;
|
|
4858
4189
|
enabled: z.ZodBoolean;
|
|
4859
4190
|
regions: z.ZodArray<z.ZodString>;
|
|
4860
|
-
managedBy: z.
|
|
4861
|
-
DASHBOARD: "DASHBOARD";
|
|
4862
|
-
CLI: "CLI";
|
|
4863
|
-
TERRAFORM: "TERRAFORM";
|
|
4864
|
-
MCP: "MCP";
|
|
4865
|
-
API: "API";
|
|
4866
|
-
}>;
|
|
4191
|
+
managedBy: z.ZodString;
|
|
4867
4192
|
createdAt: z.ZodString;
|
|
4868
4193
|
updatedAt: z.ZodString;
|
|
4869
4194
|
assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4870
4195
|
id: z.ZodString;
|
|
4871
4196
|
monitorId: z.ZodString;
|
|
4872
|
-
assertionType: z.
|
|
4873
|
-
status_code: "status_code";
|
|
4874
|
-
response_time: "response_time";
|
|
4875
|
-
body_contains: "body_contains";
|
|
4876
|
-
json_path: "json_path";
|
|
4877
|
-
header_value: "header_value";
|
|
4878
|
-
regex_body: "regex_body";
|
|
4879
|
-
dns_resolves: "dns_resolves";
|
|
4880
|
-
dns_response_time: "dns_response_time";
|
|
4881
|
-
dns_expected_ips: "dns_expected_ips";
|
|
4882
|
-
dns_expected_cname: "dns_expected_cname";
|
|
4883
|
-
dns_record_contains: "dns_record_contains";
|
|
4884
|
-
dns_record_equals: "dns_record_equals";
|
|
4885
|
-
dns_txt_contains: "dns_txt_contains";
|
|
4886
|
-
dns_min_answers: "dns_min_answers";
|
|
4887
|
-
dns_max_answers: "dns_max_answers";
|
|
4888
|
-
dns_response_time_warn: "dns_response_time_warn";
|
|
4889
|
-
dns_ttl_low: "dns_ttl_low";
|
|
4890
|
-
dns_ttl_high: "dns_ttl_high";
|
|
4891
|
-
mcp_connects: "mcp_connects";
|
|
4892
|
-
mcp_response_time: "mcp_response_time";
|
|
4893
|
-
mcp_has_capability: "mcp_has_capability";
|
|
4894
|
-
mcp_tool_available: "mcp_tool_available";
|
|
4895
|
-
mcp_min_tools: "mcp_min_tools";
|
|
4896
|
-
mcp_protocol_version: "mcp_protocol_version";
|
|
4897
|
-
mcp_response_time_warn: "mcp_response_time_warn";
|
|
4898
|
-
mcp_tool_count_changed: "mcp_tool_count_changed";
|
|
4899
|
-
ssl_expiry: "ssl_expiry";
|
|
4900
|
-
response_size: "response_size";
|
|
4901
|
-
redirect_count: "redirect_count";
|
|
4902
|
-
redirect_target: "redirect_target";
|
|
4903
|
-
response_time_warn: "response_time_warn";
|
|
4904
|
-
tcp_connects: "tcp_connects";
|
|
4905
|
-
tcp_response_time: "tcp_response_time";
|
|
4906
|
-
tcp_response_time_warn: "tcp_response_time_warn";
|
|
4907
|
-
icmp_reachable: "icmp_reachable";
|
|
4908
|
-
icmp_response_time: "icmp_response_time";
|
|
4909
|
-
icmp_response_time_warn: "icmp_response_time_warn";
|
|
4910
|
-
icmp_packet_loss: "icmp_packet_loss";
|
|
4911
|
-
heartbeat_received: "heartbeat_received";
|
|
4912
|
-
heartbeat_max_interval: "heartbeat_max_interval";
|
|
4913
|
-
heartbeat_interval_drift: "heartbeat_interval_drift";
|
|
4914
|
-
heartbeat_payload_contains: "heartbeat_payload_contains";
|
|
4915
|
-
}>;
|
|
4197
|
+
assertionType: z.ZodString;
|
|
4916
4198
|
config: z.ZodUnion<readonly [z.ZodObject<{
|
|
4917
4199
|
type: z.ZodLiteral<"body_contains">;
|
|
4918
4200
|
substring: z.ZodString;
|
|
@@ -5074,10 +4356,7 @@ export declare const TableValueResultMonitorVersionDtoSchema: z.ZodObject<{
|
|
|
5074
4356
|
type: z.ZodLiteral<"tcp_response_time_warn">;
|
|
5075
4357
|
warnMs: z.ZodNumber;
|
|
5076
4358
|
}, z.core.$strict>]>;
|
|
5077
|
-
severity: z.
|
|
5078
|
-
fail: "fail";
|
|
5079
|
-
warn: "warn";
|
|
5080
|
-
}>;
|
|
4359
|
+
severity: z.ZodString;
|
|
5081
4360
|
}, z.core.$strict>>>>;
|
|
5082
4361
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
5083
4362
|
id: z.ZodString;
|
|
@@ -5125,8 +4404,8 @@ export declare const TableValueResultMonitorVersionDtoSchema: z.ZodObject<{
|
|
|
5125
4404
|
}>>;
|
|
5126
4405
|
thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5127
4406
|
severity: z.ZodEnum<{
|
|
5128
|
-
degraded: "degraded";
|
|
5129
4407
|
down: "down";
|
|
4408
|
+
degraded: "degraded";
|
|
5130
4409
|
}>;
|
|
5131
4410
|
aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5132
4411
|
all_exceed: "all_exceed";
|
|
@@ -5151,21 +4430,10 @@ export declare const TableValueResultMonitorVersionDtoSchema: z.ZodObject<{
|
|
|
5151
4430
|
checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5152
4431
|
}, z.core.$strict>>>;
|
|
5153
4432
|
alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
5154
|
-
currentStatus: z.ZodOptional<z.ZodNullable<z.
|
|
5155
|
-
up: "up";
|
|
5156
|
-
degraded: "degraded";
|
|
5157
|
-
down: "down";
|
|
5158
|
-
paused: "paused";
|
|
5159
|
-
unknown: "unknown";
|
|
5160
|
-
}>>>;
|
|
4433
|
+
currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5161
4434
|
}, z.core.$strict>;
|
|
5162
4435
|
changedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5163
|
-
changedVia: z.
|
|
5164
|
-
DASHBOARD: "DASHBOARD";
|
|
5165
|
-
CLI: "CLI";
|
|
5166
|
-
TERRAFORM: "TERRAFORM";
|
|
5167
|
-
API: "API";
|
|
5168
|
-
}>;
|
|
4436
|
+
changedVia: z.ZodString;
|
|
5169
4437
|
changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5170
4438
|
createdAt: z.ZodString;
|
|
5171
4439
|
}, z.core.$strict>>;
|
|
@@ -5211,36 +4479,17 @@ export declare const TableValueResultStatusPageDtoSchema: z.ZodObject<{
|
|
|
5211
4479
|
theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5212
4480
|
reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5213
4481
|
hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4482
|
+
showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
5214
4483
|
customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5215
4484
|
customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5216
4485
|
}, z.core.$strict>;
|
|
5217
|
-
visibility: z.
|
|
5218
|
-
PUBLIC: "PUBLIC";
|
|
5219
|
-
PASSWORD: "PASSWORD";
|
|
5220
|
-
IP_RESTRICTED: "IP_RESTRICTED";
|
|
5221
|
-
}>;
|
|
4486
|
+
visibility: z.ZodString;
|
|
5222
4487
|
enabled: z.ZodBoolean;
|
|
5223
|
-
incidentMode: z.
|
|
5224
|
-
MANUAL: "MANUAL";
|
|
5225
|
-
REVIEW: "REVIEW";
|
|
5226
|
-
AUTOMATIC: "AUTOMATIC";
|
|
5227
|
-
}>;
|
|
4488
|
+
incidentMode: z.ZodString;
|
|
5228
4489
|
componentCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5229
4490
|
subscriberCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5230
|
-
overallStatus: z.ZodOptional<z.ZodNullable<z.
|
|
5231
|
-
|
|
5232
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
5233
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
5234
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
5235
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
5236
|
-
}>>>;
|
|
5237
|
-
managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
5238
|
-
DASHBOARD: "DASHBOARD";
|
|
5239
|
-
CLI: "CLI";
|
|
5240
|
-
TERRAFORM: "TERRAFORM";
|
|
5241
|
-
MCP: "MCP";
|
|
5242
|
-
API: "API";
|
|
5243
|
-
}>>>;
|
|
4491
|
+
overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4492
|
+
managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5244
4493
|
createdAt: z.ZodString;
|
|
5245
4494
|
updatedAt: z.ZodString;
|
|
5246
4495
|
}, z.core.$strict>>;
|
|
@@ -5256,20 +4505,10 @@ export declare const TableValueResultStatusPageComponentDtoSchema: z.ZodObject<{
|
|
|
5256
4505
|
groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5257
4506
|
name: z.ZodString;
|
|
5258
4507
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5259
|
-
type: z.
|
|
5260
|
-
MONITOR: "MONITOR";
|
|
5261
|
-
GROUP: "GROUP";
|
|
5262
|
-
STATIC: "STATIC";
|
|
5263
|
-
}>;
|
|
4508
|
+
type: z.ZodString;
|
|
5264
4509
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5265
4510
|
resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5266
|
-
currentStatus: z.
|
|
5267
|
-
OPERATIONAL: "OPERATIONAL";
|
|
5268
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
5269
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
5270
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
5271
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
5272
|
-
}>;
|
|
4511
|
+
currentStatus: z.ZodString;
|
|
5273
4512
|
showUptime: z.ZodBoolean;
|
|
5274
4513
|
displayOrder: z.ZodNumber;
|
|
5275
4514
|
pageOrder: z.ZodNumber;
|
|
@@ -5298,20 +4537,10 @@ export declare const TableValueResultStatusPageComponentGroupDtoSchema: z.ZodObj
|
|
|
5298
4537
|
groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5299
4538
|
name: z.ZodString;
|
|
5300
4539
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5301
|
-
type: z.
|
|
5302
|
-
MONITOR: "MONITOR";
|
|
5303
|
-
GROUP: "GROUP";
|
|
5304
|
-
STATIC: "STATIC";
|
|
5305
|
-
}>;
|
|
4540
|
+
type: z.ZodString;
|
|
5306
4541
|
monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5307
4542
|
resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5308
|
-
currentStatus: z.
|
|
5309
|
-
OPERATIONAL: "OPERATIONAL";
|
|
5310
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
5311
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
5312
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
5313
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
5314
|
-
}>;
|
|
4543
|
+
currentStatus: z.ZodString;
|
|
5315
4544
|
showUptime: z.ZodBoolean;
|
|
5316
4545
|
displayOrder: z.ZodNumber;
|
|
5317
4546
|
pageOrder: z.ZodNumber;
|
|
@@ -5333,18 +4562,8 @@ export declare const TableValueResultStatusPageIncidentDtoSchema: z.ZodObject<{
|
|
|
5333
4562
|
id: z.ZodString;
|
|
5334
4563
|
statusPageId: z.ZodString;
|
|
5335
4564
|
title: z.ZodString;
|
|
5336
|
-
status: z.
|
|
5337
|
-
|
|
5338
|
-
INVESTIGATING: "INVESTIGATING";
|
|
5339
|
-
IDENTIFIED: "IDENTIFIED";
|
|
5340
|
-
MONITORING: "MONITORING";
|
|
5341
|
-
}>;
|
|
5342
|
-
impact: z.ZodEnum<{
|
|
5343
|
-
NONE: "NONE";
|
|
5344
|
-
MINOR: "MINOR";
|
|
5345
|
-
MAJOR: "MAJOR";
|
|
5346
|
-
CRITICAL: "CRITICAL";
|
|
5347
|
-
}>;
|
|
4565
|
+
status: z.ZodString;
|
|
4566
|
+
impact: z.ZodString;
|
|
5348
4567
|
scheduled: z.ZodBoolean;
|
|
5349
4568
|
scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5350
4569
|
scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5358,28 +4577,14 @@ export declare const TableValueResultStatusPageIncidentDtoSchema: z.ZodObject<{
|
|
|
5358
4577
|
postmortemUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5359
4578
|
affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
5360
4579
|
statusPageComponentId: z.ZodString;
|
|
5361
|
-
componentStatus: z.
|
|
5362
|
-
OPERATIONAL: "OPERATIONAL";
|
|
5363
|
-
DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
|
|
5364
|
-
PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
|
|
5365
|
-
MAJOR_OUTAGE: "MAJOR_OUTAGE";
|
|
5366
|
-
UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
|
|
5367
|
-
}>;
|
|
4580
|
+
componentStatus: z.ZodString;
|
|
5368
4581
|
componentName: z.ZodString;
|
|
5369
4582
|
}, z.core.$strict>>>>;
|
|
5370
4583
|
updates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
5371
4584
|
id: z.ZodString;
|
|
5372
|
-
status: z.
|
|
5373
|
-
RESOLVED: "RESOLVED";
|
|
5374
|
-
INVESTIGATING: "INVESTIGATING";
|
|
5375
|
-
IDENTIFIED: "IDENTIFIED";
|
|
5376
|
-
MONITORING: "MONITORING";
|
|
5377
|
-
}>;
|
|
4585
|
+
status: z.ZodString;
|
|
5378
4586
|
body: z.ZodString;
|
|
5379
|
-
createdBy: z.ZodOptional<z.ZodNullable<z.
|
|
5380
|
-
SYSTEM: "SYSTEM";
|
|
5381
|
-
USER: "USER";
|
|
5382
|
-
}>>>;
|
|
4587
|
+
createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5383
4588
|
createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5384
4589
|
notifySubscribers: z.ZodBoolean;
|
|
5385
4590
|
createdAt: z.ZodString;
|
|
@@ -5408,19 +4613,8 @@ export declare const TableValueResultStatusPageCustomDomainDtoSchema: z.ZodObjec
|
|
|
5408
4613
|
data: z.ZodArray<z.ZodObject<{
|
|
5409
4614
|
id: z.ZodString;
|
|
5410
4615
|
hostname: z.ZodString;
|
|
5411
|
-
status: z.
|
|
5412
|
-
|
|
5413
|
-
ACTIVE: "ACTIVE";
|
|
5414
|
-
REMOVED: "REMOVED";
|
|
5415
|
-
PENDING_VERIFICATION: "PENDING_VERIFICATION";
|
|
5416
|
-
VERIFICATION_FAILED: "VERIFICATION_FAILED";
|
|
5417
|
-
VERIFIED: "VERIFIED";
|
|
5418
|
-
SSL_PENDING: "SSL_PENDING";
|
|
5419
|
-
}>;
|
|
5420
|
-
verificationMethod: z.ZodEnum<{
|
|
5421
|
-
CNAME: "CNAME";
|
|
5422
|
-
TXT: "TXT";
|
|
5423
|
-
}>;
|
|
4616
|
+
status: z.ZodString;
|
|
4617
|
+
verificationMethod: z.ZodString;
|
|
5424
4618
|
verificationToken: z.ZodString;
|
|
5425
4619
|
verificationCnameTarget: z.ZodString;
|
|
5426
4620
|
verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5453,10 +4647,7 @@ export declare const CursorPageCheckResultDtoSchema: z.ZodObject<{
|
|
|
5453
4647
|
assertionResults: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
5454
4648
|
type: z.ZodString;
|
|
5455
4649
|
passed: z.ZodBoolean;
|
|
5456
|
-
severity: z.
|
|
5457
|
-
fail: "fail";
|
|
5458
|
-
warn: "warn";
|
|
5459
|
-
}>;
|
|
4650
|
+
severity: z.ZodString;
|
|
5460
4651
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5461
4652
|
expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5462
4653
|
actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|