@devhelm/sdk 0.3.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2464,6 +2464,32 @@ export declare const schemas: {
2464
2464
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2465
2465
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2466
2466
  }, z.core.$strict>;
2467
+ MemberRoleChangedMetadata: z.ZodObject<{
2468
+ kind: z.ZodLiteral<"member_role_changed">;
2469
+ oldRole: z.ZodEnum<{
2470
+ OWNER: "OWNER";
2471
+ ADMIN: "ADMIN";
2472
+ MEMBER: "MEMBER";
2473
+ }>;
2474
+ newRole: z.ZodEnum<{
2475
+ OWNER: "OWNER";
2476
+ ADMIN: "ADMIN";
2477
+ MEMBER: "MEMBER";
2478
+ }>;
2479
+ }, z.core.$strict>;
2480
+ AuditMetadata: z.ZodObject<{
2481
+ kind: z.ZodLiteral<"member_role_changed">;
2482
+ oldRole: z.ZodEnum<{
2483
+ OWNER: "OWNER";
2484
+ ADMIN: "ADMIN";
2485
+ MEMBER: "MEMBER";
2486
+ }>;
2487
+ newRole: z.ZodEnum<{
2488
+ OWNER: "OWNER";
2489
+ ADMIN: "ADMIN";
2490
+ MEMBER: "MEMBER";
2491
+ }>;
2492
+ }, z.core.$strict>;
2467
2493
  AuditEventDto: z.ZodObject<{
2468
2494
  id: z.ZodNumber;
2469
2495
  actorId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -2472,7 +2498,19 @@ export declare const schemas: {
2472
2498
  resourceType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2473
2499
  resourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2474
2500
  resourceName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2475
- metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodObject<{}, z.core.$strict>>>>>;
2501
+ metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2502
+ kind: z.ZodLiteral<"member_role_changed">;
2503
+ oldRole: z.ZodEnum<{
2504
+ OWNER: "OWNER";
2505
+ ADMIN: "ADMIN";
2506
+ MEMBER: "MEMBER";
2507
+ }>;
2508
+ newRole: z.ZodEnum<{
2509
+ OWNER: "OWNER";
2510
+ ADMIN: "ADMIN";
2511
+ MEMBER: "MEMBER";
2512
+ }>;
2513
+ }, z.core.$strict>>>;
2476
2514
  createdAt: z.ZodString;
2477
2515
  }, z.core.$strict>;
2478
2516
  KeyInfo: z.ZodObject<{
@@ -2555,14 +2593,22 @@ export declare const schemas: {
2555
2593
  windowMs: z.ZodNumber;
2556
2594
  }, z.core.$strict>;
2557
2595
  }, z.core.$strict>;
2596
+ IncidentRef: z.ZodObject<{
2597
+ id: z.ZodString;
2598
+ title: z.ZodString;
2599
+ impact: z.ZodString;
2600
+ }, z.core.$strict>;
2558
2601
  ComponentUptimeDayDto: z.ZodObject<{
2559
2602
  date: z.ZodString;
2560
2603
  partialOutageSeconds: z.ZodNumber;
2561
2604
  majorOutageSeconds: z.ZodNumber;
2562
2605
  degradedSeconds: z.ZodNumber;
2563
2606
  uptimePercentage: z.ZodNumber;
2564
- eventsJson: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2565
- source: z.ZodString;
2607
+ incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2608
+ id: z.ZodString;
2609
+ title: z.ZodString;
2610
+ impact: z.ZodString;
2611
+ }, z.core.$strict>>>>;
2566
2612
  }, z.core.$strict>;
