@devhelm/sdk 1.1.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<{
@@ -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,6 +2636,16 @@ 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;
@@ -2385,6 +2657,16 @@ export declare const schemas: {
2385
2657
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2386
2658
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2387
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>>;
2388
2670
  }, z.core.$strict>>>;
2389
2671
  createdAt: z.ZodString;
2390
2672
  updatedAt: z.ZodString;
@@ -3102,6 +3384,7 @@ export declare const schemas: {
3102
3384
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3103
3385
  adapterType: z.ZodString;
3104
3386
  pollingIntervalSeconds: z.ZodNumber;
3387
+ lifecycleStatus: z.ZodString;
3105
3388
  enabled: z.ZodBoolean;
3106
3389
  published: z.ZodBoolean;
3107
3390
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3123,6 +3406,7 @@ export declare const schemas: {
3123
3406
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3124
3407
  adapterType: z.ZodString;
3125
3408
  pollingIntervalSeconds: z.ZodNumber;
3409
+ lifecycleStatus: z.ZodString;
3126
3410
  enabled: z.ZodBoolean;
3127
3411
  published: z.ZodBoolean;
3128
3412
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3273,6 +3557,7 @@ export declare const schemas: {
3273
3557
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3274
3558
  adapterType: z.ZodString;
3275
3559
  pollingIntervalSeconds: z.ZodNumber;
3560
+ lifecycleStatus: z.ZodString;
3276
3561
  enabled: z.ZodBoolean;
3277
3562
  published: z.ZodBoolean;
3278
3563
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4797,6 +5082,7 @@ export declare const schemas: {
4797
5082
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4798
5083
  adapterType: z.ZodString;
4799
5084
  pollingIntervalSeconds: z.ZodNumber;
5085
+ lifecycleStatus: z.ZodString;
4800
5086
  enabled: z.ZodBoolean;
4801
5087
  createdAt: z.ZodString;
4802
5088
  updatedAt: z.ZodString;
@@ -4900,6 +5186,7 @@ export declare const schemas: {
4900
5186
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4901
5187
  adapterType: z.ZodString;
4902
5188
  pollingIntervalSeconds: z.ZodNumber;
5189
+ lifecycleStatus: z.ZodString;
4903
5190
  enabled: z.ZodBoolean;
4904
5191
  published: z.ZodBoolean;
4905
5192
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5029,6 +5316,16 @@ export declare const schemas: {
5029
5316
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5030
5317
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5031
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>>;
5032
5329
  }, z.core.$strict>>>;
5033
5330
  createdAt: z.ZodString;
5034
5331
  updatedAt: z.ZodString;
@@ -5260,6 +5557,7 @@ export declare const schemas: {
5260
5557
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5261
5558
  adapterType: z.ZodString;
5262
5559
  pollingIntervalSeconds: z.ZodNumber;
5560
+ lifecycleStatus: z.ZodString;
5263
5561
  enabled: z.ZodBoolean;
5264
5562
  published: z.ZodBoolean;
5265
5563
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -6539,6 +6837,7 @@ export declare const schemas: {
6539
6837
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6540
6838
  adapterType: z.ZodString;
6541
6839
  pollingIntervalSeconds: z.ZodNumber;
6840
+ lifecycleStatus: z.ZodString;
6542
6841
  enabled: z.ZodBoolean;
6543
6842
  createdAt: z.ZodString;
6544
6843
  updatedAt: z.ZodString;
@@ -6642,6 +6941,7 @@ export declare const schemas: {
6642
6941
  logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6643
6942
  adapterType: z.ZodString;
6644
6943
  pollingIntervalSeconds: z.ZodNumber;
6944
+ lifecycleStatus: z.ZodString;
6645
6945
  enabled: z.ZodBoolean;
6646
6946
  published: z.ZodBoolean;
6647
6947
  overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -6912,6 +7212,7 @@ export declare const schemas: {
6912
7212
  theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6913
7213
  reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6914
7214
  hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7215
+ showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6915
7216
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6916
7217
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6917
7218
  }, z.core.$strict>;
@@ -6945,6 +7246,7 @@ export declare const schemas: {
6945
7246
  theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6946
7247
  reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6947
7248
  hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7249
+ showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6948
7250
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6949
7251
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6950
7252
  }, z.core.$strict>;
@@ -7185,6 +7487,16 @@ export declare const schemas: {
7185
7487
  severityOverride: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7186
7488
  mentionRoleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7187
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>>;
7188
7500
  }, z.core.$strict>>>;
7189
7501
  createdAt: z.ZodString;
7190
7502
  updatedAt: z.ZodString;
@@ -8540,6 +8852,7 @@ export declare const schemas: {
8540
8852
  theme: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8541
8853
  reportUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8542
8854
  hidePoweredBy: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8855
+ showSubscribeButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8543
8856
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8544
8857
  customHeadHtml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8545
8858
  }, z.core.$strict>;
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/generated/schemas.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAqmGxB,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkWnB,CAAC"}
1
+ {"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../src/generated/schemas.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAmwGxB,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgXnB,CAAC"}