@devhelm/sdk 1.0.0 → 1.1.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.
@@ -735,8 +735,8 @@ export declare const schemas: {
735
735
  }>>;
736
736
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
737
737
  severity: z.ZodEnum<{
738
- degraded: "degraded";
739
738
  down: "down";
739
+ degraded: "degraded";
740
740
  }>;
741
741
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
742
742
  all_exceed: "all_exceed";
@@ -770,8 +770,8 @@ export declare const schemas: {
770
770
  }>>;
771
771
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
772
772
  severity: z.ZodEnum<{
773
- degraded: "degraded";
774
773
  down: "down";
774
+ degraded: "degraded";
775
775
  }>;
776
776
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
777
777
  all_exceed: "all_exceed";
@@ -1067,8 +1067,8 @@ export declare const schemas: {
1067
1067
  }>>;
1068
1068
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1069
1069
  severity: z.ZodEnum<{
1070
- degraded: "degraded";
1071
1070
  down: "down";
1071
+ degraded: "degraded";
1072
1072
  }>;
1073
1073
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1074
1074
  all_exceed: "all_exceed";
@@ -1356,8 +1356,8 @@ export declare const schemas: {
1356
1356
  }>>;
1357
1357
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1358
1358
  severity: z.ZodEnum<{
1359
- degraded: "degraded";
1360
1359
  down: "down";
1360
+ degraded: "degraded";
1361
1361
  }>;
1362
1362
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1363
1363
  all_exceed: "all_exceed";
