@devhelm/sdk 1.0.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,12 +5,28 @@ export declare const schemas: {
5
5
  size: z.ZodNumber;
6
6
  sort: z.ZodArray<z.ZodString>;
7
7
  }, z.core.$strict>;
8
+ ErrorEntry: z.ZodObject<{
9
+ code: z.ZodString;
10
+ field: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ message: z.ZodString;
12
+ }, z.core.$strict>;
8
13
  ErrorResponse: z.ZodObject<{
9
14
  status: z.ZodNumber;
10
15
  code: z.ZodString;
11
16
  message: z.ZodString;
12
17
  timestamp: z.ZodNumber;
13
18
  requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
+ errors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodObject<{
20
+ code: z.ZodString;
21
+ field: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22
+ message: z.ZodString;
23
+ }, z.core.$strict>>>>>;
24
+ }, z.core.$strict>;
25
+ DatadogChannelConfig: z.ZodObject<{
26
+ channelType: z.ZodLiteral<"datadog">;
27
+ apiKey: z.ZodString;
28
+ site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29
+ tags: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
30
  }, z.core.$strict>;
15
31
  DiscordChannelConfig: z.ZodObject<{
16
32
  channelType: z.ZodLiteral<"discord">;
@@ -21,6 +37,41 @@ export declare const schemas: {
21
37
  channelType: z.ZodLiteral<"email">;
22
38
  recipients: z.ZodArray<z.ZodString>;
23
39
  }, z.core.$strict>;
40
+ GitLabChannelConfig: z.ZodObject<{
41
+ channelType: z.ZodLiteral<"gitlab">;
42
+ endpointUrl: z.ZodString;
43
+ authorizationKey: z.ZodString;
44
+ }, z.core.$strict>;
45
+ GoogleChatChannelConfig: z.ZodObject<{
46
+ channelType: z.ZodLiteral<"google_chat">;
47
+ webhookUrl: z.ZodString;
48
+ }, z.core.$strict>;
49
+ IncidentIoChannelConfig: z.ZodObject<{
50
+ channelType: z.ZodLiteral<"incident_io">;
51
+ apiKey: z.ZodString;
52
+ severityId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
53
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
54
+ }, z.core.$strict>;
55
+ JiraChannelConfig: z.ZodObject<{
56
+ channelType: z.ZodLiteral<"jira">;
57
+ domain: z.ZodString;
58
+ email: z.ZodString;
59
+ apiToken: z.ZodString;
60
+ projectKey: z.ZodString;
61
+ issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
62
+ }, z.core.$strict>;
63
+ LinearChannelConfig: z.ZodObject<{
64
+ channelType: z.ZodLiteral<"linear">;
65
+ apiKey: z.ZodString;
66
+ teamId: z.ZodString;
67
+ labelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
68
+ }, z.core.$strict>;
69
+ MattermostChannelConfig: z.ZodObject<{
70
+ channelType: z.ZodLiteral<"mattermost">;
71
+ webhookUrl: z.ZodString;
72
+ channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73
+ iconUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74
+ }, z.core.$strict>;
24
75
  OpsGenieChannelConfig: z.ZodObject<{
25
76
  channelType: z.ZodLiteral<"opsgenie">;
26
77
  apiKey: z.ZodString;
@@ -31,30 +82,95 @@ export declare const schemas: {
31
82
  routingKey: z.ZodString;
32
83
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33
84
  }, z.core.$strict>;
85
+ PushbulletChannelConfig: z.ZodObject<{
86
+ channelType: z.ZodLiteral<"pushbullet">;
87
+ accessToken: z.ZodString;
88
+ deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
89
+ }, z.core.$strict>;
90
+ PushoverChannelConfig: z.ZodObject<{
91
+ channelType: z.ZodLiteral<"pushover">;
92
+ userKey: z.ZodString;
93
+ appToken: z.ZodString;
94
+ priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
95
+ sound: z.ZodOptional<z.ZodNullable<z.ZodString>>;
96
+ }, z.core.$strict>;
97
+ RootlyChannelConfig: z.ZodObject<{
98
+ channelType: z.ZodLiteral<"rootly">;
99
+ apiKey: z.ZodString;
100
+ severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
101
+ }, z.core.$strict>;
34
102
  SlackChannelConfig: z.ZodObject<{
35
103
  channelType: z.ZodLiteral<"slack">;
36
104
  webhookUrl: z.ZodString;
37
105
  mentionText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
38
106
  }, z.core.$strict>;
107
+ SplunkOnCallChannelConfig: z.ZodObject<{
108
+ channelType: z.ZodLiteral<"splunk_oncall">;
109
+ apiKey: z.ZodString;
110
+ routingKey: z.ZodString;
111
+ }, z.core.$strict>;
39
112
  TeamsChannelConfig: z.ZodObject<{
40
113
  channelType: z.ZodLiteral<"teams">;
41
114
  webhookUrl: z.ZodString;
42
115
  }, z.core.$strict>;
116
+ TelegramChannelConfig: z.ZodObject<{
117
+ channelType: z.ZodLiteral<"telegram">;
118
+ botToken: z.ZodString;
119
+ chatId: z.ZodString;
120
+ }, z.core.$strict>;
43
121
  WebhookChannelConfig: z.ZodObject<{
44
122
  channelType: z.ZodLiteral<"webhook">;
45
123
  url: z.ZodString;
46
124
  signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
47
125
  customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
48
126
  }, z.core.$strict>;
127
+ ZapierChannelConfig: z.ZodObject<{
128
+ channelType: z.ZodLiteral<"zapier">;
129
+ webhookUrl: z.ZodString;
130
+ }, z.core.$strict>;
49
131
  CreateAlertChannelRequest: z.ZodObject<{
50
132
  name: z.ZodString;
51
133
  config: z.ZodUnion<readonly [z.ZodObject<{
134
+ channelType: z.ZodLiteral<"datadog">;
135
+ apiKey: z.ZodString;
136
+ site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
137
+ tags: z.ZodOptional<z.ZodNullable<z.ZodString>>;
138
+ }, z.core.$strict>, z.ZodObject<{
52
139
  channelType: z.ZodLiteral<"discord">;
53
140
  webhookUrl: z.ZodString;
54
141
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
55
142
  }, z.core.$strict>, z.ZodObject<{
56
143
  channelType: z.ZodLiteral<"email">;
57
144
  recipients: z.ZodArray<z.ZodString>;
145
+ }, z.core.$strict>, z.ZodObject<{
146
+ channelType: z.ZodLiteral<"gitlab">;
147
+ endpointUrl: z.ZodString;
148
+ authorizationKey: z.ZodString;
149
+ }, z.core.$strict>, z.ZodObject<{
150
+ channelType: z.ZodLiteral<"google_chat">;
151
+ webhookUrl: z.ZodString;
152
+ }, z.core.$strict>, z.ZodObject<{
153
+ channelType: z.ZodLiteral<"incident_io">;
154
+ apiKey: z.ZodString;
155
+ severityId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
156
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
157
+ }, z.core.$strict>, z.ZodObject<{
158
+ channelType: z.ZodLiteral<"jira">;
159
+ domain: z.ZodString;
160
+ email: z.ZodString;
161
+ apiToken: z.ZodString;
162
+ projectKey: z.ZodString;
163
+ issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
164
+ }, z.core.$strict>, z.ZodObject<{
165
+ channelType: z.ZodLiteral<"linear">;
166
+ apiKey: z.ZodString;
167
+ teamId: z.ZodString;
168
+ labelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
169
+ }, z.core.$strict>, z.ZodObject<{
170
+ channelType: z.ZodLiteral<"mattermost">;
171
+ webhookUrl: z.ZodString;
172
+ channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
173
+ iconUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
58
174
  }, z.core.$strict>, z.ZodObject<{
59
175
  channelType: z.ZodLiteral<"opsgenie">;
60
176
  apiKey: z.ZodString;
@@ -63,18 +179,43 @@ export declare const schemas: {
63
179
  channelType: z.ZodLiteral<"pagerduty">;
64
180
  routingKey: z.ZodString;
65
181
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
182
+ }, z.core.$strict>, z.ZodObject<{
183
+ channelType: z.ZodLiteral<"pushbullet">;
184
+ accessToken: z.ZodString;
185
+ deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
186
+ }, z.core.$strict>, z.ZodObject<{
187
+ channelType: z.ZodLiteral<"pushover">;
188
+ userKey: z.ZodString;
189
+ appToken: z.ZodString;
190
+ priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
191
+ sound: z.ZodOptional<z.ZodNullable<z.ZodString>>;
192
+ }, z.core.$strict>, z.ZodObject<{
193
+ channelType: z.ZodLiteral<"rootly">;
194
+ apiKey: z.ZodString;
195
+ severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
66
196
  }, z.core.$strict>, z.ZodObject<{
67
197
  channelType: z.ZodLiteral<"slack">;
68
198
  webhookUrl: z.ZodString;
69
199
  mentionText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
200
+ }, z.core.$strict>, z.ZodObject<{
201
+ channelType: z.ZodLiteral<"splunk_oncall">;
202
+ apiKey: z.ZodString;
203
+ routingKey: z.ZodString;
70
204
  }, z.core.$strict>, z.ZodObject<{
71
205
  channelType: z.ZodLiteral<"teams">;
72
206
  webhookUrl: z.ZodString;
207
+ }, z.core.$strict>, z.ZodObject<{
208
+ channelType: z.ZodLiteral<"telegram">;
209
+ botToken: z.ZodString;
210
+ chatId: z.ZodString;
73
211
  }, z.core.$strict>, z.ZodObject<{
74
212
  channelType: z.ZodLiteral<"webhook">;
75
213
  url: z.ZodString;
76
214
  signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
77
215
  customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
216
+ }, z.core.$strict>, z.ZodObject<{
217
+ channelType: z.ZodLiteral<"zapier">;
218
+ webhookUrl: z.ZodString;
78
219
  }, z.core.$strict>]>;
79
220
  managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
80
221
  DASHBOARD: "DASHBOARD";
@@ -87,12 +228,46 @@ export declare const schemas: {
87
228
  UpdateAlertChannelRequest: z.ZodObject<{
88
229
  name: z.ZodString;
89
230
  config: z.ZodUnion<readonly [z.ZodObject<{
231
+ channelType: z.ZodLiteral<"datadog">;
232
+ apiKey: z.ZodString;
233
+ site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
234
+ tags: z.ZodOptional<z.ZodNullable<z.ZodString>>;
235
+ }, z.core.$strict>, z.ZodObject<{
90
236
  channelType: z.ZodLiteral<"discord">;
91
237
  webhookUrl: z.ZodString;
92
238
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
93
239
  }, z.core.$strict>, z.ZodObject<{
94
240
  channelType: z.ZodLiteral<"email">;
95
241
  recipients: z.ZodArray<z.ZodString>;
242
+ }, z.core.$strict>, z.ZodObject<{
243
+ channelType: z.ZodLiteral<"gitlab">;
244
+ endpointUrl: z.ZodString;
245
+ authorizationKey: z.ZodString;
246
+ }, z.core.$strict>, z.ZodObject<{
247
+ channelType: z.ZodLiteral<"google_chat">;
248
+ webhookUrl: z.ZodString;
249
+ }, z.core.$strict>, z.ZodObject<{
250
+ channelType: z.ZodLiteral<"incident_io">;
251
+ apiKey: z.ZodString;
252
+ severityId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
253
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
254
+ }, z.core.$strict>, z.ZodObject<{
255
+ channelType: z.ZodLiteral<"jira">;
256
+ domain: z.ZodString;
257
+ email: z.ZodString;
258
+ apiToken: z.ZodString;
259
+ projectKey: z.ZodString;
260
+ issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
261
+ }, z.core.$strict>, z.ZodObject<{
262
+ channelType: z.ZodLiteral<"linear">;
263
+ apiKey: z.ZodString;
264
+ teamId: z.ZodString;
265
+ labelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
266
+ }, z.core.$strict>, z.ZodObject<{
267
+ channelType: z.ZodLiteral<"mattermost">;
268
+ webhookUrl: z.ZodString;
269
+ channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
270
+ iconUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
96
271
  }, z.core.$strict>, z.ZodObject<{
97
272
  channelType: z.ZodLiteral<"opsgenie">;
98
273
  apiKey: z.ZodString;
@@ -101,18 +276,43 @@ export declare const schemas: {
101
276
  channelType: z.ZodLiteral<"pagerduty">;
102
277
  routingKey: z.ZodString;
103
278
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
279
+ }, z.core.$strict>, z.ZodObject<{
280
+ channelType: z.ZodLiteral<"pushbullet">;
281
+ accessToken: z.ZodString;
282
+ deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
283
+ }, z.core.$strict>, z.ZodObject<{
284
+ channelType: z.ZodLiteral<"pushover">;
285
+ userKey: z.ZodString;
286
+ appToken: z.ZodString;
287
+ priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
288
+ sound: z.ZodOptional<z.ZodNullable<z.ZodString>>;
289
+ }, z.core.$strict>, z.ZodObject<{
290
+ channelType: z.ZodLiteral<"rootly">;
291
+ apiKey: z.ZodString;
292
+ severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
104
293
  }, z.core.$strict>, z.ZodObject<{
105
294
  channelType: z.ZodLiteral<"slack">;
106
295
  webhookUrl: z.ZodString;
107
296
  mentionText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
297
+ }, z.core.$strict>, z.ZodObject<{
298
+ channelType: z.ZodLiteral<"splunk_oncall">;
299
+ apiKey: z.ZodString;
300
+ routingKey: z.ZodString;
108
301
  }, z.core.$strict>, z.ZodObject<{
109
302
  channelType: z.ZodLiteral<"teams">;
110
303
  webhookUrl: z.ZodString;
304
+ }, z.core.$strict>, z.ZodObject<{
305
+ channelType: z.ZodLiteral<"telegram">;
306
+ botToken: z.ZodString;
307
+ chatId: z.ZodString;
111
308
  }, z.core.$strict>, z.ZodObject<{
112
309
  channelType: z.ZodLiteral<"webhook">;
113
310
  url: z.ZodString;
114
311
  signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115
312
  customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
313
+ }, z.core.$strict>, z.ZodObject<{
314
+ channelType: z.ZodLiteral<"zapier">;
315
+ webhookUrl: z.ZodString;
116
316
  }, z.core.$strict>]>;
117
317
  managedBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
118
318
  DASHBOARD: "DASHBOARD";
@@ -124,12 +324,46 @@ export declare const schemas: {
124
324
  }, z.core.$strict>;
125
325
  TestAlertChannelRequest: z.ZodObject<{
126
326
  config: z.ZodUnion<readonly [z.ZodObject<{
327
+ channelType: z.ZodLiteral<"datadog">;
328
+ apiKey: z.ZodString;
329
+ site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
330
+ tags: z.ZodOptional<z.ZodNullable<z.ZodString>>;
331
+ }, z.core.$strict>, z.ZodObject<{
127
332
  channelType: z.ZodLiteral<"discord">;
128
333
  webhookUrl: z.ZodString;
129
334
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
130
335
  }, z.core.$strict>, z.ZodObject<{
131
336
  channelType: z.ZodLiteral<"email">;
132
337
  recipients: z.ZodArray<z.ZodString>;
338
+ }, z.core.$strict>, z.ZodObject<{
339
+ channelType: z.ZodLiteral<"gitlab">;
340
+ endpointUrl: z.ZodString;
341
+ authorizationKey: z.ZodString;
342
+ }, z.core.$strict>, z.ZodObject<{
343
+ channelType: z.ZodLiteral<"google_chat">;
344
+ webhookUrl: z.ZodString;
345
+ }, z.core.$strict>, z.ZodObject<{
346
+ channelType: z.ZodLiteral<"incident_io">;
347
+ apiKey: z.ZodString;
348
+ severityId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
349
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
350
+ }, z.core.$strict>, z.ZodObject<{
351
+ channelType: z.ZodLiteral<"jira">;
352
+ domain: z.ZodString;
353
+ email: z.ZodString;
354
+ apiToken: z.ZodString;
355
+ projectKey: z.ZodString;
356
+ issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
357
+ }, z.core.$strict>, z.ZodObject<{
358
+ channelType: z.ZodLiteral<"linear">;
359
+ apiKey: z.ZodString;
360
+ teamId: z.ZodString;
361
+ labelId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
362
+ }, z.core.$strict>, z.ZodObject<{
363
+ channelType: z.ZodLiteral<"mattermost">;
364
+ webhookUrl: z.ZodString;
365
+ channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
366
+ iconUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
133
367
  }, z.core.$strict>, z.ZodObject<{
134
368
  channelType: z.ZodLiteral<"opsgenie">;
135
369
  apiKey: z.ZodString;
@@ -138,18 +372,43 @@ export declare const schemas: {
138
372
  channelType: z.ZodLiteral<"pagerduty">;
139
373
  routingKey: z.ZodString;
140
374
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
375
+ }, z.core.$strict>, z.ZodObject<{
376
+ channelType: z.ZodLiteral<"pushbullet">;
377
+ accessToken: z.ZodString;
378
+ deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
379
+ }, z.core.$strict>, z.ZodObject<{
380
+ channelType: z.ZodLiteral<"pushover">;
381
+ userKey: z.ZodString;
382
+ appToken: z.ZodString;
383
+ priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
384
+ sound: z.ZodOptional<z.ZodNullable<z.ZodString>>;
385
+ }, z.core.$strict>, z.ZodObject<{
386
+ channelType: z.ZodLiteral<"rootly">;
387
+ apiKey: z.ZodString;
388
+ severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
141
389
  }, z.core.$strict>, z.ZodObject<{
142
390
  channelType: z.ZodLiteral<"slack">;
143
391
  webhookUrl: z.ZodString;
144
392
  mentionText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
393
+ }, z.core.$strict>, z.ZodObject<{
394
+ channelType: z.ZodLiteral<"splunk_oncall">;
395
+ apiKey: z.ZodString;
396
+ routingKey: z.ZodString;
145
397
  }, z.core.$strict>, z.ZodObject<{
146
398
  channelType: z.ZodLiteral<"teams">;
147
399
  webhookUrl: z.ZodString;
400
+ }, z.core.$strict>, z.ZodObject<{
401
+ channelType: z.ZodLiteral<"telegram">;
402
+ botToken: z.ZodString;
403
+ chatId: z.ZodString;
148
404
  }, z.core.$strict>, z.ZodObject<{
149
405
  channelType: z.ZodLiteral<"webhook">;
150
406
  url: z.ZodString;
151
407
  signingSecret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
152
408
  customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
409
+ }, z.core.$strict>, z.ZodObject<{
410
+ channelType: z.ZodLiteral<"zapier">;
411
+ webhookUrl: z.ZodString;
153
412
  }, z.core.$strict>]>;
154
413
  }, z.core.$strict>;
155
414
  CreateApiKeyRequest: z.ZodObject<{
@@ -735,8 +994,8 @@ export declare const schemas: {
735
994
  }>>;
736
995
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
737
996
  severity: z.ZodEnum<{
738
- degraded: "degraded";
739
997
  down: "down";
998
+ degraded: "degraded";
740
999
  }>;
741
1000
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
742
1001
  all_exceed: "all_exceed";
@@ -770,8 +1029,8 @@ export declare const schemas: {
770
1029
  }>>;
771
1030
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
772
1031
  severity: z.ZodEnum<{
773
- degraded: "degraded";
774
1032
  down: "down";
1033
+ degraded: "degraded";
775
1034
  }>;
776
1035
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
777
1036
  all_exceed: "all_exceed";
@@ -1067,8 +1326,8 @@ export declare const schemas: {
1067
1326
  }>>;
1068
1327
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1069
1328
  severity: z.ZodEnum<{
1070
- degraded: "degraded";
1071
1329
  down: "down";
1330
+ degraded: "degraded";
1072
1331
  }>;
1073
1332
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1074
1333
  all_exceed: "all_exceed";
@@ -1356,8 +1615,8 @@ export declare const schemas: {
1356
1615
  }>>;
1357
1616
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1358
1617
  severity: z.ZodEnum<{
1359
- degraded: "degraded";
1360
1618
  down: "down";
1619
+ degraded: "degraded";
1361
1620
  }>;
1362
1621
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1363
1622
  all_exceed: "all_exceed";
@@ -2039,6 +2298,7 @@ export declare const schemas: {
2039
2298
  theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2040
2299
  reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2041
2300
  hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2301
+ showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2042
2302
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2043
2303
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2044
2304
  }, z.core.$strict>;
@@ -2058,6 +2318,7 @@ export declare const schemas: {
2058
2318
  theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2059
2319
  reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2060
2320
  hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2321
+ showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2061
2322
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2062
2323
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2063
2324
  }, z.core.$strict>>>;
@@ -2095,6 +2356,7 @@ export declare const schemas: {
2095
2356
  theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2096
2357
  reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2097
2358
  hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2359
+ showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2098
2360
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2099
2361
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2100
2362
  }, z.core.$strict>>>;
@@ -2374,36 +2636,42 @@ export declare const schemas: {
2374
2636
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2375
2637
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2376
2638
  customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
2639
+ chatId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2640
+ priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2641
+ channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2642
+ routingKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2643
+ deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2644
+ teamId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2645
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2646
+ severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2647
+ site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2648
+ projectKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2377
2649
  }, z.core.$strict>;
2378
2650
  AlertChannelDto: z.ZodObject<{
2379
2651
  id: z.ZodString;
2380
2652
  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
- }>;
2653
+ channelType: z.ZodString;
2390
2654
  displayConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2391
2655
  recipients: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2392
2656
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2393
2657
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2394
2658
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2395
2659
  customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
2660
+ chatId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2661
+ priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2662
+ channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2663
+ routingKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2664
+ deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2665
+ teamId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2666
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2667
+ severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2668
+ site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2669
+ projectKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2396
2670
  }, z.core.$strict>>>;
2397
2671
  createdAt: z.ZodString;
2398
2672
  updatedAt: z.ZodString;
2399
2673
  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
- }>>>;
2674
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2407
2675
  lastDeliveryAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2408
2676
  lastDeliveryStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2409
2677
  }, z.core.$strict>;
@@ -2414,18 +2682,8 @@ export declare const schemas: {
2414
2682
  channelId: z.ZodString;
2415
2683
  channel: z.ZodString;
2416
2684
  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
- }>;
2685
+ status: z.ZodString;
2686
+ eventType: z.ZodString;
2429
2687
  stepNumber: z.ZodNumber;
2430
2688
  fireCount: z.ZodNumber;
2431
2689
  attemptCount: z.ZodNumber;
@@ -2455,64 +2713,15 @@ export declare const schemas: {
2455
2713
  AssertionResultDto: z.ZodObject<{
2456
2714
  type: z.ZodString;
2457
2715
  passed: z.ZodBoolean;
2458
- severity: z.ZodEnum<{
2459
- fail: "fail";
2460
- warn: "warn";
2461
- }>;
2716
+ severity: z.ZodString;
2462
2717
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2463
2718
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2464
2719
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2465
2720
  }, z.core.$strict>;
2466
2721
  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
- }>;
2722
+ assertionType: z.ZodString;
2511
2723
  passed: z.ZodBoolean;
2512
- severity: z.ZodEnum<{
2513
- fail: "fail";
2514
- warn: "warn";
2515
- }>;
2724
+ severity: z.ZodString;
2516
2725
  message: z.ZodString;
2517
2726
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2518
2727
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2816,10 +3025,7 @@ export declare const schemas: {
2816
3025
  assertionResults: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2817
3026
  type: z.ZodString;
2818
3027
  passed: z.ZodBoolean;
2819
- severity: z.ZodEnum<{
2820
- fail: "fail";
2821
- warn: "warn";
2822
- }>;
3028
+ severity: z.ZodString;
2823
3029
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2824
3030
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2825
3031
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2898,10 +3104,7 @@ export declare const schemas: {
2898
3104
  assertionResults: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2899
3105
  type: z.ZodString;
2900
3106
  passed: z.ZodBoolean;
2901
- severity: z.ZodEnum<{
2902
- fail: "fail";
2903
- warn: "warn";
2904
- }>;
3107
+ severity: z.ZodString;
2905
3108
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2906
3109
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2907
3110
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3102,10 +3305,7 @@ export declare const schemas: {
3102
3305
  assertionResults: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3103
3306
  type: z.ZodString;
3104
3307
  passed: z.ZodBoolean;
3105
- severity: z.ZodEnum<{
3106
- fail: "fail";
3107
- warn: "warn";
3108
- }>;
3308
+ severity: z.ZodString;
3109
3309
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3110
3310
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3111
3311
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3184,6 +3384,7 @@ export declare const schemas: {
3184
3384
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3185
3385
  adapterType: z.ZodString;
3186
3386
  pollingIntervalSeconds: z.ZodNumber;
3387
+ lifecycleStatus: z.ZodString;
3187
3388
  enabled: z.ZodBoolean;
3188
3389
  published: z.ZodBoolean;
3189
3390
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3205,6 +3406,7 @@ export declare const schemas: {
3205
3406
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3206
3407
  adapterType: z.ZodString;
3207
3408
  pollingIntervalSeconds: z.ZodNumber;
3409
+ lifecycleStatus: z.ZodString;
3208
3410
  enabled: z.ZodBoolean;
3209
3411
  published: z.ZodBoolean;
3210
3412
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3355,6 +3557,7 @@ export declare const schemas: {
3355
3557
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3356
3558
  adapterType: z.ZodString;
3357
3559
  pollingIntervalSeconds: z.ZodNumber;
3560
+ lifecycleStatus: z.ZodString;
3358
3561
  enabled: z.ZodBoolean;
3359
3562
  published: z.ZodBoolean;
3360
3563
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3373,24 +3576,9 @@ export declare const schemas: {
3373
3576
  id: z.ZodString;
3374
3577
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3375
3578
  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
- }>;
3579
+ source: z.ZodString;
3580
+ status: z.ZodString;
3581
+ severity: z.ZodString;
3394
3582
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3395
3583
  triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3396
3584
  affectedRegions: z.ZodArray<z.ZodString>;
@@ -3402,11 +3590,7 @@ export declare const schemas: {
3402
3590
  externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3403
3591
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
3404
3592
  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
- }>>>;
3593
+ resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3410
3594
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3411
3595
  confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3412
3596
  resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3427,23 +3611,10 @@ export declare const schemas: {
3427
3611
  IncidentUpdateDto: z.ZodObject<{
3428
3612
  id: z.ZodString;
3429
3613
  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
- }>>>;
3614
+ oldStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3615
+ newStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3442
3616
  body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3443
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3444
- SYSTEM: "SYSTEM";
3445
- USER: "USER";
3446
- }>>>;
3617
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3447
3618
  notifySubscribers: z.ZodBoolean;
3448
3619
  createdAt: z.ZodString;
3449
3620
  }, z.core.$strict>;
@@ -3453,18 +3624,8 @@ export declare const schemas: {
3453
3624
  statusPageName: z.ZodString;
3454
3625
  statusPageSlug: z.ZodString;
3455
3626
  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
- }>;
3627
+ status: z.ZodString;
3628
+ impact: z.ZodString;
3468
3629
  scheduled: z.ZodBoolean;
3469
3630
  publishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3470
3631
  }, z.core.$strict>;
@@ -3473,24 +3634,9 @@ export declare const schemas: {
3473
3634
  id: z.ZodString;
3474
3635
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3475
3636
  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
- }>;
3637
+ source: z.ZodString;
3638
+ status: z.ZodString;
3639
+ severity: z.ZodString;
3494
3640
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3495
3641
  triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3496
3642
  affectedRegions: z.ZodArray<z.ZodString>;
@@ -3502,11 +3648,7 @@ export declare const schemas: {
3502
3648
  externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3503
3649
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
3504
3650
  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
- }>>>;
3651
+ resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3510
3652
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3511
3653
  confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3512
3654
  resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3527,23 +3669,10 @@ export declare const schemas: {
3527
3669
  updates: z.ZodArray<z.ZodObject<{
3528
3670
  id: z.ZodString;
3529
3671
  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
- }>>>;
3672
+ oldStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3673
+ newStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3542
3674
  body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3543
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3544
- SYSTEM: "SYSTEM";
3545
- USER: "USER";
3546
- }>>>;
3675
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3547
3676
  notifySubscribers: z.ZodBoolean;
3548
3677
  createdAt: z.ZodString;
3549
3678
  }, z.core.$strict>>;
@@ -3553,18 +3682,8 @@ export declare const schemas: {
3553
3682
  statusPageName: z.ZodString;
3554
3683
  statusPageSlug: z.ZodString;
3555
3684
  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
- }>;
3685
+ status: z.ZodString;
3686
+ impact: z.ZodString;
3568
3687
  scheduled: z.ZodBoolean;
3569
3688
  publishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3570
3689
  }, z.core.$strict>>>>;
@@ -3615,8 +3734,8 @@ export declare const schemas: {
3615
3734
  }>>;
3616
3735
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3617
3736
  severity: z.ZodEnum<{
3618
- degraded: "degraded";
3619
3737
  down: "down";
3738
+ degraded: "degraded";
3620
3739
  }>;
3621
3740
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3622
3741
  all_exceed: "all_exceed";
@@ -3726,14 +3845,7 @@ export declare const schemas: {
3726
3845
  description: z.ZodString;
3727
3846
  logoUrl: z.ZodString;
3728
3847
  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
- }>;
3848
+ tierAvailability: z.ZodString;
3737
3849
  lifecycle: z.ZodString;
3738
3850
  setupGuideUrl: z.ZodString;
3739
3851
  configSchema: z.ZodObject<{
@@ -3764,11 +3876,7 @@ export declare const schemas: {
3764
3876
  InviteDto: z.ZodObject<{
3765
3877
  inviteId: z.ZodNumber;
3766
3878
  email: z.ZodString;
3767
- roleOffered: z.ZodEnum<{
3768
- OWNER: "OWNER";
3769
- ADMIN: "ADMIN";
3770
- MEMBER: "MEMBER";
3771
- }>;
3879
+ roleOffered: z.ZodString;
3772
3880
  expiresAt: z.ZodString;
3773
3881
  consumedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3774
3882
  revokedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3799,68 +3907,14 @@ export declare const schemas: {
3799
3907
  userId: z.ZodNumber;
3800
3908
  email: z.ZodString;
3801
3909
  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
- }>;
3910
+ orgRole: z.ZodString;
3911
+ status: z.ZodString;
3815
3912
  createdAt: z.ZodString;
3816
3913
  }, z.core.$strict>;
3817
3914
  MonitorAssertionDto: z.ZodObject<{
3818
3915
  id: z.ZodString;
3819
3916
  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
- }>;
3917
+ assertionType: z.ZodString;
3864
3918
  config: z.ZodUnion<readonly [z.ZodObject<{
3865
3919
  type: z.ZodLiteral<"body_contains">;
3866
3920
  substring: z.ZodString;
@@ -4022,20 +4076,12 @@ export declare const schemas: {
4022
4076
  type: z.ZodLiteral<"tcp_response_time_warn">;
4023
4077
  warnMs: z.ZodNumber;
4024
4078
  }, z.core.$strict>]>;
4025
- severity: z.ZodEnum<{
4026
- fail: "fail";
4027
- warn: "warn";
4028
- }>;
4079
+ severity: z.ZodString;
4029
4080
  }, z.core.$strict>;
4030
4081
  MonitorAuthDto: z.ZodObject<{
4031
4082
  id: z.ZodString;
4032
4083
  monitorId: z.ZodString;
4033
- authType: z.ZodEnum<{
4034
- api_key: "api_key";
4035
- basic: "basic";
4036
- bearer: "bearer";
4037
- header: "header";
4038
- }>;
4084
+ authType: z.ZodString;
4039
4085
  config: z.ZodDiscriminatedUnion<[z.ZodObject<{
4040
4086
  type: z.ZodLiteral<"api_key">;
4041
4087
  headerName: z.ZodString;
@@ -4069,14 +4115,7 @@ export declare const schemas: {
4069
4115
  id: z.ZodString;
4070
4116
  organizationId: z.ZodNumber;
4071
4117
  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
- }>;
4118
+ type: z.ZodString;
4080
4119
  config: z.ZodUnion<readonly [z.ZodObject<{
4081
4120
  hostname: z.ZodString;
4082
4121
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -4127,62 +4166,13 @@ export declare const schemas: {
4127
4166
  frequencySeconds: z.ZodNumber;
4128
4167
  enabled: z.ZodBoolean;
4129
4168
  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
- }>;
4169
+ managedBy: z.ZodString;
4137
4170
  createdAt: z.ZodString;
4138
4171
  updatedAt: z.ZodString;
4139
4172
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4140
4173
  id: z.ZodString;
4141
4174
  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
- }>;
4175
+ assertionType: z.ZodString;
4186
4176
  config: z.ZodUnion<readonly [z.ZodObject<{
4187
4177
  type: z.ZodLiteral<"body_contains">;
4188
4178
  substring: z.ZodString;
@@ -4344,10 +4334,7 @@ export declare const schemas: {
4344
4334
  type: z.ZodLiteral<"tcp_response_time_warn">;
4345
4335
  warnMs: z.ZodNumber;
4346
4336
  }, z.core.$strict>]>;
4347
- severity: z.ZodEnum<{
4348
- fail: "fail";
4349
- warn: "warn";
4350
- }>;
4337
+ severity: z.ZodString;
4351
4338
  }, z.core.$strict>>>>;
4352
4339
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4353
4340
  id: z.ZodString;
@@ -4395,8 +4382,8 @@ export declare const schemas: {
4395
4382
  }>>;
4396
4383
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4397
4384
  severity: z.ZodEnum<{
4398
- degraded: "degraded";
4399
4385
  down: "down";
4386
+ degraded: "degraded";
4400
4387
  }>;
4401
4388
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4402
4389
  all_exceed: "all_exceed";
@@ -4421,13 +4408,7 @@ export declare const schemas: {
4421
4408
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4422
4409
  }, z.core.$strict>>>;
4423
4410
  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
- }>>>;
4411
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4431
4412
  }, z.core.$strict>;
4432
4413
  MonitorReference: z.ZodObject<{
4433
4414
  id: z.ZodString;
@@ -4444,55 +4425,9 @@ export declare const schemas: {
4444
4425
  redirectCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4445
4426
  finalUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4446
4427
  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
- }>;
4428
+ assertionType: z.ZodString;
4491
4429
  passed: z.ZodBoolean;
4492
- severity: z.ZodEnum<{
4493
- fail: "fail";
4494
- warn: "warn";
4495
- }>;
4430
+ severity: z.ZodString;
4496
4431
  message: z.ZodString;
4497
4432
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4498
4433
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4507,14 +4442,7 @@ export declare const schemas: {
4507
4442
  id: z.ZodString;
4508
4443
  organizationId: z.ZodNumber;
4509
4444
  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
- }>;
4445
+ type: z.ZodString;
4518
4446
  config: z.ZodUnion<readonly [z.ZodObject<{
4519
4447
  hostname: z.ZodString;
4520
4448
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -4565,62 +4493,13 @@ export declare const schemas: {
4565
4493
  frequencySeconds: z.ZodNumber;
4566
4494
  enabled: z.ZodBoolean;
4567
4495
  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
- }>;
4496
+ managedBy: z.ZodString;
4575
4497
  createdAt: z.ZodString;
4576
4498
  updatedAt: z.ZodString;
4577
4499
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4578
4500
  id: z.ZodString;
4579
4501
  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
- }>;
4502
+ assertionType: z.ZodString;
4624
4503
  config: z.ZodUnion<readonly [z.ZodObject<{
4625
4504
  type: z.ZodLiteral<"body_contains">;
4626
4505
  substring: z.ZodString;
@@ -4782,10 +4661,7 @@ export declare const schemas: {
4782
4661
  type: z.ZodLiteral<"tcp_response_time_warn">;
4783
4662
  warnMs: z.ZodNumber;
4784
4663
  }, z.core.$strict>]>;
4785
- severity: z.ZodEnum<{
4786
- fail: "fail";
4787
- warn: "warn";
4788
- }>;
4664
+ severity: z.ZodString;
4789
4665
  }, z.core.$strict>>>>;
4790
4666
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4791
4667
  id: z.ZodString;
@@ -4833,8 +4709,8 @@ export declare const schemas: {
4833
4709
  }>>;
4834
4710
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4835
4711
  severity: z.ZodEnum<{
4836
- degraded: "degraded";
4837
4712
  down: "down";
4713
+ degraded: "degraded";
4838
4714
  }>;
4839
4715
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
4840
4716
  all_exceed: "all_exceed";
@@ -4859,21 +4735,10 @@ export declare const schemas: {
4859
4735
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4860
4736
  }, z.core.$strict>>>;
4861
4737
  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
- }>>>;
4738
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4869
4739
  }, z.core.$strict>;
4870
4740
  changedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4871
- changedVia: z.ZodEnum<{
4872
- DASHBOARD: "DASHBOARD";
4873
- CLI: "CLI";
4874
- TERRAFORM: "TERRAFORM";
4875
- API: "API";
4876
- }>;
4741
+ changedVia: z.ZodString;
4877
4742
  changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4878
4743
  createdAt: z.ZodString;
4879
4744
  }, z.core.$strict>;
@@ -4882,19 +4747,8 @@ export declare const schemas: {
4882
4747
  incidentId: z.ZodString;
4883
4748
  policyId: z.ZodString;
4884
4749
  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
- }>>>;
4750
+ status: z.ZodString;
4751
+ completionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4898
4752
  currentStep: z.ZodNumber;
4899
4753
  totalSteps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4900
4754
  acknowledgedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4907,18 +4761,8 @@ export declare const schemas: {
4907
4761
  channelId: z.ZodString;
4908
4762
  channel: z.ZodString;
4909
4763
  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
- }>;
4764
+ status: z.ZodString;
4765
+ eventType: z.ZodString;
4922
4766
  stepNumber: z.ZodNumber;
4923
4767
  fireCount: z.ZodNumber;
4924
4768
  attemptCount: z.ZodNumber;
@@ -5004,20 +4848,11 @@ export declare const schemas: {
5004
4848
  severityHint: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5005
4849
  }, z.core.$strict>;
5006
4850
  ResourceGroupHealthDto: z.ZodObject<{
5007
- status: z.ZodEnum<{
5008
- degraded: "degraded";
5009
- down: "down";
5010
- operational: "operational";
5011
- maintenance: "maintenance";
5012
- }>;
4851
+ status: z.ZodString;
5013
4852
  totalMembers: z.ZodNumber;
5014
4853
  operationalCount: z.ZodNumber;
5015
4854
  activeIncidents: z.ZodNumber;
5016
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5017
- degraded: "degraded";
5018
- down: "down";
5019
- healthy: "healthy";
5020
- }>>>;
4855
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5021
4856
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5022
4857
  }, z.core.$strict>;
5023
4858
  ResourceGroupMemberDto: z.ZodObject<{
@@ -5029,12 +4864,7 @@ export declare const schemas: {
5029
4864
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5030
4865
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5031
4866
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5032
- status: z.ZodEnum<{
5033
- degraded: "degraded";
5034
- down: "down";
5035
- operational: "operational";
5036
- maintenance: "maintenance";
5037
- }>;
4867
+ status: z.ZodString;
5038
4868
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5039
4869
  createdAt: z.ZodString;
5040
4870
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -5061,29 +4891,17 @@ export declare const schemas: {
5061
4891
  }, z.core.$strict>>>;
5062
4892
  defaultAlertChannels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
5063
4893
  defaultEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5064
- healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5065
- COUNT: "COUNT";
5066
- PERCENTAGE: "PERCENTAGE";
5067
- }>>>;
4894
+ healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5068
4895
  healthThresholdValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5069
4896
  suppressMemberAlerts: z.ZodBoolean;
5070
4897
  confirmationDelaySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5071
4898
  recoveryCooldownMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5072
4899
  health: z.ZodObject<{
5073
- status: z.ZodEnum<{
5074
- degraded: "degraded";
5075
- down: "down";
5076
- operational: "operational";
5077
- maintenance: "maintenance";
5078
- }>;
4900
+ status: z.ZodString;
5079
4901
  totalMembers: z.ZodNumber;
5080
4902
  operationalCount: z.ZodNumber;
5081
4903
  activeIncidents: z.ZodNumber;
5082
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5083
- degraded: "degraded";
5084
- down: "down";
5085
- healthy: "healthy";
5086
- }>>>;
4904
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5087
4905
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5088
4906
  }, z.core.$strict>;
5089
4907
  members: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -5095,12 +4913,7 @@ export declare const schemas: {
5095
4913
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5096
4914
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5097
4915
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5098
- status: z.ZodEnum<{
5099
- degraded: "degraded";
5100
- down: "down";
5101
- operational: "operational";
5102
- maintenance: "maintenance";
5103
- }>;
4916
+ status: z.ZodString;
5104
4917
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5105
4918
  createdAt: z.ZodString;
5106
4919
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -5111,24 +4924,12 @@ export declare const schemas: {
5111
4924
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5112
4925
  environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5113
4926
  }, 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
- }>>>;
4927
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5121
4928
  createdAt: z.ZodString;
5122
4929
  updatedAt: z.ZodString;
5123
4930
  }, z.core.$strict>;
5124
4931
  ResultSummaryDto: z.ZodObject<{
5125
- currentStatus: z.ZodEnum<{
5126
- up: "up";
5127
- degraded: "degraded";
5128
- down: "down";
5129
- paused: "paused";
5130
- unknown: "unknown";
5131
- }>;
4932
+ currentStatus: z.ZodString;
5132
4933
  latestPerRegion: z.ZodArray<z.ZodObject<{
5133
4934
  region: z.ZodString;
5134
4935
  passed: z.ZodBoolean;
@@ -5281,6 +5082,7 @@ export declare const schemas: {
5281
5082
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5282
5083
  adapterType: z.ZodString;
5283
5084
  pollingIntervalSeconds: z.ZodNumber;
5085
+ lifecycleStatus: z.ZodString;
5284
5086
  enabled: z.ZodBoolean;
5285
5087
  createdAt: z.ZodString;
5286
5088
  updatedAt: z.ZodString;
@@ -5384,6 +5186,7 @@ export declare const schemas: {
5384
5186
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5385
5187
  adapterType: z.ZodString;
5386
5188
  pollingIntervalSeconds: z.ZodNumber;
5189
+ lifecycleStatus: z.ZodString;
5387
5190
  enabled: z.ZodBoolean;
5388
5191
  published: z.ZodBoolean;
5389
5192
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5483,11 +5286,7 @@ export declare const schemas: {
5483
5286
  lastSeenAt: z.ZodString;
5484
5287
  isGroup: z.ZodBoolean;
5485
5288
  }, z.core.$strict>>>;
5486
- alertSensitivity: z.ZodEnum<{
5487
- ALL: "ALL";
5488
- INCIDENTS_ONLY: "INCIDENTS_ONLY";
5489
- MAJOR_ONLY: "MAJOR_ONLY";
5490
- }>;
5289
+ alertSensitivity: z.ZodString;
5491
5290
  subscribedAt: z.ZodString;
5492
5291
  }, z.core.$strict>;
5493
5292
  UptimeBucketDto: z.ZodObject<{
@@ -5510,32 +5309,28 @@ export declare const schemas: {
5510
5309
  data: z.ZodObject<{
5511
5310
  id: z.ZodString;
5512
5311
  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
- }>;
5312
+ channelType: z.ZodString;
5522
5313
  displayConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5523
5314
  recipients: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
5524
5315
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5525
5316
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5526
5317
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5527
5318
  customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
5319
+ chatId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5320
+ priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5321
+ channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5322
+ routingKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5323
+ deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5324
+ teamId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5325
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5326
+ severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5327
+ site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5328
+ projectKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5528
5329
  }, z.core.$strict>>>;
5529
5330
  createdAt: z.ZodString;
5530
5331
  updatedAt: z.ZodString;
5531
5332
  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
- }>>>;
5333
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5539
5334
  lastDeliveryAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5540
5335
  lastDeliveryStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5541
5336
  }, z.core.$strict>;
@@ -5548,18 +5343,8 @@ export declare const schemas: {
5548
5343
  channelId: z.ZodString;
5549
5344
  channel: z.ZodString;
5550
5345
  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
- }>;
5346
+ status: z.ZodString;
5347
+ eventType: z.ZodString;
5563
5348
  stepNumber: z.ZodNumber;
5564
5349
  fireCount: z.ZodNumber;
5565
5350
  attemptCount: z.ZodNumber;
@@ -5772,6 +5557,7 @@ export declare const schemas: {
5772
5557
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5773
5558
  adapterType: z.ZodString;
5774
5559
  pollingIntervalSeconds: z.ZodNumber;
5560
+ lifecycleStatus: z.ZodString;
5775
5561
  enabled: z.ZodBoolean;
5776
5562
  published: z.ZodBoolean;
5777
5563
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5790,24 +5576,9 @@ export declare const schemas: {
5790
5576
  id: z.ZodString;
5791
5577
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5792
5578
  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
- }>;
5579
+ source: z.ZodString;
5580
+ status: z.ZodString;
5581
+ severity: z.ZodString;
5811
5582
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5812
5583
  triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5813
5584
  affectedRegions: z.ZodArray<z.ZodString>;
@@ -5819,11 +5590,7 @@ export declare const schemas: {
5819
5590
  externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5820
5591
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
5821
5592
  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
- }>>>;
5593
+ resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5827
5594
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5828
5595
  confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5829
5596
  resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5844,23 +5611,10 @@ export declare const schemas: {
5844
5611
  updates: z.ZodArray<z.ZodObject<{
5845
5612
  id: z.ZodString;
5846
5613
  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
- }>>>;
5614
+ oldStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5615
+ newStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5859
5616
  body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5860
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5861
- SYSTEM: "SYSTEM";
5862
- USER: "USER";
5863
- }>>>;
5617
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5864
5618
  notifySubscribers: z.ZodBoolean;
5865
5619
  createdAt: z.ZodString;
5866
5620
  }, z.core.$strict>>;
@@ -5870,18 +5624,8 @@ export declare const schemas: {
5870
5624
  statusPageName: z.ZodString;
5871
5625
  statusPageSlug: z.ZodString;
5872
5626
  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
- }>;
5627
+ status: z.ZodString;
5628
+ impact: z.ZodString;
5885
5629
  scheduled: z.ZodBoolean;
5886
5630
  publishedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5887
5631
  }, z.core.$strict>>>>;
@@ -5905,8 +5649,8 @@ export declare const schemas: {
5905
5649
  }>>;
5906
5650
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5907
5651
  severity: z.ZodEnum<{
5908
- degraded: "degraded";
5909
5652
  down: "down";
5653
+ degraded: "degraded";
5910
5654
  }>;
5911
5655
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
5912
5656
  all_exceed: "all_exceed";
@@ -5982,11 +5726,7 @@ export declare const schemas: {
5982
5726
  data: z.ZodObject<{
5983
5727
  inviteId: z.ZodNumber;
5984
5728
  email: z.ZodString;
5985
- roleOffered: z.ZodEnum<{
5986
- OWNER: "OWNER";
5987
- ADMIN: "ADMIN";
5988
- MEMBER: "MEMBER";
5989
- }>;
5729
+ roleOffered: z.ZodString;
5990
5730
  expiresAt: z.ZodString;
5991
5731
  consumedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5992
5732
  revokedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -6015,50 +5755,7 @@ export declare const schemas: {
6015
5755
  data: z.ZodObject<{
6016
5756
  id: z.ZodString;
6017
5757
  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
- }>;
5758
+ assertionType: z.ZodString;
6062
5759
  config: z.ZodUnion<readonly [z.ZodObject<{
6063
5760
  type: z.ZodLiteral<"body_contains">;
6064
5761
  substring: z.ZodString;
@@ -6220,22 +5917,14 @@ export declare const schemas: {
6220
5917
  type: z.ZodLiteral<"tcp_response_time_warn">;
6221
5918
  warnMs: z.ZodNumber;
6222
5919
  }, z.core.$strict>]>;
6223
- severity: z.ZodEnum<{
6224
- fail: "fail";
6225
- warn: "warn";
6226
- }>;
5920
+ severity: z.ZodString;
6227
5921
  }, z.core.$strict>;
6228
5922
  }, z.core.$strict>;
6229
5923
  SingleValueResponseMonitorAuthDto: z.ZodObject<{
6230
5924
  data: z.ZodObject<{
6231
5925
  id: z.ZodString;
6232
5926
  monitorId: z.ZodString;
6233
- authType: z.ZodEnum<{
6234
- api_key: "api_key";
6235
- basic: "basic";
6236
- bearer: "bearer";
6237
- header: "header";
6238
- }>;
5927
+ authType: z.ZodString;
6239
5928
  config: z.ZodDiscriminatedUnion<[z.ZodObject<{
6240
5929
  type: z.ZodLiteral<"api_key">;
6241
5930
  headerName: z.ZodString;
@@ -6258,14 +5947,7 @@ export declare const schemas: {
6258
5947
  id: z.ZodString;
6259
5948
  organizationId: z.ZodNumber;
6260
5949
  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
- }>;
5950
+ type: z.ZodString;
6269
5951
  config: z.ZodUnion<readonly [z.ZodObject<{
6270
5952
  hostname: z.ZodString;
6271
5953
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -6316,62 +5998,13 @@ export declare const schemas: {
6316
5998
  frequencySeconds: z.ZodNumber;
6317
5999
  enabled: z.ZodBoolean;
6318
6000
  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
- }>;
6001
+ managedBy: z.ZodString;
6326
6002
  createdAt: z.ZodString;
6327
6003
  updatedAt: z.ZodString;
6328
6004
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
6329
6005
  id: z.ZodString;
6330
6006
  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
- }>;
6007
+ assertionType: z.ZodString;
6375
6008
  config: z.ZodUnion<readonly [z.ZodObject<{
6376
6009
  type: z.ZodLiteral<"body_contains">;
6377
6010
  substring: z.ZodString;
@@ -6533,10 +6166,7 @@ export declare const schemas: {
6533
6166
  type: z.ZodLiteral<"tcp_response_time_warn">;
6534
6167
  warnMs: z.ZodNumber;
6535
6168
  }, z.core.$strict>]>;
6536
- severity: z.ZodEnum<{
6537
- fail: "fail";
6538
- warn: "warn";
6539
- }>;
6169
+ severity: z.ZodString;
6540
6170
  }, z.core.$strict>>>>;
6541
6171
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
6542
6172
  id: z.ZodString;
@@ -6584,8 +6214,8 @@ export declare const schemas: {
6584
6214
  }>>;
6585
6215
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6586
6216
  severity: z.ZodEnum<{
6587
- degraded: "degraded";
6588
6217
  down: "down";
6218
+ degraded: "degraded";
6589
6219
  }>;
6590
6220
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
6591
6221
  all_exceed: "all_exceed";
@@ -6610,13 +6240,7 @@ export declare const schemas: {
6610
6240
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6611
6241
  }, z.core.$strict>>>;
6612
6242
  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
- }>>>;
6243
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6620
6244
  }, z.core.$strict>;
6621
6245
  }, z.core.$strict>;
6622
6246
  SingleValueResponseMonitorTestResultDto: z.ZodObject<{
@@ -6631,55 +6255,9 @@ export declare const schemas: {
6631
6255
  redirectCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6632
6256
  finalUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6633
6257
  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
- }>;
6258
+ assertionType: z.ZodString;
6678
6259
  passed: z.ZodBoolean;
6679
- severity: z.ZodEnum<{
6680
- fail: "fail";
6681
- warn: "warn";
6682
- }>;
6260
+ severity: z.ZodString;
6683
6261
  message: z.ZodString;
6684
6262
  expected: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6685
6263
  actual: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -6696,14 +6274,7 @@ export declare const schemas: {
6696
6274
  id: z.ZodString;
6697
6275
  organizationId: z.ZodNumber;
6698
6276
  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
- }>;
6277
+ type: z.ZodString;
6707
6278
  config: z.ZodUnion<readonly [z.ZodObject<{
6708
6279
  hostname: z.ZodString;
6709
6280
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -6754,62 +6325,13 @@ export declare const schemas: {
6754
6325
  frequencySeconds: z.ZodNumber;
6755
6326
  enabled: z.ZodBoolean;
6756
6327
  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
- }>;
6328
+ managedBy: z.ZodString;
6764
6329
  createdAt: z.ZodString;
6765
6330
  updatedAt: z.ZodString;
6766
6331
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
6767
6332
  id: z.ZodString;
6768
6333
  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
- }>;
6334
+ assertionType: z.ZodString;
6813
6335
  config: z.ZodUnion<readonly [z.ZodObject<{
6814
6336
  type: z.ZodLiteral<"body_contains">;
6815
6337
  substring: z.ZodString;
@@ -6971,10 +6493,7 @@ export declare const schemas: {
6971
6493
  type: z.ZodLiteral<"tcp_response_time_warn">;
6972
6494
  warnMs: z.ZodNumber;
6973
6495
  }, z.core.$strict>]>;
6974
- severity: z.ZodEnum<{
6975
- fail: "fail";
6976
- warn: "warn";
6977
- }>;
6496
+ severity: z.ZodString;
6978
6497
  }, z.core.$strict>>>>;
6979
6498
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
6980
6499
  id: z.ZodString;
@@ -7022,8 +6541,8 @@ export declare const schemas: {
7022
6541
  }>>;
7023
6542
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7024
6543
  severity: z.ZodEnum<{
7025
- degraded: "degraded";
7026
6544
  down: "down";
6545
+ degraded: "degraded";
7027
6546
  }>;
7028
6547
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7029
6548
  all_exceed: "all_exceed";
@@ -7048,21 +6567,10 @@ export declare const schemas: {
7048
6567
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7049
6568
  }, z.core.$strict>>>;
7050
6569
  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
- }>>>;
6570
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7058
6571
  }, z.core.$strict>;
7059
6572
  changedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7060
- changedVia: z.ZodEnum<{
7061
- DASHBOARD: "DASHBOARD";
7062
- CLI: "CLI";
7063
- TERRAFORM: "TERRAFORM";
7064
- API: "API";
7065
- }>;
6573
+ changedVia: z.ZodString;
7066
6574
  changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7067
6575
  createdAt: z.ZodString;
7068
6576
  }, z.core.$strict>;
@@ -7073,19 +6581,8 @@ export declare const schemas: {
7073
6581
  incidentId: z.ZodString;
7074
6582
  policyId: z.ZodString;
7075
6583
  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
- }>>>;
6584
+ status: z.ZodString;
6585
+ completionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7089
6586
  currentStep: z.ZodNumber;
7090
6587
  totalSteps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7091
6588
  acknowledgedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7098,18 +6595,8 @@ export declare const schemas: {
7098
6595
  channelId: z.ZodString;
7099
6596
  channel: z.ZodString;
7100
6597
  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
- }>;
6598
+ status: z.ZodString;
6599
+ eventType: z.ZodString;
7113
6600
  stepNumber: z.ZodNumber;
7114
6601
  fireCount: z.ZodNumber;
7115
6602
  attemptCount: z.ZodNumber;
@@ -7197,29 +6684,17 @@ export declare const schemas: {
7197
6684
  }, z.core.$strict>>>;
7198
6685
  defaultAlertChannels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
7199
6686
  defaultEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7200
- healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7201
- COUNT: "COUNT";
7202
- PERCENTAGE: "PERCENTAGE";
7203
- }>>>;
6687
+ healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7204
6688
  healthThresholdValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7205
6689
  suppressMemberAlerts: z.ZodBoolean;
7206
6690
  confirmationDelaySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7207
6691
  recoveryCooldownMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7208
6692
  health: z.ZodObject<{
7209
- status: z.ZodEnum<{
7210
- degraded: "degraded";
7211
- down: "down";
7212
- operational: "operational";
7213
- maintenance: "maintenance";
7214
- }>;
6693
+ status: z.ZodString;
7215
6694
  totalMembers: z.ZodNumber;
7216
6695
  operationalCount: z.ZodNumber;
7217
6696
  activeIncidents: z.ZodNumber;
7218
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7219
- degraded: "degraded";
7220
- down: "down";
7221
- healthy: "healthy";
7222
- }>>>;
6697
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7223
6698
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7224
6699
  }, z.core.$strict>;
7225
6700
  members: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -7231,12 +6706,7 @@ export declare const schemas: {
7231
6706
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7232
6707
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7233
6708
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7234
- status: z.ZodEnum<{
7235
- degraded: "degraded";
7236
- down: "down";
7237
- operational: "operational";
7238
- maintenance: "maintenance";
7239
- }>;
6709
+ status: z.ZodString;
7240
6710
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7241
6711
  createdAt: z.ZodString;
7242
6712
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -7247,33 +6717,18 @@ export declare const schemas: {
7247
6717
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7248
6718
  environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7249
6719
  }, 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
- }>>>;
6720
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7257
6721
  createdAt: z.ZodString;
7258
6722
  updatedAt: z.ZodString;
7259
6723
  }, z.core.$strict>;
7260
6724
  }, z.core.$strict>;
7261
6725
  SingleValueResponseResourceGroupHealthDto: z.ZodObject<{
7262
6726
  data: z.ZodObject<{
7263
- status: z.ZodEnum<{
7264
- degraded: "degraded";
7265
- down: "down";
7266
- operational: "operational";
7267
- maintenance: "maintenance";
7268
- }>;
6727
+ status: z.ZodString;
7269
6728
  totalMembers: z.ZodNumber;
7270
6729
  operationalCount: z.ZodNumber;
7271
6730
  activeIncidents: z.ZodNumber;
7272
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7273
- degraded: "degraded";
7274
- down: "down";
7275
- healthy: "healthy";
7276
- }>>>;
6731
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7277
6732
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7278
6733
  }, z.core.$strict>;
7279
6734
  }, z.core.$strict>;
@@ -7287,12 +6742,7 @@ export declare const schemas: {
7287
6742
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7288
6743
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7289
6744
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7290
- status: z.ZodEnum<{
7291
- degraded: "degraded";
7292
- down: "down";
7293
- operational: "operational";
7294
- maintenance: "maintenance";
7295
- }>;
6745
+ status: z.ZodString;
7296
6746
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7297
6747
  createdAt: z.ZodString;
7298
6748
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -7306,13 +6756,7 @@ export declare const schemas: {
7306
6756
  }, z.core.$strict>;
7307
6757
  SingleValueResponseResultSummaryDto: z.ZodObject<{
7308
6758
  data: z.ZodObject<{
7309
- currentStatus: z.ZodEnum<{
7310
- up: "up";
7311
- degraded: "degraded";
7312
- down: "down";
7313
- paused: "paused";
7314
- unknown: "unknown";
7315
- }>;
6759
+ currentStatus: z.ZodString;
7316
6760
  latestPerRegion: z.ZodArray<z.ZodObject<{
7317
6761
  region: z.ZodString;
7318
6762
  passed: z.ZodBoolean;
@@ -7393,6 +6837,7 @@ export declare const schemas: {
7393
6837
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7394
6838
  adapterType: z.ZodString;
7395
6839
  pollingIntervalSeconds: z.ZodNumber;
6840
+ lifecycleStatus: z.ZodString;
7396
6841
  enabled: z.ZodBoolean;
7397
6842
  createdAt: z.ZodString;
7398
6843
  updatedAt: z.ZodString;
@@ -7496,6 +6941,7 @@ export declare const schemas: {
7496
6941
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7497
6942
  adapterType: z.ZodString;
7498
6943
  pollingIntervalSeconds: z.ZodNumber;
6944
+ lifecycleStatus: z.ZodString;
7499
6945
  enabled: z.ZodBoolean;
7500
6946
  published: z.ZodBoolean;
7501
6947
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7598,11 +7044,7 @@ export declare const schemas: {
7598
7044
  lastSeenAt: z.ZodString;
7599
7045
  isGroup: z.ZodBoolean;
7600
7046
  }, z.core.$strict>>>;
7601
- alertSensitivity: z.ZodEnum<{
7602
- ALL: "ALL";
7603
- INCIDENTS_ONLY: "INCIDENTS_ONLY";
7604
- MAJOR_ONLY: "MAJOR_ONLY";
7605
- }>;
7047
+ alertSensitivity: z.ZodString;
7606
7048
  subscribedAt: z.ZodString;
7607
7049
  }, z.core.$strict>;
7608
7050
  }, z.core.$strict>;
@@ -7625,20 +7067,10 @@ export declare const schemas: {
7625
7067
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7626
7068
  name: z.ZodString;
7627
7069
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7628
- type: z.ZodEnum<{
7629
- MONITOR: "MONITOR";
7630
- GROUP: "GROUP";
7631
- STATIC: "STATIC";
7632
- }>;
7070
+ type: z.ZodString;
7633
7071
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7634
7072
  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
- }>;
7073
+ currentStatus: z.ZodString;
7642
7074
  showUptime: z.ZodBoolean;
7643
7075
  displayOrder: z.ZodNumber;
7644
7076
  pageOrder: z.ZodNumber;
@@ -7654,20 +7086,10 @@ export declare const schemas: {
7654
7086
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7655
7087
  name: z.ZodString;
7656
7088
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7657
- type: z.ZodEnum<{
7658
- MONITOR: "MONITOR";
7659
- GROUP: "GROUP";
7660
- STATIC: "STATIC";
7661
- }>;
7089
+ type: z.ZodString;
7662
7090
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7663
7091
  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
- }>;
7092
+ currentStatus: z.ZodString;
7671
7093
  showUptime: z.ZodBoolean;
7672
7094
  displayOrder: z.ZodNumber;
7673
7095
  pageOrder: z.ZodNumber;
@@ -7691,20 +7113,10 @@ export declare const schemas: {
7691
7113
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7692
7114
  name: z.ZodString;
7693
7115
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7694
- type: z.ZodEnum<{
7695
- MONITOR: "MONITOR";
7696
- GROUP: "GROUP";
7697
- STATIC: "STATIC";
7698
- }>;
7116
+ type: z.ZodString;
7699
7117
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7700
7118
  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
- }>;
7119
+ currentStatus: z.ZodString;
7708
7120
  showUptime: z.ZodBoolean;
7709
7121
  displayOrder: z.ZodNumber;
7710
7122
  pageOrder: z.ZodNumber;
@@ -7731,20 +7143,10 @@ export declare const schemas: {
7731
7143
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7732
7144
  name: z.ZodString;
7733
7145
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7734
- type: z.ZodEnum<{
7735
- MONITOR: "MONITOR";
7736
- GROUP: "GROUP";
7737
- STATIC: "STATIC";
7738
- }>;
7146
+ type: z.ZodString;
7739
7147
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7740
7148
  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
- }>;
7149
+ currentStatus: z.ZodString;
7748
7150
  showUptime: z.ZodBoolean;
7749
7151
  displayOrder: z.ZodNumber;
7750
7152
  pageOrder: z.ZodNumber;
@@ -7760,19 +7162,8 @@ export declare const schemas: {
7760
7162
  StatusPageCustomDomainDto: z.ZodObject<{
7761
7163
  id: z.ZodString;
7762
7164
  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
- }>;
7165
+ status: z.ZodString;
7166
+ verificationMethod: z.ZodString;
7776
7167
  verificationToken: z.ZodString;
7777
7168
  verificationCnameTarget: z.ZodString;
7778
7169
  verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7788,19 +7179,8 @@ export declare const schemas: {
7788
7179
  data: z.ZodObject<{
7789
7180
  id: z.ZodString;
7790
7181
  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
- }>;
7182
+ status: z.ZodString;
7183
+ verificationMethod: z.ZodString;
7804
7184
  verificationToken: z.ZodString;
7805
7185
  verificationCnameTarget: z.ZodString;
7806
7186
  verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7832,36 +7212,17 @@ export declare const schemas: {
7832
7212
  theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7833
7213
  reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7834
7214
  hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7215
+ showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7835
7216
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7836
7217
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7837
7218
  }, z.core.$strict>;
7838
- visibility: z.ZodEnum<{
7839
- PUBLIC: "PUBLIC";
7840
- PASSWORD: "PASSWORD";
7841
- IP_RESTRICTED: "IP_RESTRICTED";
7842
- }>;
7219
+ visibility: z.ZodString;
7843
7220
  enabled: z.ZodBoolean;
7844
- incidentMode: z.ZodEnum<{
7845
- MANUAL: "MANUAL";
7846
- REVIEW: "REVIEW";
7847
- AUTOMATIC: "AUTOMATIC";
7848
- }>;
7221
+ incidentMode: z.ZodString;
7849
7222
  componentCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7850
7223
  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
- }>>>;
7224
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7225
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7865
7226
  createdAt: z.ZodString;
7866
7227
  updatedAt: z.ZodString;
7867
7228
  }, z.core.$strict>;
@@ -7885,64 +7246,31 @@ export declare const schemas: {
7885
7246
  theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7886
7247
  reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7887
7248
  hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7249
+ showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7888
7250
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7889
7251
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7890
7252
  }, z.core.$strict>;
7891
- visibility: z.ZodEnum<{
7892
- PUBLIC: "PUBLIC";
7893
- PASSWORD: "PASSWORD";
7894
- IP_RESTRICTED: "IP_RESTRICTED";
7895
- }>;
7253
+ visibility: z.ZodString;
7896
7254
  enabled: z.ZodBoolean;
7897
- incidentMode: z.ZodEnum<{
7898
- MANUAL: "MANUAL";
7899
- REVIEW: "REVIEW";
7900
- AUTOMATIC: "AUTOMATIC";
7901
- }>;
7255
+ incidentMode: z.ZodString;
7902
7256
  componentCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7903
7257
  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
- }>>>;
7258
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7259
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7918
7260
  createdAt: z.ZodString;
7919
7261
  updatedAt: z.ZodString;
7920
7262
  }, z.core.$strict>;
7921
7263
  }, z.core.$strict>;
7922
7264
  StatusPageIncidentComponentDto: z.ZodObject<{
7923
7265
  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
- }>;
7266
+ componentStatus: z.ZodString;
7931
7267
  componentName: z.ZodString;
7932
7268
  }, z.core.$strict>;
7933
7269
  StatusPageIncidentUpdateDto: z.ZodObject<{
7934
7270
  id: z.ZodString;
7935
- status: z.ZodEnum<{
7936
- RESOLVED: "RESOLVED";
7937
- INVESTIGATING: "INVESTIGATING";
7938
- IDENTIFIED: "IDENTIFIED";
7939
- MONITORING: "MONITORING";
7940
- }>;
7271
+ status: z.ZodString;
7941
7272
  body: z.ZodString;
7942
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7943
- SYSTEM: "SYSTEM";
7944
- USER: "USER";
7945
- }>>>;
7273
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7946
7274
  createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7947
7275
  notifySubscribers: z.ZodBoolean;
7948
7276
  createdAt: z.ZodString;
@@ -7951,18 +7279,8 @@ export declare const schemas: {
7951
7279
  id: z.ZodString;
7952
7280
  statusPageId: z.ZodString;
7953
7281
  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
- }>;
7282
+ status: z.ZodString;
7283
+ impact: z.ZodString;
7966
7284
  scheduled: z.ZodBoolean;
7967
7285
  scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7968
7286
  scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7976,28 +7294,14 @@ export declare const schemas: {
7976
7294
  postmortemUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7977
7295
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
7978
7296
  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
- }>;
7297
+ componentStatus: z.ZodString;
7986
7298
  componentName: z.ZodString;
7987
7299
  }, z.core.$strict>>>>;
7988
7300
  updates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
7989
7301
  id: z.ZodString;
7990
- status: z.ZodEnum<{
7991
- RESOLVED: "RESOLVED";
7992
- INVESTIGATING: "INVESTIGATING";
7993
- IDENTIFIED: "IDENTIFIED";
7994
- MONITORING: "MONITORING";
7995
- }>;
7302
+ status: z.ZodString;
7996
7303
  body: z.ZodString;
7997
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
7998
- SYSTEM: "SYSTEM";
7999
- USER: "USER";
8000
- }>>>;
7304
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8001
7305
  createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8002
7306
  notifySubscribers: z.ZodBoolean;
8003
7307
  createdAt: z.ZodString;
@@ -8010,18 +7314,8 @@ export declare const schemas: {
8010
7314
  id: z.ZodString;
8011
7315
  statusPageId: z.ZodString;
8012
7316
  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
- }>;
7317
+ status: z.ZodString;
7318
+ impact: z.ZodString;
8025
7319
  scheduled: z.ZodBoolean;
8026
7320
  scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8027
7321
  scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8035,28 +7329,14 @@ export declare const schemas: {
8035
7329
  postmortemUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8036
7330
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8037
7331
  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
- }>;
7332
+ componentStatus: z.ZodString;
8045
7333
  componentName: z.ZodString;
8046
7334
  }, z.core.$strict>>>>;
8047
7335
  updates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8048
7336
  id: z.ZodString;
8049
- status: z.ZodEnum<{
8050
- RESOLVED: "RESOLVED";
8051
- INVESTIGATING: "INVESTIGATING";
8052
- IDENTIFIED: "IDENTIFIED";
8053
- MONITORING: "MONITORING";
8054
- }>;
7337
+ status: z.ZodString;
8055
7338
  body: z.ZodString;
8056
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
8057
- SYSTEM: "SYSTEM";
8058
- USER: "USER";
8059
- }>>>;
7339
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8060
7340
  createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8061
7341
  notifySubscribers: z.ZodBoolean;
8062
7342
  createdAt: z.ZodString;
@@ -8200,32 +7480,28 @@ export declare const schemas: {
8200
7480
  data: z.ZodArray<z.ZodObject<{
8201
7481
  id: z.ZodString;
8202
7482
  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
- }>;
7483
+ channelType: z.ZodString;
8212
7484
  displayConfig: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8213
7485
  recipients: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
8214
7486
  region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8215
7487
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8216
7488
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8217
7489
  customHeaders: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>>>;
7490
+ chatId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7491
+ priority: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7492
+ channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7493
+ routingKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7494
+ deviceIden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7495
+ teamId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7496
+ visibility: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7497
+ severity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7498
+ site: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7499
+ projectKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8218
7500
  }, z.core.$strict>>>;
8219
7501
  createdAt: z.ZodString;
8220
7502
  updatedAt: z.ZodString;
8221
7503
  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
- }>>>;
7504
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8229
7505
  lastDeliveryAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8230
7506
  lastDeliveryStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8231
7507
  }, z.core.$strict>>;
@@ -8242,18 +7518,8 @@ export declare const schemas: {
8242
7518
  channelId: z.ZodString;
8243
7519
  channel: z.ZodString;
8244
7520
  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
- }>;
7521
+ status: z.ZodString;
7522
+ eventType: z.ZodString;
8257
7523
  stepNumber: z.ZodNumber;
8258
7524
  fireCount: z.ZodNumber;
8259
7525
  attemptCount: z.ZodNumber;
@@ -8383,24 +7649,9 @@ export declare const schemas: {
8383
7649
  id: z.ZodString;
8384
7650
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8385
7651
  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
- }>;
7652
+ source: z.ZodString;
7653
+ status: z.ZodString;
7654
+ severity: z.ZodString;
8404
7655
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8405
7656
  triggeredByRule: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8406
7657
  affectedRegions: z.ZodArray<z.ZodString>;
@@ -8412,11 +7663,7 @@ export declare const schemas: {
8412
7663
  externalRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8413
7664
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
8414
7665
  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
- }>>>;
7666
+ resolutionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8420
7667
  startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8421
7668
  confirmedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8422
7669
  resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8472,14 +7719,7 @@ export declare const schemas: {
8472
7719
  description: z.ZodString;
8473
7720
  logoUrl: z.ZodString;
8474
7721
  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
- }>;
7722
+ tierAvailability: z.ZodString;
8483
7723
  lifecycle: z.ZodString;
8484
7724
  setupGuideUrl: z.ZodString;
8485
7725
  configSchema: z.ZodObject<{
@@ -8516,11 +7756,7 @@ export declare const schemas: {
8516
7756
  data: z.ZodArray<z.ZodObject<{
8517
7757
  inviteId: z.ZodNumber;
8518
7758
  email: z.ZodString;
8519
- roleOffered: z.ZodEnum<{
8520
- OWNER: "OWNER";
8521
- ADMIN: "ADMIN";
8522
- MEMBER: "MEMBER";
8523
- }>;
7759
+ roleOffered: z.ZodString;
8524
7760
  expiresAt: z.ZodString;
8525
7761
  consumedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8526
7762
  revokedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -8552,19 +7788,8 @@ export declare const schemas: {
8552
7788
  userId: z.ZodNumber;
8553
7789
  email: z.ZodString;
8554
7790
  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
- }>;
7791
+ orgRole: z.ZodString;
7792
+ status: z.ZodString;
8568
7793
  createdAt: z.ZodString;
8569
7794
  }, z.core.$strict>>;
8570
7795
  hasNext: z.ZodBoolean;
@@ -8577,14 +7802,7 @@ export declare const schemas: {
8577
7802
  id: z.ZodString;
8578
7803
  organizationId: z.ZodNumber;
8579
7804
  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
- }>;
7805
+ type: z.ZodString;
8588
7806
  config: z.ZodUnion<readonly [z.ZodObject<{
8589
7807
  hostname: z.ZodString;
8590
7808
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -8635,62 +7853,13 @@ export declare const schemas: {
8635
7853
  frequencySeconds: z.ZodNumber;
8636
7854
  enabled: z.ZodBoolean;
8637
7855
  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
- }>;
7856
+ managedBy: z.ZodString;
8645
7857
  createdAt: z.ZodString;
8646
7858
  updatedAt: z.ZodString;
8647
7859
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8648
7860
  id: z.ZodString;
8649
7861
  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
- }>;
7862
+ assertionType: z.ZodString;
8694
7863
  config: z.ZodUnion<readonly [z.ZodObject<{
8695
7864
  type: z.ZodLiteral<"body_contains">;
8696
7865
  substring: z.ZodString;
@@ -8852,10 +8021,7 @@ export declare const schemas: {
8852
8021
  type: z.ZodLiteral<"tcp_response_time_warn">;
8853
8022
  warnMs: z.ZodNumber;
8854
8023
  }, z.core.$strict>]>;
8855
- severity: z.ZodEnum<{
8856
- fail: "fail";
8857
- warn: "warn";
8858
- }>;
8024
+ severity: z.ZodString;
8859
8025
  }, z.core.$strict>>>>;
8860
8026
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
8861
8027
  id: z.ZodString;
@@ -8903,8 +8069,8 @@ export declare const schemas: {
8903
8069
  }>>;
8904
8070
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8905
8071
  severity: z.ZodEnum<{
8906
- degraded: "degraded";
8907
8072
  down: "down";
8073
+ degraded: "degraded";
8908
8074
  }>;
8909
8075
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
8910
8076
  all_exceed: "all_exceed";
@@ -8929,13 +8095,7 @@ export declare const schemas: {
8929
8095
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8930
8096
  }, z.core.$strict>>>;
8931
8097
  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
- }>>>;
8098
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8939
8099
  }, z.core.$strict>>;
8940
8100
  hasNext: z.ZodBoolean;
8941
8101
  hasPrev: z.ZodBoolean;
@@ -8951,14 +8111,7 @@ export declare const schemas: {
8951
8111
  id: z.ZodString;
8952
8112
  organizationId: z.ZodNumber;
8953
8113
  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
- }>;
8114
+ type: z.ZodString;
8962
8115
  config: z.ZodUnion<readonly [z.ZodObject<{
8963
8116
  hostname: z.ZodString;
8964
8117
  recordTypes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodEnum<{
@@ -9009,62 +8162,13 @@ export declare const schemas: {
9009
8162
  frequencySeconds: z.ZodNumber;
9010
8163
  enabled: z.ZodBoolean;
9011
8164
  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
- }>;
8165
+ managedBy: z.ZodString;
9019
8166
  createdAt: z.ZodString;
9020
8167
  updatedAt: z.ZodString;
9021
8168
  assertions: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9022
8169
  id: z.ZodString;
9023
8170
  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
- }>;
8171
+ assertionType: z.ZodString;
9068
8172
  config: z.ZodUnion<readonly [z.ZodObject<{
9069
8173
  type: z.ZodLiteral<"body_contains">;
9070
8174
  substring: z.ZodString;
@@ -9226,10 +8330,7 @@ export declare const schemas: {
9226
8330
  type: z.ZodLiteral<"tcp_response_time_warn">;
9227
8331
  warnMs: z.ZodNumber;
9228
8332
  }, z.core.$strict>]>;
9229
- severity: z.ZodEnum<{
9230
- fail: "fail";
9231
- warn: "warn";
9232
- }>;
8333
+ severity: z.ZodString;
9233
8334
  }, z.core.$strict>>>>;
9234
8335
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9235
8336
  id: z.ZodString;
@@ -9277,8 +8378,8 @@ export declare const schemas: {
9277
8378
  }>>;
9278
8379
  thresholdMs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9279
8380
  severity: z.ZodEnum<{
9280
- degraded: "degraded";
9281
8381
  down: "down";
8382
+ degraded: "degraded";
9282
8383
  }>;
9283
8384
  aggregationType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9284
8385
  all_exceed: "all_exceed";
@@ -9303,21 +8404,10 @@ export declare const schemas: {
9303
8404
  checkFrequencySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9304
8405
  }, z.core.$strict>>>;
9305
8406
  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
- }>>>;
8407
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9313
8408
  }, z.core.$strict>;
9314
8409
  changedById: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9315
- changedVia: z.ZodEnum<{
9316
- DASHBOARD: "DASHBOARD";
9317
- CLI: "CLI";
9318
- TERRAFORM: "TERRAFORM";
9319
- API: "API";
9320
- }>;
8410
+ changedVia: z.ZodString;
9321
8411
  changeSummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9322
8412
  createdAt: z.ZodString;
9323
8413
  }, z.core.$strict>>;
@@ -9332,19 +8422,8 @@ export declare const schemas: {
9332
8422
  incidentId: z.ZodString;
9333
8423
  policyId: z.ZodString;
9334
8424
  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
- }>>>;
8425
+ status: z.ZodString;
8426
+ completionReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9348
8427
  currentStep: z.ZodNumber;
9349
8428
  totalSteps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9350
8429
  acknowledgedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -9357,18 +8436,8 @@ export declare const schemas: {
9357
8436
  channelId: z.ZodString;
9358
8437
  channel: z.ZodString;
9359
8438
  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
- }>;
8439
+ status: z.ZodString;
8440
+ eventType: z.ZodString;
9372
8441
  stepNumber: z.ZodNumber;
9373
8442
  fireCount: z.ZodNumber;
9374
8443
  attemptCount: z.ZodNumber;
@@ -9461,29 +8530,17 @@ export declare const schemas: {
9461
8530
  }, z.core.$strict>>>;
9462
8531
  defaultAlertChannels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
9463
8532
  defaultEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9464
- healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9465
- COUNT: "COUNT";
9466
- PERCENTAGE: "PERCENTAGE";
9467
- }>>>;
8533
+ healthThresholdType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9468
8534
  healthThresholdValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9469
8535
  suppressMemberAlerts: z.ZodBoolean;
9470
8536
  confirmationDelaySeconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9471
8537
  recoveryCooldownMinutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9472
8538
  health: z.ZodObject<{
9473
- status: z.ZodEnum<{
9474
- degraded: "degraded";
9475
- down: "down";
9476
- operational: "operational";
9477
- maintenance: "maintenance";
9478
- }>;
8539
+ status: z.ZodString;
9479
8540
  totalMembers: z.ZodNumber;
9480
8541
  operationalCount: z.ZodNumber;
9481
8542
  activeIncidents: z.ZodNumber;
9482
- thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9483
- degraded: "degraded";
9484
- down: "down";
9485
- healthy: "healthy";
9486
- }>>>;
8543
+ thresholdStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9487
8544
  failingCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9488
8545
  }, z.core.$strict>;