2567
2613
  BatchComponentUptimeDto: z.ZodObject<{
2568
2614
  components: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
@@ -2571,8 +2617,11 @@ export declare const schemas: {
2571
2617
  majorOutageSeconds: z.ZodNumber;
2572
2618
  degradedSeconds: z.ZodNumber;
2573
2619
  uptimePercentage: z.ZodNumber;
2574
- eventsJson: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2575
- source: z.ZodString;
2620
+ incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2621
+ id: z.ZodString;
2622
+ title: z.ZodString;
2623
+ impact: z.ZodString;
2624
+ }, z.core.$strict>>>>;
2576
2625
  }, z.core.$strict>>>;
2577
2626
  }, z.core.$strict>;
2578
2627
  FailureDetail: z.ZodObject<{
@@ -2609,9 +2658,24 @@ export declare const schemas: {
2609
2658
  cipherSuite: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2610
2659
  chainValid: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2611
2660
  }, z.core.$strict>;
2661
+ TimingPhasesDto: z.ZodObject<{
2662
+ dns_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2663
+ tcp_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2664
+ tls_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2665
+ ttfb_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2666
+ download_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2667
+ total_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2668
+ }, z.core.$strict>;
2612
2669
  Http: z.ZodObject<{
2613
2670
  check_type: z.ZodLiteral<"http">;
2614
- timing: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodObject<{}, z.core.$strict>>>>>;
2671
+ timing: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2672
+ dns_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2673
+ tcp_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2674
+ tls_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2675
+ ttfb_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2676
+ download_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2677
+ total_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2678
+ }, z.core.$strict>>>;
2615
2679
  bodyTruncated: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2616
2680
  }, z.core.$strict>;
