@devhelm/sdk 1.2.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/schemas.d.ts CHANGED
@@ -1208,6 +1208,385 @@ export declare const IncidentStateTransitionDtoSchema: z.ZodObject<{
1208
1208
  }>;
1209
1209
  }, z.core.$strict>;
1210
1210
  }, z.core.$strict>;
1211
+ export declare const ServiceCatalogDtoSchema: z.ZodObject<{
1212
+ id: z.ZodString;
1213
+ slug: z.ZodString;
1214
+ name: z.ZodString;
1215
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1216
+ officialStatusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1217
+ developerContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1218
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1219
+ adapterType: z.ZodString;
1220
+ pollingIntervalSeconds: z.ZodNumber;
1221
+ lifecycleStatus: z.ZodString;
1222
+ enabled: z.ZodBoolean;
1223
+ published: z.ZodBoolean;
1224
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1225
+ createdAt: z.ZodString;
1226
+ updatedAt: z.ZodString;
1227
+ componentCount: z.ZodNumber;
1228
+ activeIncidentCount: z.ZodNumber;
1229
+ dataCompleteness: z.ZodString;
1230
+ uptime30d: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1231
+ }, z.core.$strict>;
1232
+ export declare const ServiceDetailDtoSchema: z.ZodObject<{
1233
+ id: z.ZodString;
1234
+ slug: z.ZodString;
1235
+ name: z.ZodString;
1236
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1237
+ officialStatusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1238
+ developerContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1239
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1240
+ adapterType: z.ZodString;
1241
+ pollingIntervalSeconds: z.ZodNumber;
1242
+ lifecycleStatus: z.ZodString;
1243
+ enabled: z.ZodBoolean;
1244
+ createdAt: z.ZodString;
1245
+ updatedAt: z.ZodString;
1246
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1247
+ overallStatus: z.ZodString;
1248
+ lastPolledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1249
+ }, z.core.$strict>>>;
1250
+ recentIncidents: z.ZodArray<z.ZodObject<{
1251
+ id: z.ZodString;
1252
+ serviceId: z.ZodString;
1253
+ serviceSlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1254
+ serviceName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1255
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1256
+ title: z.ZodString;
1257
+ status: z.ZodString;
1258
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1259
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1260
+ resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1261
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1262
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1263
+ detectedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1264
+ vendorCreatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1265
+ }, z.core.$strict>>;
1266
+ components: z.ZodArray<z.ZodObject<{
1267
+ id: z.ZodString;
1268
+ externalId: z.ZodString;
1269
+ name: z.ZodString;
1270
+ status: z.ZodString;
1271
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1272
+ groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1273
+ position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1274
+ showcase: z.ZodBoolean;
1275
+ onlyShowIfDegraded: z.ZodBoolean;
1276
+ startDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1277
+ vendorCreatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1278
+ lifecycleStatus: z.ZodString;
1279
+ dataType: z.ZodString;
1280
+ hasUptime: z.ZodBoolean;
1281
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1282
+ groupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1283
+ displayAggregatedUptime: z.ZodBoolean;
1284
+ childCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1285
+ uptime: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1286
+ day: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1287
+ week: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1288
+ month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1289
+ source: z.ZodString;
1290
+ }, z.core.$strict>>>;
1291
+ statusChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1292
+ firstSeenAt: z.ZodString;
1293
+ lastSeenAt: z.ZodString;
1294
+ isGroup: z.ZodBoolean;
1295
+ }, z.core.$strict>>;
1296
+ componentsSummary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1297
+ totalCount: z.ZodNumber;
1298
+ includedCount: z.ZodNumber;
1299
+ groupComponentCounts: z.ZodRecord<z.ZodString, z.ZodNumber>;
1300
+ }, z.core.$strict>>>;
1301
+ uptime: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1302
+ day: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1303
+ week: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1304
+ month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1305
+ source: z.ZodString;
1306
+ }, z.core.$strict>>>;
1307
+ activeMaintenances: z.ZodArray<z.ZodObject<{
1308
+ id: z.ZodString;
1309
+ externalId: z.ZodString;
1310
+ title: z.ZodString;
1311
+ status: z.ZodString;
1312
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1313
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1314
+ scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1315
+ scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1316
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1317
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1318
+ affectedComponents: z.ZodArray<z.ZodObject<{
1319
+ id: z.ZodString;
1320
+ name: z.ZodString;
1321
+ status: z.ZodString;
1322
+ }, z.core.$strict>>;
1323
+ updates: z.ZodArray<z.ZodObject<{
1324
+ id: z.ZodString;
1325
+ status: z.ZodString;
1326
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1327
+ displayAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1328
+ }, z.core.$strict>>;
1329
+ }, z.core.$strict>>;
1330
+ dataCompleteness: z.ZodString;
1331
+ seoMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1332
+ shortDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1333
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1334
+ about: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1335
+ }, z.core.$strict>>>;
1336
+ relatedServices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1337
+ id: z.ZodString;
1338
+ slug: z.ZodString;
1339
+ name: z.ZodString;
1340
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1341
+ officialStatusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1342
+ developerContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1343
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1344
+ adapterType: z.ZodString;
1345
+ pollingIntervalSeconds: z.ZodNumber;
1346
+ lifecycleStatus: z.ZodString;
1347
+ enabled: z.ZodBoolean;
1348
+ published: z.ZodBoolean;
1349
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1350
+ createdAt: z.ZodString;
1351
+ updatedAt: z.ZodString;
1352
+ componentCount: z.ZodNumber;
1353
+ activeIncidentCount: z.ZodNumber;
1354
+ dataCompleteness: z.ZodString;
1355
+ uptime30d: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1356
+ }, z.core.$strict>>>>;
1357
+ }, z.core.$strict>;
1358
+ export declare const ServiceLiveStatusDtoSchema: z.ZodObject<{
1359
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1360
+ componentStatuses: z.ZodArray<z.ZodObject<{
1361
+ id: z.ZodString;
1362
+ name: z.ZodString;
1363
+ status: z.ZodString;
1364
+ }, z.core.$strict>>;
1365
+ activeIncidentCount: z.ZodNumber;
1366
+ lastPolledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1367
+ }, z.core.$strict>;
1368
+ export declare const ServiceStatusDtoSchema: z.ZodObject<{
1369
+ overallStatus: z.ZodString;
1370
+ lastPolledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1371
+ }, z.core.$strict>;
1372
+ export declare const CategoryDtoSchema: z.ZodObject<{
1373
+ category: z.ZodString;
1374
+ serviceCount: z.ZodNumber;
1375
+ }, z.core.$strict>;
1376
+ export declare const GlobalStatusSummaryDtoSchema: z.ZodObject<{
1377
+ totalServices: z.ZodNumber;
1378
+ operationalCount: z.ZodNumber;
1379
+ degradedCount: z.ZodNumber;
1380
+ partialOutageCount: z.ZodNumber;
1381
+ majorOutageCount: z.ZodNumber;
1382
+ maintenanceCount: z.ZodNumber;
1383
+ unknownCount: z.ZodNumber;
1384
+ activeIncidentCount: z.ZodNumber;
1385
+ servicesWithIssues: z.ZodArray<z.ZodObject<{
1386
+ id: z.ZodString;
1387
+ slug: z.ZodString;
1388
+ name: z.ZodString;
1389
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1390
+ officialStatusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1391
+ developerContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1392
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1393
+ adapterType: z.ZodString;
1394
+ pollingIntervalSeconds: z.ZodNumber;
1395
+ lifecycleStatus: z.ZodString;
1396
+ enabled: z.ZodBoolean;
1397
+ published: z.ZodBoolean;
1398
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1399
+ createdAt: z.ZodString;
1400
+ updatedAt: z.ZodString;
1401
+ componentCount: z.ZodNumber;
1402
+ activeIncidentCount: z.ZodNumber;
1403
+ dataCompleteness: z.ZodString;
1404
+ uptime30d: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1405
+ }, z.core.$strict>>;
1406
+ }, z.core.$strict>;
1407
+ export declare const ServiceComponentDtoSchema: z.ZodObject<{
1408
+ id: z.ZodString;
1409
+ externalId: z.ZodString;
1410
+ name: z.ZodString;
1411
+ status: z.ZodString;
1412
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1413
+ groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1414
+ position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1415
+ showcase: z.ZodBoolean;
1416
+ onlyShowIfDegraded: z.ZodBoolean;
1417
+ startDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1418
+ vendorCreatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1419
+ lifecycleStatus: z.ZodString;
1420
+ dataType: z.ZodString;
1421
+ hasUptime: z.ZodBoolean;
1422
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1423
+ groupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1424
+ displayAggregatedUptime: z.ZodBoolean;
1425
+ childCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1426
+ uptime: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1427
+ day: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1428
+ week: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1429
+ month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1430
+ source: z.ZodString;
1431
+ }, z.core.$strict>>>;
1432
+ statusChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1433
+ firstSeenAt: z.ZodString;
1434
+ lastSeenAt: z.ZodString;
1435
+ isGroup: z.ZodBoolean;
1436
+ }, z.core.$strict>;
1437
+ export declare const ComponentStatusDtoSchema: z.ZodObject<{
1438
+ id: z.ZodString;
1439
+ name: z.ZodString;
1440
+ status: z.ZodString;
1441
+ }, z.core.$strict>;
1442
+ export declare const ComponentsSummaryDtoSchema: z.ZodObject<{
1443
+ totalCount: z.ZodNumber;
1444
+ includedCount: z.ZodNumber;
1445
+ groupComponentCounts: z.ZodRecord<z.ZodString, z.ZodNumber>;
1446
+ }, z.core.$strict>;
1447
+ export declare const ComponentUptimeSummaryDtoSchema: z.ZodObject<{
1448
+ day: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1449
+ week: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1450
+ month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1451
+ source: z.ZodString;
1452
+ }, z.core.$strict>;
1453
+ export declare const ComponentUptimeDayDtoSchema: z.ZodObject<{
1454
+ date: z.ZodString;
1455
+ partialOutageSeconds: z.ZodNumber;
1456
+ majorOutageSeconds: z.ZodNumber;
1457
+ degradedSeconds: z.ZodNumber;
1458
+ uptimePercentage: z.ZodNumber;
1459
+ incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1460
+ id: z.ZodString;
1461
+ title: z.ZodString;
1462
+ impact: z.ZodString;
1463
+ }, z.core.$strict>>>>;
1464
+ }, z.core.$strict>;
1465
+ export declare const BatchComponentUptimeDtoSchema: z.ZodObject<{
1466
+ components: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
1467
+ date: z.ZodString;
1468
+ partialOutageSeconds: z.ZodNumber;
1469
+ majorOutageSeconds: z.ZodNumber;
1470
+ degradedSeconds: z.ZodNumber;
1471
+ uptimePercentage: z.ZodNumber;
1472
+ incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1473
+ id: z.ZodString;
1474
+ title: z.ZodString;
1475
+ impact: z.ZodString;
1476
+ }, z.core.$strict>>>>;
1477
+ }, z.core.$strict>>>;
1478
+ }, z.core.$strict>;
1479
+ export declare const ServiceDayDetailDtoSchema: z.ZodObject<{
1480
+ date: z.ZodString;
1481
+ overallUptimePercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1482
+ totalPartialOutageSeconds: z.ZodNumber;
1483
+ totalMajorOutageSeconds: z.ZodNumber;
1484
+ totalDegradedSeconds: z.ZodNumber;
1485
+ components: z.ZodArray<z.ZodObject<{
1486
+ componentId: z.ZodString;
1487
+ componentName: z.ZodString;
1488
+ groupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1489
+ uptimePercentage: z.ZodNumber;
1490
+ partialOutageSeconds: z.ZodNumber;
1491
+ majorOutageSeconds: z.ZodNumber;
1492
+ }, z.core.$strict>>;
1493
+ incidents: z.ZodArray<z.ZodObject<{
1494
+ id: z.ZodString;
1495
+ title: z.ZodString;
1496
+ status: z.ZodEnum<{
1497
+ RESOLVED: "RESOLVED";
1498
+ INVESTIGATING: "INVESTIGATING";
1499
+ IDENTIFIED: "IDENTIFIED";
1500
+ MONITORING: "MONITORING";
1501
+ }>;
1502
+ impact: z.ZodEnum<{
1503
+ NONE: "NONE";
1504
+ MINOR: "MINOR";
1505
+ MAJOR: "MAJOR";
1506
+ CRITICAL: "CRITICAL";
1507
+ }>;
1508
+ scheduled: z.ZodBoolean;
1509
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1510
+ resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1511
+ affectedComponentNames: z.ZodArray<z.ZodString>;
1512
+ }, z.core.$strict>>;
1513
+ }, z.core.$strict>;
1514
+ export declare const ServiceIncidentDtoSchema: z.ZodObject<{
1515
+ id: z.ZodString;
1516
+ serviceId: z.ZodString;
1517
+ serviceSlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1518
+ serviceName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1519
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1520
+ title: z.ZodString;
1521
+ status: z.ZodString;
1522
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1523
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1524
+ resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1525
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1526
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1527
+ detectedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1528
+ vendorCreatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1529
+ }, z.core.$strict>;
1530
+ export declare const ServiceIncidentDetailDtoSchema: z.ZodObject<{
1531
+ id: z.ZodString;
1532
+ title: z.ZodString;
1533
+ status: z.ZodString;
1534
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1535
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1536
+ resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1537
+ detectedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1538
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1539
+ affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1540
+ updates: z.ZodArray<z.ZodObject<{
1541
+ status: z.ZodString;
1542
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1543
+ displayAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1544
+ }, z.core.$strict>>;
1545
+ }, z.core.$strict>;
1546
+ export declare const ServiceIncidentUpdateDtoSchema: z.ZodObject<{
1547
+ status: z.ZodString;
1548
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1549
+ displayAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1550
+ }, z.core.$strict>;
1551
+ export declare const ServiceUptimeResponseSchema: z.ZodObject<{
1552
+ overallUptimePct: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1553
+ period: z.ZodString;
1554
+ granularity: z.ZodString;
1555
+ buckets: z.ZodArray<z.ZodObject<{
1556
+ timestamp: z.ZodString;
1557
+ uptimePct: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1558
+ totalPolls: z.ZodNumber;
1559
+ }, z.core.$strict>>;
1560
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1561
+ }, z.core.$strict>;
1562
+ export declare const UptimeBucketDtoSchema: z.ZodObject<{
1563
+ timestamp: z.ZodString;
1564
+ uptimePct: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1565
+ totalPolls: z.ZodNumber;
1566
+ }, z.core.$strict>;
1567
+ export declare const ScheduledMaintenanceDtoSchema: z.ZodObject<{
1568
+ id: z.ZodString;
1569
+ externalId: z.ZodString;
1570
+ title: z.ZodString;
1571
+ status: z.ZodString;
1572
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1573
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1574
+ scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1575
+ scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1576
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1577
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1578
+ affectedComponents: z.ZodArray<z.ZodObject<{
1579
+ id: z.ZodString;
1580
+ name: z.ZodString;
1581
+ status: z.ZodString;
1582
+ }, z.core.$strict>>;
1583
+ updates: z.ZodArray<z.ZodObject<{
1584
+ id: z.ZodString;
1585
+ status: z.ZodString;
1586
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1587
+ displayAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1588
+ }, z.core.$strict>>;
1589
+ }, z.core.$strict>;
1211
1590
  export declare const StatusPageDtoSchema: z.ZodObject<{
1212
1591
  id: z.ZodString;
1213
1592
  organizationId: z.ZodNumber;
@@ -2376,6 +2755,13 @@ export declare const UpdateMaintenanceWindowRequestSchema: z.ZodObject<{
2376
2755
  reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2377
2756
  suppressAlerts: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2378
2757
  }, z.core.$strict>;
2758
+ export declare const ServiceSubscribeRequestSchema: z.ZodObject<{
2759
+ componentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2760
+ alertSensitivity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2761
+ }, z.core.$strict>;
2762
+ export declare const UpdateAlertSensitivityRequestSchema: z.ZodObject<{
2763
+ alertSensitivity: z.ZodString;
2764
+ }, z.core.$strict>;
2379
2765
  export declare const CreateStatusPageRequestSchema: z.ZodObject<{
2380
2766
  name: z.ZodString;
2381
2767
  slug: z.ZodString;
@@ -3511,6 +3897,263 @@ export declare const SingleValueResponseResourceGroupMemberDtoSchema: z.ZodObjec
3511
3897
  environmentName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3512
3898
  }, z.core.$strict>;
3513
3899
  }, z.core.$strict>;