9489
8546
  members: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -9495,12 +8552,7 @@ export declare const schemas: {
9495
8552
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9496
8553
  slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9497
8554
  subscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9498
- status: z.ZodEnum<{
9499
- degraded: "degraded";
9500
- down: "down";
9501
- operational: "operational";
9502
- maintenance: "maintenance";
9503
- }>;
8555
+ status: z.ZodString;
9504
8556
  effectiveFrequency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9505
8557
  createdAt: z.ZodString;
9506
8558
  uptime24h: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -9511,13 +8563,7 @@ export declare const schemas: {
9511
8563
  monitorType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9512
8564
  environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9513
8565
  }, 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
- }>>>;
8566
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9521
8567
  createdAt: z.ZodString;
9522
8568
  updatedAt: z.ZodString;
9523
8569
  }, z.core.$strict>>;
@@ -9697,11 +8743,7 @@ export declare const schemas: {
9697
8743
  lastSeenAt: z.ZodString;
9698
8744
  isGroup: z.ZodBoolean;
9699
8745
  }, z.core.$strict>>>;
9700
- alertSensitivity: z.ZodEnum<{
9701
- ALL: "ALL";
9702
- INCIDENTS_ONLY: "INCIDENTS_ONLY";
9703
- MAJOR_ONLY: "MAJOR_ONLY";
9704
- }>;
8746
+ alertSensitivity: z.ZodString;
9705
8747
  subscribedAt: z.ZodString;