2617
2681
  Tcp: z.ZodObject<{
@@ -2651,7 +2715,14 @@ export declare const schemas: {
2651
2715
  }, z.core.$strict>;
2652
2716
  CheckTypeDetailsDto: z.ZodDiscriminatedUnion<[z.ZodObject<{
2653
2717
  check_type: z.ZodLiteral<"http">;
2654
- timing: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodObject<{}, z.core.$strict>>>>>;
2718
+ timing: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2719
+ dns_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2720
+ tcp_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2721
+ tls_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2722
+ ttfb_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2723
+ download_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2724
+ total_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2725
+ }, z.core.$strict>>>;
2655
2726
  bodyTruncated: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2656
2727
  }, z.core.$strict>, z.ZodObject<{
2657
2728
  check_type: z.ZodLiteral<"tcp">;
@@ -2717,7 +2788,14 @@ export declare const schemas: {
2717
2788
  responseSizeBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2718
2789
  checkDetails: z.ZodOptional<z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
2719
2790
  check_type: z.ZodLiteral<"http">;
2720
- timing: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodObject<{}, z.core.$strict>>>>>;
2791
+ timing: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2792
+ dns_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2793
+ tcp_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2794
+ tls_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2795
+ ttfb_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2796
+ download_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2797
+ total_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2798
+ }, z.core.$strict>>>;
2721
2799
  bodyTruncated: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2722
2800
  }, z.core.$strict>, z.ZodObject<{
2723
2801
  check_type: z.ZodLiteral<"tcp">;
@@ -2792,7 +2870,14 @@ export declare const schemas: {
2792
2870
  responseSizeBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2793
2871
  checkDetails: z.ZodOptional<z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
2794
2872
  check_type: z.ZodLiteral<"http">;
2795
- timing: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodObject<{}, z.core.$strict>>>>>;
2873
+ timing: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2874
+ dns_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2875
+ tcp_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2876
+ tls_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2877
+ ttfb_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2878
+ download_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2879
+ total_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2880
+ }, z.core.$strict>>>;
2796
2881
  bodyTruncated: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2797
2882
  }, z.core.$strict>, z.ZodObject<{
2798
2883
  check_type: z.ZodLiteral<"tcp">;
@@ -2829,6 +2914,101 @@ export declare const schemas: {
2829
2914
  }, z.core.$strict>>>;
2830
2915
  checkId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2831
2916
  }, z.core.$strict>;
2917
+ RuleEvaluationDto: z.ZodObject<{
2918
+ id: z.ZodString;
2919
+ occurredAt: z.ZodString;
2920
+ monitorId: z.ZodString;
2921
+ region: z.ZodString;
2922
+ policySnapshotHashHex: z.ZodString;
2923
+ ruleIndex: z.ZodNumber;
2924
+ ruleType: z.ZodString;
2925
+ ruleScope: z.ZodString;
2926
+ inputResultIds: z.ZodArray<z.ZodString>;
2927
+ outputMatched: z.ZodBoolean;
2928
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
2929
+ engineVersion: z.ZodString;
2930
+ checkId: z.ZodString;
2931
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2932
+ }, z.core.$strict>;
2933
+ StateTransitionDetails: z.ZodObject<{
2934
+ source: z.ZodEnum<{
2935
+ pipeline: "pipeline";
2936
+ "public-api": "public-api";
2937
+ }>;
2938
+ }, z.core.$strict>;
2939
+ IncidentStateTransitionDto: z.ZodObject<{
2940
+ id: z.ZodString;
2941
+ occurredAt: z.ZodString;
2942
+ monitorId: z.ZodString;
2943
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2944
+ fromStatus: z.ZodString;
2945
+ toStatus: z.ZodString;
2946
+ reason: z.ZodString;
2947
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
2948
+ affectedRegions: z.ZodArray<z.ZodString>;
2949
+ policySnapshotHashHex: z.ZodString;
2950
+ engineVersion: z.ZodString;
2951
+ checkId: z.ZodString;
2952
+ details: z.ZodObject<{
2953
+ source: z.ZodEnum<{
2954
+ pipeline: "pipeline";
2955
+ "public-api": "public-api";
2956
+ }>;
2957
+ }, z.core.$strict>;
2958
+ }, z.core.$strict>;
2959
+ PolicySnapshotDto: z.ZodObject<{
2960
+ hashHex: z.ZodString;
2961
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
2962
+ engineVersion: z.ZodString;
2963
+ firstSeenAt: z.ZodString;
2964
+ lastSeenAt: z.ZodString;
2965
+ }, z.core.$strict>;
2966
+ CheckTraceDto: z.ZodObject<{
2967
+ checkId: z.ZodString;
2968
+ evaluations: z.ZodArray<z.ZodObject<{
2969
+ id: z.ZodString;
2970
+ occurredAt: z.ZodString;
2971
+ monitorId: z.ZodString;
2972
+ region: z.ZodString;
2973
+ policySnapshotHashHex: z.ZodString;
2974
+ ruleIndex: z.ZodNumber;
2975
+ ruleType: z.ZodString;
2976
+ ruleScope: z.ZodString;
2977
+ inputResultIds: z.ZodArray<z.ZodString>;
2978
+ outputMatched: z.ZodBoolean;
2979
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
2980
+ engineVersion: z.ZodString;
2981
+ checkId: z.ZodString;
2982
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2983
+ }, z.core.$strict>>;
2984
+ transitions: z.ZodArray<z.ZodObject<{
2985
+ id: z.ZodString;
2986
+ occurredAt: z.ZodString;
2987
+ monitorId: z.ZodString;
2988
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2989
+ fromStatus: z.ZodString;
2990
+ toStatus: z.ZodString;
2991
+ reason: z.ZodString;
2992
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
2993
+ affectedRegions: z.ZodArray<z.ZodString>;
2994
+ policySnapshotHashHex: z.ZodString;
2995
+ engineVersion: z.ZodString;
2996
+ checkId: z.ZodString;
2997
+ details: z.ZodObject<{
2998
+ source: z.ZodEnum<{
2999
+ pipeline: "pipeline";
3000
+ "public-api": "public-api";
3001
+ }>;
3002
+ }, z.core.$strict>;
3003
+ }, z.core.$strict>>;
3004
+ policySnapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3005
+ hashHex: z.ZodString;
3006
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
3007
+ engineVersion: z.ZodString;
3008
+ firstSeenAt: z.ZodString;
3009
+ lastSeenAt: z.ZodString;
3010
+ }, z.core.$strict>>>;
3011
+ }, z.core.$strict>;
2832
3012
  ComponentImpact: z.ZodObject<{
2833
3013
  componentId: z.ZodString;
2834
3014
  componentName: z.ZodString;
@@ -2894,7 +3074,14 @@ export declare const schemas: {
2894
3074
  responseSizeBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2895
3075
  checkDetails: z.ZodOptional<z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
2896
3076
  check_type: z.ZodLiteral<"http">;
2897
- timing: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodObject<{}, z.core.$strict>>>>>;
3077
+ timing: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3078
+ dns_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3079
+ tcp_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3080
+ tls_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3081
+ ttfb_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3082
+ download_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3083
+ total_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3084
+ }, z.core.$strict>>>;
2898
3085
  bodyTruncated: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2899
3086
  }, z.core.$strict>, z.ZodObject<{
2900
3087
  check_type: z.ZodLiteral<"tcp">;
@@ -3179,6 +3366,10 @@ export declare const schemas: {
3179
3366
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3180
3367
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3181
3368
  resourceGroupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3369
+ triggeringCheckId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3370
+ triggeredByRuleSnapshotHashHex: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3371
+ triggeredByRuleIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3372
+ engineVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3182
3373
  }, z.core.$strict>;
3183
3374
  IncidentUpdateDto: z.ZodObject<{
3184
3375
  id: z.ZodString;
@@ -3275,6 +3466,10 @@ export declare const schemas: {
3275
3466
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3276
3467
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3277
3468
  resourceGroupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3469
+ triggeringCheckId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3470
+ triggeredByRuleSnapshotHashHex: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3471
+ triggeredByRuleIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3472
+ engineVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3278
3473
  }, z.core.$strict>;
3279
3474
  updates: z.ZodArray<z.ZodObject<{
3280
3475
  id: z.ZodString;
@@ -3392,10 +3587,50 @@ export declare const schemas: {
3392
3587
  monitorRegionCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3393
3588
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3394
3589
  }, z.core.$strict>;
3395
- IncidentRef: z.ZodObject<{
3396
- id: z.ZodString;
3397
- title: z.ZodString;
3398
- impact: z.ZodString;
3590
+ IncidentTimelineDto: z.ZodObject<{
3591
+ transitions: z.ZodArray<z.ZodObject<{
3592
+ id: z.ZodString;
3593
+ occurredAt: z.ZodString;
3594
+ monitorId: z.ZodString;
3595
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3596
+ fromStatus: z.ZodString;
3597
+ toStatus: z.ZodString;
3598
+ reason: z.ZodString;
3599
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
3600
+ affectedRegions: z.ZodArray<z.ZodString>;
3601
+ policySnapshotHashHex: z.ZodString;
3602
+ engineVersion: z.ZodString;
3603
+ checkId: z.ZodString;
3604
+ details: z.ZodObject<{
3605
+ source: z.ZodEnum<{
3606
+ pipeline: "pipeline";
3607
+ "public-api": "public-api";
3608
+ }>;
3609
+ }, z.core.$strict>;
3610
+ }, z.core.$strict>>;
3611
+ triggeringEvaluations: z.ZodArray<z.ZodObject<{
3612
+ id: z.ZodString;
3613
+ occurredAt: z.ZodString;
3614
+ monitorId: z.ZodString;
3615
+ region: z.ZodString;
3616
+ policySnapshotHashHex: z.ZodString;
3617
+ ruleIndex: z.ZodNumber;
3618
+ ruleType: z.ZodString;
3619
+ ruleScope: z.ZodString;
3620
+ inputResultIds: z.ZodArray<z.ZodString>;
3621
+ outputMatched: z.ZodBoolean;
3622
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
3623
+ engineVersion: z.ZodString;
3624
+ checkId: z.ZodString;
3625
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3626
+ }, z.core.$strict>>;
3627
+ policySnapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3628
+ hashHex: z.ZodString;
3629
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
3630
+ engineVersion: z.ZodString;
3631
+ firstSeenAt: z.ZodString;
3632
+ lastSeenAt: z.ZodString;
3633
+ }, z.core.$strict>>>;
3399
3634
  }, z.core.$strict>;
3400
3635
  IntegrationFieldDto: z.ZodObject<{
3401
3636
  key: z.ZodString;
@@ -5318,8 +5553,11 @@ export declare const schemas: {
5318
5553
  majorOutageSeconds: z.ZodNumber;
5319
5554
  degradedSeconds: z.ZodNumber;
5320
5555
  uptimePercentage: z.ZodNumber;
5321
- eventsJson: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5322
- source: z.ZodString;
5556
+ incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
5557
+ id: z.ZodString;
5558
+ title: z.ZodString;
5559
+ impact: z.ZodString;
5560
+ }, z.core.$strict>>>>;
5323
5561
  }, z.core.$strict>>>;
5324
5562
  }, z.core.$strict>;
5325
5563
  }, z.core.$strict>;
@@ -5332,6 +5570,54 @@ export declare const schemas: {
5332
5570
  }, z.core.$strict>>;
5333
5571
  }, z.core.$strict>;
