@lessly/sdk-app 7.0.0 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1266,6 +1266,2328 @@ interface ConsentStatsGetOutput {
1266
1266
  deny_all_pct: number;
1267
1267
  accept_all_pct: number;
1268
1268
  }
1269
+ interface DeploymentAlertCreateInput {
1270
+ metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
1271
+ enabled?: boolean;
1272
+ targetId: string;
1273
+ threshold: number;
1274
+ comparator: ("gt" | "lt");
1275
+ targetKind: ("service" | "managed-service");
1276
+ }
1277
+ interface DeploymentAlertCreateOutput {
1278
+ id: string;
1279
+ state: ("ok" | "firing");
1280
+ metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
1281
+ enabled: boolean;
1282
+ targetId: string;
1283
+ createdAt: string;
1284
+ productId: string;
1285
+ threshold: number;
1286
+ updatedAt: string;
1287
+ comparator: ("gt" | "lt");
1288
+ targetKind: ("service" | "managed-service");
1289
+ environmentId: string;
1290
+ lastEvaluatedAt: (string | null);
1291
+ lastStateChangeAt: (string | null);
1292
+ }
1293
+ interface DeploymentAlertDeleteInput {
1294
+ id: string;
1295
+ }
1296
+ interface DeploymentAlertDeleteOutput {
1297
+ deleted: boolean;
1298
+ }
1299
+ interface DeploymentAlertEventsListInput {
1300
+ limit?: number;
1301
+ environmentId: string;
1302
+ }
1303
+ type DeploymentAlertEventsListOutput = {
1304
+ id: string;
1305
+ type: ("firing" | "resolved");
1306
+ value: number;
1307
+ metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
1308
+ ruleId: string;
1309
+ targetId: string;
1310
+ createdAt: string;
1311
+ productId: string;
1312
+ threshold: number;
1313
+ targetKind: ("service" | "managed-service");
1314
+ }[];
1315
+ interface DeploymentAlertListInput {
1316
+ environmentId: string;
1317
+ }
1318
+ type DeploymentAlertListOutput = {
1319
+ id: string;
1320
+ state: ("ok" | "firing");
1321
+ metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
1322
+ enabled: boolean;
1323
+ targetId: string;
1324
+ createdAt: string;
1325
+ productId: string;
1326
+ threshold: number;
1327
+ updatedAt: string;
1328
+ comparator: ("gt" | "lt");
1329
+ targetKind: ("service" | "managed-service");
1330
+ environmentId: string;
1331
+ lastEvaluatedAt: (string | null);
1332
+ lastStateChangeAt: (string | null);
1333
+ }[];
1334
+ interface DeploymentAlertUpdateInput {
1335
+ id: string;
1336
+ enabled?: boolean;
1337
+ threshold?: number;
1338
+ comparator?: ("gt" | "lt");
1339
+ }
1340
+ interface DeploymentAlertUpdateOutput {
1341
+ id: string;
1342
+ state: ("ok" | "firing");
1343
+ metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
1344
+ enabled: boolean;
1345
+ targetId: string;
1346
+ createdAt: string;
1347
+ productId: string;
1348
+ threshold: number;
1349
+ updatedAt: string;
1350
+ comparator: ("gt" | "lt");
1351
+ targetKind: ("service" | "managed-service");
1352
+ environmentId: string;
1353
+ lastEvaluatedAt: (string | null);
1354
+ lastStateChangeAt: (string | null);
1355
+ }
1356
+ interface DeploymentAnalyticsQueryInput {
1357
+ q: string;
1358
+ }
1359
+ interface DeploymentAnalyticsQueryOutput {
1360
+ sql: string;
1361
+ rows: {
1362
+ [k: string]: unknown;
1363
+ }[];
1364
+ answer: string;
1365
+ truncated: boolean;
1366
+ explanation: string;
1367
+ }
1368
+ interface DeploymentAuditListInput {
1369
+ limit?: number;
1370
+ action?: string;
1371
+ actorId?: string;
1372
+ serviceId?: string;
1373
+ entityType?: ("variable" | "domain" | "service" | "environment" | "deployment" | "managed_service" | "volume" | "cloud-sql-instance" | "cloud-sql-database" | "cloud-sql-attachment" | "ssh_key" | "ssh_session");
1374
+ environmentId: string;
1375
+ }
1376
+ type DeploymentAuditListOutput = {
1377
+ id: string;
1378
+ action: string;
1379
+ actorId: string;
1380
+ entityId: (string | null);
1381
+ metadata: {
1382
+ [k: string]: unknown;
1383
+ };
1384
+ createdAt: string;
1385
+ productId: string;
1386
+ serviceId: (string | null);
1387
+ actorEmail: string;
1388
+ entityType: ("variable" | "domain" | "service" | "environment" | "deployment" | "managed_service" | "volume" | "cloud-sql-instance" | "cloud-sql-database" | "cloud-sql-attachment" | "ssh_key" | "ssh_session");
1389
+ environmentId: (string | null);
1390
+ }[];
1391
+ interface DeploymentBuildGetInput {
1392
+ id: string;
1393
+ }
1394
+ interface DeploymentBuildGetOutput {
1395
+ id: string;
1396
+ status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
1397
+ builtAt: (string | null);
1398
+ imageRef: (string | null);
1399
+ commitSha: (string | null);
1400
+ createdAt: string;
1401
+ serviceId: string;
1402
+ startedAt: (string | null);
1403
+ finishedAt: (string | null);
1404
+ cloudBuildId: (string | null);
1405
+ lastErrorMessage: (string | null);
1406
+ }
1407
+ interface DeploymentBuildListInput {
1408
+ serviceId: string;
1409
+ }
1410
+ type DeploymentBuildListOutput = {
1411
+ id: string;
1412
+ status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
1413
+ builtAt: (string | null);
1414
+ imageRef: (string | null);
1415
+ commitSha: (string | null);
1416
+ createdAt: string;
1417
+ serviceId: string;
1418
+ startedAt: (string | null);
1419
+ finishedAt: (string | null);
1420
+ cloudBuildId: (string | null);
1421
+ lastErrorMessage: (string | null);
1422
+ }[];
1423
+ interface DeploymentBuildLogsInput {
1424
+ tail?: number;
1425
+ since?: string;
1426
+ serviceId: string;
1427
+ deploymentId: string;
1428
+ }
1429
+ interface DeploymentBuildLogsOutput {
1430
+ lines: {
1431
+ ts: string;
1432
+ text: string;
1433
+ }[];
1434
+ cursor: (string | null);
1435
+ complete: boolean;
1436
+ }
1437
+ interface DeploymentCanvasGetInput {
1438
+ environmentId: string;
1439
+ }
1440
+ interface DeploymentCanvasGetOutput {
1441
+ edges: {
1442
+ id: string;
1443
+ kind: ("cloud-sql" | "reference" | "host");
1444
+ label: string;
1445
+ toKind: ("service" | "managed-service" | "cloud-sql");
1446
+ fromKind: "service";
1447
+ toNodeId: string;
1448
+ fromNodeId: string;
1449
+ }[];
1450
+ nodes: {
1451
+ x: number;
1452
+ y: number;
1453
+ id: string;
1454
+ width: (number | null);
1455
+ height: (number | null);
1456
+ nodeId: string;
1457
+ nodeKind: ("service" | "volume" | "managed-service" | "cloud-sql");
1458
+ createdAt: string;
1459
+ updatedAt: string;
1460
+ }[];
1461
+ services: {
1462
+ id: string;
1463
+ name: string;
1464
+ slug: string;
1465
+ probes: {
1466
+ liveness?: DeploymentCanvasGetOutputReadiness;
1467
+ readiness?: DeploymentCanvasGetOutputReadiness;
1468
+ };
1469
+ source: ({
1470
+ url?: string;
1471
+ path?: string;
1472
+ type: "git";
1473
+ branch: string;
1474
+ connectorId?: string;
1475
+ repoFullName?: string;
1476
+ } | {
1477
+ tag: string;
1478
+ type: "image";
1479
+ registry: string;
1480
+ } | {
1481
+ spa?: boolean;
1482
+ repo?: {
1483
+ url?: string;
1484
+ path?: string;
1485
+ branch: string;
1486
+ connectorId?: string;
1487
+ repoFullName?: string;
1488
+ };
1489
+ type: "static";
1490
+ build?: {
1491
+ command?: string;
1492
+ outputDir?: string;
1493
+ };
1494
+ });
1495
+ replicas: number;
1496
+ createdAt: string;
1497
+ dependsOn: string[];
1498
+ resources?: {
1499
+ limits?: {
1500
+ cpu?: string;
1501
+ memory?: string;
1502
+ };
1503
+ };
1504
+ updatedAt: string;
1505
+ containerPort: number;
1506
+ environmentId: string;
1507
+ lastReplicasRunning: number;
1508
+ }[];
1509
+ environmentId: string;
1510
+ }
1511
+ interface DeploymentCanvasGetOutputReadiness {
1512
+ path: string;
1513
+ port?: number;
1514
+ periodSeconds?: number;
1515
+ timeoutSeconds?: number;
1516
+ failureThreshold?: number;
1517
+ successThreshold?: number;
1518
+ initialDelaySeconds?: number;
1519
+ }
1520
+ interface DeploymentCanvasMoveNodeInput {
1521
+ x?: number;
1522
+ y?: number;
1523
+ width?: number;
1524
+ height?: number;
1525
+ nodeId: string;
1526
+ environmentId: string;
1527
+ }
1528
+ interface DeploymentCanvasMoveNodeOutput {
1529
+ x: number;
1530
+ y: number;
1531
+ id: string;
1532
+ width: (number | null);
1533
+ height: (number | null);
1534
+ nodeId: string;
1535
+ nodeKind: ("service" | "volume" | "managed-service" | "cloud-sql");
1536
+ createdAt: string;
1537
+ updatedAt: string;
1538
+ }
1539
+ interface DeploymentCloudSqlBackfillLogFlagsInput {
1540
+ instanceId?: string;
1541
+ }
1542
+ interface DeploymentCloudSqlBackfillLogFlagsOutput {
1543
+ failed: {
1544
+ id: string;
1545
+ name: string;
1546
+ error: string;
1547
+ }[];
1548
+ patched: number;
1549
+ scanned: number;
1550
+ skippedNoDrift: number;
1551
+ restartRequired: {
1552
+ id: string;
1553
+ name: string;
1554
+ flags: string[];
1555
+ }[];
1556
+ skippedNotReady: number;
1557
+ skippedRestartRequired: number;
1558
+ }
1559
+ interface DeploymentCloudSqlDatabaseAttachInput {
1560
+ serviceId: string;
1561
+ databaseId: string;
1562
+ environmentId: string;
1563
+ }
1564
+ interface DeploymentCloudSqlDatabaseAttachOutput {
1565
+ id: string;
1566
+ status: string;
1567
+ serviceId: string;
1568
+ databaseId: string;
1569
+ environmentId: string;
1570
+ }
1571
+ interface DeploymentCloudSqlDatabaseCreateInput {
1572
+ label?: string;
1573
+ instanceId: string;
1574
+ }
1575
+ interface DeploymentCloudSqlDatabaseCreateOutput {
1576
+ id: string;
1577
+ dbName: string;
1578
+ status: string;
1579
+ roleName: string;
1580
+ createdAt: string;
1581
+ productId: string;
1582
+ updatedAt: string;
1583
+ instanceId: string;
1584
+ lastErrorMessage: (string | null);
1585
+ }
1586
+ interface DeploymentCloudSqlDatabaseDeleteInput {
1587
+ databaseId: string;
1588
+ }
1589
+ interface DeploymentCloudSqlDatabaseDeleteOutput {
1590
+ [k: string]: unknown;
1591
+ }
1592
+ interface DeploymentCloudSqlDatabaseDetachInput {
1593
+ attachmentId: string;
1594
+ }
1595
+ interface DeploymentCloudSqlDatabaseDetachOutput {
1596
+ [k: string]: unknown;
1597
+ }
1598
+ interface DeploymentCloudSqlDatabaseGetInput {
1599
+ databaseId: string;
1600
+ }
1601
+ interface DeploymentCloudSqlDatabaseGetOutput {
1602
+ id: string;
1603
+ dbName: string;
1604
+ status: string;
1605
+ roleName: string;
1606
+ createdAt: string;
1607
+ productId: string;
1608
+ updatedAt: string;
1609
+ instanceId: string;
1610
+ lastErrorMessage: (string | null);
1611
+ }
1612
+ interface DeploymentCloudSqlDatabaseListInput {
1613
+ instanceId: string;
1614
+ }
1615
+ type DeploymentCloudSqlDatabaseListOutput = {
1616
+ id: string;
1617
+ dbName: string;
1618
+ status: string;
1619
+ roleName: string;
1620
+ createdAt: string;
1621
+ productId: string;
1622
+ updatedAt: string;
1623
+ instanceId: string;
1624
+ lastErrorMessage: (string | null);
1625
+ }[];
1626
+ interface DeploymentCloudSqlInstanceBackupInput {
1627
+ instanceId: string;
1628
+ }
1629
+ interface DeploymentCloudSqlInstanceBackupOutput {
1630
+ id: string;
1631
+ name: string;
1632
+ tier: string;
1633
+ label: string;
1634
+ region: string;
1635
+ status: string;
1636
+ createdAt: string;
1637
+ pgVersion: string;
1638
+ privateIp: (string | null);
1639
+ productId: string;
1640
+ updatedAt: string;
1641
+ pitrEnabled: (boolean | null);
1642
+ backupsEnabled: (boolean | null);
1643
+ connectionName: (string | null);
1644
+ lastErrorMessage: (string | null);
1645
+ backupConfigObservedAt: (string | null);
1646
+ }
1647
+ interface DeploymentCloudSqlInstanceBackupListInput {
1648
+ instanceId: string;
1649
+ }
1650
+ type DeploymentCloudSqlInstanceBackupListOutput = {
1651
+ id: string;
1652
+ type: string;
1653
+ error: (string | null);
1654
+ status: string;
1655
+ endTime: (string | null);
1656
+ startTime: (string | null);
1657
+ description: (string | null);
1658
+ }[];
1659
+ interface DeploymentCloudSqlInstanceCreateInput {
1660
+ tier?: ("db-custom-1-3840" | "db-custom-2-7680" | "db-custom-4-15360");
1661
+ label: string;
1662
+ pgVersion?: ("16" | "17" | "18");
1663
+ }
1664
+ interface DeploymentCloudSqlInstanceCreateOutput {
1665
+ id: string;
1666
+ name: string;
1667
+ tier: string;
1668
+ label: string;
1669
+ region: string;
1670
+ status: string;
1671
+ createdAt: string;
1672
+ pgVersion: string;
1673
+ privateIp: (string | null);
1674
+ productId: string;
1675
+ updatedAt: string;
1676
+ pitrEnabled: (boolean | null);
1677
+ backupsEnabled: (boolean | null);
1678
+ connectionName: (string | null);
1679
+ lastErrorMessage: (string | null);
1680
+ backupConfigObservedAt: (string | null);
1681
+ }
1682
+ interface DeploymentCloudSqlInstanceDeleteInput {
1683
+ instanceId: string;
1684
+ }
1685
+ interface DeploymentCloudSqlInstanceDeleteOutput {
1686
+ [k: string]: unknown;
1687
+ }
1688
+ interface DeploymentCloudSqlInstanceGetInput {
1689
+ instanceId: string;
1690
+ }
1691
+ interface DeploymentCloudSqlInstanceGetOutput {
1692
+ id: string;
1693
+ name: string;
1694
+ tier: string;
1695
+ label: string;
1696
+ region: string;
1697
+ status: string;
1698
+ createdAt: string;
1699
+ pgVersion: string;
1700
+ privateIp: (string | null);
1701
+ productId: string;
1702
+ updatedAt: string;
1703
+ pitrEnabled: (boolean | null);
1704
+ backupsEnabled: (boolean | null);
1705
+ connectionName: (string | null);
1706
+ lastErrorMessage: (string | null);
1707
+ backupConfigObservedAt: (string | null);
1708
+ }
1709
+ interface DeploymentCloudSqlInstanceListInput {
1710
+ }
1711
+ type DeploymentCloudSqlInstanceListOutput = {
1712
+ id: string;
1713
+ name: string;
1714
+ tier: string;
1715
+ label: string;
1716
+ region: string;
1717
+ status: string;
1718
+ createdAt: string;
1719
+ pgVersion: string;
1720
+ privateIp: (string | null);
1721
+ productId: string;
1722
+ updatedAt: string;
1723
+ pitrEnabled: (boolean | null);
1724
+ backupsEnabled: (boolean | null);
1725
+ connectionName: (string | null);
1726
+ lastErrorMessage: (string | null);
1727
+ backupConfigObservedAt: (string | null);
1728
+ }[];
1729
+ interface DeploymentCloudSqlInstanceResizeInput {
1730
+ tier: ("db-custom-1-3840" | "db-custom-2-7680" | "db-custom-4-15360");
1731
+ instanceId: string;
1732
+ }
1733
+ interface DeploymentCloudSqlInstanceResizeOutput {
1734
+ id: string;
1735
+ name: string;
1736
+ tier: string;
1737
+ label: string;
1738
+ region: string;
1739
+ status: string;
1740
+ createdAt: string;
1741
+ pgVersion: string;
1742
+ privateIp: (string | null);
1743
+ productId: string;
1744
+ updatedAt: string;
1745
+ pitrEnabled: (boolean | null);
1746
+ backupsEnabled: (boolean | null);
1747
+ connectionName: (string | null);
1748
+ lastErrorMessage: (string | null);
1749
+ backupConfigObservedAt: (string | null);
1750
+ }
1751
+ interface DeploymentCloudSqlInstanceRestoreInput {
1752
+ instanceId: string;
1753
+ backupRunId: string;
1754
+ }
1755
+ interface DeploymentCloudSqlInstanceRestoreOutput {
1756
+ id: string;
1757
+ name: string;
1758
+ tier: string;
1759
+ label: string;
1760
+ region: string;
1761
+ status: string;
1762
+ createdAt: string;
1763
+ pgVersion: string;
1764
+ privateIp: (string | null);
1765
+ productId: string;
1766
+ updatedAt: string;
1767
+ pitrEnabled: (boolean | null);
1768
+ backupsEnabled: (boolean | null);
1769
+ connectionName: (string | null);
1770
+ lastErrorMessage: (string | null);
1771
+ backupConfigObservedAt: (string | null);
1772
+ }
1773
+ interface DeploymentCloudSqlLogsInput {
1774
+ tail?: number;
1775
+ instanceId: string;
1776
+ }
1777
+ interface DeploymentCloudSqlLogsOutput {
1778
+ lines: string[];
1779
+ }
1780
+ interface DeploymentDeploymentCancelInput {
1781
+ serviceId: string;
1782
+ deploymentId: string;
1783
+ }
1784
+ interface DeploymentDeploymentCancelOutput {
1785
+ id: string;
1786
+ status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
1787
+ builtAt: (string | null);
1788
+ imageRef: (string | null);
1789
+ commitSha: (string | null);
1790
+ createdAt: string;
1791
+ serviceId: string;
1792
+ startedAt: (string | null);
1793
+ updatedAt: string;
1794
+ deployedAt: (string | null);
1795
+ finishedAt: (string | null);
1796
+ cloudBuildId: (string | null);
1797
+ configSnapshot: {
1798
+ source?: unknown;
1799
+ variables: {
1800
+ key: string;
1801
+ value: string;
1802
+ }[];
1803
+ };
1804
+ lastErrorMessage: (string | null);
1805
+ rolledBackFromDeploymentId: (string | null);
1806
+ }
1807
+ interface DeploymentDeploymentGetInput {
1808
+ id: string;
1809
+ }
1810
+ interface DeploymentDeploymentGetOutput {
1811
+ id: string;
1812
+ status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
1813
+ builtAt: (string | null);
1814
+ imageRef: (string | null);
1815
+ commitSha: (string | null);
1816
+ createdAt: string;
1817
+ serviceId: string;
1818
+ startedAt: (string | null);
1819
+ updatedAt: string;
1820
+ deployedAt: (string | null);
1821
+ finishedAt: (string | null);
1822
+ cloudBuildId: (string | null);
1823
+ configSnapshot: {
1824
+ source?: unknown;
1825
+ variables: {
1826
+ key: string;
1827
+ value: string;
1828
+ }[];
1829
+ };
1830
+ lastErrorMessage: (string | null);
1831
+ rolledBackFromDeploymentId: (string | null);
1832
+ }
1833
+ interface DeploymentDeploymentListInput {
1834
+ serviceId: string;
1835
+ }
1836
+ type DeploymentDeploymentListOutput = {
1837
+ id: string;
1838
+ status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
1839
+ builtAt: (string | null);
1840
+ imageRef: (string | null);
1841
+ commitSha: (string | null);
1842
+ createdAt: string;
1843
+ serviceId: string;
1844
+ startedAt: (string | null);
1845
+ updatedAt: string;
1846
+ deployedAt: (string | null);
1847
+ finishedAt: (string | null);
1848
+ cloudBuildId: (string | null);
1849
+ configSnapshot: {
1850
+ source?: unknown;
1851
+ variables: {
1852
+ key: string;
1853
+ value: string;
1854
+ }[];
1855
+ };
1856
+ lastErrorMessage: (string | null);
1857
+ rolledBackFromDeploymentId: (string | null);
1858
+ }[];
1859
+ interface DeploymentDomainAddInput {
1860
+ hostname: string;
1861
+ pathPrefix?: string;
1862
+ redirectWww?: boolean;
1863
+ environmentId: string;
1864
+ defaultServiceId: string;
1865
+ }
1866
+ interface DeploymentDomainAddOutput {
1867
+ id: string;
1868
+ kind: ("auto" | "custom");
1869
+ routes: {
1870
+ id: string;
1871
+ domainId: string;
1872
+ priority: number;
1873
+ createdAt: string;
1874
+ isDefault: boolean;
1875
+ serviceId: string;
1876
+ updatedAt: string;
1877
+ pathPrefix: string;
1878
+ }[];
1879
+ hostname: string;
1880
+ createdAt: string;
1881
+ tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
1882
+ updatedAt: string;
1883
+ lastProbeAt: (string | null);
1884
+ redirectWww: boolean;
1885
+ wwwTlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
1886
+ environmentId: string;
1887
+ routingStatus: ("provisioning" | "propagating" | "active" | "failed");
1888
+ lastProbeError: (string | null);
1889
+ dnsInstructions: ({
1890
+ txt: {
1891
+ name: string;
1892
+ value: string;
1893
+ };
1894
+ routing: DeploymentDomainAddOutputItems[];
1895
+ acmeChallenge?: DeploymentDomainAddOutputItems;
1896
+ routingUnavailable?: boolean;
1897
+ } | null);
1898
+ routingRecordType: ("A" | "CNAME");
1899
+ verificationToken: (string | null);
1900
+ verificationStatus: ("pending_dns" | "verified" | "dns_failed");
1901
+ lastVerificationError: (({
1902
+ code: (string | null);
1903
+ reason: "transient";
1904
+ checkedAt: string;
1905
+ } | {
1906
+ txt?: {
1907
+ got: string[];
1908
+ want: string;
1909
+ };
1910
+ host?: {
1911
+ got: string[];
1912
+ want: string[];
1913
+ };
1914
+ reason: "mismatch";
1915
+ checkedAt: string;
1916
+ }) | null);
1917
+ lastVerificationCheckAt: (string | null);
1918
+ tlsCertificateExpiresAt: (string | null);
1919
+ }
1920
+ interface DeploymentDomainAddOutputItems {
1921
+ name: string;
1922
+ value: string;
1923
+ recordType: ("A" | "CNAME");
1924
+ }
1925
+ interface DeploymentDomainAllowedListInput {
1926
+ }
1927
+ interface DeploymentDomainAllowedListOutput {
1928
+ domains: {
1929
+ mode: ("external" | "managed");
1930
+ domain: string;
1931
+ domainId: string;
1932
+ }[];
1933
+ }
1934
+ interface DeploymentDomainGetInput {
1935
+ id: string;
1936
+ }
1937
+ interface DeploymentDomainGetOutput {
1938
+ id: string;
1939
+ kind: ("auto" | "custom");
1940
+ hostname: string;
1941
+ createdAt: string;
1942
+ tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
1943
+ updatedAt: string;
1944
+ lastProbeAt: (string | null);
1945
+ redirectWww: boolean;
1946
+ wwwTlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
1947
+ environmentId: string;
1948
+ routingStatus: ("provisioning" | "propagating" | "active" | "failed");
1949
+ lastProbeError: (string | null);
1950
+ dnsInstructions: ({
1951
+ txt: {
1952
+ name: string;
1953
+ value: string;
1954
+ };
1955
+ routing: DeploymentDomainGetOutputItems[];
1956
+ acmeChallenge?: DeploymentDomainGetOutputItems;
1957
+ routingUnavailable?: boolean;
1958
+ } | null);
1959
+ routingRecordType: ("A" | "CNAME");
1960
+ verificationToken: (string | null);
1961
+ verificationStatus: ("pending_dns" | "verified" | "dns_failed");
1962
+ lastVerificationError: (({
1963
+ code: (string | null);
1964
+ reason: "transient";
1965
+ checkedAt: string;
1966
+ } | {
1967
+ txt?: {
1968
+ got: string[];
1969
+ want: string;
1970
+ };
1971
+ host?: {
1972
+ got: string[];
1973
+ want: string[];
1974
+ };
1975
+ reason: "mismatch";
1976
+ checkedAt: string;
1977
+ }) | null);
1978
+ lastVerificationCheckAt: (string | null);
1979
+ tlsCertificateExpiresAt: (string | null);
1980
+ }
1981
+ interface DeploymentDomainGetOutputItems {
1982
+ name: string;
1983
+ value: string;
1984
+ recordType: ("A" | "CNAME");
1985
+ }
1986
+ interface DeploymentDomainListInput {
1987
+ environmentId: string;
1988
+ }
1989
+ type DeploymentDomainListOutput = {
1990
+ id: string;
1991
+ kind: ("auto" | "custom");
1992
+ hostname: string;
1993
+ createdAt: string;
1994
+ tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
1995
+ updatedAt: string;
1996
+ lastProbeAt: (string | null);
1997
+ redirectWww: boolean;
1998
+ wwwTlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
1999
+ environmentId: string;
2000
+ routingStatus: ("provisioning" | "propagating" | "active" | "failed");
2001
+ lastProbeError: (string | null);
2002
+ dnsInstructions: ({
2003
+ txt: {
2004
+ name: string;
2005
+ value: string;
2006
+ };
2007
+ routing: DeploymentDomainListOutputItems[];
2008
+ acmeChallenge?: DeploymentDomainListOutputItems;
2009
+ routingUnavailable?: boolean;
2010
+ } | null);
2011
+ routingRecordType: ("A" | "CNAME");
2012
+ verificationToken: (string | null);
2013
+ verificationStatus: ("pending_dns" | "verified" | "dns_failed");
2014
+ lastVerificationError: (({
2015
+ code: (string | null);
2016
+ reason: "transient";
2017
+ checkedAt: string;
2018
+ } | {
2019
+ txt?: {
2020
+ got: string[];
2021
+ want: string;
2022
+ };
2023
+ host?: {
2024
+ got: string[];
2025
+ want: string[];
2026
+ };
2027
+ reason: "mismatch";
2028
+ checkedAt: string;
2029
+ }) | null);
2030
+ lastVerificationCheckAt: (string | null);
2031
+ tlsCertificateExpiresAt: (string | null);
2032
+ }[];
2033
+ interface DeploymentDomainListOutputItems {
2034
+ name: string;
2035
+ value: string;
2036
+ recordType: ("A" | "CNAME");
2037
+ }
2038
+ interface DeploymentDomainListByServiceInput {
2039
+ serviceId: string;
2040
+ }
2041
+ type DeploymentDomainListByServiceOutput = {
2042
+ id: string;
2043
+ kind: ("auto" | "custom");
2044
+ hostname: string;
2045
+ createdAt: string;
2046
+ tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
2047
+ updatedAt: string;
2048
+ lastProbeAt: (string | null);
2049
+ redirectWww: boolean;
2050
+ wwwTlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
2051
+ environmentId: string;
2052
+ routingStatus: ("provisioning" | "propagating" | "active" | "failed");
2053
+ lastProbeError: (string | null);
2054
+ dnsInstructions: ({
2055
+ txt: {
2056
+ name: string;
2057
+ value: string;
2058
+ };
2059
+ routing: DeploymentDomainListByServiceOutputItems[];
2060
+ acmeChallenge?: DeploymentDomainListByServiceOutputItems;
2061
+ routingUnavailable?: boolean;
2062
+ } | null);
2063
+ routingRecordType: ("A" | "CNAME");
2064
+ verificationToken: (string | null);
2065
+ verificationStatus: ("pending_dns" | "verified" | "dns_failed");
2066
+ lastVerificationError: (({
2067
+ code: (string | null);
2068
+ reason: "transient";
2069
+ checkedAt: string;
2070
+ } | {
2071
+ txt?: {
2072
+ got: string[];
2073
+ want: string;
2074
+ };
2075
+ host?: {
2076
+ got: string[];
2077
+ want: string[];
2078
+ };
2079
+ reason: "mismatch";
2080
+ checkedAt: string;
2081
+ }) | null);
2082
+ lastVerificationCheckAt: (string | null);
2083
+ tlsCertificateExpiresAt: (string | null);
2084
+ }[];
2085
+ interface DeploymentDomainListByServiceOutputItems {
2086
+ name: string;
2087
+ value: string;
2088
+ recordType: ("A" | "CNAME");
2089
+ }
2090
+ interface DeploymentDomainRedirectWwwInput {
2091
+ id: string;
2092
+ enabled: boolean;
2093
+ }
2094
+ interface DeploymentDomainRedirectWwwOutput {
2095
+ id: string;
2096
+ kind: ("auto" | "custom");
2097
+ hostname: string;
2098
+ createdAt: string;
2099
+ tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
2100
+ updatedAt: string;
2101
+ lastProbeAt: (string | null);
2102
+ redirectWww: boolean;
2103
+ wwwTlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
2104
+ environmentId: string;
2105
+ routingStatus: ("provisioning" | "propagating" | "active" | "failed");
2106
+ lastProbeError: (string | null);
2107
+ dnsInstructions: ({
2108
+ txt: {
2109
+ name: string;
2110
+ value: string;
2111
+ };
2112
+ routing: DeploymentDomainRedirectWwwOutputItems[];
2113
+ acmeChallenge?: DeploymentDomainRedirectWwwOutputItems;
2114
+ routingUnavailable?: boolean;
2115
+ } | null);
2116
+ routingRecordType: ("A" | "CNAME");
2117
+ verificationToken: (string | null);
2118
+ verificationStatus: ("pending_dns" | "verified" | "dns_failed");
2119
+ lastVerificationError: (({
2120
+ code: (string | null);
2121
+ reason: "transient";
2122
+ checkedAt: string;
2123
+ } | {
2124
+ txt?: {
2125
+ got: string[];
2126
+ want: string;
2127
+ };
2128
+ host?: {
2129
+ got: string[];
2130
+ want: string[];
2131
+ };
2132
+ reason: "mismatch";
2133
+ checkedAt: string;
2134
+ }) | null);
2135
+ lastVerificationCheckAt: (string | null);
2136
+ tlsCertificateExpiresAt: (string | null);
2137
+ }
2138
+ interface DeploymentDomainRedirectWwwOutputItems {
2139
+ name: string;
2140
+ value: string;
2141
+ recordType: ("A" | "CNAME");
2142
+ }
2143
+ interface DeploymentDomainRemoveInput {
2144
+ id: string;
2145
+ }
2146
+ interface DeploymentDomainRemoveOutput {
2147
+ [k: string]: unknown;
2148
+ }
2149
+ interface DeploymentDomainRoutesAddInput {
2150
+ domainId: string;
2151
+ priority?: number;
2152
+ isDefault?: boolean;
2153
+ serviceId: string;
2154
+ pathPrefix: string;
2155
+ }
2156
+ interface DeploymentDomainRoutesAddOutput {
2157
+ id: string;
2158
+ domainId: string;
2159
+ priority: number;
2160
+ createdAt: string;
2161
+ isDefault: boolean;
2162
+ serviceId: string;
2163
+ updatedAt: string;
2164
+ pathPrefix: string;
2165
+ }
2166
+ interface DeploymentDomainRoutesListInput {
2167
+ domainId: string;
2168
+ }
2169
+ type DeploymentDomainRoutesListOutput = {
2170
+ id: string;
2171
+ domainId: string;
2172
+ priority: number;
2173
+ createdAt: string;
2174
+ isDefault: boolean;
2175
+ serviceId: string;
2176
+ updatedAt: string;
2177
+ pathPrefix: string;
2178
+ }[];
2179
+ interface DeploymentDomainRoutesRemoveInput {
2180
+ routeId: string;
2181
+ domainId: string;
2182
+ }
2183
+ interface DeploymentDomainRoutesRemoveOutput {
2184
+ [k: string]: unknown;
2185
+ }
2186
+ interface DeploymentDomainRoutesUpdateInput {
2187
+ routeId: string;
2188
+ domainId: string;
2189
+ priority?: number;
2190
+ serviceId?: string;
2191
+ pathPrefix?: string;
2192
+ }
2193
+ interface DeploymentDomainRoutesUpdateOutput {
2194
+ id: string;
2195
+ domainId: string;
2196
+ priority: number;
2197
+ createdAt: string;
2198
+ isDefault: boolean;
2199
+ serviceId: string;
2200
+ updatedAt: string;
2201
+ pathPrefix: string;
2202
+ }
2203
+ interface DeploymentDomainVerifyInput {
2204
+ id: string;
2205
+ }
2206
+ interface DeploymentDomainVerifyOutput {
2207
+ id: string;
2208
+ kind: ("auto" | "custom");
2209
+ hostname: string;
2210
+ createdAt: string;
2211
+ tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
2212
+ updatedAt: string;
2213
+ lastProbeAt: (string | null);
2214
+ redirectWww: boolean;
2215
+ wwwTlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
2216
+ environmentId: string;
2217
+ routingStatus: ("provisioning" | "propagating" | "active" | "failed");
2218
+ lastProbeError: (string | null);
2219
+ dnsInstructions: ({
2220
+ txt: {
2221
+ name: string;
2222
+ value: string;
2223
+ };
2224
+ routing: DeploymentDomainVerifyOutputItems[];
2225
+ acmeChallenge?: DeploymentDomainVerifyOutputItems;
2226
+ routingUnavailable?: boolean;
2227
+ } | null);
2228
+ routingRecordType: ("A" | "CNAME");
2229
+ verificationToken: (string | null);
2230
+ verificationStatus: ("pending_dns" | "verified" | "dns_failed");
2231
+ lastVerificationError: (({
2232
+ code: (string | null);
2233
+ reason: "transient";
2234
+ checkedAt: string;
2235
+ } | {
2236
+ txt?: {
2237
+ got: string[];
2238
+ want: string;
2239
+ };
2240
+ host?: {
2241
+ got: string[];
2242
+ want: string[];
2243
+ };
2244
+ reason: "mismatch";
2245
+ checkedAt: string;
2246
+ }) | null);
2247
+ lastVerificationCheckAt: (string | null);
2248
+ tlsCertificateExpiresAt: (string | null);
2249
+ }
2250
+ interface DeploymentDomainVerifyOutputItems {
2251
+ name: string;
2252
+ value: string;
2253
+ recordType: ("A" | "CNAME");
2254
+ }
2255
+ interface DeploymentEnvironmentCreateInput {
2256
+ name: string;
2257
+ slug?: string;
2258
+ }
2259
+ interface DeploymentEnvironmentCreateOutput {
2260
+ id: string;
2261
+ name: string;
2262
+ slug: string;
2263
+ type: ("persistent" | "pr-preview");
2264
+ status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
2265
+ prBranch: (string | null);
2266
+ prNumber: (number | null);
2267
+ createdAt: string;
2268
+ expiresAt: (string | null);
2269
+ updatedAt: string;
2270
+ isProduction: boolean;
2271
+ lastErrorMessage: (string | null);
2272
+ baseEnvironmentId: (string | null);
2273
+ }
2274
+ interface DeploymentEnvironmentDeleteInput {
2275
+ id: string;
2276
+ }
2277
+ interface DeploymentEnvironmentDeleteOutput {
2278
+ [k: string]: unknown;
2279
+ }
2280
+ interface DeploymentEnvironmentForkInput {
2281
+ name: string;
2282
+ slug?: string;
2283
+ baseEnvironmentId: string;
2284
+ }
2285
+ interface DeploymentEnvironmentForkOutput {
2286
+ id: string;
2287
+ name: string;
2288
+ slug: string;
2289
+ type: ("persistent" | "pr-preview");
2290
+ status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
2291
+ prBranch: (string | null);
2292
+ prNumber: (number | null);
2293
+ createdAt: string;
2294
+ expiresAt: (string | null);
2295
+ updatedAt: string;
2296
+ isProduction: boolean;
2297
+ lastErrorMessage: (string | null);
2298
+ baseEnvironmentId: (string | null);
2299
+ }
2300
+ interface DeploymentEnvironmentGetInput {
2301
+ id: string;
2302
+ }
2303
+ interface DeploymentEnvironmentGetOutput {
2304
+ id: string;
2305
+ name: string;
2306
+ slug: string;
2307
+ type: ("persistent" | "pr-preview");
2308
+ status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
2309
+ prBranch: (string | null);
2310
+ prNumber: (number | null);
2311
+ createdAt: string;
2312
+ expiresAt: (string | null);
2313
+ updatedAt: string;
2314
+ isProduction: boolean;
2315
+ lastErrorMessage: (string | null);
2316
+ baseEnvironmentId: (string | null);
2317
+ }
2318
+ interface DeploymentEnvironmentListInput {
2319
+ type?: ("persistent" | "pr-preview");
2320
+ }
2321
+ type DeploymentEnvironmentListOutput = {
2322
+ id: string;
2323
+ name: string;
2324
+ slug: string;
2325
+ type: ("persistent" | "pr-preview");
2326
+ status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
2327
+ prBranch: (string | null);
2328
+ prNumber: (number | null);
2329
+ createdAt: string;
2330
+ expiresAt: (string | null);
2331
+ updatedAt: string;
2332
+ isProduction: boolean;
2333
+ lastErrorMessage: (string | null);
2334
+ baseEnvironmentId: (string | null);
2335
+ }[];
2336
+ interface DeploymentEnvironmentReconcileInput {
2337
+ id: string;
2338
+ force?: boolean;
2339
+ }
2340
+ interface DeploymentEnvironmentReconcileOutput {
2341
+ id: string;
2342
+ name: string;
2343
+ slug: string;
2344
+ type: ("persistent" | "pr-preview");
2345
+ status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
2346
+ prBranch: (string | null);
2347
+ prNumber: (number | null);
2348
+ createdAt: string;
2349
+ expiresAt: (string | null);
2350
+ updatedAt: string;
2351
+ isProduction: boolean;
2352
+ lastErrorMessage: (string | null);
2353
+ baseEnvironmentId: (string | null);
2354
+ }
2355
+ interface DeploymentEnvironmentUpdateInput {
2356
+ id: string;
2357
+ name?: string;
2358
+ }
2359
+ interface DeploymentEnvironmentUpdateOutput {
2360
+ id: string;
2361
+ name: string;
2362
+ slug: string;
2363
+ type: ("persistent" | "pr-preview");
2364
+ status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
2365
+ prBranch: (string | null);
2366
+ prNumber: (number | null);
2367
+ createdAt: string;
2368
+ expiresAt: (string | null);
2369
+ updatedAt: string;
2370
+ isProduction: boolean;
2371
+ lastErrorMessage: (string | null);
2372
+ baseEnvironmentId: (string | null);
2373
+ }
2374
+ interface DeploymentEventsListByEnvironmentInput {
2375
+ type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
2376
+ limit?: number;
2377
+ since?: string;
2378
+ until?: string;
2379
+ environmentId: string;
2380
+ }
2381
+ type DeploymentEventsListByEnvironmentOutput = {
2382
+ id: string;
2383
+ type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
2384
+ payload: {
2385
+ [k: string]: unknown;
2386
+ };
2387
+ domainId: (string | null);
2388
+ createdAt: string;
2389
+ productId: string;
2390
+ serviceId: (string | null);
2391
+ deploymentId: (string | null);
2392
+ environmentId: (string | null);
2393
+ }[];
2394
+ interface DeploymentEventsListByServiceInput {
2395
+ type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
2396
+ limit?: number;
2397
+ since?: string;
2398
+ until?: string;
2399
+ serviceId: string;
2400
+ deploymentId?: string;
2401
+ }
2402
+ type DeploymentEventsListByServiceOutput = {
2403
+ id: string;
2404
+ type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
2405
+ payload: {
2406
+ [k: string]: unknown;
2407
+ };
2408
+ domainId: (string | null);
2409
+ createdAt: string;
2410
+ productId: string;
2411
+ serviceId: (string | null);
2412
+ deploymentId: (string | null);
2413
+ environmentId: (string | null);
2414
+ }[];
2415
+ interface DeploymentManagedServiceBackupInput {
2416
+ id: string;
2417
+ }
2418
+ interface DeploymentManagedServiceBackupOutput {
2419
+ id: string;
2420
+ name: string;
2421
+ slug: string;
2422
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2423
+ status: string;
2424
+ version: string;
2425
+ createdAt: string;
2426
+ productId: string;
2427
+ updatedAt: string;
2428
+ storageGiB: number;
2429
+ backupPolicy: {
2430
+ cron: string;
2431
+ timezone: string;
2432
+ retentionDays: number;
2433
+ scheduleSummary: string;
2434
+ manualBackupsExpire: boolean;
2435
+ };
2436
+ databaseName: (string | null);
2437
+ lastBackupAt: (string | null);
2438
+ environmentId: string;
2439
+ lastErrorMessage: (string | null);
2440
+ }
2441
+ interface DeploymentManagedServiceBackupListInput {
2442
+ id: string;
2443
+ }
2444
+ type DeploymentManagedServiceBackupListOutput = {
2445
+ name: string;
2446
+ pvcName: string;
2447
+ createdAt: string;
2448
+ readyToUse: boolean;
2449
+ restoreSize: (string | null);
2450
+ }[];
2451
+ interface DeploymentManagedServiceConnectInfoInput {
2452
+ id: string;
2453
+ }
2454
+ interface DeploymentManagedServiceConnectInfoOutput {
2455
+ id: string;
2456
+ slug: string;
2457
+ vars: {
2458
+ key: string;
2459
+ isSecret: boolean;
2460
+ refSyntax: string;
2461
+ }[];
2462
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2463
+ }
2464
+ interface DeploymentManagedServiceDeleteInput {
2465
+ id: string;
2466
+ }
2467
+ interface DeploymentManagedServiceDeleteOutput {
2468
+ id: string;
2469
+ name: string;
2470
+ slug: string;
2471
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2472
+ status: string;
2473
+ version: string;
2474
+ createdAt: string;
2475
+ productId: string;
2476
+ updatedAt: string;
2477
+ storageGiB: number;
2478
+ backupPolicy: {
2479
+ cron: string;
2480
+ timezone: string;
2481
+ retentionDays: number;
2482
+ scheduleSummary: string;
2483
+ manualBackupsExpire: boolean;
2484
+ };
2485
+ databaseName: (string | null);
2486
+ lastBackupAt: (string | null);
2487
+ environmentId: string;
2488
+ lastErrorMessage: (string | null);
2489
+ }
2490
+ interface DeploymentManagedServiceGetInput {
2491
+ id: string;
2492
+ }
2493
+ interface DeploymentManagedServiceGetOutput {
2494
+ id: string;
2495
+ name: string;
2496
+ slug: string;
2497
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2498
+ status: string;
2499
+ version: string;
2500
+ createdAt: string;
2501
+ productId: string;
2502
+ updatedAt: string;
2503
+ storageGiB: number;
2504
+ backupPolicy: {
2505
+ cron: string;
2506
+ timezone: string;
2507
+ retentionDays: number;
2508
+ scheduleSummary: string;
2509
+ manualBackupsExpire: boolean;
2510
+ };
2511
+ databaseName: (string | null);
2512
+ lastBackupAt: (string | null);
2513
+ environmentId: string;
2514
+ lastErrorMessage: (string | null);
2515
+ }
2516
+ interface DeploymentManagedServiceListInput {
2517
+ environmentId: string;
2518
+ }
2519
+ type DeploymentManagedServiceListOutput = {
2520
+ id: string;
2521
+ name: string;
2522
+ slug: string;
2523
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2524
+ status: string;
2525
+ version: string;
2526
+ createdAt: string;
2527
+ productId: string;
2528
+ updatedAt: string;
2529
+ storageGiB: number;
2530
+ backupPolicy: {
2531
+ cron: string;
2532
+ timezone: string;
2533
+ retentionDays: number;
2534
+ scheduleSummary: string;
2535
+ manualBackupsExpire: boolean;
2536
+ };
2537
+ databaseName: (string | null);
2538
+ lastBackupAt: (string | null);
2539
+ environmentId: string;
2540
+ lastErrorMessage: (string | null);
2541
+ }[];
2542
+ interface DeploymentManagedServiceLogsInput {
2543
+ id: string;
2544
+ tail?: number;
2545
+ }
2546
+ interface DeploymentManagedServiceLogsOutput {
2547
+ lines: string[];
2548
+ }
2549
+ interface DeploymentManagedServiceProvisionInput {
2550
+ name: string;
2551
+ slug?: string;
2552
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2553
+ version?: string;
2554
+ storageGiB?: number;
2555
+ databaseName?: string;
2556
+ environmentId: string;
2557
+ }
2558
+ interface DeploymentManagedServiceProvisionOutput {
2559
+ id: string;
2560
+ name: string;
2561
+ slug: string;
2562
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2563
+ status: string;
2564
+ version: string;
2565
+ createdAt: string;
2566
+ productId: string;
2567
+ updatedAt: string;
2568
+ storageGiB: number;
2569
+ backupPolicy: {
2570
+ cron: string;
2571
+ timezone: string;
2572
+ retentionDays: number;
2573
+ scheduleSummary: string;
2574
+ manualBackupsExpire: boolean;
2575
+ };
2576
+ databaseName: (string | null);
2577
+ lastBackupAt: (string | null);
2578
+ environmentId: string;
2579
+ lastErrorMessage: (string | null);
2580
+ }
2581
+ interface DeploymentManagedServiceReconcileInput {
2582
+ id: string;
2583
+ }
2584
+ interface DeploymentManagedServiceReconcileOutput {
2585
+ id: string;
2586
+ name: string;
2587
+ slug: string;
2588
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2589
+ status: string;
2590
+ version: string;
2591
+ createdAt: string;
2592
+ productId: string;
2593
+ updatedAt: string;
2594
+ storageGiB: number;
2595
+ backupPolicy: {
2596
+ cron: string;
2597
+ timezone: string;
2598
+ retentionDays: number;
2599
+ scheduleSummary: string;
2600
+ manualBackupsExpire: boolean;
2601
+ };
2602
+ databaseName: (string | null);
2603
+ lastBackupAt: (string | null);
2604
+ environmentId: string;
2605
+ lastErrorMessage: (string | null);
2606
+ }
2607
+ interface DeploymentManagedServiceResizeInput {
2608
+ id: string;
2609
+ storageGiB: number;
2610
+ }
2611
+ interface DeploymentManagedServiceResizeOutput {
2612
+ id: string;
2613
+ name: string;
2614
+ slug: string;
2615
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2616
+ status: string;
2617
+ version: string;
2618
+ createdAt: string;
2619
+ productId: string;
2620
+ updatedAt: string;
2621
+ storageGiB: number;
2622
+ backupPolicy: {
2623
+ cron: string;
2624
+ timezone: string;
2625
+ retentionDays: number;
2626
+ scheduleSummary: string;
2627
+ manualBackupsExpire: boolean;
2628
+ };
2629
+ databaseName: (string | null);
2630
+ lastBackupAt: (string | null);
2631
+ environmentId: string;
2632
+ lastErrorMessage: (string | null);
2633
+ }
2634
+ interface DeploymentManagedServiceRestoreInput {
2635
+ id: string;
2636
+ snapshotName: string;
2637
+ }
2638
+ interface DeploymentManagedServiceRestoreOutput {
2639
+ id: string;
2640
+ name: string;
2641
+ slug: string;
2642
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2643
+ status: string;
2644
+ version: string;
2645
+ createdAt: string;
2646
+ productId: string;
2647
+ updatedAt: string;
2648
+ storageGiB: number;
2649
+ backupPolicy: {
2650
+ cron: string;
2651
+ timezone: string;
2652
+ retentionDays: number;
2653
+ scheduleSummary: string;
2654
+ manualBackupsExpire: boolean;
2655
+ };
2656
+ databaseName: (string | null);
2657
+ lastBackupAt: (string | null);
2658
+ environmentId: string;
2659
+ lastErrorMessage: (string | null);
2660
+ }
2661
+ interface DeploymentManagedServiceStartInput {
2662
+ id: string;
2663
+ }
2664
+ interface DeploymentManagedServiceStartOutput {
2665
+ id: string;
2666
+ name: string;
2667
+ slug: string;
2668
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2669
+ status: string;
2670
+ version: string;
2671
+ createdAt: string;
2672
+ productId: string;
2673
+ updatedAt: string;
2674
+ storageGiB: number;
2675
+ backupPolicy: {
2676
+ cron: string;
2677
+ timezone: string;
2678
+ retentionDays: number;
2679
+ scheduleSummary: string;
2680
+ manualBackupsExpire: boolean;
2681
+ };
2682
+ databaseName: (string | null);
2683
+ lastBackupAt: (string | null);
2684
+ environmentId: string;
2685
+ lastErrorMessage: (string | null);
2686
+ }
2687
+ interface DeploymentManagedServiceStopInput {
2688
+ id: string;
2689
+ }
2690
+ interface DeploymentManagedServiceStopOutput {
2691
+ id: string;
2692
+ name: string;
2693
+ slug: string;
2694
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2695
+ status: string;
2696
+ version: string;
2697
+ createdAt: string;
2698
+ productId: string;
2699
+ updatedAt: string;
2700
+ storageGiB: number;
2701
+ backupPolicy: {
2702
+ cron: string;
2703
+ timezone: string;
2704
+ retentionDays: number;
2705
+ scheduleSummary: string;
2706
+ manualBackupsExpire: boolean;
2707
+ };
2708
+ databaseName: (string | null);
2709
+ lastBackupAt: (string | null);
2710
+ environmentId: string;
2711
+ lastErrorMessage: (string | null);
2712
+ }
2713
+ interface DeploymentManagedServiceTypesInput {
2714
+ }
2715
+ interface DeploymentManagedServiceTypesOutput {
2716
+ engines: {
2717
+ engine: ("postgres" | "redis" | "mysql" | "mongodb");
2718
+ versions: string[];
2719
+ displayName: string;
2720
+ defaultVersion: string;
2721
+ managedVarKeys: string[];
2722
+ }[];
2723
+ }
2724
+ interface DeploymentMetricsGetInput {
2725
+ window?: ("15m" | "1h" | "6h" | "24h" | "7d");
2726
+ targetId: string;
2727
+ targetKind: ("service" | "managed-service");
2728
+ }
2729
+ interface DeploymentMetricsGetOutput {
2730
+ series: {
2731
+ unit: ("cores" | "bytes" | "bytes_per_s" | "requests_per_s" | "milliseconds" | "percent");
2732
+ metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk" | "rps" | "p50" | "p95" | "p99" | "error_rate");
2733
+ points: {
2734
+ t: number;
2735
+ v: number;
2736
+ }[];
2737
+ }[];
2738
+ window: ("15m" | "1h" | "6h" | "24h" | "7d");
2739
+ capacity: {
2740
+ cpuCores: (number | null);
2741
+ memoryBytes: (number | null);
2742
+ };
2743
+ targetId: string;
2744
+ targetKind: ("service" | "managed-service");
2745
+ stepSeconds: number;
2746
+ }
2747
+ interface DeploymentPreviewEnvironmentCreateInput {
2748
+ prBranch?: string;
2749
+ prNumber: number;
2750
+ baseEnvironmentId: string;
2751
+ }
2752
+ interface DeploymentPreviewEnvironmentCreateOutput {
2753
+ id: string;
2754
+ name: string;
2755
+ slug: string;
2756
+ type: ("persistent" | "pr-preview");
2757
+ status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
2758
+ prBranch: (string | null);
2759
+ prNumber: (number | null);
2760
+ createdAt: string;
2761
+ expiresAt: (string | null);
2762
+ updatedAt: string;
2763
+ isProduction: boolean;
2764
+ lastErrorMessage: (string | null);
2765
+ baseEnvironmentId: (string | null);
2766
+ }
2767
+ interface DeploymentPreviewEnvironmentDeleteInput {
2768
+ id: string;
2769
+ }
2770
+ interface DeploymentPreviewEnvironmentDeleteOutput {
2771
+ [k: string]: unknown;
2772
+ }
2773
+ interface DeploymentPreviewEnvironmentListInput {
2774
+ }
2775
+ type DeploymentPreviewEnvironmentListOutput = {
2776
+ id: string;
2777
+ name: string;
2778
+ slug: string;
2779
+ type: ("persistent" | "pr-preview");
2780
+ status: ("provisioning" | "ready" | "provisioning_failed" | "deprovisioning" | "deprovisioning_failed");
2781
+ prBranch: (string | null);
2782
+ prNumber: (number | null);
2783
+ createdAt: string;
2784
+ expiresAt: (string | null);
2785
+ updatedAt: string;
2786
+ isProduction: boolean;
2787
+ lastErrorMessage: (string | null);
2788
+ baseEnvironmentId: (string | null);
2789
+ }[];
2790
+ interface DeploymentPreviewPolicyGetInput {
2791
+ baseEnvironmentId: string;
2792
+ }
2793
+ interface DeploymentPreviewPolicyGetOutput {
2794
+ id: string;
2795
+ enabled: boolean;
2796
+ ttlHours: number;
2797
+ createdAt: string;
2798
+ updatedAt: string;
2799
+ maxPreviews: number;
2800
+ baseEnvironmentId: string;
2801
+ }
2802
+ interface DeploymentPreviewPolicySetInput {
2803
+ enabled?: boolean;
2804
+ ttlHours?: number;
2805
+ maxPreviews?: number;
2806
+ baseEnvironmentId: string;
2807
+ }
2808
+ interface DeploymentPreviewPolicySetOutput {
2809
+ id: string;
2810
+ enabled: boolean;
2811
+ ttlHours: number;
2812
+ createdAt: string;
2813
+ updatedAt: string;
2814
+ maxPreviews: number;
2815
+ baseEnvironmentId: string;
2816
+ }
2817
+ interface DeploymentServiceCreateInput {
2818
+ name: string;
2819
+ slug?: string;
2820
+ canvas?: {
2821
+ x: number;
2822
+ y: number;
2823
+ };
2824
+ probes?: {
2825
+ liveness?: DeploymentServiceCreateInputReadiness;
2826
+ readiness?: DeploymentServiceCreateInputReadiness;
2827
+ };
2828
+ source: ({
2829
+ url?: string;
2830
+ path?: string;
2831
+ type: "git";
2832
+ branch: string;
2833
+ connectorId?: string;
2834
+ repoFullName?: string;
2835
+ } | {
2836
+ tag: string;
2837
+ type: "image";
2838
+ registry: string;
2839
+ } | {
2840
+ spa?: boolean;
2841
+ repo?: {
2842
+ url?: string;
2843
+ path?: string;
2844
+ branch: string;
2845
+ connectorId?: string;
2846
+ repoFullName?: string;
2847
+ };
2848
+ type: "static";
2849
+ build?: {
2850
+ command?: string;
2851
+ outputDir?: string;
2852
+ };
2853
+ });
2854
+ replicas?: number;
2855
+ resources?: {
2856
+ limits?: {
2857
+ cpu?: string;
2858
+ memory?: string;
2859
+ };
2860
+ };
2861
+ containerPort?: number;
2862
+ environmentId: string;
2863
+ }
2864
+ interface DeploymentServiceCreateInputReadiness {
2865
+ path: string;
2866
+ port?: number;
2867
+ periodSeconds?: number;
2868
+ timeoutSeconds?: number;
2869
+ failureThreshold?: number;
2870
+ successThreshold?: number;
2871
+ initialDelaySeconds?: number;
2872
+ }
2873
+ interface DeploymentServiceCreateOutput {
2874
+ id: string;
2875
+ name: string;
2876
+ slug: string;
2877
+ probes: {
2878
+ liveness?: DeploymentServiceCreateOutputReadiness;
2879
+ readiness?: DeploymentServiceCreateOutputReadiness;
2880
+ };
2881
+ source: ({
2882
+ url?: string;
2883
+ path?: string;
2884
+ type: "git";
2885
+ branch: string;
2886
+ connectorId?: string;
2887
+ repoFullName?: string;
2888
+ } | {
2889
+ tag: string;
2890
+ type: "image";
2891
+ registry: string;
2892
+ } | {
2893
+ spa?: boolean;
2894
+ repo?: {
2895
+ url?: string;
2896
+ path?: string;
2897
+ branch: string;
2898
+ connectorId?: string;
2899
+ repoFullName?: string;
2900
+ };
2901
+ type: "static";
2902
+ build?: {
2903
+ command?: string;
2904
+ outputDir?: string;
2905
+ };
2906
+ });
2907
+ replicas: number;
2908
+ createdAt: string;
2909
+ dependsOn: string[];
2910
+ resources?: {
2911
+ limits?: {
2912
+ cpu?: string;
2913
+ memory?: string;
2914
+ };
2915
+ };
2916
+ updatedAt: string;
2917
+ containerPort: number;
2918
+ environmentId: string;
2919
+ lastReplicasRunning: number;
2920
+ }
2921
+ interface DeploymentServiceCreateOutputReadiness {
2922
+ path: string;
2923
+ port?: number;
2924
+ periodSeconds?: number;
2925
+ timeoutSeconds?: number;
2926
+ failureThreshold?: number;
2927
+ successThreshold?: number;
2928
+ initialDelaySeconds?: number;
2929
+ }
2930
+ interface DeploymentServiceDeleteInput {
2931
+ id: string;
2932
+ }
2933
+ interface DeploymentServiceDeleteOutput {
2934
+ [k: string]: unknown;
2935
+ }
2936
+ interface DeploymentServiceExecInput {
2937
+ mode?: ("exec" | "job");
2938
+ command: string;
2939
+ serviceId: string;
2940
+ timeoutSec?: number;
2941
+ }
2942
+ interface DeploymentServiceExecOutput {
2943
+ mode: ("exec" | "job");
2944
+ output: string;
2945
+ stderr: string;
2946
+ stdout: string;
2947
+ target: ({
2948
+ kind: "pod";
2949
+ podName: string;
2950
+ container: string;
2951
+ } | {
2952
+ kind: "job";
2953
+ jobName: string;
2954
+ });
2955
+ exitCode: number;
2956
+ timedOut: boolean;
2957
+ truncated: boolean;
2958
+ }
2959
+ interface DeploymentServiceGetInput {
2960
+ id: string;
2961
+ }
2962
+ interface DeploymentServiceGetOutput {
2963
+ id: string;
2964
+ name: string;
2965
+ slug: string;
2966
+ probes: {
2967
+ liveness?: DeploymentServiceGetOutputReadiness;
2968
+ readiness?: DeploymentServiceGetOutputReadiness;
2969
+ };
2970
+ source: ({
2971
+ url?: string;
2972
+ path?: string;
2973
+ type: "git";
2974
+ branch: string;
2975
+ connectorId?: string;
2976
+ repoFullName?: string;
2977
+ } | {
2978
+ tag: string;
2979
+ type: "image";
2980
+ registry: string;
2981
+ } | {
2982
+ spa?: boolean;
2983
+ repo?: {
2984
+ url?: string;
2985
+ path?: string;
2986
+ branch: string;
2987
+ connectorId?: string;
2988
+ repoFullName?: string;
2989
+ };
2990
+ type: "static";
2991
+ build?: {
2992
+ command?: string;
2993
+ outputDir?: string;
2994
+ };
2995
+ });
2996
+ replicas: number;
2997
+ createdAt: string;
2998
+ dependsOn: string[];
2999
+ resources?: {
3000
+ limits?: {
3001
+ cpu?: string;
3002
+ memory?: string;
3003
+ };
3004
+ };
3005
+ updatedAt: string;
3006
+ containerPort: number;
3007
+ environmentId: string;
3008
+ lastReplicasRunning: number;
3009
+ }
3010
+ interface DeploymentServiceGetOutputReadiness {
3011
+ path: string;
3012
+ port?: number;
3013
+ periodSeconds?: number;
3014
+ timeoutSeconds?: number;
3015
+ failureThreshold?: number;
3016
+ successThreshold?: number;
3017
+ initialDelaySeconds?: number;
3018
+ }
3019
+ interface DeploymentServiceListInput {
3020
+ environmentId: string;
3021
+ }
3022
+ type DeploymentServiceListOutput = {
3023
+ id: string;
3024
+ name: string;
3025
+ slug: string;
3026
+ probes: {
3027
+ liveness?: DeploymentServiceListOutputReadiness;
3028
+ readiness?: DeploymentServiceListOutputReadiness;
3029
+ };
3030
+ source: ({
3031
+ url?: string;
3032
+ path?: string;
3033
+ type: "git";
3034
+ branch: string;
3035
+ connectorId?: string;
3036
+ repoFullName?: string;
3037
+ } | {
3038
+ tag: string;
3039
+ type: "image";
3040
+ registry: string;
3041
+ } | {
3042
+ spa?: boolean;
3043
+ repo?: {
3044
+ url?: string;
3045
+ path?: string;
3046
+ branch: string;
3047
+ connectorId?: string;
3048
+ repoFullName?: string;
3049
+ };
3050
+ type: "static";
3051
+ build?: {
3052
+ command?: string;
3053
+ outputDir?: string;
3054
+ };
3055
+ });
3056
+ replicas: number;
3057
+ createdAt: string;
3058
+ dependsOn: string[];
3059
+ resources?: {
3060
+ limits?: {
3061
+ cpu?: string;
3062
+ memory?: string;
3063
+ };
3064
+ };
3065
+ updatedAt: string;
3066
+ containerPort: number;
3067
+ environmentId: string;
3068
+ lastReplicasRunning: number;
3069
+ }[];
3070
+ interface DeploymentServiceListOutputReadiness {
3071
+ path: string;
3072
+ port?: number;
3073
+ periodSeconds?: number;
3074
+ timeoutSeconds?: number;
3075
+ failureThreshold?: number;
3076
+ successThreshold?: number;
3077
+ initialDelaySeconds?: number;
3078
+ }
3079
+ interface DeploymentServiceLogsInput {
3080
+ tail?: number;
3081
+ serviceId: string;
3082
+ }
3083
+ interface DeploymentServiceLogsOutput {
3084
+ lines: string[];
3085
+ }
3086
+ interface DeploymentServiceRedeployInput {
3087
+ serviceId: string;
3088
+ }
3089
+ interface DeploymentServiceRedeployOutput {
3090
+ id: string;
3091
+ status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
3092
+ builtAt: (string | null);
3093
+ imageRef: (string | null);
3094
+ commitSha: (string | null);
3095
+ createdAt: string;
3096
+ serviceId: string;
3097
+ startedAt: (string | null);
3098
+ updatedAt: string;
3099
+ deployedAt: (string | null);
3100
+ finishedAt: (string | null);
3101
+ cloudBuildId: (string | null);
3102
+ configSnapshot: {
3103
+ source?: unknown;
3104
+ variables: {
3105
+ key: string;
3106
+ value: string;
3107
+ }[];
3108
+ };
3109
+ lastErrorMessage: (string | null);
3110
+ rolledBackFromDeploymentId: (string | null);
3111
+ }
3112
+ interface DeploymentServiceRestartInput {
3113
+ id: string;
3114
+ }
3115
+ interface DeploymentServiceRestartOutput {
3116
+ [k: string]: unknown;
3117
+ }
3118
+ interface DeploymentServiceRollbackInput {
3119
+ serviceId: string;
3120
+ deploymentId: string;
3121
+ }
3122
+ interface DeploymentServiceRollbackOutput {
3123
+ id: string;
3124
+ status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
3125
+ builtAt: (string | null);
3126
+ imageRef: (string | null);
3127
+ commitSha: (string | null);
3128
+ createdAt: string;
3129
+ serviceId: string;
3130
+ startedAt: (string | null);
3131
+ updatedAt: string;
3132
+ deployedAt: (string | null);
3133
+ finishedAt: (string | null);
3134
+ cloudBuildId: (string | null);
3135
+ configSnapshot: {
3136
+ source?: unknown;
3137
+ variables: {
3138
+ key: string;
3139
+ value: string;
3140
+ }[];
3141
+ };
3142
+ lastErrorMessage: (string | null);
3143
+ rolledBackFromDeploymentId: (string | null);
3144
+ }
3145
+ interface DeploymentServiceScaleInput {
3146
+ id: string;
3147
+ replicas: number;
3148
+ }
3149
+ interface DeploymentServiceScaleOutput {
3150
+ id: string;
3151
+ name: string;
3152
+ slug: string;
3153
+ probes: {
3154
+ liveness?: DeploymentServiceScaleOutputReadiness;
3155
+ readiness?: DeploymentServiceScaleOutputReadiness;
3156
+ };
3157
+ source: ({
3158
+ url?: string;
3159
+ path?: string;
3160
+ type: "git";
3161
+ branch: string;
3162
+ connectorId?: string;
3163
+ repoFullName?: string;
3164
+ } | {
3165
+ tag: string;
3166
+ type: "image";
3167
+ registry: string;
3168
+ } | {
3169
+ spa?: boolean;
3170
+ repo?: {
3171
+ url?: string;
3172
+ path?: string;
3173
+ branch: string;
3174
+ connectorId?: string;
3175
+ repoFullName?: string;
3176
+ };
3177
+ type: "static";
3178
+ build?: {
3179
+ command?: string;
3180
+ outputDir?: string;
3181
+ };
3182
+ });
3183
+ replicas: number;
3184
+ createdAt: string;
3185
+ dependsOn: string[];
3186
+ resources?: {
3187
+ limits?: {
3188
+ cpu?: string;
3189
+ memory?: string;
3190
+ };
3191
+ };
3192
+ updatedAt: string;
3193
+ containerPort: number;
3194
+ environmentId: string;
3195
+ lastReplicasRunning: number;
3196
+ }
3197
+ interface DeploymentServiceScaleOutputReadiness {
3198
+ path: string;
3199
+ port?: number;
3200
+ periodSeconds?: number;
3201
+ timeoutSeconds?: number;
3202
+ failureThreshold?: number;
3203
+ successThreshold?: number;
3204
+ initialDelaySeconds?: number;
3205
+ }
3206
+ interface DeploymentServiceUpdateInput {
3207
+ id: string;
3208
+ name?: string;
3209
+ probes?: {
3210
+ liveness?: DeploymentServiceUpdateInputReadiness;
3211
+ readiness?: DeploymentServiceUpdateInputReadiness;
3212
+ };
3213
+ source?: ({
3214
+ url?: string;
3215
+ path?: string;
3216
+ type: "git";
3217
+ branch: string;
3218
+ connectorId?: string;
3219
+ repoFullName?: string;
3220
+ } | {
3221
+ tag: string;
3222
+ type: "image";
3223
+ registry: string;
3224
+ } | {
3225
+ spa?: boolean;
3226
+ repo?: {
3227
+ url?: string;
3228
+ path?: string;
3229
+ branch: string;
3230
+ connectorId?: string;
3231
+ repoFullName?: string;
3232
+ };
3233
+ type: "static";
3234
+ build?: {
3235
+ command?: string;
3236
+ outputDir?: string;
3237
+ };
3238
+ });
3239
+ replicas?: number;
3240
+ resources?: {
3241
+ limits?: {
3242
+ cpu?: string;
3243
+ memory?: string;
3244
+ };
3245
+ };
3246
+ containerPort?: number;
3247
+ }
3248
+ interface DeploymentServiceUpdateInputReadiness {
3249
+ path: string;
3250
+ port?: number;
3251
+ periodSeconds?: number;
3252
+ timeoutSeconds?: number;
3253
+ failureThreshold?: number;
3254
+ successThreshold?: number;
3255
+ initialDelaySeconds?: number;
3256
+ }
3257
+ interface DeploymentServiceUpdateOutput {
3258
+ id: string;
3259
+ name: string;
3260
+ slug: string;
3261
+ probes: {
3262
+ liveness?: DeploymentServiceUpdateOutputReadiness;
3263
+ readiness?: DeploymentServiceUpdateOutputReadiness;
3264
+ };
3265
+ source: ({
3266
+ url?: string;
3267
+ path?: string;
3268
+ type: "git";
3269
+ branch: string;
3270
+ connectorId?: string;
3271
+ repoFullName?: string;
3272
+ } | {
3273
+ tag: string;
3274
+ type: "image";
3275
+ registry: string;
3276
+ } | {
3277
+ spa?: boolean;
3278
+ repo?: {
3279
+ url?: string;
3280
+ path?: string;
3281
+ branch: string;
3282
+ connectorId?: string;
3283
+ repoFullName?: string;
3284
+ };
3285
+ type: "static";
3286
+ build?: {
3287
+ command?: string;
3288
+ outputDir?: string;
3289
+ };
3290
+ });
3291
+ replicas: number;
3292
+ createdAt: string;
3293
+ dependsOn: string[];
3294
+ resources?: {
3295
+ limits?: {
3296
+ cpu?: string;
3297
+ memory?: string;
3298
+ };
3299
+ };
3300
+ updatedAt: string;
3301
+ containerPort: number;
3302
+ environmentId: string;
3303
+ lastReplicasRunning: number;
3304
+ }
3305
+ interface DeploymentServiceUpdateOutputReadiness {
3306
+ path: string;
3307
+ port?: number;
3308
+ periodSeconds?: number;
3309
+ timeoutSeconds?: number;
3310
+ failureThreshold?: number;
3311
+ successThreshold?: number;
3312
+ initialDelaySeconds?: number;
3313
+ }
3314
+ interface DeploymentSshCommandInput {
3315
+ serviceId: string;
3316
+ }
3317
+ interface DeploymentSshCommandOutput {
3318
+ host: string;
3319
+ command: string;
3320
+ username: string;
3321
+ }
3322
+ interface DeploymentSshKeyDeleteInput {
3323
+ id: string;
3324
+ }
3325
+ interface DeploymentSshKeyDeleteOutput {
3326
+ deleted: boolean;
3327
+ }
3328
+ interface DeploymentSshKeyListInput {
3329
+ }
3330
+ type DeploymentSshKeyListOutput = {
3331
+ id: string;
3332
+ algo: string;
3333
+ name: string;
3334
+ scope: ("workspace" | "personal");
3335
+ createdAt: string;
3336
+ productId: string;
3337
+ lastUsedAt: (string | null);
3338
+ ownerIdentityId: string;
3339
+ fingerprintSha256: string;
3340
+ }[];
3341
+ interface DeploymentSshKeyRegisterInput {
3342
+ /**
3343
+ * Human label for the key, e.g. "my-laptop"
3344
+ */
3345
+ name: string;
3346
+ /**
3347
+ * OpenSSH public key line (ssh-ed25519 / ssh-rsa ...)
3348
+ */
3349
+ publicKey: string;
3350
+ }
3351
+ interface DeploymentSshKeyRegisterOutput {
3352
+ id: string;
3353
+ algo: string;
3354
+ name: string;
3355
+ scope: ("workspace" | "personal");
3356
+ createdAt: string;
3357
+ productId: string;
3358
+ lastUsedAt: (string | null);
3359
+ ownerIdentityId: string;
3360
+ fingerprintSha256: string;
3361
+ }
3362
+ interface DeploymentVariableListInput {
3363
+ serviceId: string;
3364
+ }
3365
+ type DeploymentVariableListOutput = {
3366
+ id: string;
3367
+ key: string;
3368
+ scope: ("service" | "environment" | "product");
3369
+ value: (string | null);
3370
+ isSecret: boolean;
3371
+ createdAt: string;
3372
+ serviceId: (string | null);
3373
+ updatedAt: string;
3374
+ environmentId: (string | null);
3375
+ }[];
3376
+ interface DeploymentVariableListEnvInput {
3377
+ environmentId: string;
3378
+ }
3379
+ type DeploymentVariableListEnvOutput = {
3380
+ id: string;
3381
+ key: string;
3382
+ scope: ("service" | "environment" | "product");
3383
+ value: (string | null);
3384
+ isSecret: boolean;
3385
+ createdAt: string;
3386
+ serviceId: (string | null);
3387
+ updatedAt: string;
3388
+ environmentId: (string | null);
3389
+ }[];
3390
+ interface DeploymentVariableListProductInput {
3391
+ }
3392
+ type DeploymentVariableListProductOutput = {
3393
+ id: string;
3394
+ key: string;
3395
+ scope: ("service" | "environment" | "product");
3396
+ value: (string | null);
3397
+ isSecret: boolean;
3398
+ createdAt: string;
3399
+ serviceId: (string | null);
3400
+ updatedAt: string;
3401
+ environmentId: (string | null);
3402
+ }[];
3403
+ interface DeploymentVariableSetInput {
3404
+ key: string;
3405
+ value: string;
3406
+ isSecret?: boolean;
3407
+ serviceId: string;
3408
+ }
3409
+ interface DeploymentVariableSetOutput {
3410
+ id: string;
3411
+ key: string;
3412
+ scope: ("service" | "environment" | "product");
3413
+ value: (string | null);
3414
+ isSecret: boolean;
3415
+ createdAt: string;
3416
+ serviceId: (string | null);
3417
+ updatedAt: string;
3418
+ environmentId: (string | null);
3419
+ }
3420
+ interface DeploymentVariableSetEnvInput {
3421
+ key: string;
3422
+ value: string;
3423
+ isSecret?: boolean;
3424
+ environmentId: string;
3425
+ }
3426
+ interface DeploymentVariableSetEnvOutput {
3427
+ id: string;
3428
+ key: string;
3429
+ scope: ("service" | "environment" | "product");
3430
+ value: (string | null);
3431
+ isSecret: boolean;
3432
+ createdAt: string;
3433
+ serviceId: (string | null);
3434
+ updatedAt: string;
3435
+ environmentId: (string | null);
3436
+ }
3437
+ interface DeploymentVariableSetProductInput {
3438
+ key: string;
3439
+ value: string;
3440
+ isSecret?: boolean;
3441
+ }
3442
+ interface DeploymentVariableSetProductOutput {
3443
+ id: string;
3444
+ key: string;
3445
+ scope: ("service" | "environment" | "product");
3446
+ value: (string | null);
3447
+ isSecret: boolean;
3448
+ createdAt: string;
3449
+ serviceId: (string | null);
3450
+ updatedAt: string;
3451
+ environmentId: (string | null);
3452
+ }
3453
+ interface DeploymentVariableUnsetInput {
3454
+ key: string;
3455
+ serviceId: string;
3456
+ }
3457
+ interface DeploymentVariableUnsetOutput {
3458
+ [k: string]: unknown;
3459
+ }
3460
+ interface DeploymentVariableUnsetEnvInput {
3461
+ key: string;
3462
+ environmentId: string;
3463
+ }
3464
+ interface DeploymentVariableUnsetEnvOutput {
3465
+ [k: string]: unknown;
3466
+ }
3467
+ interface DeploymentVariableUnsetProductInput {
3468
+ key: string;
3469
+ }
3470
+ interface DeploymentVariableUnsetProductOutput {
3471
+ [k: string]: unknown;
3472
+ }
3473
+ interface DeploymentVcsBranchListInput {
3474
+ connectorId: string;
3475
+ repoFullName: string;
3476
+ }
3477
+ type DeploymentVcsBranchListOutput = {
3478
+ name: string;
3479
+ commitSha: string;
3480
+ }[];
3481
+ interface DeploymentVcsConnectionListInput {
3482
+ }
3483
+ type DeploymentVcsConnectionListOutput = {
3484
+ status: string;
3485
+ connectorId: string;
3486
+ accountLogin: string;
3487
+ installationId: string;
3488
+ }[];
3489
+ interface DeploymentVcsRepoListInput {
3490
+ page?: number;
3491
+ search?: string;
3492
+ connectorId: string;
3493
+ }
3494
+ type DeploymentVcsRepoListOutput = {
3495
+ private: boolean;
3496
+ fullName: string;
3497
+ defaultBranch: string;
3498
+ }[];
3499
+ interface DeploymentVolumeCreateInput {
3500
+ name: string;
3501
+ slug?: string;
3502
+ sizeGb: number;
3503
+ mountPath: string;
3504
+ environmentId: string;
3505
+ attachedServiceId?: string;
3506
+ }
3507
+ interface DeploymentVolumeCreateOutput {
3508
+ id: string;
3509
+ name: string;
3510
+ slug: string;
3511
+ sizeGb: number;
3512
+ status: ("provisioning" | "ready" | "detached" | "failed");
3513
+ createdAt: string;
3514
+ mountPath: string;
3515
+ updatedAt: string;
3516
+ environmentId: string;
3517
+ lastErrorMessage: (string | null);
3518
+ attachedServiceId: (string | null);
3519
+ }
3520
+ interface DeploymentVolumeDeleteInput {
3521
+ id: string;
3522
+ }
3523
+ interface DeploymentVolumeDeleteOutput {
3524
+ [k: string]: unknown;
3525
+ }
3526
+ interface DeploymentVolumeDetachInput {
3527
+ id: string;
3528
+ }
3529
+ interface DeploymentVolumeDetachOutput {
3530
+ id: string;
3531
+ name: string;
3532
+ slug: string;
3533
+ sizeGb: number;
3534
+ status: ("provisioning" | "ready" | "detached" | "failed");
3535
+ createdAt: string;
3536
+ mountPath: string;
3537
+ updatedAt: string;
3538
+ environmentId: string;
3539
+ lastErrorMessage: (string | null);
3540
+ attachedServiceId: (string | null);
3541
+ }
3542
+ interface DeploymentVolumeGetInput {
3543
+ id: string;
3544
+ }
3545
+ interface DeploymentVolumeGetOutput {
3546
+ id: string;
3547
+ name: string;
3548
+ slug: string;
3549
+ sizeGb: number;
3550
+ status: ("provisioning" | "ready" | "detached" | "failed");
3551
+ createdAt: string;
3552
+ mountPath: string;
3553
+ updatedAt: string;
3554
+ environmentId: string;
3555
+ lastErrorMessage: (string | null);
3556
+ attachedServiceId: (string | null);
3557
+ }
3558
+ interface DeploymentVolumeListInput {
3559
+ environmentId: string;
3560
+ }
3561
+ type DeploymentVolumeListOutput = {
3562
+ id: string;
3563
+ name: string;
3564
+ slug: string;
3565
+ sizeGb: number;
3566
+ status: ("provisioning" | "ready" | "detached" | "failed");
3567
+ createdAt: string;
3568
+ mountPath: string;
3569
+ updatedAt: string;
3570
+ environmentId: string;
3571
+ lastErrorMessage: (string | null);
3572
+ attachedServiceId: (string | null);
3573
+ }[];
3574
+ interface DeploymentVolumeResizeInput {
3575
+ id: string;
3576
+ sizeGb: number;
3577
+ }
3578
+ interface DeploymentVolumeResizeOutput {
3579
+ id: string;
3580
+ name: string;
3581
+ slug: string;
3582
+ sizeGb: number;
3583
+ status: ("provisioning" | "ready" | "detached" | "failed");
3584
+ createdAt: string;
3585
+ mountPath: string;
3586
+ updatedAt: string;
3587
+ environmentId: string;
3588
+ lastErrorMessage: (string | null);
3589
+ attachedServiceId: (string | null);
3590
+ }
1269
3591
  interface MailApikeyCreateInput {
1270
3592
  /**
1271
3593
  * Human-readable label for the key
@@ -12045,6 +14367,187 @@ interface GeneratedClient {
12045
14367
  get(input: ConsentStatsGetInput): Promise<ConsentStatsGetOutput>;
12046
14368
  };
12047
14369
  };
14370
+ deployment: {
14371
+ alert: {
14372
+ create(input: DeploymentAlertCreateInput): Promise<DeploymentAlertCreateOutput>;
14373
+ delete(input: DeploymentAlertDeleteInput): Promise<DeploymentAlertDeleteOutput>;
14374
+ list(input: DeploymentAlertListInput): Promise<DeploymentAlertListOutput>;
14375
+ update(input: DeploymentAlertUpdateInput): Promise<DeploymentAlertUpdateOutput>;
14376
+ };
14377
+ 'alert-events': {
14378
+ list(input: DeploymentAlertEventsListInput): Promise<DeploymentAlertEventsListOutput>;
14379
+ };
14380
+ analytics: {
14381
+ query(input: DeploymentAnalyticsQueryInput): Promise<DeploymentAnalyticsQueryOutput>;
14382
+ };
14383
+ audit: {
14384
+ list(input: DeploymentAuditListInput): Promise<DeploymentAuditListOutput>;
14385
+ };
14386
+ build: {
14387
+ get(input: DeploymentBuildGetInput): Promise<DeploymentBuildGetOutput>;
14388
+ list(input: DeploymentBuildListInput): Promise<DeploymentBuildListOutput>;
14389
+ logs(input: DeploymentBuildLogsInput): Promise<DeploymentBuildLogsOutput>;
14390
+ };
14391
+ canvas: {
14392
+ get(input: DeploymentCanvasGetInput): Promise<DeploymentCanvasGetOutput>;
14393
+ };
14394
+ 'canvas-move': {
14395
+ node(input: DeploymentCanvasMoveNodeInput): Promise<DeploymentCanvasMoveNodeOutput>;
14396
+ };
14397
+ 'cloud-sql': {
14398
+ logs(input: DeploymentCloudSqlLogsInput): Promise<DeploymentCloudSqlLogsOutput>;
14399
+ };
14400
+ 'cloud-sql-backfill-log': {
14401
+ flags(input: DeploymentCloudSqlBackfillLogFlagsInput): Promise<DeploymentCloudSqlBackfillLogFlagsOutput>;
14402
+ };
14403
+ 'cloud-sql-database': {
14404
+ attach(input: DeploymentCloudSqlDatabaseAttachInput): Promise<DeploymentCloudSqlDatabaseAttachOutput>;
14405
+ create(input: DeploymentCloudSqlDatabaseCreateInput): Promise<DeploymentCloudSqlDatabaseCreateOutput>;
14406
+ delete(input: DeploymentCloudSqlDatabaseDeleteInput): Promise<DeploymentCloudSqlDatabaseDeleteOutput>;
14407
+ detach(input: DeploymentCloudSqlDatabaseDetachInput): Promise<DeploymentCloudSqlDatabaseDetachOutput>;
14408
+ get(input: DeploymentCloudSqlDatabaseGetInput): Promise<DeploymentCloudSqlDatabaseGetOutput>;
14409
+ list(input: DeploymentCloudSqlDatabaseListInput): Promise<DeploymentCloudSqlDatabaseListOutput>;
14410
+ };
14411
+ 'cloud-sql-instance': {
14412
+ backup(input: DeploymentCloudSqlInstanceBackupInput): Promise<DeploymentCloudSqlInstanceBackupOutput>;
14413
+ create(input: DeploymentCloudSqlInstanceCreateInput): Promise<DeploymentCloudSqlInstanceCreateOutput>;
14414
+ delete(input: DeploymentCloudSqlInstanceDeleteInput): Promise<DeploymentCloudSqlInstanceDeleteOutput>;
14415
+ get(input: DeploymentCloudSqlInstanceGetInput): Promise<DeploymentCloudSqlInstanceGetOutput>;
14416
+ list(input: DeploymentCloudSqlInstanceListInput): Promise<DeploymentCloudSqlInstanceListOutput>;
14417
+ resize(input: DeploymentCloudSqlInstanceResizeInput): Promise<DeploymentCloudSqlInstanceResizeOutput>;
14418
+ restore(input: DeploymentCloudSqlInstanceRestoreInput): Promise<DeploymentCloudSqlInstanceRestoreOutput>;
14419
+ };
14420
+ 'cloud-sql-instance-backup': {
14421
+ list(input: DeploymentCloudSqlInstanceBackupListInput): Promise<DeploymentCloudSqlInstanceBackupListOutput>;
14422
+ };
14423
+ deployment: {
14424
+ cancel(input: DeploymentDeploymentCancelInput): Promise<DeploymentDeploymentCancelOutput>;
14425
+ get(input: DeploymentDeploymentGetInput): Promise<DeploymentDeploymentGetOutput>;
14426
+ list(input: DeploymentDeploymentListInput): Promise<DeploymentDeploymentListOutput>;
14427
+ };
14428
+ domain: {
14429
+ add(input: DeploymentDomainAddInput): Promise<DeploymentDomainAddOutput>;
14430
+ get(input: DeploymentDomainGetInput): Promise<DeploymentDomainGetOutput>;
14431
+ list(input: DeploymentDomainListInput): Promise<DeploymentDomainListOutput>;
14432
+ remove(input: DeploymentDomainRemoveInput): Promise<DeploymentDomainRemoveOutput>;
14433
+ verify(input: DeploymentDomainVerifyInput): Promise<DeploymentDomainVerifyOutput>;
14434
+ };
14435
+ 'domain-allowed': {
14436
+ list(input: DeploymentDomainAllowedListInput): Promise<DeploymentDomainAllowedListOutput>;
14437
+ };
14438
+ 'domain-list-by': {
14439
+ service(input: DeploymentDomainListByServiceInput): Promise<DeploymentDomainListByServiceOutput>;
14440
+ };
14441
+ 'domain-redirect': {
14442
+ www(input: DeploymentDomainRedirectWwwInput): Promise<DeploymentDomainRedirectWwwOutput>;
14443
+ };
14444
+ 'domain-routes': {
14445
+ add(input: DeploymentDomainRoutesAddInput): Promise<DeploymentDomainRoutesAddOutput>;
14446
+ list(input: DeploymentDomainRoutesListInput): Promise<DeploymentDomainRoutesListOutput>;
14447
+ remove(input: DeploymentDomainRoutesRemoveInput): Promise<DeploymentDomainRoutesRemoveOutput>;
14448
+ update(input: DeploymentDomainRoutesUpdateInput): Promise<DeploymentDomainRoutesUpdateOutput>;
14449
+ };
14450
+ environment: {
14451
+ create(input: DeploymentEnvironmentCreateInput): Promise<DeploymentEnvironmentCreateOutput>;
14452
+ delete(input: DeploymentEnvironmentDeleteInput): Promise<DeploymentEnvironmentDeleteOutput>;
14453
+ fork(input: DeploymentEnvironmentForkInput): Promise<DeploymentEnvironmentForkOutput>;
14454
+ get(input: DeploymentEnvironmentGetInput): Promise<DeploymentEnvironmentGetOutput>;
14455
+ list(input: DeploymentEnvironmentListInput): Promise<DeploymentEnvironmentListOutput>;
14456
+ reconcile(input: DeploymentEnvironmentReconcileInput): Promise<DeploymentEnvironmentReconcileOutput>;
14457
+ update(input: DeploymentEnvironmentUpdateInput): Promise<DeploymentEnvironmentUpdateOutput>;
14458
+ };
14459
+ 'events-list-by': {
14460
+ environment(input: DeploymentEventsListByEnvironmentInput): Promise<DeploymentEventsListByEnvironmentOutput>;
14461
+ service(input: DeploymentEventsListByServiceInput): Promise<DeploymentEventsListByServiceOutput>;
14462
+ };
14463
+ 'managed-service': {
14464
+ backup(input: DeploymentManagedServiceBackupInput): Promise<DeploymentManagedServiceBackupOutput>;
14465
+ delete(input: DeploymentManagedServiceDeleteInput): Promise<DeploymentManagedServiceDeleteOutput>;
14466
+ get(input: DeploymentManagedServiceGetInput): Promise<DeploymentManagedServiceGetOutput>;
14467
+ list(input: DeploymentManagedServiceListInput): Promise<DeploymentManagedServiceListOutput>;
14468
+ logs(input: DeploymentManagedServiceLogsInput): Promise<DeploymentManagedServiceLogsOutput>;
14469
+ provision(input: DeploymentManagedServiceProvisionInput): Promise<DeploymentManagedServiceProvisionOutput>;
14470
+ reconcile(input: DeploymentManagedServiceReconcileInput): Promise<DeploymentManagedServiceReconcileOutput>;
14471
+ resize(input: DeploymentManagedServiceResizeInput): Promise<DeploymentManagedServiceResizeOutput>;
14472
+ restore(input: DeploymentManagedServiceRestoreInput): Promise<DeploymentManagedServiceRestoreOutput>;
14473
+ start(input: DeploymentManagedServiceStartInput): Promise<DeploymentManagedServiceStartOutput>;
14474
+ stop(input: DeploymentManagedServiceStopInput): Promise<DeploymentManagedServiceStopOutput>;
14475
+ types(input: DeploymentManagedServiceTypesInput): Promise<DeploymentManagedServiceTypesOutput>;
14476
+ };
14477
+ 'managed-service-backup': {
14478
+ list(input: DeploymentManagedServiceBackupListInput): Promise<DeploymentManagedServiceBackupListOutput>;
14479
+ };
14480
+ 'managed-service-connect': {
14481
+ info(input: DeploymentManagedServiceConnectInfoInput): Promise<DeploymentManagedServiceConnectInfoOutput>;
14482
+ };
14483
+ metrics: {
14484
+ get(input: DeploymentMetricsGetInput): Promise<DeploymentMetricsGetOutput>;
14485
+ };
14486
+ 'preview-environment': {
14487
+ create(input: DeploymentPreviewEnvironmentCreateInput): Promise<DeploymentPreviewEnvironmentCreateOutput>;
14488
+ delete(input: DeploymentPreviewEnvironmentDeleteInput): Promise<DeploymentPreviewEnvironmentDeleteOutput>;
14489
+ list(input: DeploymentPreviewEnvironmentListInput): Promise<DeploymentPreviewEnvironmentListOutput>;
14490
+ };
14491
+ 'preview-policy': {
14492
+ get(input: DeploymentPreviewPolicyGetInput): Promise<DeploymentPreviewPolicyGetOutput>;
14493
+ set(input: DeploymentPreviewPolicySetInput): Promise<DeploymentPreviewPolicySetOutput>;
14494
+ };
14495
+ service: {
14496
+ create(input: DeploymentServiceCreateInput): Promise<DeploymentServiceCreateOutput>;
14497
+ delete(input: DeploymentServiceDeleteInput): Promise<DeploymentServiceDeleteOutput>;
14498
+ exec(input: DeploymentServiceExecInput): Promise<DeploymentServiceExecOutput>;
14499
+ get(input: DeploymentServiceGetInput): Promise<DeploymentServiceGetOutput>;
14500
+ list(input: DeploymentServiceListInput): Promise<DeploymentServiceListOutput>;
14501
+ logs(input: DeploymentServiceLogsInput): Promise<DeploymentServiceLogsOutput>;
14502
+ redeploy(input: DeploymentServiceRedeployInput): Promise<DeploymentServiceRedeployOutput>;
14503
+ restart(input: DeploymentServiceRestartInput): Promise<DeploymentServiceRestartOutput>;
14504
+ rollback(input: DeploymentServiceRollbackInput): Promise<DeploymentServiceRollbackOutput>;
14505
+ scale(input: DeploymentServiceScaleInput): Promise<DeploymentServiceScaleOutput>;
14506
+ update(input: DeploymentServiceUpdateInput): Promise<DeploymentServiceUpdateOutput>;
14507
+ };
14508
+ ssh: {
14509
+ command(input: DeploymentSshCommandInput): Promise<DeploymentSshCommandOutput>;
14510
+ };
14511
+ 'ssh-key': {
14512
+ delete(input: DeploymentSshKeyDeleteInput): Promise<DeploymentSshKeyDeleteOutput>;
14513
+ list(input: DeploymentSshKeyListInput): Promise<DeploymentSshKeyListOutput>;
14514
+ register(input: DeploymentSshKeyRegisterInput): Promise<DeploymentSshKeyRegisterOutput>;
14515
+ };
14516
+ variable: {
14517
+ list(input: DeploymentVariableListInput): Promise<DeploymentVariableListOutput>;
14518
+ set(input: DeploymentVariableSetInput): Promise<DeploymentVariableSetOutput>;
14519
+ unset(input: DeploymentVariableUnsetInput): Promise<DeploymentVariableUnsetOutput>;
14520
+ };
14521
+ 'variable-list': {
14522
+ env(input: DeploymentVariableListEnvInput): Promise<DeploymentVariableListEnvOutput>;
14523
+ product(input: DeploymentVariableListProductInput): Promise<DeploymentVariableListProductOutput>;
14524
+ };
14525
+ 'variable-set': {
14526
+ env(input: DeploymentVariableSetEnvInput): Promise<DeploymentVariableSetEnvOutput>;
14527
+ product(input: DeploymentVariableSetProductInput): Promise<DeploymentVariableSetProductOutput>;
14528
+ };
14529
+ 'variable-unset': {
14530
+ env(input: DeploymentVariableUnsetEnvInput): Promise<DeploymentVariableUnsetEnvOutput>;
14531
+ product(input: DeploymentVariableUnsetProductInput): Promise<DeploymentVariableUnsetProductOutput>;
14532
+ };
14533
+ 'vcs-branch': {
14534
+ list(input: DeploymentVcsBranchListInput): Promise<DeploymentVcsBranchListOutput>;
14535
+ };
14536
+ 'vcs-connection': {
14537
+ list(input: DeploymentVcsConnectionListInput): Promise<DeploymentVcsConnectionListOutput>;
14538
+ };
14539
+ 'vcs-repo': {
14540
+ list(input: DeploymentVcsRepoListInput): Promise<DeploymentVcsRepoListOutput>;
14541
+ };
14542
+ volume: {
14543
+ create(input: DeploymentVolumeCreateInput): Promise<DeploymentVolumeCreateOutput>;
14544
+ delete(input: DeploymentVolumeDeleteInput): Promise<DeploymentVolumeDeleteOutput>;
14545
+ detach(input: DeploymentVolumeDetachInput): Promise<DeploymentVolumeDetachOutput>;
14546
+ get(input: DeploymentVolumeGetInput): Promise<DeploymentVolumeGetOutput>;
14547
+ list(input: DeploymentVolumeListInput): Promise<DeploymentVolumeListOutput>;
14548
+ resize(input: DeploymentVolumeResizeInput): Promise<DeploymentVolumeResizeOutput>;
14549
+ };
14550
+ };
12048
14551
  mail: {
12049
14552
  apikey: {
12050
14553
  create(input: MailApikeyCreateInput): Promise<MailApikeyCreateOutput>;
@@ -12321,4 +14824,4 @@ interface GeneratedClient {
12321
14824
  };
12322
14825
  }
12323
14826
 
12324
- export type { BrainKnowledgeEntityMemoriesInput as $, BrainConnectorReposListOutput as A, BrainBackupCreateInput as B, BrainDaemonBatchStatusInput as C, BrainDaemonBatchStatusOutput as D, BrainDaemonCreateInput as E, BrainDaemonCreateOutput as F, GeneratedClient as G, BrainDaemonGetInput as H, BrainDaemonGetOutput as I, BrainDaemonReingestInput as J, BrainDaemonReingestOutput as K, BrainDaemonRemoveInput as L, BrainDaemonRemoveOutput as M, BrainDaemonRunItemsInput as N, BrainDaemonRunItemsOutput as O, BrainDaemonRunInput as P, BrainDaemonRunOutput as Q, BrainDaemonRunsInput as R, BrainDaemonRunsOutput as S, BrainDaemonStatusInput as T, BrainDaemonStatusOutput as U, BrainDaemonUpdateInput as V, BrainDaemonUpdateOutput as W, BrainDaemonsListInput as X, BrainDaemonsListOutput as Y, BrainGdriveConnectionsListInput as Z, BrainGdriveConnectionsListOutput as _, BrainBackupCreateOutput as a, MailAudienceCreateInput as a$, BrainKnowledgeEntityMemoriesOutput as a0, BrainKnowledgeGraphInput as a1, BrainKnowledgeGraphOutput as a2, BrainKnowledgeNeighborhoodInput as a3, BrainKnowledgeNeighborhoodOutput as a4, BrainKnowledgeRelationsInput as a5, BrainKnowledgeRelationsOutput as a6, BrainKnowledgeSearchInput as a7, BrainKnowledgeSearchOutput as a8, BrainMemoryAddInput as a9, ConsentDashboardConfigGetOutput as aA, ConsentDashboardDecisionsListInput as aB, ConsentDashboardDecisionsListOutput as aC, ConsentDashboardEmbedSnippetGetInput as aD, ConsentDashboardEmbedSnippetGetOutput as aE, ConsentDashboardStatsGetInput as aF, ConsentDashboardStatsGetOutput as aG, ConsentEmbedGetInput as aH, ConsentEmbedGetOutput as aI, ConsentProvidersCreateInput as aJ, ConsentProvidersCreateOutput as aK, ConsentProvidersDeleteInput as aL, ConsentProvidersDeleteOutput as aM, ConsentProvidersListInput as aN, ConsentProvidersListOutput as aO, ConsentProvidersUpdateInput as aP, ConsentProvidersUpdateOutput as aQ, ConsentRecordsExportInput as aR, ConsentRecordsExportOutput as aS, ConsentStatsGetInput as aT, ConsentStatsGetOutput as aU, MailApikeyCreateInput as aV, MailApikeyCreateOutput as aW, MailApikeyDeleteInput as aX, MailApikeyDeleteOutput as aY, MailApikeyListInput as aZ, MailApikeyListOutput as a_, BrainMemoryAddOutput as aa, BrainMemoryDeleteInput as ab, BrainMemoryDeleteOutput as ac, BrainMemoryGetInput as ad, BrainMemoryGetOutput as ae, BrainMemoryListInput as af, BrainMemoryListOutput as ag, BrainMemorySearchInput as ah, BrainMemorySearchOutput as ai, BrainMemoryStatsInput as aj, BrainMemoryStatsOutput as ak, BrainMemoryUpdateInput as al, BrainMemoryUpdateOutput as am, BrainProductSharedMemoryResetInput as an, BrainProductSharedMemoryResetOutput as ao, BrainRestoreStatusInput as ap, BrainRestoreStatusOutput as aq, ConsentConfigCookieDomainUpsertInput as ar, ConsentConfigCookieDomainUpsertOutput as as, ConsentConfigCustomizationUpsertInput as at, ConsentConfigCustomizationUpsertOutput as au, ConsentConfigFloatingIconUpsertInput as av, ConsentConfigFloatingIconUpsertOutput as aw, ConsentConfigThemeUpsertInput as ax, ConsentConfigThemeUpsertOutput as ay, ConsentDashboardConfigGetInput as az, BrainBackupRestoreInput as b, MailSuppressionAddOutput as b$, MailAudienceCreateOutput as b0, MailAudienceDeleteInput as b1, MailAudienceDeleteOutput as b2, MailAudienceGetInput as b3, MailAudienceGetOutput as b4, MailAudienceListInput as b5, MailAudienceListOutput as b6, MailAudienceUpdateInput as b7, MailAudienceUpdateOutput as b8, MailBroadcastCancelInput as b9, MailDomainAllowedListOutput as bA, MailDomainCreateInput as bB, MailDomainCreateOutput as bC, MailDomainDeleteInput as bD, MailDomainDeleteOutput as bE, MailDomainGetInput as bF, MailDomainGetOutput as bG, MailDomainListInput as bH, MailDomainListOutput as bI, MailDomainUpdateInput as bJ, MailDomainUpdateOutput as bK, MailDomainVerifyInput as bL, MailDomainVerifyOutput as bM, MailEmailCancelInput as bN, MailEmailCancelOutput as bO, MailEmailGetInput as bP, MailEmailSendBatchInput as bQ, MailEmailSendBatchOutput as bR, MailEmailSendInput as bS, MailEmailSendOutput as bT, MailEmailUpdateInput as bU, MailEmailUpdateOutput as bV, MailReputationGetInput as bW, MailReputationGetOutput as bX, MailStatsGetInput as bY, MailStatsGetOutput as bZ, MailSuppressionAddInput as b_, MailBroadcastCancelOutput as ba, MailBroadcastCreateInput as bb, MailBroadcastCreateOutput as bc, MailBroadcastDeleteInput as bd, MailBroadcastDeleteOutput as be, MailBroadcastGetInput as bf, MailBroadcastGetOutput as bg, MailBroadcastListInput as bh, MailBroadcastListOutput as bi, MailBroadcastQueueInput as bj, MailBroadcastQueueOutput as bk, MailBroadcastStatsInput as bl, MailBroadcastStatsOutput as bm, MailBroadcastUpdateInput as bn, MailBroadcastUpdateOutput as bo, MailContactCreateInput as bp, MailContactCreateOutput as bq, MailContactDeleteInput as br, MailContactDeleteOutput as bs, MailContactGetInput as bt, MailContactGetOutput as bu, MailContactListInput as bv, MailContactListOutput as bw, MailContactUpdateInput as bx, MailContactUpdateOutput as by, MailDomainAllowedListInput as bz, BrainBackupRestoreOutput as c, OrganizationConnectorsRequestInput as c$, MailSuppressionListInput as c0, MailSuppressionListOutput as c1, MailSuppressionRemoveInput as c2, MailSuppressionRemoveOutput as c3, MailTemplateCreateInput as c4, MailTemplateCreateOutput as c5, MailTemplateDeleteInput as c6, MailTemplateDeleteOutput as c7, MailTemplateGetInput as c8, MailTemplateGetOutput as c9, OrganizationClickupInstallOutput as cA, OrganizationClickupListInstallationsInput as cB, OrganizationClickupListInstallationsOutput as cC, OrganizationCloudflareInstallInput as cD, OrganizationCloudflareInstallOutput as cE, OrganizationConnectorsApproveRequestInput as cF, OrganizationConnectorsApproveRequestOutput as cG, OrganizationConnectorsAttachInput as cH, OrganizationConnectorsAttachOutput as cI, OrganizationConnectorsDeleteInput as cJ, OrganizationConnectorsDeleteOutput as cK, OrganizationConnectorsDenyRequestInput as cL, OrganizationConnectorsDenyRequestOutput as cM, OrganizationConnectorsDetachInput as cN, OrganizationConnectorsDetachOutput as cO, OrganizationConnectorsListAttachmentsInput as cP, OrganizationConnectorsListAttachmentsOutput as cQ, OrganizationConnectorsListAvailableInput as cR, OrganizationConnectorsListAvailableOutput as cS, OrganizationConnectorsListOrgInput as cT, OrganizationConnectorsListOrgOutput as cU, OrganizationConnectorsListInput as cV, OrganizationConnectorsListOutput as cW, OrganizationConnectorsListRequestsInput as cX, OrganizationConnectorsListRequestsOutput as cY, OrganizationConnectorsRemoveInput as cZ, OrganizationConnectorsRemoveOutput as c_, MailTemplateListInput as ca, MailTemplateListOutput as cb, MailTemplatePublishInput as cc, MailTemplatePublishOutput as cd, MailTemplateUpdateInput as ce, MailTemplateUpdateOutput as cf, MailUsageGetInput as cg, MailUsageGetOutput as ch, MailWebhookCreateInput as ci, MailWebhookCreateOutput as cj, MailWebhookDeleteInput as ck, MailWebhookDeleteOutput as cl, MailWebhookDeliveriesListInput as cm, MailWebhookDeliveriesListOutput as cn, MailWebhookGetInput as co, MailWebhookGetOutput as cp, MailWebhookListInput as cq, MailWebhookListOutput as cr, MailWebhookUpdateInput as cs, MailWebhookUpdateOutput as ct, MailEmailGetOutput as cu, OrganizationAuthMeInput as cv, OrganizationAuthMeOutput as cw, OrganizationBindingsListInput as cx, OrganizationBindingsListOutput as cy, OrganizationClickupInstallInput as cz, BrainBackupStatusInput as d, OrganizationProductListInvitationsOutput as d$, OrganizationConnectorsRequestOutput as d0, OrganizationCreateInput as d1, OrganizationCreateOutput as d2, OrganizationDomainsAddInput as d3, OrganizationDomainsAddOutput as d4, OrganizationDomainsGetInput as d5, OrganizationDomainsGetOutput as d6, OrganizationDomainsListInput as d7, OrganizationDomainsListOutput as d8, OrganizationDomainsRemoveInput as d9, OrganizationMemberListInvitationsInput as dA, OrganizationMemberListInvitationsOutput as dB, OrganizationMemberListProductAccessInput as dC, OrganizationMemberListProductAccessOutput as dD, OrganizationMemberListInput as dE, OrganizationMemberListOutput as dF, OrganizationMemberRemoveInput as dG, OrganizationMemberRemoveOutput as dH, OrganizationMemberRevokeInvitationInput as dI, OrganizationMemberRevokeInvitationOutput as dJ, OrganizationMemberSetRoleInput as dK, OrganizationMemberSetRoleOutput as dL, OrganizationMemberShareProductInput as dM, OrganizationMemberShareProductOutput as dN, OrganizationMemberUnshareProductInput as dO, OrganizationMemberUnshareProductOutput as dP, OrganizationMembersAssignRoleInput as dQ, OrganizationMembersAssignRoleOutput as dR, OrganizationPermissionCatalogInput as dS, OrganizationPermissionCatalogOutput as dT, OrganizationProductAcceptInvitationInput as dU, OrganizationProductAcceptInvitationOutput as dV, OrganizationProductCreateInput as dW, OrganizationProductCreateOutput as dX, OrganizationProductInviteInput as dY, OrganizationProductInviteOutput as dZ, OrganizationProductListInvitationsInput as d_, OrganizationDomainsRemoveOutput as da, OrganizationExtensionsInstallInput as db, OrganizationExtensionsInstallOutput as dc, OrganizationExtensionsListInstalledInput as dd, OrganizationExtensionsListInstalledOutput as de, OrganizationExtensionsListInput as df, OrganizationExtensionsListOutput as dg, OrganizationExtensionsUninstallInput as dh, OrganizationExtensionsUninstallOutput as di, OrganizationFeedbackSubmitInput as dj, OrganizationFeedbackSubmitOutput as dk, OrganizationGdriveInstallInput as dl, OrganizationGdriveInstallOutput as dm, OrganizationGithubInstallInput as dn, OrganizationGithubInstallOutput as dp, OrganizationGithubListInstallationsInput as dq, OrganizationGithubListInstallationsOutput as dr, OrganizationGoogleadsInstallInput as ds, OrganizationGoogleadsInstallOutput as dt, OrganizationListInput as du, OrganizationListOutput as dv, OrganizationMemberAcceptInviteInput as dw, OrganizationMemberAcceptInviteOutput as dx, OrganizationMemberInviteInput as dy, OrganizationMemberInviteOutput as dz, BrainBackupStatusOutput as e, TrackingGoogleadsSyncNowOutput as e$, OrganizationProductListMembersInput as e0, OrganizationProductListMembersOutput as e1, OrganizationProductListInput as e2, OrganizationProductListOutput as e3, OrganizationProductListRolesInput as e4, OrganizationProductListRolesOutput as e5, OrganizationProductRevokeInvitationInput as e6, OrganizationProductRevokeInvitationOutput as e7, OrganizationProductSelectInput as e8, OrganizationProductSelectOutput as e9, TrackingDomainsListInput as eA, TrackingDomainsListOutput as eB, TrackingDomainsVerifyInput as eC, TrackingDomainsVerifyOutput as eD, TrackingEventNamesArchiveInput as eE, TrackingEventNamesArchiveOutput as eF, TrackingEventNamesListInput as eG, TrackingEventNamesListOutput as eH, TrackingEventNamesUnarchiveInput as eI, TrackingEventNamesUnarchiveOutput as eJ, TrackingGoogleadsConnectionStatusInput as eK, TrackingGoogleadsConnectionStatusOutput as eL, TrackingGoogleadsConversionActionsInput as eM, TrackingGoogleadsConversionActionsOutput as eN, TrackingGoogleadsFeedbackConfigGetInput as eO, TrackingGoogleadsFeedbackConfigGetOutput as eP, TrackingGoogleadsFeedbackConfigSetInput as eQ, TrackingGoogleadsFeedbackConfigSetOutput as eR, TrackingGoogleadsFeedbackRunInput as eS, TrackingGoogleadsFeedbackRunOutput as eT, TrackingGoogleadsFeedbackStatusInput as eU, TrackingGoogleadsFeedbackStatusOutput as eV, TrackingGoogleadsFeedbackUploadsInput as eW, TrackingGoogleadsFeedbackUploadsOutput as eX, TrackingGoogleadsRoasReportInput as eY, TrackingGoogleadsRoasReportOutput as eZ, TrackingGoogleadsSyncNowInput as e_, OrganizationRolesCreateInput as ea, OrganizationRolesCreateOutput as eb, OrganizationRolesDeleteInput as ec, OrganizationRolesDeleteOutput as ed, OrganizationRolesGetInput as ee, OrganizationRolesGetOutput as ef, OrganizationRolesListInput as eg, OrganizationRolesListOutput as eh, OrganizationRolesUpdateInput as ei, OrganizationRolesUpdateOutput as ej, OrganizationSelectInput as ek, OrganizationSelectOutput as el, TrackingApiKeysCreateInput as em, TrackingApiKeysCreateOutput as en, TrackingApiKeysListInput as eo, TrackingApiKeysListOutput as ep, TrackingApiKeysRevokeInput as eq, TrackingApiKeysRevokeOutput as er, TrackingApiKeysRotateInput as es, TrackingApiKeysRotateOutput as et, TrackingDomainsCreateInput as eu, TrackingDomainsCreateOutput as ev, TrackingDomainsDeleteInput as ew, TrackingDomainsDeleteOutput as ex, TrackingDomainsGetInput as ey, TrackingDomainsGetOutput as ez, BrainBackupsListInput as f, TrackingGoogleadsTrackingHealthInput as f0, TrackingGoogleadsTrackingHealthOutput as f1, TrackingGoogleadsUsVsPlatformInput as f2, TrackingGoogleadsUsVsPlatformOutput as f3, TrackingIdentityHealthInput as f4, TrackingIdentityHealthOutput as f5, TrackingInstallDomainsCreateInput as f6, TrackingInstallDomainsCreateOutput as f7, TrackingInstallDomainsDeleteInput as f8, TrackingInstallDomainsDeleteOutput as f9, WaitlistConfigGetInput as fA, WaitlistConfigGetOutput as fB, WaitlistConfigUpsertInput as fC, WaitlistConfigUpsertOutput as fD, WaitlistEmbedGetInput as fE, WaitlistEmbedGetOutput as fF, WaitlistInvitesSendInput as fG, WaitlistInvitesSendOutput as fH, WaitlistSignupsEraseInput as fI, WaitlistSignupsEraseOutput as fJ, WaitlistSignupsFunnelInput as fK, WaitlistSignupsFunnelOutput as fL, WaitlistSignupsListInput as fM, WaitlistSignupsListOutput as fN, TrackingInstallDomainsListInput as fa, TrackingInstallDomainsListOutput as fb, TrackingLinkDomainsCreateInput as fc, TrackingLinkDomainsCreateOutput as fd, TrackingLinkDomainsDeleteInput as fe, TrackingLinkDomainsDeleteOutput as ff, TrackingLinkDomainsListInput as fg, TrackingLinkDomainsListOutput as fh, TrackingLiveEventsListInput as fi, TrackingLiveEventsListOutput as fj, TrackingProfilesDeleteInput as fk, TrackingProfilesDeleteOutput as fl, TrackingProfilesExportInput as fm, TrackingProfilesExportOutput as fn, TrackingProfilesGetInput as fo, TrackingProfilesGetOutput as fp, TrackingProfilesListInput as fq, TrackingProfilesListOutput as fr, TrackingReportsAttributedJourneyInput as fs, TrackingReportsAttributedJourneyOutput as ft, TrackingReportsRevenueBySourceInput as fu, TrackingReportsRevenueBySourceOutput as fv, TrackingReportsSourcePeopleInput as fw, TrackingReportsSourcePeopleOutput as fx, TrackingSnippetsGetInput as fy, TrackingSnippetsGetOutput as fz, BrainBackupsListOutput as g, BrainClickupChannelsListInput as h, BrainClickupChannelsListOutput as i, BrainClickupConnectionsListInput as j, BrainClickupConnectionsListOutput as k, BrainClickupListsListInput as l, BrainClickupListsListOutput as m, BrainClickupSpacesListInput as n, BrainClickupSpacesListOutput as o, BrainCognitionDigestInput as p, BrainCognitionDigestOutput as q, BrainCognitionStatusInput as r, BrainCognitionStatusOutput as s, BrainCognitionSweepInput as t, BrainCognitionSweepOutput as u, BrainConnectorBranchesListInput as v, BrainConnectorBranchesListOutput as w, BrainConnectorConnectionsListInput as x, BrainConnectorConnectionsListOutput as y, BrainConnectorReposListInput as z };
14827
+ export type { BrainKnowledgeEntityMemoriesInput as $, BrainConnectorReposListOutput as A, BrainBackupCreateInput as B, BrainDaemonBatchStatusInput as C, BrainDaemonBatchStatusOutput as D, BrainDaemonCreateInput as E, BrainDaemonCreateOutput as F, GeneratedClient as G, BrainDaemonGetInput as H, BrainDaemonGetOutput as I, BrainDaemonReingestInput as J, BrainDaemonReingestOutput as K, BrainDaemonRemoveInput as L, BrainDaemonRemoveOutput as M, BrainDaemonRunItemsInput as N, BrainDaemonRunItemsOutput as O, BrainDaemonRunInput as P, BrainDaemonRunOutput as Q, BrainDaemonRunsInput as R, BrainDaemonRunsOutput as S, BrainDaemonStatusInput as T, BrainDaemonStatusOutput as U, BrainDaemonUpdateInput as V, BrainDaemonUpdateOutput as W, BrainDaemonsListInput as X, BrainDaemonsListOutput as Y, BrainGdriveConnectionsListInput as Z, BrainGdriveConnectionsListOutput as _, BrainBackupCreateOutput as a, DeploymentAlertListInput as a$, BrainKnowledgeEntityMemoriesOutput as a0, BrainKnowledgeGraphInput as a1, BrainKnowledgeGraphOutput as a2, BrainKnowledgeNeighborhoodInput as a3, BrainKnowledgeNeighborhoodOutput as a4, BrainKnowledgeRelationsInput as a5, BrainKnowledgeRelationsOutput as a6, BrainKnowledgeSearchInput as a7, BrainKnowledgeSearchOutput as a8, BrainMemoryAddInput as a9, ConsentDashboardConfigGetOutput as aA, ConsentDashboardDecisionsListInput as aB, ConsentDashboardDecisionsListOutput as aC, ConsentDashboardEmbedSnippetGetInput as aD, ConsentDashboardEmbedSnippetGetOutput as aE, ConsentDashboardStatsGetInput as aF, ConsentDashboardStatsGetOutput as aG, ConsentEmbedGetInput as aH, ConsentEmbedGetOutput as aI, ConsentProvidersCreateInput as aJ, ConsentProvidersCreateOutput as aK, ConsentProvidersDeleteInput as aL, ConsentProvidersDeleteOutput as aM, ConsentProvidersListInput as aN, ConsentProvidersListOutput as aO, ConsentProvidersUpdateInput as aP, ConsentProvidersUpdateOutput as aQ, ConsentRecordsExportInput as aR, ConsentRecordsExportOutput as aS, ConsentStatsGetInput as aT, ConsentStatsGetOutput as aU, DeploymentAlertCreateInput as aV, DeploymentAlertCreateOutput as aW, DeploymentAlertDeleteInput as aX, DeploymentAlertDeleteOutput as aY, DeploymentAlertEventsListInput as aZ, DeploymentAlertEventsListOutput as a_, BrainMemoryAddOutput as aa, BrainMemoryDeleteInput as ab, BrainMemoryDeleteOutput as ac, BrainMemoryGetInput as ad, BrainMemoryGetOutput as ae, BrainMemoryListInput as af, BrainMemoryListOutput as ag, BrainMemorySearchInput as ah, BrainMemorySearchOutput as ai, BrainMemoryStatsInput as aj, BrainMemoryStatsOutput as ak, BrainMemoryUpdateInput as al, BrainMemoryUpdateOutput as am, BrainProductSharedMemoryResetInput as an, BrainProductSharedMemoryResetOutput as ao, BrainRestoreStatusInput as ap, BrainRestoreStatusOutput as aq, ConsentConfigCookieDomainUpsertInput as ar, ConsentConfigCookieDomainUpsertOutput as as, ConsentConfigCustomizationUpsertInput as at, ConsentConfigCustomizationUpsertOutput as au, ConsentConfigFloatingIconUpsertInput as av, ConsentConfigFloatingIconUpsertOutput as aw, ConsentConfigThemeUpsertInput as ax, ConsentConfigThemeUpsertOutput as ay, ConsentDashboardConfigGetInput as az, BrainBackupRestoreInput as b, DeploymentDomainListInput as b$, DeploymentAlertListOutput as b0, DeploymentAlertUpdateInput as b1, DeploymentAlertUpdateOutput as b2, DeploymentAnalyticsQueryInput as b3, DeploymentAnalyticsQueryOutput as b4, DeploymentAuditListInput as b5, DeploymentAuditListOutput as b6, DeploymentBuildGetInput as b7, DeploymentBuildGetOutput as b8, DeploymentBuildListInput as b9, DeploymentCloudSqlInstanceCreateOutput as bA, DeploymentCloudSqlInstanceDeleteInput as bB, DeploymentCloudSqlInstanceDeleteOutput as bC, DeploymentCloudSqlInstanceGetInput as bD, DeploymentCloudSqlInstanceGetOutput as bE, DeploymentCloudSqlInstanceListInput as bF, DeploymentCloudSqlInstanceListOutput as bG, DeploymentCloudSqlInstanceResizeInput as bH, DeploymentCloudSqlInstanceResizeOutput as bI, DeploymentCloudSqlInstanceRestoreInput as bJ, DeploymentCloudSqlInstanceRestoreOutput as bK, DeploymentCloudSqlLogsInput as bL, DeploymentCloudSqlLogsOutput as bM, DeploymentDeploymentCancelInput as bN, DeploymentDeploymentCancelOutput as bO, DeploymentDeploymentGetInput as bP, DeploymentDeploymentGetOutput as bQ, DeploymentDeploymentListInput as bR, DeploymentDeploymentListOutput as bS, DeploymentDomainAddInput as bT, DeploymentDomainAddOutput as bU, DeploymentDomainAllowedListInput as bV, DeploymentDomainAllowedListOutput as bW, DeploymentDomainGetInput as bX, DeploymentDomainGetOutput as bY, DeploymentDomainListByServiceInput as bZ, DeploymentDomainListByServiceOutput as b_, DeploymentBuildListOutput as ba, DeploymentBuildLogsInput as bb, DeploymentBuildLogsOutput as bc, DeploymentCanvasGetInput as bd, DeploymentCanvasGetOutput as be, DeploymentCanvasMoveNodeInput as bf, DeploymentCanvasMoveNodeOutput as bg, DeploymentCloudSqlBackfillLogFlagsInput as bh, DeploymentCloudSqlBackfillLogFlagsOutput as bi, DeploymentCloudSqlDatabaseAttachInput as bj, DeploymentCloudSqlDatabaseAttachOutput as bk, DeploymentCloudSqlDatabaseCreateInput as bl, DeploymentCloudSqlDatabaseCreateOutput as bm, DeploymentCloudSqlDatabaseDeleteInput as bn, DeploymentCloudSqlDatabaseDeleteOutput as bo, DeploymentCloudSqlDatabaseDetachInput as bp, DeploymentCloudSqlDatabaseDetachOutput as bq, DeploymentCloudSqlDatabaseGetInput as br, DeploymentCloudSqlDatabaseGetOutput as bs, DeploymentCloudSqlDatabaseListInput as bt, DeploymentCloudSqlDatabaseListOutput as bu, DeploymentCloudSqlInstanceBackupListInput as bv, DeploymentCloudSqlInstanceBackupListOutput as bw, DeploymentCloudSqlInstanceBackupInput as bx, DeploymentCloudSqlInstanceBackupOutput as by, DeploymentCloudSqlInstanceCreateInput as bz, BrainBackupRestoreOutput as c, DeploymentPreviewEnvironmentCreateInput as c$, DeploymentDomainListOutput as c0, DeploymentDomainRedirectWwwInput as c1, DeploymentDomainRedirectWwwOutput as c2, DeploymentDomainRemoveInput as c3, DeploymentDomainRemoveOutput as c4, DeploymentDomainRoutesAddInput as c5, DeploymentDomainRoutesAddOutput as c6, DeploymentDomainRoutesListInput as c7, DeploymentDomainRoutesListOutput as c8, DeploymentDomainRoutesRemoveInput as c9, DeploymentManagedServiceBackupOutput as cA, DeploymentManagedServiceConnectInfoInput as cB, DeploymentManagedServiceConnectInfoOutput as cC, DeploymentManagedServiceDeleteInput as cD, DeploymentManagedServiceDeleteOutput as cE, DeploymentManagedServiceGetInput as cF, DeploymentManagedServiceGetOutput as cG, DeploymentManagedServiceListInput as cH, DeploymentManagedServiceListOutput as cI, DeploymentManagedServiceLogsInput as cJ, DeploymentManagedServiceLogsOutput as cK, DeploymentManagedServiceProvisionInput as cL, DeploymentManagedServiceProvisionOutput as cM, DeploymentManagedServiceReconcileInput as cN, DeploymentManagedServiceReconcileOutput as cO, DeploymentManagedServiceResizeInput as cP, DeploymentManagedServiceResizeOutput as cQ, DeploymentManagedServiceRestoreInput as cR, DeploymentManagedServiceRestoreOutput as cS, DeploymentManagedServiceStartInput as cT, DeploymentManagedServiceStartOutput as cU, DeploymentManagedServiceStopInput as cV, DeploymentManagedServiceStopOutput as cW, DeploymentManagedServiceTypesInput as cX, DeploymentManagedServiceTypesOutput as cY, DeploymentMetricsGetInput as cZ, DeploymentMetricsGetOutput as c_, DeploymentDomainRoutesRemoveOutput as ca, DeploymentDomainRoutesUpdateInput as cb, DeploymentDomainRoutesUpdateOutput as cc, DeploymentDomainVerifyInput as cd, DeploymentDomainVerifyOutput as ce, DeploymentEnvironmentCreateInput as cf, DeploymentEnvironmentCreateOutput as cg, DeploymentEnvironmentDeleteInput as ch, DeploymentEnvironmentDeleteOutput as ci, DeploymentEnvironmentForkInput as cj, DeploymentEnvironmentForkOutput as ck, DeploymentEnvironmentGetInput as cl, DeploymentEnvironmentGetOutput as cm, DeploymentEnvironmentListInput as cn, DeploymentEnvironmentListOutput as co, DeploymentEnvironmentReconcileInput as cp, DeploymentEnvironmentReconcileOutput as cq, DeploymentEnvironmentUpdateInput as cr, DeploymentEnvironmentUpdateOutput as cs, DeploymentEventsListByEnvironmentInput as ct, DeploymentEventsListByEnvironmentOutput as cu, DeploymentEventsListByServiceInput as cv, DeploymentEventsListByServiceOutput as cw, DeploymentManagedServiceBackupListInput as cx, DeploymentManagedServiceBackupListOutput as cy, DeploymentManagedServiceBackupInput as cz, BrainBackupStatusInput as d, DeploymentVcsRepoListOutput as d$, DeploymentPreviewEnvironmentCreateOutput as d0, DeploymentPreviewEnvironmentDeleteInput as d1, DeploymentPreviewEnvironmentDeleteOutput as d2, DeploymentPreviewEnvironmentListInput as d3, DeploymentPreviewEnvironmentListOutput as d4, DeploymentPreviewPolicyGetInput as d5, DeploymentPreviewPolicyGetOutput as d6, DeploymentPreviewPolicySetInput as d7, DeploymentPreviewPolicySetOutput as d8, DeploymentServiceCreateInput as d9, DeploymentSshKeyListInput as dA, DeploymentSshKeyListOutput as dB, DeploymentSshKeyRegisterInput as dC, DeploymentSshKeyRegisterOutput as dD, DeploymentVariableListEnvInput as dE, DeploymentVariableListEnvOutput as dF, DeploymentVariableListProductInput as dG, DeploymentVariableListProductOutput as dH, DeploymentVariableListInput as dI, DeploymentVariableListOutput as dJ, DeploymentVariableSetEnvInput as dK, DeploymentVariableSetEnvOutput as dL, DeploymentVariableSetInput as dM, DeploymentVariableSetOutput as dN, DeploymentVariableSetProductInput as dO, DeploymentVariableSetProductOutput as dP, DeploymentVariableUnsetEnvInput as dQ, DeploymentVariableUnsetEnvOutput as dR, DeploymentVariableUnsetInput as dS, DeploymentVariableUnsetOutput as dT, DeploymentVariableUnsetProductInput as dU, DeploymentVariableUnsetProductOutput as dV, DeploymentVcsBranchListInput as dW, DeploymentVcsBranchListOutput as dX, DeploymentVcsConnectionListInput as dY, DeploymentVcsConnectionListOutput as dZ, DeploymentVcsRepoListInput as d_, DeploymentServiceCreateOutput as da, DeploymentServiceDeleteInput as db, DeploymentServiceDeleteOutput as dc, DeploymentServiceExecInput as dd, DeploymentServiceExecOutput as de, DeploymentServiceGetInput as df, DeploymentServiceGetOutput as dg, DeploymentServiceListInput as dh, DeploymentServiceListOutput as di, DeploymentServiceLogsInput as dj, DeploymentServiceLogsOutput as dk, DeploymentServiceRedeployInput as dl, DeploymentServiceRedeployOutput as dm, DeploymentServiceRestartInput as dn, DeploymentServiceRestartOutput as dp, DeploymentServiceRollbackInput as dq, DeploymentServiceRollbackOutput as dr, DeploymentServiceScaleInput as ds, DeploymentServiceScaleOutput as dt, DeploymentServiceUpdateInput as du, DeploymentServiceUpdateOutput as dv, DeploymentSshCommandInput as dw, DeploymentSshCommandOutput as dx, DeploymentSshKeyDeleteInput as dy, DeploymentSshKeyDeleteOutput as dz, BrainBackupStatusOutput as e, MailDomainListOutput as e$, DeploymentVolumeCreateInput as e0, DeploymentVolumeCreateOutput as e1, DeploymentVolumeDeleteInput as e2, DeploymentVolumeDeleteOutput as e3, DeploymentVolumeDetachInput as e4, DeploymentVolumeDetachOutput as e5, DeploymentVolumeGetInput as e6, DeploymentVolumeGetOutput as e7, DeploymentVolumeListInput as e8, DeploymentVolumeListOutput as e9, MailBroadcastListInput as eA, MailBroadcastListOutput as eB, MailBroadcastQueueInput as eC, MailBroadcastQueueOutput as eD, MailBroadcastStatsInput as eE, MailBroadcastStatsOutput as eF, MailBroadcastUpdateInput as eG, MailBroadcastUpdateOutput as eH, MailContactCreateInput as eI, MailContactCreateOutput as eJ, MailContactDeleteInput as eK, MailContactDeleteOutput as eL, MailContactGetInput as eM, MailContactGetOutput as eN, MailContactListInput as eO, MailContactListOutput as eP, MailContactUpdateInput as eQ, MailContactUpdateOutput as eR, MailDomainAllowedListInput as eS, MailDomainAllowedListOutput as eT, MailDomainCreateInput as eU, MailDomainCreateOutput as eV, MailDomainDeleteInput as eW, MailDomainDeleteOutput as eX, MailDomainGetInput as eY, MailDomainGetOutput as eZ, MailDomainListInput as e_, DeploymentVolumeResizeInput as ea, DeploymentVolumeResizeOutput as eb, MailApikeyCreateInput as ec, MailApikeyCreateOutput as ed, MailApikeyDeleteInput as ee, MailApikeyDeleteOutput as ef, MailApikeyListInput as eg, MailApikeyListOutput as eh, MailAudienceCreateInput as ei, MailAudienceCreateOutput as ej, MailAudienceDeleteInput as ek, MailAudienceDeleteOutput as el, MailAudienceGetInput as em, MailAudienceGetOutput as en, MailAudienceListInput as eo, MailAudienceListOutput as ep, MailAudienceUpdateInput as eq, MailAudienceUpdateOutput as er, MailBroadcastCancelInput as es, MailBroadcastCancelOutput as et, MailBroadcastCreateInput as eu, MailBroadcastCreateOutput as ev, MailBroadcastDeleteInput as ew, MailBroadcastDeleteOutput as ex, MailBroadcastGetInput as ey, MailBroadcastGetOutput as ez, BrainBackupsListInput as f, OrganizationConnectorsAttachOutput as f$, MailDomainUpdateInput as f0, MailDomainUpdateOutput as f1, MailDomainVerifyInput as f2, MailDomainVerifyOutput as f3, MailEmailCancelInput as f4, MailEmailCancelOutput as f5, MailEmailGetInput as f6, MailEmailSendBatchInput as f7, MailEmailSendBatchOutput as f8, MailEmailSendInput as f9, MailUsageGetOutput as fA, MailWebhookCreateInput as fB, MailWebhookCreateOutput as fC, MailWebhookDeleteInput as fD, MailWebhookDeleteOutput as fE, MailWebhookDeliveriesListInput as fF, MailWebhookDeliveriesListOutput as fG, MailWebhookGetInput as fH, MailWebhookGetOutput as fI, MailWebhookListInput as fJ, MailWebhookListOutput as fK, MailWebhookUpdateInput as fL, MailWebhookUpdateOutput as fM, MailEmailGetOutput as fN, OrganizationAuthMeInput as fO, OrganizationAuthMeOutput as fP, OrganizationBindingsListInput as fQ, OrganizationBindingsListOutput as fR, OrganizationClickupInstallInput as fS, OrganizationClickupInstallOutput as fT, OrganizationClickupListInstallationsInput as fU, OrganizationClickupListInstallationsOutput as fV, OrganizationCloudflareInstallInput as fW, OrganizationCloudflareInstallOutput as fX, OrganizationConnectorsApproveRequestInput as fY, OrganizationConnectorsApproveRequestOutput as fZ, OrganizationConnectorsAttachInput as f_, MailEmailSendOutput as fa, MailEmailUpdateInput as fb, MailEmailUpdateOutput as fc, MailReputationGetInput as fd, MailReputationGetOutput as fe, MailStatsGetInput as ff, MailStatsGetOutput as fg, MailSuppressionAddInput as fh, MailSuppressionAddOutput as fi, MailSuppressionListInput as fj, MailSuppressionListOutput as fk, MailSuppressionRemoveInput as fl, MailSuppressionRemoveOutput as fm, MailTemplateCreateInput as fn, MailTemplateCreateOutput as fo, MailTemplateDeleteInput as fp, MailTemplateDeleteOutput as fq, MailTemplateGetInput as fr, MailTemplateGetOutput as fs, MailTemplateListInput as ft, MailTemplateListOutput as fu, MailTemplatePublishInput as fv, MailTemplatePublishOutput as fw, MailTemplateUpdateInput as fx, MailTemplateUpdateOutput as fy, MailUsageGetInput as fz, BrainBackupsListOutput as g, OrganizationMemberRevokeInvitationOutput as g$, OrganizationConnectorsDeleteInput as g0, OrganizationConnectorsDeleteOutput as g1, OrganizationConnectorsDenyRequestInput as g2, OrganizationConnectorsDenyRequestOutput as g3, OrganizationConnectorsDetachInput as g4, OrganizationConnectorsDetachOutput as g5, OrganizationConnectorsListAttachmentsInput as g6, OrganizationConnectorsListAttachmentsOutput as g7, OrganizationConnectorsListAvailableInput as g8, OrganizationConnectorsListAvailableOutput as g9, OrganizationExtensionsUninstallInput as gA, OrganizationExtensionsUninstallOutput as gB, OrganizationFeedbackSubmitInput as gC, OrganizationFeedbackSubmitOutput as gD, OrganizationGdriveInstallInput as gE, OrganizationGdriveInstallOutput as gF, OrganizationGithubInstallInput as gG, OrganizationGithubInstallOutput as gH, OrganizationGithubListInstallationsInput as gI, OrganizationGithubListInstallationsOutput as gJ, OrganizationGoogleadsInstallInput as gK, OrganizationGoogleadsInstallOutput as gL, OrganizationListInput as gM, OrganizationListOutput as gN, OrganizationMemberAcceptInviteInput as gO, OrganizationMemberAcceptInviteOutput as gP, OrganizationMemberInviteInput as gQ, OrganizationMemberInviteOutput as gR, OrganizationMemberListInvitationsInput as gS, OrganizationMemberListInvitationsOutput as gT, OrganizationMemberListProductAccessInput as gU, OrganizationMemberListProductAccessOutput as gV, OrganizationMemberListInput as gW, OrganizationMemberListOutput as gX, OrganizationMemberRemoveInput as gY, OrganizationMemberRemoveOutput as gZ, OrganizationMemberRevokeInvitationInput as g_, OrganizationConnectorsListOrgInput as ga, OrganizationConnectorsListOrgOutput as gb, OrganizationConnectorsListInput as gc, OrganizationConnectorsListOutput as gd, OrganizationConnectorsListRequestsInput as ge, OrganizationConnectorsListRequestsOutput as gf, OrganizationConnectorsRemoveInput as gg, OrganizationConnectorsRemoveOutput as gh, OrganizationConnectorsRequestInput as gi, OrganizationConnectorsRequestOutput as gj, OrganizationCreateInput as gk, OrganizationCreateOutput as gl, OrganizationDomainsAddInput as gm, OrganizationDomainsAddOutput as gn, OrganizationDomainsGetInput as go, OrganizationDomainsGetOutput as gp, OrganizationDomainsListInput as gq, OrganizationDomainsListOutput as gr, OrganizationDomainsRemoveInput as gs, OrganizationDomainsRemoveOutput as gt, OrganizationExtensionsInstallInput as gu, OrganizationExtensionsInstallOutput as gv, OrganizationExtensionsListInstalledInput as gw, OrganizationExtensionsListInstalledOutput as gx, OrganizationExtensionsListInput as gy, OrganizationExtensionsListOutput as gz, BrainClickupChannelsListInput as h, TrackingEventNamesUnarchiveOutput as h$, OrganizationMemberSetRoleInput as h0, OrganizationMemberSetRoleOutput as h1, OrganizationMemberShareProductInput as h2, OrganizationMemberShareProductOutput as h3, OrganizationMemberUnshareProductInput as h4, OrganizationMemberUnshareProductOutput as h5, OrganizationMembersAssignRoleInput as h6, OrganizationMembersAssignRoleOutput as h7, OrganizationPermissionCatalogInput as h8, OrganizationPermissionCatalogOutput as h9, OrganizationRolesUpdateInput as hA, OrganizationRolesUpdateOutput as hB, OrganizationSelectInput as hC, OrganizationSelectOutput as hD, TrackingApiKeysCreateInput as hE, TrackingApiKeysCreateOutput as hF, TrackingApiKeysListInput as hG, TrackingApiKeysListOutput as hH, TrackingApiKeysRevokeInput as hI, TrackingApiKeysRevokeOutput as hJ, TrackingApiKeysRotateInput as hK, TrackingApiKeysRotateOutput as hL, TrackingDomainsCreateInput as hM, TrackingDomainsCreateOutput as hN, TrackingDomainsDeleteInput as hO, TrackingDomainsDeleteOutput as hP, TrackingDomainsGetInput as hQ, TrackingDomainsGetOutput as hR, TrackingDomainsListInput as hS, TrackingDomainsListOutput as hT, TrackingDomainsVerifyInput as hU, TrackingDomainsVerifyOutput as hV, TrackingEventNamesArchiveInput as hW, TrackingEventNamesArchiveOutput as hX, TrackingEventNamesListInput as hY, TrackingEventNamesListOutput as hZ, TrackingEventNamesUnarchiveInput as h_, OrganizationProductAcceptInvitationInput as ha, OrganizationProductAcceptInvitationOutput as hb, OrganizationProductCreateInput as hc, OrganizationProductCreateOutput as hd, OrganizationProductInviteInput as he, OrganizationProductInviteOutput as hf, OrganizationProductListInvitationsInput as hg, OrganizationProductListInvitationsOutput as hh, OrganizationProductListMembersInput as hi, OrganizationProductListMembersOutput as hj, OrganizationProductListInput as hk, OrganizationProductListOutput as hl, OrganizationProductListRolesInput as hm, OrganizationProductListRolesOutput as hn, OrganizationProductRevokeInvitationInput as ho, OrganizationProductRevokeInvitationOutput as hp, OrganizationProductSelectInput as hq, OrganizationProductSelectOutput as hr, OrganizationRolesCreateInput as hs, OrganizationRolesCreateOutput as ht, OrganizationRolesDeleteInput as hu, OrganizationRolesDeleteOutput as hv, OrganizationRolesGetInput as hw, OrganizationRolesGetOutput as hx, OrganizationRolesListInput as hy, OrganizationRolesListOutput as hz, BrainClickupChannelsListOutput as i, WaitlistInvitesSendOutput as i$, TrackingGoogleadsConnectionStatusInput as i0, TrackingGoogleadsConnectionStatusOutput as i1, TrackingGoogleadsConversionActionsInput as i2, TrackingGoogleadsConversionActionsOutput as i3, TrackingGoogleadsFeedbackConfigGetInput as i4, TrackingGoogleadsFeedbackConfigGetOutput as i5, TrackingGoogleadsFeedbackConfigSetInput as i6, TrackingGoogleadsFeedbackConfigSetOutput as i7, TrackingGoogleadsFeedbackRunInput as i8, TrackingGoogleadsFeedbackRunOutput as i9, TrackingLinkDomainsListInput as iA, TrackingLinkDomainsListOutput as iB, TrackingLiveEventsListInput as iC, TrackingLiveEventsListOutput as iD, TrackingProfilesDeleteInput as iE, TrackingProfilesDeleteOutput as iF, TrackingProfilesExportInput as iG, TrackingProfilesExportOutput as iH, TrackingProfilesGetInput as iI, TrackingProfilesGetOutput as iJ, TrackingProfilesListInput as iK, TrackingProfilesListOutput as iL, TrackingReportsAttributedJourneyInput as iM, TrackingReportsAttributedJourneyOutput as iN, TrackingReportsRevenueBySourceInput as iO, TrackingReportsRevenueBySourceOutput as iP, TrackingReportsSourcePeopleInput as iQ, TrackingReportsSourcePeopleOutput as iR, TrackingSnippetsGetInput as iS, TrackingSnippetsGetOutput as iT, WaitlistConfigGetInput as iU, WaitlistConfigGetOutput as iV, WaitlistConfigUpsertInput as iW, WaitlistConfigUpsertOutput as iX, WaitlistEmbedGetInput as iY, WaitlistEmbedGetOutput as iZ, WaitlistInvitesSendInput as i_, TrackingGoogleadsFeedbackStatusInput as ia, TrackingGoogleadsFeedbackStatusOutput as ib, TrackingGoogleadsFeedbackUploadsInput as ic, TrackingGoogleadsFeedbackUploadsOutput as id, TrackingGoogleadsRoasReportInput as ie, TrackingGoogleadsRoasReportOutput as ig, TrackingGoogleadsSyncNowInput as ih, TrackingGoogleadsSyncNowOutput as ii, TrackingGoogleadsTrackingHealthInput as ij, TrackingGoogleadsTrackingHealthOutput as ik, TrackingGoogleadsUsVsPlatformInput as il, TrackingGoogleadsUsVsPlatformOutput as im, TrackingIdentityHealthInput as io, TrackingIdentityHealthOutput as ip, TrackingInstallDomainsCreateInput as iq, TrackingInstallDomainsCreateOutput as ir, TrackingInstallDomainsDeleteInput as is, TrackingInstallDomainsDeleteOutput as it, TrackingInstallDomainsListInput as iu, TrackingInstallDomainsListOutput as iv, TrackingLinkDomainsCreateInput as iw, TrackingLinkDomainsCreateOutput as ix, TrackingLinkDomainsDeleteInput as iy, TrackingLinkDomainsDeleteOutput as iz, BrainClickupConnectionsListInput as j, WaitlistSignupsEraseInput as j0, WaitlistSignupsEraseOutput as j1, WaitlistSignupsFunnelInput as j2, WaitlistSignupsFunnelOutput as j3, WaitlistSignupsListInput as j4, WaitlistSignupsListOutput as j5, BrainClickupConnectionsListOutput as k, BrainClickupListsListInput as l, BrainClickupListsListOutput as m, BrainClickupSpacesListInput as n, BrainClickupSpacesListOutput as o, BrainCognitionDigestInput as p, BrainCognitionDigestOutput as q, BrainCognitionStatusInput as r, BrainCognitionStatusOutput as s, BrainCognitionSweepInput as t, BrainCognitionSweepOutput as u, BrainConnectorBranchesListInput as v, BrainConnectorBranchesListOutput as w, BrainConnectorConnectionsListInput as x, BrainConnectorConnectionsListOutput as y, BrainConnectorReposListInput as z };