9706
8748
  }, z.core.$strict>>;
9707
8749
  hasNext: z.ZodBoolean;
@@ -9716,20 +8758,10 @@ export declare const schemas: {
9716
8758
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9717
8759
  name: z.ZodString;
9718
8760
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9719
- type: z.ZodEnum<{
9720
- MONITOR: "MONITOR";
9721
- GROUP: "GROUP";
9722
- STATIC: "STATIC";
9723
- }>;
8761
+ type: z.ZodString;
9724
8762
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9725
8763
  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
- }>;
8764
+ currentStatus: z.ZodString;
9733
8765
  showUptime: z.ZodBoolean;
9734
8766
  displayOrder: z.ZodNumber;
9735
8767
  pageOrder: z.ZodNumber;
@@ -9758,20 +8790,10 @@ export declare const schemas: {
9758
8790
  groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9759
8791
  name: z.ZodString;
9760
8792
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9761
- type: z.ZodEnum<{
9762
- MONITOR: "MONITOR";
9763
- GROUP: "GROUP";
9764
- STATIC: "STATIC";
9765
- }>;
8793
+ type: z.ZodString;
9766
8794
  monitorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9767
8795
  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
- }>;
8796
+ currentStatus: z.ZodString;
9775
8797
  showUptime: z.ZodBoolean;