5334
5572
  }, z.core.$strict>;
5573
+ SingleValueResponseCheckTraceDto: z.ZodObject<{
5574
+ data: z.ZodObject<{
5575
+ checkId: z.ZodString;
5576
+ evaluations: z.ZodArray<z.ZodObject<{
5577
+ id: z.ZodString;
5578
+ occurredAt: z.ZodString;
5579
+ monitorId: z.ZodString;
5580
+ region: z.ZodString;
5581
+ policySnapshotHashHex: z.ZodString;
5582
+ ruleIndex: z.ZodNumber;
5583
+ ruleType: z.ZodString;
5584
+ ruleScope: z.ZodString;
5585
+ inputResultIds: z.ZodArray<z.ZodString>;
5586
+ outputMatched: z.ZodBoolean;
5587
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
5588
+ engineVersion: z.ZodString;
5589
+ checkId: z.ZodString;
5590
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5591
+ }, z.core.$strict>>;
5592
+ transitions: z.ZodArray<z.ZodObject<{
5593
+ id: z.ZodString;
5594
+ occurredAt: z.ZodString;
5595
+ monitorId: z.ZodString;
5596
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5597
+ fromStatus: z.ZodString;
5598
+ toStatus: z.ZodString;
5599
+ reason: z.ZodString;
5600
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
5601
+ affectedRegions: z.ZodArray<z.ZodString>;
5602
+ policySnapshotHashHex: z.ZodString;
5603
+ engineVersion: z.ZodString;
5604
+ checkId: z.ZodString;
5605
+ details: z.ZodObject<{
5606
+ source: z.ZodEnum<{
5607
+ pipeline: "pipeline";
5608
+ "public-api": "public-api";
5609
+ }>;
5610
+ }, z.core.$strict>;
5611
+ }, z.core.$strict>>;
5612
+ policySnapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5613
+ hashHex: z.ZodString;
5614
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
5615
+ engineVersion: z.ZodString;
5616
+ firstSeenAt: z.ZodString;
5617
+ lastSeenAt: z.ZodString;
5618
+ }, z.core.$strict>>>;
5619
+ }, z.core.$strict>;
5620
+ }, z.core.$strict>;
5335
5621
  SingleValueResponseDashboardOverviewDto: z.ZodObject<{
5336
5622
  data: z.ZodObject<{
5337
5623
  monitors: z.ZodObject<{
@@ -5464,6 +5750,10 @@ export declare const schemas: {
5464
5750
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5465
5751
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5466
5752
  resourceGroupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5753
+ triggeringCheckId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5754
+ triggeredByRuleSnapshotHashHex: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5755
+ triggeredByRuleIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5756
+ engineVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5467
5757
  }, z.core.$strict>;
5468
5758
  updates: z.ZodArray<z.ZodObject<{
5469
5759
  id: z.ZodString;
@@ -5555,6 +5845,53 @@ export declare const schemas: {
5555
5845
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5556
5846
  }, z.core.$strict>;
5557
5847
  }, z.core.$strict>;
5848
+ SingleValueResponseIncidentTimelineDto: z.ZodObject<{
5849
+ data: z.ZodObject<{
5850
+ transitions: z.ZodArray<z.ZodObject<{
5851
+ id: z.ZodString;
5852
+ occurredAt: z.ZodString;
5853
+ monitorId: z.ZodString;
5854
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5855
+ fromStatus: z.ZodString;
5856
+ toStatus: z.ZodString;
5857
+ reason: z.ZodString;
5858
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
5859
+ affectedRegions: z.ZodArray<z.ZodString>;
5860
+ policySnapshotHashHex: z.ZodString;
5861
+ engineVersion: z.ZodString;
5862
+ checkId: z.ZodString;
5863
+ details: z.ZodObject<{
5864
+ source: z.ZodEnum<{
5865
+ pipeline: "pipeline";
5866
+ "public-api": "public-api";
5867
+ }>;
5868
+ }, z.core.$strict>;
5869
+ }, z.core.$strict>>;
5870
+ triggeringEvaluations: z.ZodArray<z.ZodObject<{
5871
+ id: z.ZodString;
5872
+ occurredAt: z.ZodString;
5873
+ monitorId: z.ZodString;
5874
+ region: z.ZodString;
5875
+ policySnapshotHashHex: z.ZodString;
5876
+ ruleIndex: z.ZodNumber;
5877
+ ruleType: z.ZodString;
5878
+ ruleScope: z.ZodString;
5879
+ inputResultIds: z.ZodArray<z.ZodString>;
5880
+ outputMatched: z.ZodBoolean;
5881
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
5882
+ engineVersion: z.ZodString;
5883
+ checkId: z.ZodString;
5884
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5885
+ }, z.core.$strict>>;
5886
+ policySnapshot: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5887
+ hashHex: z.ZodString;
5888
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
5889
+ engineVersion: z.ZodString;
5890
+ firstSeenAt: z.ZodString;
5891
+ lastSeenAt: z.ZodString;
5892
+ }, z.core.$strict>>>;
5893
+ }, z.core.$strict>;
5894
+ }, z.core.$strict>;
5558
5895
  SingleValueResponseInviteDto: z.ZodObject<{
5559
5896
  data: z.ZodObject<{
5560
5897
  inviteId: z.ZodNumber;
@@ -6730,6 +7067,15 @@ export declare const schemas: {
6730
7067
  websiteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6731
7068
  }, z.core.$strict>;
6732
7069
  }, z.core.$strict>;
7070
+ SingleValueResponsePolicySnapshotDto: z.ZodObject<{
7071
+ data: z.ZodNullable<z.ZodObject<{
7072
+ hashHex: z.ZodString;
7073
+ policy: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
7074
+ engineVersion: z.ZodString;
7075
+ firstSeenAt: z.ZodString;
7076
+ lastSeenAt: z.ZodString;
7077
+ }, z.core.$strict>>;
7078
+ }, z.core.$strict>;
6733
7079
  SingleValueResponseResourceGroupDto: z.ZodObject<{
6734
7080
  data: z.ZodObject<{
6735
7081
  id: z.ZodString;
@@ -7319,6 +7665,9 @@ export declare const schemas: {
7319
7665
  verificationCnameTarget: z.ZodString;
7320
7666
  verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7321
7667
  verificationError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7668
+ cfCustomHostnameId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7669
+ cfSslStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7670
+ sslActiveAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7322
7671
  createdAt: z.ZodString;
7323
7672
  updatedAt: z.ZodString;
7324
7673
  primary: z.ZodBoolean;
@@ -7344,6 +7693,9 @@ export declare const schemas: {
7344
7693
  verificationCnameTarget: z.ZodString;
7345
7694
  verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7346
7695
  verificationError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7696
+ cfCustomHostnameId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7697
+ cfSslStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7698
+ sslActiveAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7347
7699
  createdAt: z.ZodString;
7348
7700
  updatedAt: z.ZodString;
7349
7701
  primary: z.ZodBoolean;
@@ -7718,17 +8070,6 @@ export declare const schemas: {
7718
8070
  orgId: z.ZodNumber;
7719
8071
  }, z.core.$strict>;
7720
8072
  }, z.core.$strict>;
7721
- StatusPageComponentUptimeDayDto: z.ZodObject<{
7722
- date: z.ZodString;
7723
- partialOutageSeconds: z.ZodNumber;
7724
- majorOutageSeconds: z.ZodNumber;
7725
- uptimePercentage: z.ZodNumber;
7726
- incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
7727
- id: z.ZodString;
7728
- title: z.ZodString;
7729
- impact: z.ZodString;
7730
- }, z.core.$strict>>>>;
7731
- }, z.core.$strict>;
7732
8073
  TableValueResultAlertChannelDto: z.ZodObject<{
7733
8074
  data: z.ZodArray<z.ZodObject<{
7734
8075
  id: z.ZodString;
@@ -7819,7 +8160,19 @@ export declare const schemas: {
7819
8160
  resourceType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7820
8161
  resourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7821
8162
  resourceName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7822
- metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodObject<{}, z.core.$strict>>>>>;
8163
+ metadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8164
+ kind: z.ZodLiteral<"member_role_changed">;
8165
+ oldRole: z.ZodEnum<{
8166
+ OWNER: "OWNER";
8167
+ ADMIN: "ADMIN";
8168
+ MEMBER: "MEMBER";
8169
+ }>;
8170
+ newRole: z.ZodEnum<{
8171
+ OWNER: "OWNER";
8172
+ ADMIN: "ADMIN";
8173
+ MEMBER: "MEMBER";
8174
+ }>;
8175
+ }, z.core.$strict>>>;
7823
8176
  createdAt: z.ZodString;
7824
8177
  }, z.core.$strict>>;
7825
8178
  hasNext: z.ZodBoolean;
@@ -7844,8 +8197,11 @@ export declare const schemas: {
7844
8197
  majorOutageSeconds: z.ZodNumber;
7845
8198
  degradedSeconds: z.ZodNumber;
7846
8199
  uptimePercentage: z.ZodNumber;
7847
- eventsJson: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7848
- source: z.ZodString;
8200
+ incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8201
+ id: z.ZodString;
8202
+ title: z.ZodString;
8203
+ impact: z.ZodString;
8204
+ }, z.core.$strict>>>>;
7849
8205
  }, z.core.$strict>>;
7850
8206
  hasNext: z.ZodBoolean;
7851
8207
  hasPrev: z.ZodBoolean;
@@ -7940,6 +8296,36 @@ export declare const schemas: {
7940
8296
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7941
8297
  resourceGroupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7942
8298
  resourceGroupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8299
+ triggeringCheckId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8300
+ triggeredByRuleSnapshotHashHex: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8301
+ triggeredByRuleIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8302
+ engineVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8303
+ }, z.core.$strict>>;
8304
+ hasNext: z.ZodBoolean;
8305
+ hasPrev: z.ZodBoolean;
8306
+ totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8307
+ totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8308
+ }, z.core.$strict>;
8309
+ TableValueResultIncidentStateTransitionDto: z.ZodObject<{
8310
+ data: z.ZodArray<z.ZodObject<{
8311
+ id: z.ZodString;
8312
+ occurredAt: z.ZodString;
8313
+ monitorId: z.ZodString;
8314
+ incidentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8315
+ fromStatus: z.ZodString;
8316
+ toStatus: z.ZodString;
8317
+ reason: z.ZodString;
8318
+ triggeringEvaluationIds: z.ZodArray<z.ZodString>;
8319
+ affectedRegions: z.ZodArray<z.ZodString>;
8320
+ policySnapshotHashHex: z.ZodString;
8321
+ engineVersion: z.ZodString;
8322
+ checkId: z.ZodString;
8323
+ details: z.ZodObject<{
8324
+ source: z.ZodEnum<{
8325
+ pipeline: "pipeline";
8326
+ "public-api": "public-api";
8327
+ }>;
8328
+ }, z.core.$strict>;
7943
8329
  }, z.core.$strict>>;
7944
8330
  hasNext: z.ZodBoolean;
7945
8331
  hasPrev: z.ZodBoolean;
@@ -8982,6 +9368,28 @@ export declare const schemas: {
8982
9368
  totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8983
9369
  totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8984
9370
  }, z.core.$strict>;
9371
+ TableValueResultRuleEvaluationDto: z.ZodObject<{
9372
+ data: z.ZodArray<z.ZodObject<{
9373
+ id: z.ZodString;
9374
+ occurredAt: z.ZodString;
9375
+ monitorId: z.ZodString;
9376
+ region: z.ZodString;
9377
+ policySnapshotHashHex: z.ZodString;
9378
+ ruleIndex: z.ZodNumber;
9379
+ ruleType: z.ZodString;
9380
+ ruleScope: z.ZodString;
9381
+ inputResultIds: z.ZodArray<z.ZodString>;
9382
+ outputMatched: z.ZodBoolean;
9383
+ evaluationDetails: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$strict>>;
9384
+ engineVersion: z.ZodString;
9385
+ checkId: z.ZodString;
9386
+ triggeringTransitionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9387
+ }, z.core.$strict>>;
9388
+ hasNext: z.ZodBoolean;
9389
+ hasPrev: z.ZodBoolean;
9390
+ totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9391
+ totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9392
+ }, z.core.$strict>;
8985
9393
  TableValueResultScheduledMaintenanceDto: z.ZodObject<{
8986
9394
  data: z.ZodArray<z.ZodObject<{
8987
9395
  id: z.ZodString;
@@ -9222,23 +9630,6 @@ export declare const schemas: {
9222
9630
  totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9223
9631
  totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9224
9632
  }, z.core.$strict>;
9225
- TableValueResultStatusPageComponentUptimeDayDto: z.ZodObject<{
9226
- data: z.ZodArray<z.ZodObject<{
9227
- date: z.ZodString;
9228
- partialOutageSeconds: z.ZodNumber;
9229
- majorOutageSeconds: z.ZodNumber;
9230
- uptimePercentage: z.ZodNumber;
9231
- incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9232
- id: z.ZodString;
9233
- title: z.ZodString;
9234
- impact: z.ZodString;
9235
- }, z.core.$strict>>>>;
9236
- }, z.core.$strict>>;
9237
- hasNext: z.ZodBoolean;
9238
- hasPrev: z.ZodBoolean;
9239
- totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9240
- totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9241
- }, z.core.$strict>;
9242
9633
  TableValueResultStatusPageCustomDomainDto: z.ZodObject<{
9243
9634
  data: z.ZodArray<z.ZodObject<{
9244
9635
  id: z.ZodString;
@@ -9260,6 +9651,9 @@ export declare const schemas: {
9260
9651
  verificationCnameTarget: z.ZodString;
9261
9652
  verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9262
9653
  verificationError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9654
+ cfCustomHostnameId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9655
+ cfSslStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9656
+ sslActiveAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9263
9657
  createdAt: z.ZodString;
9264
9658
  updatedAt: z.ZodString;
9265
9659
  primary: z.ZodBoolean;