@@ -2378,15 +2378,7 @@ export declare const schemas: {
2378
2378
  AlertChannelDto: z.ZodObject<{
2379
2379
  id: z.ZodString;
2380
2380
  name: z.ZodString;
2381
- channelType: z.ZodEnum<{
2382
- email: "email";
2383
- webhook: "webhook";
2384
- slack: "slack";
2385
- pagerduty: "pagerduty";
2386
- opsgenie: "opsgenie";
2387
- teams: "teams";
2388
- discord: "discord";
2389
- }>;
2381
+ channelType: z.ZodString;
2390
2382
  displayConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2391
2383
  recipients: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2392
2384
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2397,13 +2389,7 @@ export declare const schemas: {
2397
2389
  createdAt: z.ZodString;
2398
2390
  updatedAt: z.ZodString;
2399
2391
  configHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2400
- managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2401
- DASHBOARD: "DASHBOARD";
2402
- CLI: "CLI";
2403
- TERRAFORM: "TERRAFORM";
2404
- MCP: "MCP";
2405
- API: "API";
2406
- }>>>;
2392
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2407
2393
  lastDeliveryAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2408
2394
  lastDeliveryStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2409
2395
  }, z.core.$strict>;
@@ -2414,18 +2400,8 @@ export declare const schemas: {
2414
2400
  channelId: z.ZodString;
2415
2401
  channel: z.ZodString;
2416
2402
  channelType: z.ZodString;
2417
- status: z.ZodEnum<{
2418
- PENDING: "PENDING";
2419
- DELIVERED: "DELIVERED";
2420
- RETRY_PENDING: "RETRY_PENDING";
2421
- FAILED: "FAILED";
2422
- CANCELLED: "CANCELLED";
2423
- }>;
2424
- eventType: z.ZodEnum<{
2425
- INCIDENT_CREATED: "INCIDENT_CREATED";
2426
- INCIDENT_RESOLVED: "INCIDENT_RESOLVED";
2427
- INCIDENT_REOPENED: "INCIDENT_REOPENED";
2428
- }>;
2403
+ status: z.ZodString;
2404
+ eventType: z.ZodString;
2429
2405
  stepNumber: z.ZodNumber;
2430
2406
  fireCount: z.ZodNumber;
2431
2407
  attemptCount: z.ZodNumber;
@@ -2455,64 +2431,15 @@ export declare const schemas: {
2455
2431
  AssertionResultDto: z.ZodObject<{
2456
2432
  type: z.ZodString;
2457
2433
  passed: z.ZodBoolean;
2458
- severity: z.ZodEnum<{
2459
- fail: "fail";
2460
- warn: "warn";
2461
- }>;
2434
+ severity: z.ZodString;
2462
2435
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2463
2436
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2464
2437
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2465
2438
  }, z.core.$strict>;
2466
2439
  AssertionTestResultDto: z.ZodObject<{
2467
- assertionType: z.ZodEnum<{
2468
- status_code: "status_code";
2469
- response_time: "response_time";
2470
- body_contains: "body_contains";
2471
- json_path: "json_path";
2472
- header_value: "header_value";
2473
- regex_body: "regex_body";
2474
- dns_resolves: "dns_resolves";
2475
- dns_response_time: "dns_response_time";
2476
- dns_expected_ips: "dns_expected_ips";
2477
- dns_expected_cname: "dns_expected_cname";
2478
- dns_record_contains: "dns_record_contains";
2479
- dns_record_equals: "dns_record_equals";
2480
- dns_txt_contains: "dns_txt_contains";
2481
- dns_min_answers: "dns_min_answers";
2482
- dns_max_answers: "dns_max_answers";
2483
- dns_response_time_warn: "dns_response_time_warn";
2484
- dns_ttl_low: "dns_ttl_low";
2485
- dns_ttl_high: "dns_ttl_high";
2486
- mcp_connects: "mcp_connects";
2487
- mcp_response_time: "mcp_response_time";
2488
- mcp_has_capability: "mcp_has_capability";
2489
- mcp_tool_available: "mcp_tool_available";
2490
- mcp_min_tools: "mcp_min_tools";
2491
- mcp_protocol_version: "mcp_protocol_version";
2492
- mcp_response_time_warn: "mcp_response_time_warn";
2493
- mcp_tool_count_changed: "mcp_tool_count_changed";
2494
- ssl_expiry: "ssl_expiry";
2495
- response_size: "response_size";
2496
- redirect_count: "redirect_count";
2497
- redirect_target: "redirect_target";
2498
- response_time_warn: "response_time_warn";
2499
- tcp_connects: "tcp_connects";
2500
- tcp_response_time: "tcp_response_time";
2501
- tcp_response_time_warn: "tcp_response_time_warn";
2502
- icmp_reachable: "icmp_reachable";
2503
- icmp_response_time: "icmp_response_time";
2504
- icmp_response_time_warn: "icmp_response_time_warn";
2505
- icmp_packet_loss: "icmp_packet_loss";
2506
- heartbeat_received: "heartbeat_received";
2507
- heartbeat_max_interval: "heartbeat_max_interval";
2508
- heartbeat_interval_drift: "heartbeat_interval_drift";
2509
- heartbeat_payload_contains: "heartbeat_payload_contains";
2510
- }>;
2440
+ assertionType: z.ZodString;
2511
2441
  passed: z.ZodBoolean;
2512
- severity: z.ZodEnum<{
2513
- fail: "fail";
2514
- warn: "warn";
2515
- }>;
2442
+ severity: z.ZodString;
2516
2443
  message: z.ZodString;
2517
2444
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2518
2445
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2816,10 +2743,7 @@ export declare const schemas: {
2816
2743
  assertionResults: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2817
2744
  type: z.ZodString;
2818
2745
  passed: z.ZodBoolean;
2819
- severity: z.ZodEnum<{
2820
- fail: "fail";
2821
- warn: "warn";
2822
- }>;
2746
+ severity: z.ZodString;
2823
2747
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2824
2748
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2825
2749
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2898,10 +2822,7 @@ export declare const schemas: {
2898
2822
  assertionResults: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2899
2823
  type: z.ZodString;
2900
2824
  passed: z.ZodBoolean;
2901
- severity: z.ZodEnum<{
2902
- fail: "fail";
2903
- warn: "warn";
2904
- }>;
2825
+ severity: z.ZodString;
2905
2826
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2906
2827
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2907
2828
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3102,10 +3023,7 @@ export declare const schemas: {
3102
3023
  assertionResults: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3103
3024
  type: z.ZodString;
3104
3025
  passed: z.ZodBoolean;
3105
- severity: z.ZodEnum<{
3106
- fail: "fail";
3107
- warn: "warn";
3108
- }>;
3026
+ severity: z.ZodString;
3109
3027
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3110
3028
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3111
3029
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3373,24 +3291,9 @@ export declare const schemas: {
3373
3291
  id: z.ZodString;
3374
3292
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3375
3293
  organizationId: z.ZodNumber;
3376
- source: z.ZodEnum<{
3377
- MANUAL: "MANUAL";
3378
- AUTOMATIC: "AUTOMATIC";
3379
- MONITORS: "MONITORS";
3380
- STATUS_DATA: "STATUS_DATA";
3381
- RESOURCE_GROUP: "RESOURCE_GROUP";
3382
- }>;
3383
- status: z.ZodEnum<{
3384
- WATCHING: "WATCHING";
3385
- TRIGGERED: "TRIGGERED";
3386
- CONFIRMED: "CONFIRMED";
3387
- RESOLVED: "RESOLVED";
3388
- }>;
3389
- severity: z.ZodEnum<{
3390
- DOWN: "DOWN";
3391
- DEGRADED: "DEGRADED";
3392
- MAINTENANCE: "MAINTENANCE";
3393
- }>;
3294
+ source: z.ZodString;
3295
+ status: z.ZodString;
3296
+ severity: z.ZodString;
3394
3297
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3395
3298
  triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3396
3299
  affectedRegions: z.ZodArray<z.ZodString>;
@@ -3402,11 +3305,7 @@ export declare const schemas: {
3402
3305
  externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3403
3306
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
3404
3307
  shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3405
- resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3406
- MANUAL: "MANUAL";
3407
- AUTO_RECOVERED: "AUTO_RECOVERED";
3408
- AUTO_RESOLVED: "AUTO_RESOLVED";
3409
- }>>>;
3308
+ resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3410
3309
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3411
3310
  confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3412
3311
  resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3427,23 +3326,10 @@ export declare const schemas: {
3427
3326
  IncidentUpdateDto: z.ZodObject<{
3428
3327
  id: z.ZodString;
3429
3328
  incidentId: z.ZodString;
3430
- oldStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3431
- WATCHING: "WATCHING";
3432
- TRIGGERED: "TRIGGERED";
3433
- CONFIRMED: "CONFIRMED";
3434
- RESOLVED: "RESOLVED";
3435
- }>>>;
3436
- newStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3437
- WATCHING: "WATCHING";
3438
- TRIGGERED: "TRIGGERED";
3439
- CONFIRMED: "CONFIRMED";
3440
- RESOLVED: "RESOLVED";
3441
- }>>>;
3329
+ oldStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3330
+ newStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3442
3331
  body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3443
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3444
- SYSTEM: "SYSTEM";
3445
- USER: "USER";
3446
- }>>>;
3332
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3447
3333
  notifySubscribers: z.ZodBoolean;
3448
3334
  createdAt: z.ZodString;
3449
3335
  }, z.core.$strict>;
@@ -3453,18 +3339,8 @@ export declare const schemas: {
3453
3339
  statusPageName: z.ZodString;
3454
3340
  statusPageSlug: z.ZodString;
3455
3341
  title: z.ZodString;
3456
- status: z.ZodEnum<{
3457
- RESOLVED: "RESOLVED";
3458
- INVESTIGATING: "INVESTIGATING";
3459
- IDENTIFIED: "IDENTIFIED";
3460
- MONITORING: "MONITORING";
3461
- }>;
3462
- impact: z.ZodEnum<{
3463
- NONE: "NONE";
3464
- MINOR: "MINOR";
3465
- MAJOR: "MAJOR";
3466
- CRITICAL: "CRITICAL";
3467
- }>;
3342
+ status: z.ZodString;
3343
+ impact: z.ZodString;
3468
3344
  scheduled: z.ZodBoolean;
3469
3345
  publishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3470
3346
  }, z.core.$strict>;
@@ -3473,24 +3349,9 @@ export declare const schemas: {
3473
3349
  id: z.ZodString;
3474
3350
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3475
3351
  organizationId: z.ZodNumber;
3476
- source: z.ZodEnum<{
3477
- MANUAL: "MANUAL";
3478
- AUTOMATIC: "AUTOMATIC";
3479
- MONITORS: "MONITORS";
3480
- STATUS_DATA: "STATUS_DATA";
3481
- RESOURCE_GROUP: "RESOURCE_GROUP";
3482
- }>;
3483
- status: z.ZodEnum<{
3484
- WATCHING: "WATCHING";
3485
- TRIGGERED: "TRIGGERED";
3486
- CONFIRMED: "CONFIRMED";
3487
- RESOLVED: "RESOLVED";
3488
- }>;
3489
- severity: z.ZodEnum<{
3490
- DOWN: "DOWN";
3491
- DEGRADED: "DEGRADED";
3492
- MAINTENANCE: "MAINTENANCE";
3493
- }>;
3352
+ source: z.ZodString;
3353
+ status: z.ZodString;
3354
+ severity: z.ZodString;
3494
3355
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3495
3356
  triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3496
3357
  affectedRegions: z.ZodArray<z.ZodString>;
@@ -3502,11 +3363,7 @@ export declare const schemas: {
3502
3363
  externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3503
3364
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
3504
3365
  shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3505
- resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3506
- MANUAL: "MANUAL";
3507
- AUTO_RECOVERED: "AUTO_RECOVERED";
3508
- AUTO_RESOLVED: "AUTO_RESOLVED";
3509
- }>>>;
3366
+ resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3510
3367
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3511
3368
  confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3512
3369
  resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3527,23 +3384,10 @@ export declare const schemas: {
3527
3384
  updates: z.ZodArray<z.ZodObject<{
3528
3385
  id: z.ZodString;
3529
3386
  incidentId: z.ZodString;
3530
- oldStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3531
- WATCHING: "WATCHING";
3532
- TRIGGERED: "TRIGGERED";
3533
- CONFIRMED: "CONFIRMED";
3534
- RESOLVED: "RESOLVED";
3535
- }>>>;
3536
- newStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3537
- WATCHING: "WATCHING";
3538
- TRIGGERED: "TRIGGERED";
3539
- CONFIRMED: "CONFIRMED";
3540
- RESOLVED: "RESOLVED";
3541
- }>>>;
3387
+ oldStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3388
+ newStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3542
3389
  body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3543
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3544
- SYSTEM: "SYSTEM";
3545
- USER: "USER";
3546
- }>>>;
3390
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3547
3391
  notifySubscribers: z.ZodBoolean;
3548
3392
  createdAt: z.ZodString;
3549
3393
  }, z.core.$strict>>;
@@ -3553,18 +3397,8 @@ export declare const schemas: {
3553
3397
  statusPageName: z.ZodString;
3554
3398
  statusPageSlug: z.ZodString;
3555
3399
  title: z.ZodString;
3556
- status: z.ZodEnum<{
3557
- RESOLVED: "RESOLVED";
3558
- INVESTIGATING: "INVESTIGATING";
3559
- IDENTIFIED: "IDENTIFIED";
3560
- MONITORING: "MONITORING";
3561
- }>;
3562
- impact: z.ZodEnum<{
3563
- NONE: "NONE";
3564
- MINOR: "MINOR";
3565
- MAJOR: "MAJOR";
3566
- CRITICAL: "CRITICAL";
3567
- }>;
3400
+ status: z.ZodString;
3401
+ impact: z.ZodString;
3568
3402
  scheduled: z.ZodBoolean;
3569
3403
  publishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3570
3404
  }, z.core.$strict>>>>;
@@ -3615,8 +3449,8 @@ export declare const schemas: {
3615
3449
  }>>;
3616
3450
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3617
3451
  severity: z.ZodEnum<{
3618
- degraded: "degraded";
3619
3452
  down: "down";
3453
+ degraded: "degraded";
3620
3454
  }>;
3621
3455
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3622
3456
  all_exceed: "all_exceed";
@@ -3726,14 +3560,7 @@ export declare const schemas: {
3726
3560
  description: z.ZodString;
3727
3561
  logoUrl: z.ZodString;
3728
3562
  authType: z.ZodString;
3729
- tierAvailability: z.ZodEnum<{
3730
- FREE: "FREE";
3731
- STARTER: "STARTER";
3732
- PRO: "PRO";
3733
- TEAM: "TEAM";
3734
- BUSINESS: "BUSINESS";
3735
- ENTERPRISE: "ENTERPRISE";
3736
- }>;
3563
+ tierAvailability: z.ZodString;
3737
3564
  lifecycle: z.ZodString;
3738
3565
  setupGuideUrl: z.ZodString;
3739
3566
  configSchema: z.ZodObject<{
@@ -3764,11 +3591,7 @@ export declare const schemas: {
3764
3591
  InviteDto: z.ZodObject<{
3765
3592
  inviteId: z.ZodNumber;
3766
3593
  email: z.ZodString;
3767
- roleOffered: z.ZodEnum<{
3768
- OWNER: "OWNER";
3769
- ADMIN: "ADMIN";
3770
- MEMBER: "MEMBER";
3771
- }>;
3594
+ roleOffered: z.ZodString;
3772
3595
  expiresAt: z.ZodString;
3773
3596
  consumedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3774
3597
  revokedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3799,68 +3622,14 @@ export declare const schemas: {
3799
3622
  userId: z.ZodNumber;
3800
3623
  email: z.ZodString;
3801
3624
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3802
- orgRole: z.ZodEnum<{
3803
- OWNER: "OWNER";
3804
- ADMIN: "ADMIN";
3805
- MEMBER: "MEMBER";
3806
- }>;
3807
- status: z.ZodEnum<{
3808
- INVITED: "INVITED";
3809
- ACTIVE: "ACTIVE";
3810
- SUSPENDED: "SUSPENDED";
3811
- LEFT: "LEFT";
3812
- REMOVED: "REMOVED";
3813
- DECLINED: "DECLINED";
3814
- }>;
3625
+ orgRole: z.ZodString;
3626
+ status: z.ZodString;
3815
3627
  createdAt: z.ZodString;
3816
3628
  }, z.core.$strict>;
3817
3629
  MonitorAssertionDto: z.ZodObject<{
3818
3630
  id: z.ZodString;
3819
3631
  monitorId: z.ZodString;
3820
- assertionType: z.ZodEnum<{
3821
- status_code: "status_code";
3822
- response_time: "response_time";
3823
- body_contains: "body_contains";
3824
- json_path: "json_path";
3825
- header_value: "header_value";
3826
- regex_body: "regex_body";
3827
- dns_resolves: "dns_resolves";
3828
- dns_response_time: "dns_response_time";
3829
- dns_expected_ips: "dns_expected_ips";
3830
- dns_expected_cname: "dns_expected_cname";
3831
- dns_record_contains: "dns_record_contains";
3832
- dns_record_equals: "dns_record_equals";
3833
- dns_txt_contains: "dns_txt_contains";
3834
- dns_min_answers: "dns_min_answers";
3835
- dns_max_answers: "dns_max_answers";
3836
- dns_response_time_warn: "dns_response_time_warn";
3837
- dns_ttl_low: "dns_ttl_low";
3838
- dns_ttl_high: "dns_ttl_high";
3839
- mcp_connects: "mcp_connects";
3840
- mcp_response_time: "mcp_response_time";
3841
- mcp_has_capability: "mcp_has_capability";
3842
- mcp_tool_available: "mcp_tool_available";
3843
- mcp_min_tools: "mcp_min_tools";
3844
- mcp_protocol_version: "mcp_protocol_version";
3845
- mcp_response_time_warn: "mcp_response_time_warn";
3846
- mcp_tool_count_changed: "mcp_tool_count_changed";
3847
- ssl_expiry: "ssl_expiry";
3848
- response_size: "response_size";
3849
- redirect_count: "redirect_count";
3850
- redirect_target: "redirect_target";
3851
- response_time_warn: "response_time_warn";
3852
- tcp_connects: "tcp_connects";
3853
- tcp_response_time: "tcp_response_time";
3854
- tcp_response_time_warn: "tcp_response_time_warn";
3855
- icmp_reachable: "icmp_reachable";
3856
- icmp_response_time: "icmp_response_time";
3857
- icmp_response_time_warn: "icmp_response_time_warn";
3858
- icmp_packet_loss: "icmp_packet_loss";
3859
- heartbeat_received: "heartbeat_received";
3860
- heartbeat_max_interval: "heartbeat_max_interval";
3861
- heartbeat_interval_drift: "heartbeat_interval_drift";
3862
- heartbeat_payload_contains: "heartbeat_payload_contains";
3863
- }>;
3632
+ assertionType: z.ZodString;
3864
3633
  config: z.ZodUnion<readonly [z.ZodObject<{
3865
3634
  type: z.ZodLiteral<"body_contains">;
3866
3635
  substring: z.ZodString;
@@ -4022,20 +3791,12 @@ export declare const schemas: {
4022
3791
  type: z.ZodLiteral<"tcp_response_time_warn">;
4023
3792
  warnMs: z.ZodNumber;
4024
3793
  }, z.core.$strict>]>;
4025
- severity: z.ZodEnum<{
4026
- fail: "fail";
4027
- warn: "warn";
4028
- }>;
3794
+ severity: z.ZodString;
4029
3795
  }, z.core.$strict>;
4030
3796
  MonitorAuthDto: z.ZodObject<{
4031
3797
  id: z.ZodString;
4032
3798
  monitorId: z.ZodString;
4033
- authType: z.ZodEnum<{
4034
- api_key: "api_key";
4035
- basic: "basic";
4036
- bearer: "bearer";
4037
- header: "header";
4038
- }>;
3799
+ authType: z.ZodString;
4039
3800
  config: z.ZodDiscriminatedUnion<[z.ZodObject<{
4040
3801
  type: z.ZodLiteral<"api_key">;
4041
3802
  headerName: z.ZodString;
@@ -4069,14 +3830,7 @@ export declare const schemas: {
4069
3830
  id: z.ZodString;
4070
3831
  organizationId: z.ZodNumber;
4071
3832
  name: z.ZodString;
4072
- type: z.ZodEnum<{
4073
- HTTP: "HTTP";
4074
- DNS: "DNS";
4075
- MCP_SERVER: "MCP_SERVER";
4076
- TCP: "TCP";
4077
- ICMP: "ICMP";
4078
- HEARTBEAT: "HEARTBEAT";
4079
- }>;
3833
+ type: z.ZodString;
4080
3834
  config: z.ZodUnion<readonly [z.ZodObject<{
4081
3835
  hostname: z.ZodString;
4082
3836
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -4127,62 +3881,13 @@ export declare const schemas: {
4127
3881
  frequencySeconds: z.ZodNumber;
4128
3882
  enabled: z.ZodBoolean;
4129
3883
  regions: z.ZodArray<z.ZodString>;
4130
- managedBy: z.ZodEnum<{
4131
- DASHBOARD: "DASHBOARD";
4132
- CLI: "CLI";
4133
- TERRAFORM: "TERRAFORM";
4134
- MCP: "MCP";
4135
- API: "API";
4136
- }>;
3884
+ managedBy: z.ZodString;
4137
3885
  createdAt: z.ZodString;
4138
3886
  updatedAt: z.ZodString;
4139
3887
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4140
3888
  id: z.ZodString;
4141
3889
  monitorId: z.ZodString;
4142
- assertionType: z.ZodEnum<{
4143
- status_code: "status_code";
4144
- response_time: "response_time";
4145
- body_contains: "body_contains";
4146
- json_path: "json_path";
4147
- header_value: "header_value";
4148
- regex_body: "regex_body";
4149
- dns_resolves: "dns_resolves";
4150
- dns_response_time: "dns_response_time";
4151
- dns_expected_ips: "dns_expected_ips";
4152
- dns_expected_cname: "dns_expected_cname";
4153
- dns_record_contains: "dns_record_contains";
4154
- dns_record_equals: "dns_record_equals";
4155
- dns_txt_contains: "dns_txt_contains";
4156
- dns_min_answers: "dns_min_answers";
4157
- dns_max_answers: "dns_max_answers";
4158
- dns_response_time_warn: "dns_response_time_warn";
4159
- dns_ttl_low: "dns_ttl_low";
4160
- dns_ttl_high: "dns_ttl_high";
4161
- mcp_connects: "mcp_connects";
4162
- mcp_response_time: "mcp_response_time";
4163
- mcp_has_capability: "mcp_has_capability";
4164
- mcp_tool_available: "mcp_tool_available";
4165
- mcp_min_tools: "mcp_min_tools";
4166
- mcp_protocol_version: "mcp_protocol_version";
4167
- mcp_response_time_warn: "mcp_response_time_warn";
4168
- mcp_tool_count_changed: "mcp_tool_count_changed";
4169
- ssl_expiry: "ssl_expiry";
4170
- response_size: "response_size";
4171
- redirect_count: "redirect_count";
4172
- redirect_target: "redirect_target";
4173
- response_time_warn: "response_time_warn";
4174
- tcp_connects: "tcp_connects";
4175
- tcp_response_time: "tcp_response_time";
4176
- tcp_response_time_warn: "tcp_response_time_warn";
4177
- icmp_reachable: "icmp_reachable";
4178
- icmp_response_time: "icmp_response_time";
4179
- icmp_response_time_warn: "icmp_response_time_warn";
4180
- icmp_packet_loss: "icmp_packet_loss";
4181
- heartbeat_received: "heartbeat_received";
4182
- heartbeat_max_interval: "heartbeat_max_interval";
4183
- heartbeat_interval_drift: "heartbeat_interval_drift";
4184
- heartbeat_payload_contains: "heartbeat_payload_contains";
4185
- }>;
3890
+ assertionType: z.ZodString;
4186
3891
  config: z.ZodUnion<readonly [z.ZodObject<{
4187
3892
  type: z.ZodLiteral<"body_contains">;
4188
3893
  substring: z.ZodString;
@@ -4344,10 +4049,7 @@ export declare const schemas: {
4344
4049
  type: z.ZodLiteral<"tcp_response_time_warn">;
4345
4050
  warnMs: z.ZodNumber;
4346
4051
  }, z.core.$strict>]>;
4347
- severity: z.ZodEnum<{
4348
- fail: "fail";
4349
- warn: "warn";
4350
- }>;
4052
+ severity: z.ZodString;
4351
4053
  }, z.core.$strict>>>>;
4352
4054
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4353
4055
  id: z.ZodString;
@@ -4395,8 +4097,8 @@ export declare const schemas: {
4395
4097
  }>>;
4396
4098
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4397
4099
  severity: z.ZodEnum<{
4398
- degraded: "degraded";
4399
4100
  down: "down";
4101
+ degraded: "degraded";
4400
4102
  }>;
4401
4103
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4402
4104
  all_exceed: "all_exceed";
@@ -4421,13 +4123,7 @@ export declare const schemas: {
4421
4123
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4422
4124
  }, z.core.$strict>>>;
4423
4125
  alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
4424
- currentStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4425
- up: "up";
4426
- degraded: "degraded";
4427
- down: "down";
4428
- paused: "paused";
4429
- unknown: "unknown";
4430
- }>>>;
4126
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4431
4127
  }, z.core.$strict>;
4432
4128
  MonitorReference: z.ZodObject<{
4433
4129
  id: z.ZodString;
@@ -4444,55 +4140,9 @@ export declare const schemas: {
4444
4140
  redirectCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4445
4141
  finalUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4446
4142
  assertionResults: z.ZodArray<z.ZodObject<{
4447
- assertionType: z.ZodEnum<{
4448
- status_code: "status_code";
4449
- response_time: "response_time";
4450
- body_contains: "body_contains";
4451
- json_path: "json_path";
4452
- header_value: "header_value";
4453
- regex_body: "regex_body";
4454
- dns_resolves: "dns_resolves";
4455
- dns_response_time: "dns_response_time";
4456
- dns_expected_ips: "dns_expected_ips";
4457
- dns_expected_cname: "dns_expected_cname";
4458
- dns_record_contains: "dns_record_contains";
4459
- dns_record_equals: "dns_record_equals";
4460
- dns_txt_contains: "dns_txt_contains";
4461
- dns_min_answers: "dns_min_answers";
4462
- dns_max_answers: "dns_max_answers";
4463
- dns_response_time_warn: "dns_response_time_warn";
4464
- dns_ttl_low: "dns_ttl_low";
4465
- dns_ttl_high: "dns_ttl_high";
4466
- mcp_connects: "mcp_connects";
4467
- mcp_response_time: "mcp_response_time";
4468
- mcp_has_capability: "mcp_has_capability";
4469
- mcp_tool_available: "mcp_tool_available";
4470
- mcp_min_tools: "mcp_min_tools";
4471
- mcp_protocol_version: "mcp_protocol_version";
4472
- mcp_response_time_warn: "mcp_response_time_warn";
4473
- mcp_tool_count_changed: "mcp_tool_count_changed";
4474
- ssl_expiry: "ssl_expiry";
4475
- response_size: "response_size";
4476
- redirect_count: "redirect_count";
4477
- redirect_target: "redirect_target";
4478
- response_time_warn: "response_time_warn";
4479
- tcp_connects: "tcp_connects";
4480
- tcp_response_time: "tcp_response_time";
4481
- tcp_response_time_warn: "tcp_response_time_warn";
4482
- icmp_reachable: "icmp_reachable";
4483
- icmp_response_time: "icmp_response_time";
4484
- icmp_response_time_warn: "icmp_response_time_warn";
4485
- icmp_packet_loss: "icmp_packet_loss";
4486
- heartbeat_received: "heartbeat_received";
4487
- heartbeat_max_interval: "heartbeat_max_interval";
4488
- heartbeat_interval_drift: "heartbeat_interval_drift";
4489
- heartbeat_payload_contains: "heartbeat_payload_contains";
4490
- }>;
4143
+ assertionType: z.ZodString;
4491
4144
  passed: z.ZodBoolean;
4492
- severity: z.ZodEnum<{
4493
- fail: "fail";
4494
- warn: "warn";
4495
- }>;
4145
+ severity: z.ZodString;
4496
4146
  message: z.ZodString;
4497
4147
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4498
4148
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4507,14 +4157,7 @@ export declare const schemas: {
4507
4157
  id: z.ZodString;
4508
4158
  organizationId: z.ZodNumber;
4509
4159
  name: z.ZodString;
4510
- type: z.ZodEnum<{
4511
- HTTP: "HTTP";
4512
- DNS: "DNS";
4513
- MCP_SERVER: "MCP_SERVER";
4514
- TCP: "TCP";
4515
- ICMP: "ICMP";
4516
- HEARTBEAT: "HEARTBEAT";
4517
- }>;
4160
+ type: z.ZodString;
4518
4161
  config: z.ZodUnion<readonly [z.ZodObject<{
4519
4162
  hostname: z.ZodString;
4520
4163
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -4565,62 +4208,13 @@ export declare const schemas: {
4565
4208
  frequencySeconds: z.ZodNumber;
4566
4209
  enabled: z.ZodBoolean;
4567
4210
  regions: z.ZodArray<z.ZodString>;
4568
- managedBy: z.ZodEnum<{
4569
- DASHBOARD: "DASHBOARD";
4570
- CLI: "CLI";
4571
- TERRAFORM: "TERRAFORM";
4572
- MCP: "MCP";
4573
- API: "API";
4574
- }>;
4211
+ managedBy: z.ZodString;
4575
4212
  createdAt: z.ZodString;
4576
4213
  updatedAt: z.ZodString;
4577
4214
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4578
4215
  id: z.ZodString;
4579
4216
  monitorId: z.ZodString;
4580
- assertionType: z.ZodEnum<{
4581
- status_code: "status_code";
4582
- response_time: "response_time";
4583
- body_contains: "body_contains";
4584
- json_path: "json_path";
4585
- header_value: "header_value";
4586
- regex_body: "regex_body";
4587
- dns_resolves: "dns_resolves";
4588
- dns_response_time: "dns_response_time";
4589
- dns_expected_ips: "dns_expected_ips";
4590
- dns_expected_cname: "dns_expected_cname";
4591
- dns_record_contains: "dns_record_contains";
4592
- dns_record_equals: "dns_record_equals";
4593
- dns_txt_contains: "dns_txt_contains";
4594
- dns_min_answers: "dns_min_answers";
4595
- dns_max_answers: "dns_max_answers";
4596
- dns_response_time_warn: "dns_response_time_warn";
4597
- dns_ttl_low: "dns_ttl_low";
4598
- dns_ttl_high: "dns_ttl_high";
4599
- mcp_connects: "mcp_connects";
4600
- mcp_response_time: "mcp_response_time";
4601
- mcp_has_capability: "mcp_has_capability";
4602
- mcp_tool_available: "mcp_tool_available";
4603
- mcp_min_tools: "mcp_min_tools";
4604
- mcp_protocol_version: "mcp_protocol_version";
4605
- mcp_response_time_warn: "mcp_response_time_warn";
4606
- mcp_tool_count_changed: "mcp_tool_count_changed";
4607
- ssl_expiry: "ssl_expiry";
4608
- response_size: "response_size";
4609
- redirect_count: "redirect_count";
4610
- redirect_target: "redirect_target";
4611
- response_time_warn: "response_time_warn";
4612
- tcp_connects: "tcp_connects";
4613
- tcp_response_time: "tcp_response_time";
4614
- tcp_response_time_warn: "tcp_response_time_warn";
4615
- icmp_reachable: "icmp_reachable";
4616
- icmp_response_time: "icmp_response_time";
4617
- icmp_response_time_warn: "icmp_response_time_warn";
4618
- icmp_packet_loss: "icmp_packet_loss";
4619
- heartbeat_received: "heartbeat_received";
4620
- heartbeat_max_interval: "heartbeat_max_interval";
4621
- heartbeat_interval_drift: "heartbeat_interval_drift";
4622
- heartbeat_payload_contains: "heartbeat_payload_contains";
4623
- }>;
4217
+ assertionType: z.ZodString;
4624
4218
  config: z.ZodUnion<readonly [z.ZodObject<{
4625
4219
  type: z.ZodLiteral<"body_contains">;
4626
4220
  substring: z.ZodString;
@@ -4782,10 +4376,7 @@ export declare const schemas: {
4782
4376
  type: z.ZodLiteral<"tcp_response_time_warn">;
4783
4377
  warnMs: z.ZodNumber;
4784
4378
  }, z.core.$strict>]>;
4785
- severity: z.ZodEnum<{
4786
- fail: "fail";
4787
- warn: "warn";
4788
- }>;
4379
+ severity: z.ZodString;
4789
4380
  }, z.core.$strict>>>>;
4790
4381
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4791
4382
  id: z.ZodString;
@@ -4833,8 +4424,8 @@ export declare const schemas: {
4833
4424
  }>>;
4834
4425
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4835
4426
  severity: z.ZodEnum<{
4836
- degraded: "degraded";
4837
4427
  down: "down";
4428
+ degraded: "degraded";
4838
4429
  }>;
4839
4430
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4840
4431
  all_exceed: "all_exceed";
@@ -4859,21 +4450,10 @@ export declare const schemas: {
4859
4450
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4860
4451
  }, z.core.$strict>>>;
4861
4452
  alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
4862
- currentStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4863
- up: "up";
4864
- degraded: "degraded";
4865
- down: "down";
4866
- paused: "paused";
4867
- unknown: "unknown";
4868
- }>>>;
4453
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4869
4454
  }, z.core.$strict>;
4870
4455
  changedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4871
- changedVia: z.ZodEnum<{
4872
- DASHBOARD: "DASHBOARD";
4873
- CLI: "CLI";
4874
- TERRAFORM: "TERRAFORM";
4875
- API: "API";
4876
- }>;
4456
+ changedVia: z.ZodString;
4877
4457
  changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4878
4458
  createdAt: z.ZodString;
4879
4459
  }, z.core.$strict>;
@@ -4882,19 +4462,8 @@ export declare const schemas: {
4882
4462
  incidentId: z.ZodString;
4883
4463
  policyId: z.ZodString;
4884
4464
  policyName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4885
- status: z.ZodEnum<{
4886
- PENDING: "PENDING";
4887
- DELIVERED: "DELIVERED";
4888
- DISPATCHING: "DISPATCHING";
4889
- ESCALATING: "ESCALATING";
4890
- ACKNOWLEDGED: "ACKNOWLEDGED";
4891
- COMPLETED: "COMPLETED";
4892
- }>;
4893
- completionReason: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4894
- RESOLVED: "RESOLVED";
4895
- EXHAUSTED: "EXHAUSTED";
4896
- NO_STEPS: "NO_STEPS";
4897
- }>>>;
4465
+ status: z.ZodString;
4466
+ completionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4898
4467
  currentStep: z.ZodNumber;
4899
4468
  totalSteps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4900
4469
  acknowledgedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4907,18 +4476,8 @@ export declare const schemas: {
4907
4476
  channelId: z.ZodString;
4908
4477
  channel: z.ZodString;
4909
4478
  channelType: z.ZodString;
4910
- status: z.ZodEnum<{
4911
- PENDING: "PENDING";
4912
- DELIVERED: "DELIVERED";
4913
- RETRY_PENDING: "RETRY_PENDING";
4914
- FAILED: "FAILED";
4915
- CANCELLED: "CANCELLED";
4916
- }>;
4917
- eventType: z.ZodEnum<{
4918
- INCIDENT_CREATED: "INCIDENT_CREATED";
4919
- INCIDENT_RESOLVED: "INCIDENT_RESOLVED";
4920
- INCIDENT_REOPENED: "INCIDENT_REOPENED";
4921
- }>;
4479
+ status: z.ZodString;
4480
+ eventType: z.ZodString;
4922
4481
  stepNumber: z.ZodNumber;
4923
4482
  fireCount: z.ZodNumber;
4924
4483
  attemptCount: z.ZodNumber;
@@ -5004,20 +4563,11 @@ export declare const schemas: {
5004
4563
  severityHint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5005
4564
  }, z.core.$strict>;
5006
4565
  ResourceGroupHealthDto: z.ZodObject<{
5007
- status: z.ZodEnum<{
5008
- degraded: "degraded";
5009
- down: "down";
5010
- operational: "operational";
5011
- maintenance: "maintenance";
5012
- }>;
4566
+ status: z.ZodString;
5013
4567
  totalMembers: z.ZodNumber;
5014
4568
  operationalCount: z.ZodNumber;
5015
4569
  activeIncidents: z.ZodNumber;
5016
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5017
- degraded: "degraded";
5018
- down: "down";
5019
- healthy: "healthy";
5020
- }>>>;
4570
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5021
4571
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5022
4572
  }, z.core.$strict>;
5023
4573
  ResourceGroupMemberDto: z.ZodObject<{
@@ -5029,12 +4579,7 @@ export declare const schemas: {
5029
4579
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5030
4580
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5031
4581
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5032
- status: z.ZodEnum<{
5033
- degraded: "degraded";
5034
- down: "down";
5035
- operational: "operational";
5036
- maintenance: "maintenance";
5037
- }>;
4582
+ status: z.ZodString;
5038
4583
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5039
4584
  createdAt: z.ZodString;
5040
4585
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -5061,29 +4606,17 @@ export declare const schemas: {
5061
4606
  }, z.core.$strict>>>;
5062
4607
  defaultAlertChannels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
5063
4608
  defaultEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5064
- healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5065
- COUNT: "COUNT";
5066
- PERCENTAGE: "PERCENTAGE";
5067
- }>>>;
4609
+ healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5068
4610
  healthThresholdValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5069
4611
  suppressMemberAlerts: z.ZodBoolean;
5070
4612
  confirmationDelaySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5071
4613
  recoveryCooldownMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5072
4614
  health: z.ZodObject<{
5073
- status: z.ZodEnum<{
5074
- degraded: "degraded";
5075
- down: "down";
5076
- operational: "operational";
5077
- maintenance: "maintenance";
5078
- }>;
4615
+ status: z.ZodString;
5079
4616
  totalMembers: z.ZodNumber;
5080
4617
  operationalCount: z.ZodNumber;
5081
4618
  activeIncidents: z.ZodNumber;
5082
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5083
- degraded: "degraded";
5084
- down: "down";
5085
- healthy: "healthy";
5086
- }>>>;
4619
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5087
4620
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5088
4621
  }, z.core.$strict>;
5089
4622
  members: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -5095,12 +4628,7 @@ export declare const schemas: {
5095
4628
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5096
4629
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5097
4630
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5098
- status: z.ZodEnum<{
5099
- degraded: "degraded";
5100
- down: "down";
5101
- operational: "operational";
5102
- maintenance: "maintenance";
5103
- }>;
4631
+ status: z.ZodString;
5104
4632
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5105
4633
  createdAt: z.ZodString;
5106
4634
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -5111,24 +4639,12 @@ export declare const schemas: {
5111
4639
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5112
4640
  environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5113
4641
  }, z.core.$strict>>>>;
5114
- managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5115
- DASHBOARD: "DASHBOARD";
5116
- CLI: "CLI";
5117
- TERRAFORM: "TERRAFORM";
5118
- MCP: "MCP";
5119
- API: "API";
5120
- }>>>;
4642
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5121
4643
  createdAt: z.ZodString;
5122
4644
  updatedAt: z.ZodString;
5123
4645
  }, z.core.$strict>;
5124
4646
  ResultSummaryDto: z.ZodObject<{
5125
- currentStatus: z.ZodEnum<{
5126
- up: "up";
5127
- degraded: "degraded";
5128
- down: "down";
5129
- paused: "paused";
5130
- unknown: "unknown";
5131
- }>;
4647
+ currentStatus: z.ZodString;
5132
4648
  latestPerRegion: z.ZodArray<z.ZodObject<{
5133
4649
  region: z.ZodString;
5134
4650
  passed: z.ZodBoolean;
@@ -5483,11 +4999,7 @@ export declare const schemas: {
5483
4999
  lastSeenAt: z.ZodString;
5484
5000
  isGroup: z.ZodBoolean;
5485
5001
  }, z.core.$strict>>>;
5486
- alertSensitivity: z.ZodEnum<{
5487
- ALL: "ALL";
5488
- INCIDENTS_ONLY: "INCIDENTS_ONLY";
5489
- MAJOR_ONLY: "MAJOR_ONLY";
5490
- }>;
5002
+ alertSensitivity: z.ZodString;
5491
5003
  subscribedAt: z.ZodString;
5492
5004
  }, z.core.$strict>;
5493
5005
  UptimeBucketDto: z.ZodObject<{
@@ -5510,15 +5022,7 @@ export declare const schemas: {
5510
5022
  data: z.ZodObject<{
5511
5023
  id: z.ZodString;
5512
5024
  name: z.ZodString;
5513
- channelType: z.ZodEnum<{
5514
- email: "email";
5515
- webhook: "webhook";
5516
- slack: "slack";
5517
- pagerduty: "pagerduty";
5518
- opsgenie: "opsgenie";
5519
- teams: "teams";
5520
- discord: "discord";
5521
- }>;
5025
+ channelType: z.ZodString;
5522
5026
  displayConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5523
5027
  recipients: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
5524
5028
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5529,13 +5033,7 @@ export declare const schemas: {
5529
5033
  createdAt: z.ZodString;
5530
5034
  updatedAt: z.ZodString;
5531
5035
  configHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5532
- managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5533
- DASHBOARD: "DASHBOARD";
5534
- CLI: "CLI";
5535
- TERRAFORM: "TERRAFORM";
5536
- MCP: "MCP";
5537
- API: "API";
5538
- }>>>;
5036
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5539
5037
  lastDeliveryAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5540
5038
  lastDeliveryStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5541
5039
  }, z.core.$strict>;
@@ -5548,18 +5046,8 @@ export declare const schemas: {
5548
5046
  channelId: z.ZodString;
5549
5047
  channel: z.ZodString;
5550
5048
  channelType: z.ZodString;
5551
- status: z.ZodEnum<{
5552
- PENDING: "PENDING";
5553
- DELIVERED: "DELIVERED";
5554
- RETRY_PENDING: "RETRY_PENDING";
5555
- FAILED: "FAILED";
5556
- CANCELLED: "CANCELLED";
5557
- }>;
5558
- eventType: z.ZodEnum<{
5559
- INCIDENT_CREATED: "INCIDENT_CREATED";
5560
- INCIDENT_RESOLVED: "INCIDENT_RESOLVED";
5561
- INCIDENT_REOPENED: "INCIDENT_REOPENED";
5562
- }>;
5049
+ status: z.ZodString;
5050
+ eventType: z.ZodString;
5563
5051
  stepNumber: z.ZodNumber;
5564
5052
  fireCount: z.ZodNumber;
5565
5053
  attemptCount: z.ZodNumber;
@@ -5790,24 +5278,9 @@ export declare const schemas: {
5790
5278
  id: z.ZodString;
5791
5279
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5792
5280
  organizationId: z.ZodNumber;
5793
- source: z.ZodEnum<{
5794
- MANUAL: "MANUAL";
5795
- AUTOMATIC: "AUTOMATIC";
5796
- MONITORS: "MONITORS";
5797
- STATUS_DATA: "STATUS_DATA";
5798
- RESOURCE_GROUP: "RESOURCE_GROUP";
5799
- }>;
5800
- status: z.ZodEnum<{
5801
- WATCHING: "WATCHING";
5802
- TRIGGERED: "TRIGGERED";
5803
- CONFIRMED: "CONFIRMED";
5804
- RESOLVED: "RESOLVED";
5805
- }>;
5806
- severity: z.ZodEnum<{
5807
- DOWN: "DOWN";
5808
- DEGRADED: "DEGRADED";
5809
- MAINTENANCE: "MAINTENANCE";
5810
- }>;
5281
+ source: z.ZodString;
5282
+ status: z.ZodString;
5283
+ severity: z.ZodString;
5811
5284
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5812
5285
  triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5813
5286
  affectedRegions: z.ZodArray<z.ZodString>;
@@ -5819,11 +5292,7 @@ export declare const schemas: {
5819
5292
  externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5820
5293
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
5821
5294
  shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5822
- resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5823
- MANUAL: "MANUAL";
5824
- AUTO_RECOVERED: "AUTO_RECOVERED";
5825
- AUTO_RESOLVED: "AUTO_RESOLVED";
5826
- }>>>;
5295
+ resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5827
5296
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5828
5297
  confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5829
5298
  resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5844,23 +5313,10 @@ export declare const schemas: {
5844
5313
  updates: z.ZodArray<z.ZodObject<{
5845
5314
  id: z.ZodString;
5846
5315
  incidentId: z.ZodString;
5847
- oldStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5848
- WATCHING: "WATCHING";
5849
- TRIGGERED: "TRIGGERED";
5850
- CONFIRMED: "CONFIRMED";
5851
- RESOLVED: "RESOLVED";
5852
- }>>>;
5853
- newStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5854
- WATCHING: "WATCHING";
5855
- TRIGGERED: "TRIGGERED";
5856
- CONFIRMED: "CONFIRMED";
5857
- RESOLVED: "RESOLVED";
5858
- }>>>;
5316
+ oldStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5317
+ newStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5859
5318
  body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5860
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5861
- SYSTEM: "SYSTEM";
5862
- USER: "USER";
5863
- }>>>;
5319
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5864
5320
  notifySubscribers: z.ZodBoolean;
5865
5321
  createdAt: z.ZodString;
5866
5322
  }, z.core.$strict>>;
@@ -5870,18 +5326,8 @@ export declare const schemas: {
5870
5326
  statusPageName: z.ZodString;
5871
5327
  statusPageSlug: z.ZodString;
5872
5328
  title: z.ZodString;
5873
- status: z.ZodEnum<{
5874
- RESOLVED: "RESOLVED";
5875
- INVESTIGATING: "INVESTIGATING";
5876
- IDENTIFIED: "IDENTIFIED";
5877
- MONITORING: "MONITORING";
5878
- }>;
5879
- impact: z.ZodEnum<{
5880
- NONE: "NONE";
5881
- MINOR: "MINOR";
5882
- MAJOR: "MAJOR";
5883
- CRITICAL: "CRITICAL";
5884
- }>;
5329
+ status: z.ZodString;
5330
+ impact: z.ZodString;
5885
5331
  scheduled: z.ZodBoolean;
5886
5332
  publishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5887
5333
  }, z.core.$strict>>>>;
@@ -5905,8 +5351,8 @@ export declare const schemas: {
5905
5351
  }>>;
5906
5352
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5907
5353
  severity: z.ZodEnum<{
5908
- degraded: "degraded";
5909
5354
  down: "down";
5355
+ degraded: "degraded";
5910
5356
  }>;
5911
5357
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5912
5358
  all_exceed: "all_exceed";
@@ -5982,11 +5428,7 @@ export declare const schemas: {
5982
5428
  data: z.ZodObject<{
5983
5429
  inviteId: z.ZodNumber;
5984
5430
  email: z.ZodString;
5985
- roleOffered: z.ZodEnum<{
5986
- OWNER: "OWNER";
5987
- ADMIN: "ADMIN";
5988
- MEMBER: "MEMBER";
5989
- }>;
5431
+ roleOffered: z.ZodString;
5990
5432
  expiresAt: z.ZodString;
5991
5433
  consumedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5992
5434
  revokedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -6015,50 +5457,7 @@ export declare const schemas: {
6015
5457
  data: z.ZodObject<{
6016
5458
  id: z.ZodString;
6017
5459
  monitorId: z.ZodString;
6018
- assertionType: z.ZodEnum<{
6019
- status_code: "status_code";
6020
- response_time: "response_time";
6021
- body_contains: "body_contains";
6022
- json_path: "json_path";
6023
- header_value: "header_value";
6024
- regex_body: "regex_body";
6025
- dns_resolves: "dns_resolves";
6026
- dns_response_time: "dns_response_time";
6027
- dns_expected_ips: "dns_expected_ips";
6028
- dns_expected_cname: "dns_expected_cname";
6029
- dns_record_contains: "dns_record_contains";
6030
- dns_record_equals: "dns_record_equals";
6031
- dns_txt_contains: "dns_txt_contains";
6032
- dns_min_answers: "dns_min_answers";
6033
- dns_max_answers: "dns_max_answers";
6034
- dns_response_time_warn: "dns_response_time_warn";
6035
- dns_ttl_low: "dns_ttl_low";
6036
- dns_ttl_high: "dns_ttl_high";
6037
- mcp_connects: "mcp_connects";
6038
- mcp_response_time: "mcp_response_time";
6039
- mcp_has_capability: "mcp_has_capability";
6040
- mcp_tool_available: "mcp_tool_available";
6041
- mcp_min_tools: "mcp_min_tools";
6042
- mcp_protocol_version: "mcp_protocol_version";
6043
- mcp_response_time_warn: "mcp_response_time_warn";
6044
- mcp_tool_count_changed: "mcp_tool_count_changed";
6045
- ssl_expiry: "ssl_expiry";
6046
- response_size: "response_size";
6047
- redirect_count: "redirect_count";
6048
- redirect_target: "redirect_target";
6049
- response_time_warn: "response_time_warn";
6050
- tcp_connects: "tcp_connects";
6051
- tcp_response_time: "tcp_response_time";
6052
- tcp_response_time_warn: "tcp_response_time_warn";
6053
- icmp_reachable: "icmp_reachable";
6054
- icmp_response_time: "icmp_response_time";
6055
- icmp_response_time_warn: "icmp_response_time_warn";
6056
- icmp_packet_loss: "icmp_packet_loss";
6057
- heartbeat_received: "heartbeat_received";
6058
- heartbeat_max_interval: "heartbeat_max_interval";
6059
- heartbeat_interval_drift: "heartbeat_interval_drift";
6060
- heartbeat_payload_contains: "heartbeat_payload_contains";
6061
- }>;
5460
+ assertionType: z.ZodString;
6062
5461
  config: z.ZodUnion<readonly [z.ZodObject<{
6063
5462
  type: z.ZodLiteral<"body_contains">;
6064
5463
  substring: z.ZodString;
@@ -6220,22 +5619,14 @@ export declare const schemas: {
6220
5619
  type: z.ZodLiteral<"tcp_response_time_warn">;
6221
5620
  warnMs: z.ZodNumber;
6222
5621
  }, z.core.$strict>]>;
6223
- severity: z.ZodEnum<{
6224
- fail: "fail";
6225
- warn: "warn";
6226
- }>;
5622
+ severity: z.ZodString;
6227
5623
  }, z.core.$strict>;
6228
5624
  }, z.core.$strict>;
6229
5625
  SingleValueResponseMonitorAuthDto: z.ZodObject<{
6230
5626
  data: z.ZodObject<{
6231
5627
  id: z.ZodString;
6232
5628
  monitorId: z.ZodString;
6233
- authType: z.ZodEnum<{
6234
- api_key: "api_key";
6235
- basic: "basic";
6236
- bearer: "bearer";
6237
- header: "header";
6238
- }>;
5629
+ authType: z.ZodString;
6239
5630
  config: z.ZodDiscriminatedUnion<[z.ZodObject<{
6240
5631
  type: z.ZodLiteral<"api_key">;
6241
5632
  headerName: z.ZodString;
@@ -6258,14 +5649,7 @@ export declare const schemas: {
6258
5649
  id: z.ZodString;
6259
5650
  organizationId: z.ZodNumber;
6260
5651
  name: z.ZodString;
6261
- type: z.ZodEnum<{
6262
- HTTP: "HTTP";
6263
- DNS: "DNS";
6264
- MCP_SERVER: "MCP_SERVER";
6265
- TCP: "TCP";
6266
- ICMP: "ICMP";
6267
- HEARTBEAT: "HEARTBEAT";
6268
- }>;
5652
+ type: z.ZodString;
6269
5653
  config: z.ZodUnion<readonly [z.ZodObject<{
6270
5654
  hostname: z.ZodString;
6271
5655
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -6316,62 +5700,13 @@ export declare const schemas: {
6316
5700
  frequencySeconds: z.ZodNumber;
6317
5701
  enabled: z.ZodBoolean;
6318
5702
  regions: z.ZodArray<z.ZodString>;
6319
- managedBy: z.ZodEnum<{
6320
- DASHBOARD: "DASHBOARD";
6321
- CLI: "CLI";
6322
- TERRAFORM: "TERRAFORM";
6323
- MCP: "MCP";
6324
- API: "API";
6325
- }>;
5703
+ managedBy: z.ZodString;
6326
5704
  createdAt: z.ZodString;
6327
5705
  updatedAt: z.ZodString;
6328
5706
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
6329
5707
  id: z.ZodString;
6330
5708
  monitorId: z.ZodString;
6331
- assertionType: z.ZodEnum<{
6332
- status_code: "status_code";
6333
- response_time: "response_time";
6334
- body_contains: "body_contains";
6335
- json_path: "json_path";
6336
- header_value: "header_value";
6337
- regex_body: "regex_body";
6338
- dns_resolves: "dns_resolves";
6339
- dns_response_time: "dns_response_time";
6340
- dns_expected_ips: "dns_expected_ips";
6341
- dns_expected_cname: "dns_expected_cname";
6342
- dns_record_contains: "dns_record_contains";
6343
- dns_record_equals: "dns_record_equals";
6344
- dns_txt_contains: "dns_txt_contains";
6345
- dns_min_answers: "dns_min_answers";
6346
- dns_max_answers: "dns_max_answers";
6347
- dns_response_time_warn: "dns_response_time_warn";
6348
- dns_ttl_low: "dns_ttl_low";
6349
- dns_ttl_high: "dns_ttl_high";
6350
- mcp_connects: "mcp_connects";
6351
- mcp_response_time: "mcp_response_time";
6352
- mcp_has_capability: "mcp_has_capability";
6353
- mcp_tool_available: "mcp_tool_available";
6354
- mcp_min_tools: "mcp_min_tools";
6355
- mcp_protocol_version: "mcp_protocol_version";
6356
- mcp_response_time_warn: "mcp_response_time_warn";
6357
- mcp_tool_count_changed: "mcp_tool_count_changed";
6358
- ssl_expiry: "ssl_expiry";
6359
- response_size: "response_size";
6360
- redirect_count: "redirect_count";
6361
- redirect_target: "redirect_target";
6362
- response_time_warn: "response_time_warn";
6363
- tcp_connects: "tcp_connects";
6364
- tcp_response_time: "tcp_response_time";
6365
- tcp_response_time_warn: "tcp_response_time_warn";
6366
- icmp_reachable: "icmp_reachable";
6367
- icmp_response_time: "icmp_response_time";
6368
- icmp_response_time_warn: "icmp_response_time_warn";
6369
- icmp_packet_loss: "icmp_packet_loss";
6370
- heartbeat_received: "heartbeat_received";
6371
- heartbeat_max_interval: "heartbeat_max_interval";
6372
- heartbeat_interval_drift: "heartbeat_interval_drift";
6373
- heartbeat_payload_contains: "heartbeat_payload_contains";
6374
- }>;
5709
+ assertionType: z.ZodString;
6375
5710
  config: z.ZodUnion<readonly [z.ZodObject<{
6376
5711
  type: z.ZodLiteral<"body_contains">;
6377
5712
  substring: z.ZodString;
@@ -6533,10 +5868,7 @@ export declare const schemas: {
6533
5868
  type: z.ZodLiteral<"tcp_response_time_warn">;
6534
5869
  warnMs: z.ZodNumber;
6535
5870
  }, z.core.$strict>]>;
6536
- severity: z.ZodEnum<{
6537
- fail: "fail";
6538
- warn: "warn";
6539
- }>;
5871
+ severity: z.ZodString;
6540
5872
  }, z.core.$strict>>>>;
6541
5873
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
6542
5874
  id: z.ZodString;
@@ -6584,8 +5916,8 @@ export declare const schemas: {
6584
5916
  }>>;
6585
5917
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6586
5918
  severity: z.ZodEnum<{
6587
- degraded: "degraded";
6588
5919
  down: "down";
5920
+ degraded: "degraded";
6589
5921
  }>;
6590
5922
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
6591
5923
  all_exceed: "all_exceed";
@@ -6610,13 +5942,7 @@ export declare const schemas: {
6610
5942
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6611
5943
  }, z.core.$strict>>>;
6612
5944
  alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
6613
- currentStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
6614
- up: "up";
6615
- degraded: "degraded";
6616
- down: "down";
6617
- paused: "paused";
6618
- unknown: "unknown";
6619
- }>>>;
5945
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6620
5946
  }, z.core.$strict>;
6621
5947
  }, z.core.$strict>;
6622
5948
  SingleValueResponseMonitorTestResultDto: z.ZodObject<{
@@ -6631,55 +5957,9 @@ export declare const schemas: {
6631
5957
  redirectCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6632
5958
  finalUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6633
5959
  assertionResults: z.ZodArray<z.ZodObject<{
6634
- assertionType: z.ZodEnum<{
6635
- status_code: "status_code";
6636
- response_time: "response_time";
6637
- body_contains: "body_contains";
6638
- json_path: "json_path";
6639
- header_value: "header_value";
6640
- regex_body: "regex_body";
6641
- dns_resolves: "dns_resolves";
6642
- dns_response_time: "dns_response_time";
6643
- dns_expected_ips: "dns_expected_ips";
6644
- dns_expected_cname: "dns_expected_cname";
6645
- dns_record_contains: "dns_record_contains";
6646
- dns_record_equals: "dns_record_equals";
6647
- dns_txt_contains: "dns_txt_contains";
6648
- dns_min_answers: "dns_min_answers";
6649
- dns_max_answers: "dns_max_answers";
6650
- dns_response_time_warn: "dns_response_time_warn";
6651
- dns_ttl_low: "dns_ttl_low";
6652
- dns_ttl_high: "dns_ttl_high";
6653
- mcp_connects: "mcp_connects";
6654
- mcp_response_time: "mcp_response_time";
6655
- mcp_has_capability: "mcp_has_capability";
6656
- mcp_tool_available: "mcp_tool_available";
6657
- mcp_min_tools: "mcp_min_tools";
6658
- mcp_protocol_version: "mcp_protocol_version";
6659
- mcp_response_time_warn: "mcp_response_time_warn";
6660
- mcp_tool_count_changed: "mcp_tool_count_changed";
6661
- ssl_expiry: "ssl_expiry";
6662
- response_size: "response_size";
6663
- redirect_count: "redirect_count";
6664
- redirect_target: "redirect_target";
6665
- response_time_warn: "response_time_warn";
6666
- tcp_connects: "tcp_connects";
6667
- tcp_response_time: "tcp_response_time";
6668
- tcp_response_time_warn: "tcp_response_time_warn";
6669
- icmp_reachable: "icmp_reachable";
6670
- icmp_response_time: "icmp_response_time";
6671
- icmp_response_time_warn: "icmp_response_time_warn";
6672
- icmp_packet_loss: "icmp_packet_loss";
6673
- heartbeat_received: "heartbeat_received";
6674
- heartbeat_max_interval: "heartbeat_max_interval";
6675
- heartbeat_interval_drift: "heartbeat_interval_drift";
6676
- heartbeat_payload_contains: "heartbeat_payload_contains";
6677
- }>;
5960
+ assertionType: z.ZodString;
6678
5961
  passed: z.ZodBoolean;
6679
- severity: z.ZodEnum<{
6680
- fail: "fail";
6681
- warn: "warn";
6682
- }>;
5962
+ severity: z.ZodString;
6683
5963
  message: z.ZodString;
6684
5964
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6685
5965
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -6696,14 +5976,7 @@ export declare const schemas: {
6696
5976
  id: z.ZodString;
6697
5977
  organizationId: z.ZodNumber;
6698
5978
  name: z.ZodString;
6699
- type: z.ZodEnum<{
6700
- HTTP: "HTTP";
6701
- DNS: "DNS";
6702
- MCP_SERVER: "MCP_SERVER";
6703
- TCP: "TCP";
6704
- ICMP: "ICMP";
6705
- HEARTBEAT: "HEARTBEAT";
6706
- }>;
5979
+ type: z.ZodString;
6707
5980
  config: z.ZodUnion<readonly [z.ZodObject<{
6708
5981
  hostname: z.ZodString;
6709
5982
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -6754,62 +6027,13 @@ export declare const schemas: {
6754
6027
  frequencySeconds: z.ZodNumber;
6755
6028
  enabled: z.ZodBoolean;
6756
6029
  regions: z.ZodArray<z.ZodString>;
6757
- managedBy: z.ZodEnum<{
6758
- DASHBOARD: "DASHBOARD";
6759
- CLI: "CLI";
6760
- TERRAFORM: "TERRAFORM";
6761
- MCP: "MCP";
6762
- API: "API";
6763
- }>;
6030
+ managedBy: z.ZodString;
6764
6031
  createdAt: z.ZodString;
6765
6032
  updatedAt: z.ZodString;
6766
6033
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
6767
6034
  id: z.ZodString;
6768
6035
  monitorId: z.ZodString;
6769
- assertionType: z.ZodEnum<{
6770
- status_code: "status_code";
6771
- response_time: "response_time";
6772
- body_contains: "body_contains";
6773
- json_path: "json_path";
6774
- header_value: "header_value";
6775
- regex_body: "regex_body";
6776
- dns_resolves: "dns_resolves";
6777
- dns_response_time: "dns_response_time";
6778
- dns_expected_ips: "dns_expected_ips";
6779
- dns_expected_cname: "dns_expected_cname";
6780
- dns_record_contains: "dns_record_contains";
6781
- dns_record_equals: "dns_record_equals";
6782
- dns_txt_contains: "dns_txt_contains";
6783
- dns_min_answers: "dns_min_answers";
6784
- dns_max_answers: "dns_max_answers";
6785
- dns_response_time_warn: "dns_response_time_warn";
6786
- dns_ttl_low: "dns_ttl_low";
6787
- dns_ttl_high: "dns_ttl_high";
6788
- mcp_connects: "mcp_connects";
6789
- mcp_response_time: "mcp_response_time";
6790
- mcp_has_capability: "mcp_has_capability";
6791
- mcp_tool_available: "mcp_tool_available";
6792
- mcp_min_tools: "mcp_min_tools";
6793
- mcp_protocol_version: "mcp_protocol_version";
6794
- mcp_response_time_warn: "mcp_response_time_warn";
6795
- mcp_tool_count_changed: "mcp_tool_count_changed";
6796
- ssl_expiry: "ssl_expiry";
6797
- response_size: "response_size";
6798
- redirect_count: "redirect_count";
6799
- redirect_target: "redirect_target";
6800
- response_time_warn: "response_time_warn";
6801
- tcp_connects: "tcp_connects";
6802
- tcp_response_time: "tcp_response_time";
6803
- tcp_response_time_warn: "tcp_response_time_warn";
6804
- icmp_reachable: "icmp_reachable";
6805
- icmp_response_time: "icmp_response_time";
6806
- icmp_response_time_warn: "icmp_response_time_warn";
6807
- icmp_packet_loss: "icmp_packet_loss";
6808
- heartbeat_received: "heartbeat_received";
6809
- heartbeat_max_interval: "heartbeat_max_interval";
6810
- heartbeat_interval_drift: "heartbeat_interval_drift";
6811
- heartbeat_payload_contains: "heartbeat_payload_contains";
6812
- }>;
6036
+ assertionType: z.ZodString;
6813
6037
  config: z.ZodUnion<readonly [z.ZodObject<{
6814
6038
  type: z.ZodLiteral<"body_contains">;
6815
6039
  substring: z.ZodString;
@@ -6971,10 +6195,7 @@ export declare const schemas: {
6971
6195
  type: z.ZodLiteral<"tcp_response_time_warn">;
6972
6196
  warnMs: z.ZodNumber;
6973
6197
  }, z.core.$strict>]>;
6974
- severity: z.ZodEnum<{
6975
- fail: "fail";
6976
- warn: "warn";
6977
- }>;
6198
+ severity: z.ZodString;
6978
6199
  }, z.core.$strict>>>>;
6979
6200
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
6980
6201
  id: z.ZodString;
@@ -7022,8 +6243,8 @@ export declare const schemas: {
7022
6243
  }>>;
7023
6244
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7024
6245
  severity: z.ZodEnum<{
7025
- degraded: "degraded";
7026
6246
  down: "down";
6247
+ degraded: "degraded";
7027
6248
  }>;
7028
6249
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7029
6250
  all_exceed: "all_exceed";
@@ -7048,21 +6269,10 @@ export declare const schemas: {
7048
6269
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7049
6270
  }, z.core.$strict>>>;
7050
6271
  alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7051
- currentStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7052
- up: "up";
7053
- degraded: "degraded";
7054
- down: "down";
7055
- paused: "paused";
7056
- unknown: "unknown";
7057
- }>>>;
6272
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7058
6273
  }, z.core.$strict>;
7059
6274
  changedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7060
- changedVia: z.ZodEnum<{
7061
- DASHBOARD: "DASHBOARD";
7062
- CLI: "CLI";
7063
- TERRAFORM: "TERRAFORM";
7064
- API: "API";
7065
- }>;
6275
+ changedVia: z.ZodString;
7066
6276
  changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7067
6277
  createdAt: z.ZodString;
7068
6278
  }, z.core.$strict>;
@@ -7073,19 +6283,8 @@ export declare const schemas: {
7073
6283
  incidentId: z.ZodString;
7074
6284
  policyId: z.ZodString;
7075
6285
  policyName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7076
- status: z.ZodEnum<{
7077
- PENDING: "PENDING";
7078
- DELIVERED: "DELIVERED";
7079
- DISPATCHING: "DISPATCHING";
7080
- ESCALATING: "ESCALATING";
7081
- ACKNOWLEDGED: "ACKNOWLEDGED";
7082
- COMPLETED: "COMPLETED";
7083
- }>;
7084
- completionReason: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7085
- RESOLVED: "RESOLVED";
7086
- EXHAUSTED: "EXHAUSTED";
7087
- NO_STEPS: "NO_STEPS";
7088
- }>>>;
6286
+ status: z.ZodString;
6287
+ completionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7089
6288
  currentStep: z.ZodNumber;
7090
6289
  totalSteps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7091
6290
  acknowledgedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7098,18 +6297,8 @@ export declare const schemas: {
7098
6297
  channelId: z.ZodString;
7099
6298
  channel: z.ZodString;
7100
6299
  channelType: z.ZodString;
7101
- status: z.ZodEnum<{
7102
- PENDING: "PENDING";
7103
- DELIVERED: "DELIVERED";
7104
- RETRY_PENDING: "RETRY_PENDING";
7105
- FAILED: "FAILED";
7106
- CANCELLED: "CANCELLED";
7107
- }>;
7108
- eventType: z.ZodEnum<{
7109
- INCIDENT_CREATED: "INCIDENT_CREATED";
7110
- INCIDENT_RESOLVED: "INCIDENT_RESOLVED";
7111
- INCIDENT_REOPENED: "INCIDENT_REOPENED";
7112
- }>;
6300
+ status: z.ZodString;
6301
+ eventType: z.ZodString;
7113
6302
  stepNumber: z.ZodNumber;
7114
6303
  fireCount: z.ZodNumber;
7115
6304
  attemptCount: z.ZodNumber;
@@ -7197,29 +6386,17 @@ export declare const schemas: {
7197
6386
  }, z.core.$strict>>>;
7198
6387
  defaultAlertChannels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7199
6388
  defaultEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7200
- healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7201
- COUNT: "COUNT";
7202
- PERCENTAGE: "PERCENTAGE";
7203
- }>>>;
6389
+ healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7204
6390
  healthThresholdValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7205
6391
  suppressMemberAlerts: z.ZodBoolean;
7206
6392
  confirmationDelaySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7207
6393
  recoveryCooldownMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7208
6394
  health: z.ZodObject<{
7209
- status: z.ZodEnum<{
7210
- degraded: "degraded";
7211
- down: "down";
7212
- operational: "operational";
7213
- maintenance: "maintenance";
7214
- }>;
6395
+ status: z.ZodString;
7215
6396
  totalMembers: z.ZodNumber;
7216
6397
  operationalCount: z.ZodNumber;
7217
6398
  activeIncidents: z.ZodNumber;
7218
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7219
- degraded: "degraded";
7220
- down: "down";
7221
- healthy: "healthy";
7222
- }>>>;
6399
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7223
6400
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7224
6401
  }, z.core.$strict>;
7225
6402
  members: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -7231,12 +6408,7 @@ export declare const schemas: {
7231
6408
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7232
6409
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7233
6410
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7234
- status: z.ZodEnum<{
7235
- degraded: "degraded";
7236
- down: "down";
7237
- operational: "operational";
7238
- maintenance: "maintenance";
7239
- }>;
6411
+ status: z.ZodString;
7240
6412
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7241
6413
  createdAt: z.ZodString;
7242
6414
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -7247,33 +6419,18 @@ export declare const schemas: {
7247
6419
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7248
6420
  environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7249
6421
  }, z.core.$strict>>>>;
7250
- managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7251
- DASHBOARD: "DASHBOARD";
7252
- CLI: "CLI";
7253
- TERRAFORM: "TERRAFORM";
7254
- MCP: "MCP";
7255
- API: "API";
7256
- }>>>;
6422
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7257
6423
  createdAt: z.ZodString;
7258
6424
  updatedAt: z.ZodString;
7259
6425
  }, z.core.$strict>;
7260
6426
  }, z.core.$strict>;
7261
6427
  SingleValueResponseResourceGroupHealthDto: z.ZodObject<{
7262
6428
  data: z.ZodObject<{
7263
- status: z.ZodEnum<{
7264
- degraded: "degraded";
7265
- down: "down";
7266
- operational: "operational";
7267
- maintenance: "maintenance";
7268
- }>;
6429
+ status: z.ZodString;
7269
6430
  totalMembers: z.ZodNumber;
7270
6431
  operationalCount: z.ZodNumber;
7271
6432
  activeIncidents: z.ZodNumber;
7272
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7273
- degraded: "degraded";
7274
- down: "down";
7275
- healthy: "healthy";
7276
- }>>>;
6433
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7277
6434
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7278
6435
  }, z.core.$strict>;
7279
6436
  }, z.core.$strict>;
@@ -7287,12 +6444,7 @@ export declare const schemas: {
7287
6444
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7288
6445
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7289
6446
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7290
- status: z.ZodEnum<{
7291
- degraded: "degraded";
7292
- down: "down";
7293
- operational: "operational";
7294
- maintenance: "maintenance";
7295
- }>;
6447
+ status: z.ZodString;
7296
6448
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7297
6449
  createdAt: z.ZodString;
7298
6450
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -7306,13 +6458,7 @@ export declare const schemas: {
7306
6458
  }, z.core.$strict>;
7307
6459
  SingleValueResponseResultSummaryDto: z.ZodObject<{
7308
6460
  data: z.ZodObject<{
7309
- currentStatus: z.ZodEnum<{
7310
- up: "up";
7311
- degraded: "degraded";
7312
- down: "down";
7313
- paused: "paused";
7314
- unknown: "unknown";
7315
- }>;
6461
+ currentStatus: z.ZodString;
7316
6462
  latestPerRegion: z.ZodArray<z.ZodObject<{
7317
6463
  region: z.ZodString;
7318
6464
  passed: z.ZodBoolean;
@@ -7598,11 +6744,7 @@ export declare const schemas: {
7598
6744
  lastSeenAt: z.ZodString;
7599
6745
  isGroup: z.ZodBoolean;
7600
6746
  }, z.core.$strict>>>;
7601
- alertSensitivity: z.ZodEnum<{
7602
- ALL: "ALL";
7603
- INCIDENTS_ONLY: "INCIDENTS_ONLY";
7604
- MAJOR_ONLY: "MAJOR_ONLY";
7605
- }>;
6747
+ alertSensitivity: z.ZodString;
7606
6748
  subscribedAt: z.ZodString;
7607
6749
  }, z.core.$strict>;
7608
6750
  }, z.core.$strict>;
@@ -7625,20 +6767,10 @@ export declare const schemas: {
7625
6767
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7626
6768
  name: z.ZodString;
7627
6769
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7628
- type: z.ZodEnum<{
7629
- MONITOR: "MONITOR";
7630
- GROUP: "GROUP";
7631
- STATIC: "STATIC";
7632
- }>;
6770
+ type: z.ZodString;
7633
6771
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7634
6772
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7635
- currentStatus: z.ZodEnum<{
7636
- OPERATIONAL: "OPERATIONAL";
7637
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
7638
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
7639
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
7640
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
7641
- }>;
6773
+ currentStatus: z.ZodString;
7642
6774
  showUptime: z.ZodBoolean;
7643
6775
  displayOrder: z.ZodNumber;
7644
6776
  pageOrder: z.ZodNumber;
@@ -7654,20 +6786,10 @@ export declare const schemas: {
7654
6786
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7655
6787
  name: z.ZodString;
7656
6788
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7657
- type: z.ZodEnum<{
7658
- MONITOR: "MONITOR";
7659
- GROUP: "GROUP";
7660
- STATIC: "STATIC";
7661
- }>;
6789
+ type: z.ZodString;
7662
6790
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7663
6791
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7664
- currentStatus: z.ZodEnum<{
7665
- OPERATIONAL: "OPERATIONAL";
7666
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
7667
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
7668
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
7669
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
7670
- }>;
6792
+ currentStatus: z.ZodString;
7671
6793
  showUptime: z.ZodBoolean;
7672
6794
  displayOrder: z.ZodNumber;
7673
6795
  pageOrder: z.ZodNumber;
@@ -7691,20 +6813,10 @@ export declare const schemas: {
7691
6813
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7692
6814
  name: z.ZodString;
7693
6815
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7694
- type: z.ZodEnum<{
7695
- MONITOR: "MONITOR";
7696
- GROUP: "GROUP";
7697
- STATIC: "STATIC";
7698
- }>;
6816
+ type: z.ZodString;
7699
6817
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7700
6818
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7701
- currentStatus: z.ZodEnum<{
7702
- OPERATIONAL: "OPERATIONAL";
7703
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
7704
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
7705
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
7706
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
7707
- }>;
6819
+ currentStatus: z.ZodString;
7708
6820
  showUptime: z.ZodBoolean;
7709
6821
  displayOrder: z.ZodNumber;
7710
6822
  pageOrder: z.ZodNumber;
@@ -7731,20 +6843,10 @@ export declare const schemas: {
7731
6843
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7732
6844
  name: z.ZodString;
7733
6845
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7734
- type: z.ZodEnum<{
7735
- MONITOR: "MONITOR";
7736
- GROUP: "GROUP";
7737
- STATIC: "STATIC";
7738
- }>;
6846
+ type: z.ZodString;
7739
6847
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7740
6848
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7741
- currentStatus: z.ZodEnum<{
7742
- OPERATIONAL: "OPERATIONAL";
7743
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
7744
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
7745
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
7746
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
7747
- }>;
6849
+ currentStatus: z.ZodString;
7748
6850
  showUptime: z.ZodBoolean;
7749
6851
  displayOrder: z.ZodNumber;
7750
6852
  pageOrder: z.ZodNumber;
@@ -7760,19 +6862,8 @@ export declare const schemas: {
7760
6862
  StatusPageCustomDomainDto: z.ZodObject<{
7761
6863
  id: z.ZodString;
7762
6864
  hostname: z.ZodString;
7763
- status: z.ZodEnum<{
7764
- FAILED: "FAILED";
7765
- ACTIVE: "ACTIVE";
7766
- REMOVED: "REMOVED";
7767
- PENDING_VERIFICATION: "PENDING_VERIFICATION";
7768
- VERIFICATION_FAILED: "VERIFICATION_FAILED";
7769
- VERIFIED: "VERIFIED";
7770
- SSL_PENDING: "SSL_PENDING";
7771
- }>;
7772
- verificationMethod: z.ZodEnum<{
7773
- CNAME: "CNAME";
7774
- TXT: "TXT";
7775
- }>;
6865
+ status: z.ZodString;
6866
+ verificationMethod: z.ZodString;
7776
6867
  verificationToken: z.ZodString;
7777
6868
  verificationCnameTarget: z.ZodString;
7778
6869
  verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7788,19 +6879,8 @@ export declare const schemas: {
7788
6879
  data: z.ZodObject<{
7789
6880
  id: z.ZodString;
7790
6881
  hostname: z.ZodString;
7791
- status: z.ZodEnum<{
7792
- FAILED: "FAILED";
7793
- ACTIVE: "ACTIVE";
7794
- REMOVED: "REMOVED";
7795
- PENDING_VERIFICATION: "PENDING_VERIFICATION";
7796
- VERIFICATION_FAILED: "VERIFICATION_FAILED";
7797
- VERIFIED: "VERIFIED";
7798
- SSL_PENDING: "SSL_PENDING";
7799
- }>;
7800
- verificationMethod: z.ZodEnum<{
7801
- CNAME: "CNAME";
7802
- TXT: "TXT";
7803
- }>;
6882
+ status: z.ZodString;
6883
+ verificationMethod: z.ZodString;
7804
6884
  verificationToken: z.ZodString;
7805
6885
  verificationCnameTarget: z.ZodString;
7806
6886
  verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7835,33 +6915,13 @@ export declare const schemas: {
7835
6915
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7836
6916
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7837
6917
  }, z.core.$strict>;
7838
- visibility: z.ZodEnum<{
7839
- PUBLIC: "PUBLIC";
7840
- PASSWORD: "PASSWORD";
7841
- IP_RESTRICTED: "IP_RESTRICTED";
7842
- }>;
6918
+ visibility: z.ZodString;
7843
6919
  enabled: z.ZodBoolean;
7844
- incidentMode: z.ZodEnum<{
7845
- MANUAL: "MANUAL";
7846
- REVIEW: "REVIEW";
7847
- AUTOMATIC: "AUTOMATIC";
7848
- }>;
6920
+ incidentMode: z.ZodString;
7849
6921
  componentCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7850
6922
  subscriberCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7851
- overallStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7852
- OPERATIONAL: "OPERATIONAL";
7853
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
7854
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
7855
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
7856
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
7857
- }>>>;
7858
- managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7859
- DASHBOARD: "DASHBOARD";
7860
- CLI: "CLI";
7861
- TERRAFORM: "TERRAFORM";
7862
- MCP: "MCP";
7863
- API: "API";
7864
- }>>>;
6923
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6924
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7865
6925
  createdAt: z.ZodString;
7866
6926
  updatedAt: z.ZodString;
7867
6927
  }, z.core.$strict>;
@@ -7888,61 +6948,27 @@ export declare const schemas: {
7888
6948
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7889
6949
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7890
6950
  }, z.core.$strict>;
7891
- visibility: z.ZodEnum<{
7892
- PUBLIC: "PUBLIC";
7893
- PASSWORD: "PASSWORD";
7894
- IP_RESTRICTED: "IP_RESTRICTED";
7895
- }>;
6951
+ visibility: z.ZodString;
7896
6952
  enabled: z.ZodBoolean;
7897
- incidentMode: z.ZodEnum<{
7898
- MANUAL: "MANUAL";
7899
- REVIEW: "REVIEW";
7900
- AUTOMATIC: "AUTOMATIC";
7901
- }>;
6953
+ incidentMode: z.ZodString;
7902
6954
  componentCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7903
6955
  subscriberCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7904
- overallStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7905
- OPERATIONAL: "OPERATIONAL";
7906
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
7907
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
7908
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
7909
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
7910
- }>>>;
7911
- managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7912
- DASHBOARD: "DASHBOARD";
7913
- CLI: "CLI";
7914
- TERRAFORM: "TERRAFORM";
7915
- MCP: "MCP";
7916
- API: "API";
7917
- }>>>;
6956
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6957
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7918
6958
  createdAt: z.ZodString;
7919
6959
  updatedAt: z.ZodString;
7920
6960
  }, z.core.$strict>;
7921
6961
  }, z.core.$strict>;
7922
6962
  StatusPageIncidentComponentDto: z.ZodObject<{
7923
6963
  statusPageComponentId: z.ZodString;
7924
- componentStatus: z.ZodEnum<{
7925
- OPERATIONAL: "OPERATIONAL";
7926
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
7927
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
7928
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
7929
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
7930
- }>;
6964
+ componentStatus: z.ZodString;
7931
6965
  componentName: z.ZodString;
7932
6966
  }, z.core.$strict>;
7933
6967
  StatusPageIncidentUpdateDto: z.ZodObject<{
7934
6968
  id: z.ZodString;
7935
- status: z.ZodEnum<{
7936
- RESOLVED: "RESOLVED";
7937
- INVESTIGATING: "INVESTIGATING";
7938
- IDENTIFIED: "IDENTIFIED";
7939
- MONITORING: "MONITORING";
7940
- }>;
6969
+ status: z.ZodString;
7941
6970
  body: z.ZodString;
7942
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7943
- SYSTEM: "SYSTEM";
7944
- USER: "USER";
7945
- }>>>;
6971
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7946
6972
  createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7947
6973
  notifySubscribers: z.ZodBoolean;
7948
6974
  createdAt: z.ZodString;
@@ -7951,18 +6977,8 @@ export declare const schemas: {
7951
6977
  id: z.ZodString;
7952
6978
  statusPageId: z.ZodString;
7953
6979
  title: z.ZodString;
7954
- status: z.ZodEnum<{
7955
- RESOLVED: "RESOLVED";
7956
- INVESTIGATING: "INVESTIGATING";
7957
- IDENTIFIED: "IDENTIFIED";
7958
- MONITORING: "MONITORING";
7959
- }>;
7960
- impact: z.ZodEnum<{
7961
- NONE: "NONE";
7962
- MINOR: "MINOR";
7963
- MAJOR: "MAJOR";
7964
- CRITICAL: "CRITICAL";
7965
- }>;
6980
+ status: z.ZodString;
6981
+ impact: z.ZodString;
7966
6982
  scheduled: z.ZodBoolean;
7967
6983
  scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7968
6984
  scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7976,28 +6992,14 @@ export declare const schemas: {
7976
6992
  postmortemUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7977
6993
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
7978
6994
  statusPageComponentId: z.ZodString;
7979
- componentStatus: z.ZodEnum<{
7980
- OPERATIONAL: "OPERATIONAL";
7981
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
7982
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
7983
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
7984
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
7985
- }>;
6995
+ componentStatus: z.ZodString;
7986
6996
  componentName: z.ZodString;
7987
6997
  }, z.core.$strict>>>>;
7988
6998
  updates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
7989
6999
  id: z.ZodString;
7990
- status: z.ZodEnum<{
7991
- RESOLVED: "RESOLVED";
7992
- INVESTIGATING: "INVESTIGATING";
7993
- IDENTIFIED: "IDENTIFIED";
7994
- MONITORING: "MONITORING";
7995
- }>;
7000
+ status: z.ZodString;
7996
7001
  body: z.ZodString;
7997
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7998
- SYSTEM: "SYSTEM";
7999
- USER: "USER";
8000
- }>>>;
7002
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8001
7003
  createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8002
7004
  notifySubscribers: z.ZodBoolean;
8003
7005
  createdAt: z.ZodString;
@@ -8010,18 +7012,8 @@ export declare const schemas: {
8010
7012
  id: z.ZodString;
8011
7013
  statusPageId: z.ZodString;
8012
7014
  title: z.ZodString;
8013
- status: z.ZodEnum<{
8014
- RESOLVED: "RESOLVED";
8015
- INVESTIGATING: "INVESTIGATING";
8016
- IDENTIFIED: "IDENTIFIED";
8017
- MONITORING: "MONITORING";
8018
- }>;
8019
- impact: z.ZodEnum<{
8020
- NONE: "NONE";
8021
- MINOR: "MINOR";
8022
- MAJOR: "MAJOR";
8023
- CRITICAL: "CRITICAL";
8024
- }>;
7015
+ status: z.ZodString;
7016
+ impact: z.ZodString;
8025
7017
  scheduled: z.ZodBoolean;
8026
7018
  scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8027
7019
  scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8035,28 +7027,14 @@ export declare const schemas: {
8035
7027
  postmortemUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8036
7028
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8037
7029
  statusPageComponentId: z.ZodString;
8038
- componentStatus: z.ZodEnum<{
8039
- OPERATIONAL: "OPERATIONAL";
8040
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
8041
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
8042
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
8043
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
8044
- }>;
7030
+ componentStatus: z.ZodString;
8045
7031
  componentName: z.ZodString;
8046
7032
  }, z.core.$strict>>>>;
8047
7033
  updates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8048
7034
  id: z.ZodString;
8049
- status: z.ZodEnum<{
8050
- RESOLVED: "RESOLVED";
8051
- INVESTIGATING: "INVESTIGATING";
8052
- IDENTIFIED: "IDENTIFIED";
8053
- MONITORING: "MONITORING";
8054
- }>;
7035
+ status: z.ZodString;
8055
7036
  body: z.ZodString;
8056
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
8057
- SYSTEM: "SYSTEM";
8058
- USER: "USER";
8059
- }>>>;
7037
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8060
7038
  createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8061
7039
  notifySubscribers: z.ZodBoolean;
8062
7040
  createdAt: z.ZodString;
@@ -8200,15 +7178,7 @@ export declare const schemas: {
8200
7178
  data: z.ZodArray<z.ZodObject<{
8201
7179
  id: z.ZodString;
8202
7180
  name: z.ZodString;
8203
- channelType: z.ZodEnum<{
8204
- email: "email";
8205
- webhook: "webhook";
8206
- slack: "slack";
8207
- pagerduty: "pagerduty";
8208
- opsgenie: "opsgenie";
8209
- teams: "teams";
8210
- discord: "discord";
8211
- }>;
7181
+ channelType: z.ZodString;
8212
7182
  displayConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8213
7183
  recipients: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
8214
7184
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8219,13 +7189,7 @@ export declare const schemas: {
8219
7189
  createdAt: z.ZodString;
8220
7190
  updatedAt: z.ZodString;
8221
7191
  configHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8222
- managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
8223
- DASHBOARD: "DASHBOARD";
8224
- CLI: "CLI";
8225
- TERRAFORM: "TERRAFORM";
8226
- MCP: "MCP";
8227
- API: "API";
8228
- }>>>;
7192
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8229
7193
  lastDeliveryAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8230
7194
  lastDeliveryStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8231
7195
  }, z.core.$strict>>;
@@ -8242,18 +7206,8 @@ export declare const schemas: {
8242
7206
  channelId: z.ZodString;
8243
7207
  channel: z.ZodString;
8244
7208
  channelType: z.ZodString;
8245
- status: z.ZodEnum<{
8246
- PENDING: "PENDING";
8247
- DELIVERED: "DELIVERED";
8248
- RETRY_PENDING: "RETRY_PENDING";
8249
- FAILED: "FAILED";
8250
- CANCELLED: "CANCELLED";
8251
- }>;
8252
- eventType: z.ZodEnum<{
8253
- INCIDENT_CREATED: "INCIDENT_CREATED";
8254
- INCIDENT_RESOLVED: "INCIDENT_RESOLVED";
8255
- INCIDENT_REOPENED: "INCIDENT_REOPENED";
8256
- }>;
7209
+ status: z.ZodString;
7210
+ eventType: z.ZodString;
8257
7211
  stepNumber: z.ZodNumber;
8258
7212
  fireCount: z.ZodNumber;
8259
7213
  attemptCount: z.ZodNumber;
@@ -8383,24 +7337,9 @@ export declare const schemas: {
8383
7337
  id: z.ZodString;
8384
7338
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8385
7339
  organizationId: z.ZodNumber;
8386
- source: z.ZodEnum<{
8387
- MANUAL: "MANUAL";
8388
- AUTOMATIC: "AUTOMATIC";
8389
- MONITORS: "MONITORS";
8390
- STATUS_DATA: "STATUS_DATA";
8391
- RESOURCE_GROUP: "RESOURCE_GROUP";
8392
- }>;
8393
- status: z.ZodEnum<{
8394
- WATCHING: "WATCHING";
8395
- TRIGGERED: "TRIGGERED";
8396
- CONFIRMED: "CONFIRMED";
8397
- RESOLVED: "RESOLVED";
8398
- }>;
8399
- severity: z.ZodEnum<{
8400
- DOWN: "DOWN";
8401
- DEGRADED: "DEGRADED";
8402
- MAINTENANCE: "MAINTENANCE";
8403
- }>;
7340
+ source: z.ZodString;
7341
+ status: z.ZodString;
7342
+ severity: z.ZodString;
8404
7343
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8405
7344
  triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8406
7345
  affectedRegions: z.ZodArray<z.ZodString>;
@@ -8412,11 +7351,7 @@ export declare const schemas: {
8412
7351
  externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8413
7352
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
8414
7353
  shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8415
- resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
8416
- MANUAL: "MANUAL";
8417
- AUTO_RECOVERED: "AUTO_RECOVERED";
8418
- AUTO_RESOLVED: "AUTO_RESOLVED";
8419
- }>>>;
7354
+ resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8420
7355
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8421
7356
  confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8422
7357
  resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8472,14 +7407,7 @@ export declare const schemas: {
8472
7407
  description: z.ZodString;
8473
7408
  logoUrl: z.ZodString;
8474
7409
  authType: z.ZodString;
8475
- tierAvailability: z.ZodEnum<{
8476
- FREE: "FREE";
8477
- STARTER: "STARTER";
8478
- PRO: "PRO";
8479
- TEAM: "TEAM";
8480
- BUSINESS: "BUSINESS";
8481
- ENTERPRISE: "ENTERPRISE";
8482
- }>;
7410
+ tierAvailability: z.ZodString;
8483
7411
  lifecycle: z.ZodString;
8484
7412
  setupGuideUrl: z.ZodString;
8485
7413
  configSchema: z.ZodObject<{
@@ -8516,11 +7444,7 @@ export declare const schemas: {
8516
7444
  data: z.ZodArray<z.ZodObject<{
8517
7445
  inviteId: z.ZodNumber;
8518
7446
  email: z.ZodString;
8519
- roleOffered: z.ZodEnum<{
8520
- OWNER: "OWNER";
8521
- ADMIN: "ADMIN";
8522
- MEMBER: "MEMBER";
8523
- }>;
7447
+ roleOffered: z.ZodString;
8524
7448
  expiresAt: z.ZodString;
8525
7449
  consumedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8526
7450
  revokedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8552,19 +7476,8 @@ export declare const schemas: {
8552
7476
  userId: z.ZodNumber;
8553
7477
  email: z.ZodString;
8554
7478
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8555
- orgRole: z.ZodEnum<{
8556
- OWNER: "OWNER";
8557
- ADMIN: "ADMIN";
8558
- MEMBER: "MEMBER";
8559
- }>;
8560
- status: z.ZodEnum<{
8561
- INVITED: "INVITED";
8562
- ACTIVE: "ACTIVE";
8563
- SUSPENDED: "SUSPENDED";
8564
- LEFT: "LEFT";
8565
- REMOVED: "REMOVED";
8566
- DECLINED: "DECLINED";
8567
- }>;
7479
+ orgRole: z.ZodString;
7480
+ status: z.ZodString;
8568
7481
  createdAt: z.ZodString;
8569
7482
  }, z.core.$strict>>;
8570
7483
  hasNext: z.ZodBoolean;
@@ -8577,14 +7490,7 @@ export declare const schemas: {
8577
7490
  id: z.ZodString;
8578
7491
  organizationId: z.ZodNumber;
8579
7492
  name: z.ZodString;
8580
- type: z.ZodEnum<{
8581
- HTTP: "HTTP";
8582
- DNS: "DNS";
8583
- MCP_SERVER: "MCP_SERVER";
8584
- TCP: "TCP";
8585
- ICMP: "ICMP";
8586
- HEARTBEAT: "HEARTBEAT";
8587
- }>;
7493
+ type: z.ZodString;
8588
7494
  config: z.ZodUnion<readonly [z.ZodObject<{
8589
7495
  hostname: z.ZodString;
8590
7496
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -8635,62 +7541,13 @@ export declare const schemas: {
8635
7541
  frequencySeconds: z.ZodNumber;
8636
7542
  enabled: z.ZodBoolean;
8637
7543
  regions: z.ZodArray<z.ZodString>;
8638
- managedBy: z.ZodEnum<{
8639
- DASHBOARD: "DASHBOARD";
8640
- CLI: "CLI";
8641
- TERRAFORM: "TERRAFORM";
8642
- MCP: "MCP";
8643
- API: "API";
8644
- }>;
7544
+ managedBy: z.ZodString;
8645
7545
  createdAt: z.ZodString;
8646
7546
  updatedAt: z.ZodString;
8647
7547
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8648
7548
  id: z.ZodString;
8649
7549
  monitorId: z.ZodString;
8650
- assertionType: z.ZodEnum<{
8651
- status_code: "status_code";
8652
- response_time: "response_time";
8653
- body_contains: "body_contains";
8654
- json_path: "json_path";
8655
- header_value: "header_value";
8656
- regex_body: "regex_body";
8657
- dns_resolves: "dns_resolves";
8658
- dns_response_time: "dns_response_time";
8659
- dns_expected_ips: "dns_expected_ips";
8660
- dns_expected_cname: "dns_expected_cname";
8661
- dns_record_contains: "dns_record_contains";
8662
- dns_record_equals: "dns_record_equals";
8663
- dns_txt_contains: "dns_txt_contains";
8664
- dns_min_answers: "dns_min_answers";
8665
- dns_max_answers: "dns_max_answers";
8666
- dns_response_time_warn: "dns_response_time_warn";
8667
- dns_ttl_low: "dns_ttl_low";
8668
- dns_ttl_high: "dns_ttl_high";
8669
- mcp_connects: "mcp_connects";
8670
- mcp_response_time: "mcp_response_time";
8671
- mcp_has_capability: "mcp_has_capability";
8672
- mcp_tool_available: "mcp_tool_available";
8673
- mcp_min_tools: "mcp_min_tools";
8674
- mcp_protocol_version: "mcp_protocol_version";
8675
- mcp_response_time_warn: "mcp_response_time_warn";
8676
- mcp_tool_count_changed: "mcp_tool_count_changed";
8677
- ssl_expiry: "ssl_expiry";
8678
- response_size: "response_size";
8679
- redirect_count: "redirect_count";
8680
- redirect_target: "redirect_target";
8681
- response_time_warn: "response_time_warn";
8682
- tcp_connects: "tcp_connects";
8683
- tcp_response_time: "tcp_response_time";
8684
- tcp_response_time_warn: "tcp_response_time_warn";
8685
- icmp_reachable: "icmp_reachable";
8686
- icmp_response_time: "icmp_response_time";
8687
- icmp_response_time_warn: "icmp_response_time_warn";
8688
- icmp_packet_loss: "icmp_packet_loss";
8689
- heartbeat_received: "heartbeat_received";
8690
- heartbeat_max_interval: "heartbeat_max_interval";
8691
- heartbeat_interval_drift: "heartbeat_interval_drift";
8692
- heartbeat_payload_contains: "heartbeat_payload_contains";
8693
- }>;
7550
+ assertionType: z.ZodString;
8694
7551
  config: z.ZodUnion<readonly [z.ZodObject<{
8695
7552
  type: z.ZodLiteral<"body_contains">;
8696
7553
  substring: z.ZodString;
@@ -8852,10 +7709,7 @@ export declare const schemas: {
8852
7709
  type: z.ZodLiteral<"tcp_response_time_warn">;
8853
7710
  warnMs: z.ZodNumber;
8854
7711
  }, z.core.$strict>]>;
8855
- severity: z.ZodEnum<{
8856
- fail: "fail";
8857
- warn: "warn";
8858
- }>;
7712
+ severity: z.ZodString;
8859
7713
  }, z.core.$strict>>>>;
8860
7714
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8861
7715
  id: z.ZodString;
@@ -8903,8 +7757,8 @@ export declare const schemas: {
8903
7757
  }>>;
8904
7758
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8905
7759
  severity: z.ZodEnum<{
8906
- degraded: "degraded";
8907
7760
  down: "down";
7761
+ degraded: "degraded";
8908
7762
  }>;
8909
7763
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
8910
7764
  all_exceed: "all_exceed";
@@ -8929,13 +7783,7 @@ export declare const schemas: {
8929
7783
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8930
7784
  }, z.core.$strict>>>;
8931
7785
  alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
8932
- currentStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
8933
- up: "up";
8934
- degraded: "degraded";
8935
- down: "down";
8936
- paused: "paused";
8937
- unknown: "unknown";
8938
- }>>>;
7786
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8939
7787
  }, z.core.$strict>>;
8940
7788
  hasNext: z.ZodBoolean;
8941
7789
  hasPrev: z.ZodBoolean;
@@ -8951,14 +7799,7 @@ export declare const schemas: {
8951
7799
  id: z.ZodString;
8952
7800
  organizationId: z.ZodNumber;
8953
7801
  name: z.ZodString;
8954
- type: z.ZodEnum<{
8955
- HTTP: "HTTP";
8956
- DNS: "DNS";
8957
- MCP_SERVER: "MCP_SERVER";
8958
- TCP: "TCP";
8959
- ICMP: "ICMP";
8960
- HEARTBEAT: "HEARTBEAT";
8961
- }>;
7802
+ type: z.ZodString;
8962
7803
  config: z.ZodUnion<readonly [z.ZodObject<{
8963
7804
  hostname: z.ZodString;
8964
7805
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -9009,62 +7850,13 @@ export declare const schemas: {
9009
7850
  frequencySeconds: z.ZodNumber;
9010
7851
  enabled: z.ZodBoolean;
9011
7852
  regions: z.ZodArray<z.ZodString>;
9012
- managedBy: z.ZodEnum<{
9013
- DASHBOARD: "DASHBOARD";
9014
- CLI: "CLI";
9015
- TERRAFORM: "TERRAFORM";
9016
- MCP: "MCP";
9017
- API: "API";
9018
- }>;
7853
+ managedBy: z.ZodString;
9019
7854
  createdAt: z.ZodString;
9020
7855
  updatedAt: z.ZodString;
9021
7856
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9022
7857
  id: z.ZodString;
9023
7858
  monitorId: z.ZodString;
9024
- assertionType: z.ZodEnum<{
9025
- status_code: "status_code";
9026
- response_time: "response_time";
9027
- body_contains: "body_contains";
9028
- json_path: "json_path";
9029
- header_value: "header_value";
9030
- regex_body: "regex_body";
9031
- dns_resolves: "dns_resolves";
9032
- dns_response_time: "dns_response_time";
9033
- dns_expected_ips: "dns_expected_ips";
9034
- dns_expected_cname: "dns_expected_cname";
9035
- dns_record_contains: "dns_record_contains";
9036
- dns_record_equals: "dns_record_equals";
9037
- dns_txt_contains: "dns_txt_contains";
9038
- dns_min_answers: "dns_min_answers";
9039
- dns_max_answers: "dns_max_answers";
9040
- dns_response_time_warn: "dns_response_time_warn";
9041
- dns_ttl_low: "dns_ttl_low";
9042
- dns_ttl_high: "dns_ttl_high";
9043
- mcp_connects: "mcp_connects";
9044
- mcp_response_time: "mcp_response_time";
9045
- mcp_has_capability: "mcp_has_capability";
9046
- mcp_tool_available: "mcp_tool_available";
9047
- mcp_min_tools: "mcp_min_tools";
9048
- mcp_protocol_version: "mcp_protocol_version";
9049
- mcp_response_time_warn: "mcp_response_time_warn";
9050
- mcp_tool_count_changed: "mcp_tool_count_changed";
9051
- ssl_expiry: "ssl_expiry";
9052
- response_size: "response_size";
9053
- redirect_count: "redirect_count";
9054
- redirect_target: "redirect_target";
9055
- response_time_warn: "response_time_warn";
9056
- tcp_connects: "tcp_connects";
9057
- tcp_response_time: "tcp_response_time";
9058
- tcp_response_time_warn: "tcp_response_time_warn";
9059
- icmp_reachable: "icmp_reachable";
9060
- icmp_response_time: "icmp_response_time";
9061
- icmp_response_time_warn: "icmp_response_time_warn";
9062
- icmp_packet_loss: "icmp_packet_loss";
9063
- heartbeat_received: "heartbeat_received";
9064
- heartbeat_max_interval: "heartbeat_max_interval";
9065
- heartbeat_interval_drift: "heartbeat_interval_drift";
9066
- heartbeat_payload_contains: "heartbeat_payload_contains";
9067
- }>;
7859
+ assertionType: z.ZodString;
9068
7860
  config: z.ZodUnion<readonly [z.ZodObject<{
9069
7861
  type: z.ZodLiteral<"body_contains">;
9070
7862
  substring: z.ZodString;
@@ -9226,10 +8018,7 @@ export declare const schemas: {
9226
8018
  type: z.ZodLiteral<"tcp_response_time_warn">;
9227
8019
  warnMs: z.ZodNumber;
9228
8020
  }, z.core.$strict>]>;
9229
- severity: z.ZodEnum<{
9230
- fail: "fail";
9231
- warn: "warn";
9232
- }>;
8021
+ severity: z.ZodString;
9233
8022
  }, z.core.$strict>>>>;
9234
8023
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9235
8024
  id: z.ZodString;
@@ -9277,8 +8066,8 @@ export declare const schemas: {
9277
8066
  }>>;
9278
8067
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9279
8068
  severity: z.ZodEnum<{
9280
- degraded: "degraded";
9281
8069
  down: "down";
8070
+ degraded: "degraded";
9282
8071
  }>;
9283
8072
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9284
8073
  all_exceed: "all_exceed";
@@ -9303,21 +8092,10 @@ export declare const schemas: {
9303
8092
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9304
8093
  }, z.core.$strict>>>;
9305
8094
  alertChannelIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
9306
- currentStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9307
- up: "up";
9308
- degraded: "degraded";
9309
- down: "down";
9310
- paused: "paused";
9311
- unknown: "unknown";
9312
- }>>>;
8095
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9313
8096
  }, z.core.$strict>;
9314
8097
  changedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9315
- changedVia: z.ZodEnum<{
9316
- DASHBOARD: "DASHBOARD";
9317
- CLI: "CLI";
9318
- TERRAFORM: "TERRAFORM";
9319
- API: "API";
9320
- }>;
8098
+ changedVia: z.ZodString;
9321
8099
  changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9322
8100
  createdAt: z.ZodString;
9323
8101
  }, z.core.$strict>>;
@@ -9332,19 +8110,8 @@ export declare const schemas: {
9332
8110
  incidentId: z.ZodString;
9333
8111
  policyId: z.ZodString;
9334
8112
  policyName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9335
- status: z.ZodEnum<{
9336
- PENDING: "PENDING";
9337
- DELIVERED: "DELIVERED";
9338
- DISPATCHING: "DISPATCHING";
9339
- ESCALATING: "ESCALATING";
9340
- ACKNOWLEDGED: "ACKNOWLEDGED";
9341
- COMPLETED: "COMPLETED";
9342
- }>;
9343
- completionReason: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9344
- RESOLVED: "RESOLVED";
9345
- EXHAUSTED: "EXHAUSTED";
9346
- NO_STEPS: "NO_STEPS";
9347
- }>>>;
8113
+ status: z.ZodString;
8114
+ completionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9348
8115
  currentStep: z.ZodNumber;
9349
8116
  totalSteps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9350
8117
  acknowledgedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -9357,18 +8124,8 @@ export declare const schemas: {
9357
8124
  channelId: z.ZodString;
9358
8125
  channel: z.ZodString;
9359
8126
  channelType: z.ZodString;
9360
- status: z.ZodEnum<{
9361
- PENDING: "PENDING";
9362
- DELIVERED: "DELIVERED";
9363
- RETRY_PENDING: "RETRY_PENDING";
9364
- FAILED: "FAILED";
9365
- CANCELLED: "CANCELLED";
9366
- }>;
9367
- eventType: z.ZodEnum<{
9368
- INCIDENT_CREATED: "INCIDENT_CREATED";
9369
- INCIDENT_RESOLVED: "INCIDENT_RESOLVED";
9370
- INCIDENT_REOPENED: "INCIDENT_REOPENED";
9371
- }>;
8127
+ status: z.ZodString;
8128
+ eventType: z.ZodString;
9372
8129
  stepNumber: z.ZodNumber;
9373
8130
  fireCount: z.ZodNumber;
9374
8131
  attemptCount: z.ZodNumber;
@@ -9461,29 +8218,17 @@ export declare const schemas: {
9461
8218
  }, z.core.$strict>>>;
9462
8219
  defaultAlertChannels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
9463
8220
  defaultEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9464
- healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9465
- COUNT: "COUNT";
9466
- PERCENTAGE: "PERCENTAGE";
9467
- }>>>;
8221
+ healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9468
8222
  healthThresholdValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9469
8223
  suppressMemberAlerts: z.ZodBoolean;
9470
8224
  confirmationDelaySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9471
8225
  recoveryCooldownMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9472
8226
  health: z.ZodObject<{
9473
- status: z.ZodEnum<{
9474
- degraded: "degraded";
9475
- down: "down";
9476
- operational: "operational";
9477
- maintenance: "maintenance";
9478
- }>;
8227
+ status: z.ZodString;
9479
8228
  totalMembers: z.ZodNumber;
9480
8229
  operationalCount: z.ZodNumber;
9481
8230
  activeIncidents: z.ZodNumber;
9482
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9483
- degraded: "degraded";
9484
- down: "down";
9485
- healthy: "healthy";
9486
- }>>>;
8231
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9487
8232
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9488
8233
  }, z.core.$strict>;
9489
8234
  members: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -9495,12 +8240,7 @@ export declare const schemas: {
9495
8240
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9496
8241
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9497
8242
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9498
- status: z.ZodEnum<{
9499
- degraded: "degraded";
9500
- down: "down";
9501
- operational: "operational";
9502
- maintenance: "maintenance";
9503
- }>;
8243
+ status: z.ZodString;
9504
8244
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9505
8245
  createdAt: z.ZodString;
9506
8246
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -9511,13 +8251,7 @@ export declare const schemas: {
9511
8251
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9512
8252
  environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9513
8253
  }, z.core.$strict>>>>;
9514
- managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9515
- DASHBOARD: "DASHBOARD";
9516
- CLI: "CLI";
9517
- TERRAFORM: "TERRAFORM";
9518
- MCP: "MCP";
9519
- API: "API";
9520
- }>>>;
8254
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9521
8255
  createdAt: z.ZodString;
9522
8256
  updatedAt: z.ZodString;
9523
8257
  }, z.core.$strict>>;
@@ -9697,11 +8431,7 @@ export declare const schemas: {
9697
8431
  lastSeenAt: z.ZodString;
9698
8432
  isGroup: z.ZodBoolean;
9699
8433
  }, z.core.$strict>>>;
9700
- alertSensitivity: z.ZodEnum<{
9701
- ALL: "ALL";
9702
- INCIDENTS_ONLY: "INCIDENTS_ONLY";
9703
- MAJOR_ONLY: "MAJOR_ONLY";
9704
- }>;
8434
+ alertSensitivity: z.ZodString;
9705
8435
  subscribedAt: z.ZodString;
9706
8436
  }, z.core.$strict>>;
9707
8437
  hasNext: z.ZodBoolean;
@@ -9716,20 +8446,10 @@ export declare const schemas: {
9716
8446
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9717
8447
  name: z.ZodString;
9718
8448
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9719
- type: z.ZodEnum<{
9720
- MONITOR: "MONITOR";
9721
- GROUP: "GROUP";
9722
- STATIC: "STATIC";
9723
- }>;
8449
+ type: z.ZodString;
9724
8450
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9725
8451
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9726
- currentStatus: z.ZodEnum<{
9727
- OPERATIONAL: "OPERATIONAL";
9728
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
9729
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
9730
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
9731
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
9732
- }>;
8452
+ currentStatus: z.ZodString;
9733
8453
  showUptime: z.ZodBoolean;
9734
8454
  displayOrder: z.ZodNumber;
9735
8455
  pageOrder: z.ZodNumber;
@@ -9758,20 +8478,10 @@ export declare const schemas: {
9758
8478
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9759
8479
  name: z.ZodString;
9760
8480
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9761
- type: z.ZodEnum<{
9762
- MONITOR: "MONITOR";
9763
- GROUP: "GROUP";
9764
- STATIC: "STATIC";
9765
- }>;
8481
+ type: z.ZodString;
9766
8482
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9767
8483
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9768
- currentStatus: z.ZodEnum<{
9769
- OPERATIONAL: "OPERATIONAL";
9770
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
9771
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
9772
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
9773
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
9774
- }>;
8484
+ currentStatus: z.ZodString;
9775
8485
  showUptime: z.ZodBoolean;
9776
8486
  displayOrder: z.ZodNumber;
9777
8487
  pageOrder: z.ZodNumber;
@@ -9792,19 +8502,8 @@ export declare const schemas: {
9792
8502
  data: z.ZodArray<z.ZodObject<{
9793
8503
  id: z.ZodString;
9794
8504
  hostname: z.ZodString;
9795
- status: z.ZodEnum<{
9796
- FAILED: "FAILED";
9797
- ACTIVE: "ACTIVE";
9798
- REMOVED: "REMOVED";
9799
- PENDING_VERIFICATION: "PENDING_VERIFICATION";
9800
- VERIFICATION_FAILED: "VERIFICATION_FAILED";
9801
- VERIFIED: "VERIFIED";
9802
- SSL_PENDING: "SSL_PENDING";
9803
- }>;
9804
- verificationMethod: z.ZodEnum<{
9805
- CNAME: "CNAME";
9806
- TXT: "TXT";
9807
- }>;
8505
+ status: z.ZodString;
8506
+ verificationMethod: z.ZodString;
9808
8507
  verificationToken: z.ZodString;
9809
8508
  verificationCnameTarget: z.ZodString;
9810
8509
  verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -9844,33 +8543,13 @@ export declare const schemas: {
9844
8543
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9845
8544
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9846
8545
  }, z.core.$strict>;
9847
- visibility: z.ZodEnum<{
9848
- PUBLIC: "PUBLIC";
9849
- PASSWORD: "PASSWORD";
9850
- IP_RESTRICTED: "IP_RESTRICTED";
9851
- }>;
8546
+ visibility: z.ZodString;
9852
8547
  enabled: z.ZodBoolean;
9853
- incidentMode: z.ZodEnum<{
9854
- MANUAL: "MANUAL";
9855
- REVIEW: "REVIEW";
9856
- AUTOMATIC: "AUTOMATIC";
9857
- }>;
8548
+ incidentMode: z.ZodString;
9858
8549
  componentCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9859
8550
  subscriberCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9860
- overallStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9861
- OPERATIONAL: "OPERATIONAL";
9862
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
9863
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
9864
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
9865
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
9866
- }>>>;
9867
- managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9868
- DASHBOARD: "DASHBOARD";
9869
- CLI: "CLI";
9870
- TERRAFORM: "TERRAFORM";
9871
- MCP: "MCP";
9872
- API: "API";
9873
- }>>>;
8551
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8552
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9874
8553
  createdAt: z.ZodString;
9875
8554
  updatedAt: z.ZodString;
9876
8555
  }, z.core.$strict>>;
@@ -9884,18 +8563,8 @@ export declare const schemas: {
9884
8563
  id: z.ZodString;
9885
8564
  statusPageId: z.ZodString;
9886
8565
  title: z.ZodString;
9887
- status: z.ZodEnum<{
9888
- RESOLVED: "RESOLVED";
9889
- INVESTIGATING: "INVESTIGATING";
9890
- IDENTIFIED: "IDENTIFIED";
9891
- MONITORING: "MONITORING";
9892
- }>;
9893
- impact: z.ZodEnum<{
9894
- NONE: "NONE";
9895
- MINOR: "MINOR";
9896
- MAJOR: "MAJOR";
9897
- CRITICAL: "CRITICAL";
9898
- }>;
8566
+ status: z.ZodString;
8567
+ impact: z.ZodString;
9899
8568
  scheduled: z.ZodBoolean;
9900
8569
  scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9901
8570
  scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -9909,28 +8578,14 @@ export declare const schemas: {
9909
8578
  postmortemUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9910
8579
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9911
8580
  statusPageComponentId: z.ZodString;
9912
- componentStatus: z.ZodEnum<{
9913
- OPERATIONAL: "OPERATIONAL";
9914
- DEGRADED_PERFORMANCE: "DEGRADED_PERFORMANCE";
9915
- PARTIAL_OUTAGE: "PARTIAL_OUTAGE";
9916
- MAJOR_OUTAGE: "MAJOR_OUTAGE";
9917
- UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
9918
- }>;
8581
+ componentStatus: z.ZodString;
9919
8582
  componentName: z.ZodString;
9920
8583
  }, z.core.$strict>>>>;
9921
8584
  updates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9922
8585
  id: z.ZodString;
9923
- status: z.ZodEnum<{
9924
- RESOLVED: "RESOLVED";
9925
- INVESTIGATING: "INVESTIGATING";
9926
- IDENTIFIED: "IDENTIFIED";
9927
- MONITORING: "MONITORING";
9928
- }>;
8586
+ status: z.ZodString;
9929
8587
  body: z.ZodString;
9930
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9931
- SYSTEM: "SYSTEM";
9932
- USER: "USER";
9933
- }>>>;
8588
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9934
8589
  createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9935
8590
  notifySubscribers: z.ZodBoolean;
9936
8591
  createdAt: z.ZodString;