9776
8798
  displayOrder: z.ZodNumber;
9777
8799
  pageOrder: z.ZodNumber;
@@ -9792,19 +8814,8 @@ export declare const schemas: {
9792
8814
  data: z.ZodArray<z.ZodObject<{
9793
8815
  id: z.ZodString;
9794
8816
  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
- }>;
8817
+ status: z.ZodString;
8818
+ verificationMethod: z.ZodString;
9808
8819
  verificationToken: z.ZodString;
9809
8820
  verificationCnameTarget: z.ZodString;
9810
8821
  verifiedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -9841,36 +8852,17 @@ export declare const schemas: {
9841
8852
  theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9842
8853
  reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9843
8854
  hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8855
+ showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9844
8856
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9845
8857
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9846
8858
  }, z.core.$strict>;
9847
- visibility: z.ZodEnum<{
9848
- PUBLIC: "PUBLIC";
9849
- PASSWORD: "PASSWORD";
9850
- IP_RESTRICTED: "IP_RESTRICTED";
9851
- }>;
8859
+ visibility: z.ZodString;
9852
8860
  enabled: z.ZodBoolean;
9853
- incidentMode: z.ZodEnum<{
9854
- MANUAL: "MANUAL";
9855
- REVIEW: "REVIEW";
9856
- AUTOMATIC: "AUTOMATIC";
9857
- }>;
8861
+ incidentMode: z.ZodString;
9858
8862
  componentCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9859
8863
  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
- }>>>;
8864
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8865
+ managedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9874
8866
  createdAt: z.ZodString;