3900
+ export declare const SingleValueResponseServiceDetailDtoSchema: z.ZodObject<{
3901
+ data: z.ZodObject<{
3902
+ id: z.ZodString;
3903
+ slug: z.ZodString;
3904
+ name: z.ZodString;
3905
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3906
+ officialStatusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3907
+ developerContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3908
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3909
+ adapterType: z.ZodString;
3910
+ pollingIntervalSeconds: z.ZodNumber;
3911
+ lifecycleStatus: z.ZodString;
3912
+ enabled: z.ZodBoolean;
3913
+ createdAt: z.ZodString;
3914
+ updatedAt: z.ZodString;
3915
+ currentStatus: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3916
+ overallStatus: z.ZodString;
3917
+ lastPolledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3918
+ }, z.core.$strict>>>;
3919
+ recentIncidents: z.ZodArray<z.ZodObject<{
3920
+ id: z.ZodString;
3921
+ serviceId: z.ZodString;
3922
+ serviceSlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3923
+ serviceName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3924
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3925
+ title: z.ZodString;
3926
+ status: z.ZodString;
3927
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3928
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3929
+ resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3930
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3931
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3932
+ detectedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3933
+ vendorCreatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3934
+ }, z.core.$strict>>;
3935
+ components: z.ZodArray<z.ZodObject<{
3936
+ id: z.ZodString;
3937
+ externalId: z.ZodString;
3938
+ name: z.ZodString;
3939
+ status: z.ZodString;
3940
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3941
+ groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3942
+ position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3943
+ showcase: z.ZodBoolean;
3944
+ onlyShowIfDegraded: z.ZodBoolean;
3945
+ startDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3946
+ vendorCreatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3947
+ lifecycleStatus: z.ZodString;
3948
+ dataType: z.ZodString;
3949
+ hasUptime: z.ZodBoolean;
3950
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3951
+ groupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3952
+ displayAggregatedUptime: z.ZodBoolean;
3953
+ childCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3954
+ uptime: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3955
+ day: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3956
+ week: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3957
+ month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3958
+ source: z.ZodString;
3959
+ }, z.core.$strict>>>;
3960
+ statusChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3961
+ firstSeenAt: z.ZodString;
3962
+ lastSeenAt: z.ZodString;
3963
+ isGroup: z.ZodBoolean;
3964
+ }, z.core.$strict>>;
3965
+ componentsSummary: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3966
+ totalCount: z.ZodNumber;
3967
+ includedCount: z.ZodNumber;
3968
+ groupComponentCounts: z.ZodRecord<z.ZodString, z.ZodNumber>;
3969
+ }, z.core.$strict>>>;
3970
+ uptime: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3971
+ day: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3972
+ week: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3973
+ month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3974
+ source: z.ZodString;
3975
+ }, z.core.$strict>>>;
3976
+ activeMaintenances: z.ZodArray<z.ZodObject<{
3977
+ id: z.ZodString;
3978
+ externalId: z.ZodString;
3979
+ title: z.ZodString;
3980
+ status: z.ZodString;
3981
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3982
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3983
+ scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3984
+ scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3985
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3986
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3987
+ affectedComponents: z.ZodArray<z.ZodObject<{
3988
+ id: z.ZodString;
3989
+ name: z.ZodString;
3990
+ status: z.ZodString;
3991
+ }, z.core.$strict>>;
3992
+ updates: z.ZodArray<z.ZodObject<{
3993
+ id: z.ZodString;
3994
+ status: z.ZodString;
3995
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3996
+ displayAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3997
+ }, z.core.$strict>>;
3998
+ }, z.core.$strict>>;
3999
+ dataCompleteness: z.ZodString;
4000
+ seoMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4001
+ shortDescription: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4002
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4003
+ about: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4004
+ }, z.core.$strict>>>;
4005
+ relatedServices: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4006
+ id: z.ZodString;
4007
+ slug: z.ZodString;
4008
+ name: z.ZodString;
4009
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4010
+ officialStatusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4011
+ developerContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4012
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4013
+ adapterType: z.ZodString;
4014
+ pollingIntervalSeconds: z.ZodNumber;
4015
+ lifecycleStatus: z.ZodString;
4016
+ enabled: z.ZodBoolean;
4017
+ published: z.ZodBoolean;
4018
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4019
+ createdAt: z.ZodString;
4020
+ updatedAt: z.ZodString;
4021
+ componentCount: z.ZodNumber;
4022
+ activeIncidentCount: z.ZodNumber;
4023
+ dataCompleteness: z.ZodString;
4024
+ uptime30d: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4025
+ }, z.core.$strict>>>>;
4026
+ }, z.core.$strict>;
4027
+ }, z.core.$strict>;
4028
+ export declare const SingleValueResponseServiceLiveStatusDtoSchema: z.ZodObject<{
4029
+ data: z.ZodObject<{
4030
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4031
+ componentStatuses: z.ZodArray<z.ZodObject<{
4032
+ id: z.ZodString;
4033
+ name: z.ZodString;
4034
+ status: z.ZodString;
4035
+ }, z.core.$strict>>;
4036
+ activeIncidentCount: z.ZodNumber;
4037
+ lastPolledAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4038
+ }, z.core.$strict>;
4039
+ }, z.core.$strict>;
4040
+ export declare const SingleValueResponseGlobalStatusSummaryDtoSchema: z.ZodObject<{
4041
+ data: z.ZodObject<{
4042
+ totalServices: z.ZodNumber;
4043
+ operationalCount: z.ZodNumber;
4044
+ degradedCount: z.ZodNumber;
4045
+ partialOutageCount: z.ZodNumber;
4046
+ majorOutageCount: z.ZodNumber;
4047
+ maintenanceCount: z.ZodNumber;
4048
+ unknownCount: z.ZodNumber;
4049
+ activeIncidentCount: z.ZodNumber;
4050
+ servicesWithIssues: z.ZodArray<z.ZodObject<{
4051
+ id: z.ZodString;
4052
+ slug: z.ZodString;
4053
+ name: z.ZodString;
4054
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4055
+ officialStatusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4056
+ developerContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4057
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4058
+ adapterType: z.ZodString;
4059
+ pollingIntervalSeconds: z.ZodNumber;
4060
+ lifecycleStatus: z.ZodString;
4061
+ enabled: z.ZodBoolean;
4062
+ published: z.ZodBoolean;
4063
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4064
+ createdAt: z.ZodString;
4065
+ updatedAt: z.ZodString;
4066
+ componentCount: z.ZodNumber;
4067
+ activeIncidentCount: z.ZodNumber;
4068
+ dataCompleteness: z.ZodString;
4069
+ uptime30d: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4070
+ }, z.core.$strict>>;
4071
+ }, z.core.$strict>;
4072
+ }, z.core.$strict>;
4073
+ export declare const SingleValueResponseBatchComponentUptimeDtoSchema: z.ZodObject<{
4074
+ data: z.ZodObject<{
4075
+ components: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4076
+ date: z.ZodString;
4077
+ partialOutageSeconds: z.ZodNumber;
4078
+ majorOutageSeconds: z.ZodNumber;
4079
+ degradedSeconds: z.ZodNumber;
4080
+ uptimePercentage: z.ZodNumber;
4081
+ incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
4082
+ id: z.ZodString;
4083
+ title: z.ZodString;
4084
+ impact: z.ZodString;
4085
+ }, z.core.$strict>>>>;
4086
+ }, z.core.$strict>>>;
4087
+ }, z.core.$strict>;
4088
+ }, z.core.$strict>;
4089
+ export declare const SingleValueResponseServiceDayDetailDtoSchema: z.ZodObject<{
4090
+ data: z.ZodObject<{
4091
+ date: z.ZodString;
4092
+ overallUptimePercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4093
+ totalPartialOutageSeconds: z.ZodNumber;
4094
+ totalMajorOutageSeconds: z.ZodNumber;
4095
+ totalDegradedSeconds: z.ZodNumber;
4096
+ components: z.ZodArray<z.ZodObject<{
4097
+ componentId: z.ZodString;
4098
+ componentName: z.ZodString;
4099
+ groupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4100
+ uptimePercentage: z.ZodNumber;
4101
+ partialOutageSeconds: z.ZodNumber;
4102
+ majorOutageSeconds: z.ZodNumber;
4103
+ }, z.core.$strict>>;
4104
+ incidents: z.ZodArray<z.ZodObject<{
4105
+ id: z.ZodString;
4106
+ title: z.ZodString;
4107
+ status: z.ZodEnum<{
4108
+ RESOLVED: "RESOLVED";
4109
+ INVESTIGATING: "INVESTIGATING";
4110
+ IDENTIFIED: "IDENTIFIED";
4111
+ MONITORING: "MONITORING";
4112
+ }>;
4113
+ impact: z.ZodEnum<{
4114
+ NONE: "NONE";
4115
+ MINOR: "MINOR";
4116
+ MAJOR: "MAJOR";
4117
+ CRITICAL: "CRITICAL";
4118
+ }>;
4119
+ scheduled: z.ZodBoolean;
4120
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4121
+ resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4122
+ affectedComponentNames: z.ZodArray<z.ZodString>;
4123
+ }, z.core.$strict>>;
4124
+ }, z.core.$strict>;
4125
+ }, z.core.$strict>;
4126
+ export declare const SingleValueResponseServiceIncidentDetailDtoSchema: z.ZodObject<{
4127
+ data: z.ZodObject<{
4128
+ id: z.ZodString;
4129
+ title: z.ZodString;
4130
+ status: z.ZodString;
4131
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4132
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4133
+ resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4134
+ detectedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4135
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4136
+ affectedComponents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
4137
+ updates: z.ZodArray<z.ZodObject<{
4138
+ status: z.ZodString;
4139
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4140
+ displayAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4141
+ }, z.core.$strict>>;
4142
+ }, z.core.$strict>;
4143
+ }, z.core.$strict>;
4144
+ export declare const SingleValueResponseServiceUptimeResponseSchema: z.ZodObject<{
4145
+ data: z.ZodObject<{
4146
+ overallUptimePct: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4147
+ period: z.ZodString;
4148
+ granularity: z.ZodString;
4149
+ buckets: z.ZodArray<z.ZodObject<{
4150
+ timestamp: z.ZodString;
4151
+ uptimePct: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4152
+ totalPolls: z.ZodNumber;
4153
+ }, z.core.$strict>>;
4154
+ source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4155
+ }, z.core.$strict>;
4156
+ }, z.core.$strict>;
3514
4157
  export declare const TableValueResultMonitorDtoSchema: z.ZodObject<{
3515
4158
  data: z.ZodArray<z.ZodObject<{
3516
4159
  id: z.ZodString;
@@ -4631,6 +5274,121 @@ export declare const TableValueResultStatusPageCustomDomainDtoSchema: z.ZodObjec
4631
5274
  totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4632
5275
  totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4633
5276
  }, z.core.$strict>;
5277
+ export declare const TableValueResultCategoryDtoSchema: z.ZodObject<{
5278
+ data: z.ZodArray<z.ZodObject<{
5279
+ category: z.ZodString;
5280
+ serviceCount: z.ZodNumber;
5281
+ }, z.core.$strict>>;
5282
+ hasNext: z.ZodBoolean;
5283
+ hasPrev: z.ZodBoolean;
5284
+ totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5285
+ totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5286
+ }, z.core.$strict>;
5287
+ export declare const TableValueResultServiceComponentDtoSchema: z.ZodObject<{
5288
+ data: z.ZodArray<z.ZodObject<{
5289
+ id: z.ZodString;
5290
+ externalId: z.ZodString;
5291
+ name: z.ZodString;
5292
+ status: z.ZodString;
5293
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5294
+ groupId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5295
+ position: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5296
+ showcase: z.ZodBoolean;
5297
+ onlyShowIfDegraded: z.ZodBoolean;
5298
+ startDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5299
+ vendorCreatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5300
+ lifecycleStatus: z.ZodString;
5301
+ dataType: z.ZodString;
5302
+ hasUptime: z.ZodBoolean;
5303
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5304
+ groupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5305
+ displayAggregatedUptime: z.ZodBoolean;
5306
+ childCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5307
+ uptime: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5308
+ day: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5309
+ week: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5310
+ month: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5311
+ source: z.ZodString;
5312
+ }, z.core.$strict>>>;
5313
+ statusChangedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5314
+ firstSeenAt: z.ZodString;
5315
+ lastSeenAt: z.ZodString;
5316
+ isGroup: z.ZodBoolean;
5317
+ }, z.core.$strict>>;
5318
+ hasNext: z.ZodBoolean;
5319
+ hasPrev: z.ZodBoolean;
5320
+ totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5321
+ totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5322
+ }, z.core.$strict>;
5323
+ export declare const TableValueResultComponentUptimeDayDtoSchema: z.ZodObject<{
5324
+ data: z.ZodArray<z.ZodObject<{
5325
+ date: z.ZodString;
5326
+ partialOutageSeconds: z.ZodNumber;
5327
+ majorOutageSeconds: z.ZodNumber;
5328
+ degradedSeconds: z.ZodNumber;
5329
+ uptimePercentage: z.ZodNumber;
5330
+ incidents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
5331
+ id: z.ZodString;
5332
+ title: z.ZodString;
5333
+ impact: z.ZodString;
5334
+ }, z.core.$strict>>>>;
5335
+ }, z.core.$strict>>;
5336
+ hasNext: z.ZodBoolean;
5337
+ hasPrev: z.ZodBoolean;
5338
+ totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5339
+ totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5340
+ }, z.core.$strict>;
5341
+ export declare const TableValueResultServiceIncidentDtoSchema: z.ZodObject<{
5342
+ data: z.ZodArray<z.ZodObject<{
5343
+ id: z.ZodString;
5344
+ serviceId: z.ZodString;
5345
+ serviceSlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5346
+ serviceName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5347
+ externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5348
+ title: z.ZodString;
5349
+ status: z.ZodString;
5350
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5351
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5352
+ resolvedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5353
+ updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5354
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5355
+ detectedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5356
+ vendorCreatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5357
+ }, z.core.$strict>>;
5358
+ hasNext: z.ZodBoolean;
5359
+ hasPrev: z.ZodBoolean;
5360
+ totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5361
+ totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5362
+ }, z.core.$strict>;
5363
+ export declare const TableValueResultScheduledMaintenanceDtoSchema: z.ZodObject<{
5364
+ data: z.ZodArray<z.ZodObject<{
5365
+ id: z.ZodString;
5366
+ externalId: z.ZodString;
5367
+ title: z.ZodString;
5368
+ status: z.ZodString;
5369
+ impact: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5370
+ shortlink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5371
+ scheduledFor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5372
+ scheduledUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5373
+ startedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5374
+ completedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5375
+ affectedComponents: z.ZodArray<z.ZodObject<{
5376
+ id: z.ZodString;
5377
+ name: z.ZodString;
5378
+ status: z.ZodString;
5379
+ }, z.core.$strict>>;
5380
+ updates: z.ZodArray<z.ZodObject<{
5381
+ id: z.ZodString;
5382
+ status: z.ZodString;
5383
+ body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5384
+ displayAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5385
+ }, z.core.$strict>>;
5386
+ }, z.core.$strict>>;
5387
+ hasNext: z.ZodBoolean;
5388
+ hasPrev: z.ZodBoolean;
5389
+ totalElements: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5390
+ totalPages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5391
+ }, z.core.$strict>;
4634
5392
  export declare const CursorPageCheckResultDtoSchema: z.ZodObject<{
4635
5393
  data: z.ZodArray<z.ZodObject<{
4636
5394
  id: z.ZodString;
@@ -4716,6 +5474,31 @@ export declare const CursorPageCheckResultDtoSchema: z.ZodObject<{
4716
5474
  nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4717
5475
  hasMore: z.ZodBoolean;
4718
5476
  }, z.core.$strict>;
5477
+ export declare const CursorPageServiceCatalogDtoSchema: z.ZodObject<{
5478
+ data: z.ZodArray<z.ZodObject<{
5479
+ id: z.ZodString;
5480
+ slug: z.ZodString;
5481
+ name: z.ZodString;
5482
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5483
+ officialStatusUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5484
+ developerContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5485
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5486
+ adapterType: z.ZodString;
5487
+ pollingIntervalSeconds: z.ZodNumber;
5488
+ lifecycleStatus: z.ZodString;
5489
+ enabled: z.ZodBoolean;
5490
+ published: z.ZodBoolean;
5491
+ overallStatus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5492
+ createdAt: z.ZodString;
5493
+ updatedAt: z.ZodString;
5494
+ componentCount: z.ZodNumber;
5495
+ activeIncidentCount: z.ZodNumber;
5496
+ dataCompleteness: z.ZodString;
5497
+ uptime30d: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
5498
+ }, z.core.$strict>>;
5499
+ nextCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5500
+ hasMore: z.ZodBoolean;
5501
+ }, z.core.$strict>;
4719
5502
  export declare function tableValueResultSchema<T extends z.ZodTypeAny>(itemSchema: T): z.ZodObject<{
4720
5503
  data: z.ZodArray<T>;
4721
5504
  hasNext: z.ZodBoolean;