9875
8867
  updatedAt: z.ZodString;
9876
8868
  }, z.core.$strict>>;
@@ -9884,18 +8876,8 @@ export declare const schemas: {
9884
8876
  id: z.ZodString;
9885
8877
  statusPageId: z.ZodString;
9886
8878
  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
- }>;
8879
+ status: z.ZodString;
8880
+ impact: z.ZodString;
9899
8881
  scheduled: z.ZodBoolean;
9900
8882
  scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9901
8883
  scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -9909,28 +8891,14 @@ export declare const schemas: {
9909
8891
  postmortemUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9910
8892
  affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9911
8893
  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
- }>;
8894
+ componentStatus: z.ZodString;
9919
8895
  componentName: z.ZodString;
9920
8896
  }, z.core.$strict>>>>;
9921
8897
  updates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9922
8898
  id: z.ZodString;
9923
- status: z.ZodEnum<{
9924
- RESOLVED: "RESOLVED";
9925
- INVESTIGATING: "INVESTIGATING";
9926
- IDENTIFIED: "IDENTIFIED";
9927
- MONITORING: "MONITORING";
9928
- }>;
8899
+ status: z.ZodString;
9929
8900
  body: z.ZodString;
9930
- createdBy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
9931
- SYSTEM: "SYSTEM";
9932
- USER: "USER";
9933
- }>>>;
8901
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9934
8902
  createdByUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9935
8903
  notifySubscribers: z.ZodBoolean;
9936
8904
  createdAt: z.ZodString;