@lessly/sdk-app 43.0.0 → 44.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.
Files changed (47) hide show
  1. package/dist/analytics/index.d.cts +1 -1
  2. package/dist/analytics/index.d.ts +1 -1
  3. package/dist/brain/index.d.cts +1 -1
  4. package/dist/brain/index.d.ts +1 -1
  5. package/dist/{client.gen-BE8VaNrU.d.cts → client.gen-DlCqQAIZ.d.cts} +1175 -1
  6. package/dist/{client.gen-BE8VaNrU.d.ts → client.gen-DlCqQAIZ.d.ts} +1175 -1
  7. package/dist/consent/index.d.cts +1 -1
  8. package/dist/consent/index.d.ts +1 -1
  9. package/dist/content/index.cjs +96 -0
  10. package/dist/content/index.cjs.map +1 -0
  11. package/dist/content/index.d.cts +76 -0
  12. package/dist/content/index.d.ts +76 -0
  13. package/dist/content/index.js +77 -0
  14. package/dist/content/index.js.map +1 -0
  15. package/dist/deployment/index.d.cts +1 -1
  16. package/dist/deployment/index.d.ts +1 -1
  17. package/dist/index.cjs +302 -0
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.d.cts +1 -1
  20. package/dist/index.d.ts +1 -1
  21. package/dist/index.js +302 -0
  22. package/dist/index.js.map +1 -1
  23. package/dist/mail/index.d.cts +2 -2
  24. package/dist/mail/index.d.ts +2 -2
  25. package/dist/observe/index.d.cts +1 -1
  26. package/dist/observe/index.d.ts +1 -1
  27. package/dist/organization/index.d.cts +1 -1
  28. package/dist/organization/index.d.ts +1 -1
  29. package/dist/playground/index.d.cts +1 -1
  30. package/dist/playground/index.d.ts +1 -1
  31. package/dist/realtime/index.d.cts +1 -1
  32. package/dist/realtime/index.d.ts +1 -1
  33. package/dist/support/index.d.cts +1 -1
  34. package/dist/support/index.d.ts +1 -1
  35. package/dist/tracking/index.d.cts +1 -1
  36. package/dist/tracking/index.d.ts +1 -1
  37. package/dist/users/index.d.cts +1 -1
  38. package/dist/users/index.d.ts +1 -1
  39. package/dist/waitlist/index.d.cts +1 -1
  40. package/dist/waitlist/index.d.ts +1 -1
  41. package/package.json +7 -2
  42. package/src/gen/bindings.gen.ts +302 -0
  43. package/src/gen/client.gen.ts +62 -0
  44. package/src/gen/content/index.ts +3 -0
  45. package/src/gen/content/queryOptions.gen.ts +119 -0
  46. package/src/gen/manifest.gen.ts +1 -1
  47. package/src/gen/types.gen.ts +1184 -0
@@ -1281,6 +1281,1154 @@ interface ConsentStatsGetOutput {
1281
1281
  deny_all_pct: number;
1282
1282
  accept_all_pct: number;
1283
1283
  }
1284
+ interface ContentChannelsGetInput {
1285
+ /**
1286
+ * The channel id returned by content_channels_list.
1287
+ */
1288
+ id: string;
1289
+ }
1290
+ interface ContentChannelsGetOutput {
1291
+ /**
1292
+ * Channel id — pass this to content_publications_schedule.
1293
+ */
1294
+ id: string;
1295
+ /**
1296
+ * Social network: linkedin, x, youtube, instagram or reddit.
1297
+ */
1298
+ network: string;
1299
+ /**
1300
+ * ISO-8601 creation time.
1301
+ */
1302
+ createdAt: string;
1303
+ /**
1304
+ * ISO-8601 time of the last change.
1305
+ */
1306
+ updatedAt: string;
1307
+ /**
1308
+ * Human label for the channel.
1309
+ */
1310
+ displayName: string;
1311
+ /**
1312
+ * Who publishes: member (a personal account) or organization (a company page). Phase 1 channels are all member accounts.
1313
+ */
1314
+ subjectType: ("member" | "organization");
1315
+ /**
1316
+ * What the channel accepts and what it costs: maxTextLength, maxMedia, supportsVideo, supportsLink, costPerPostUsd, costPerLinkPostUsd, dailyPostCeiling, ceilingIsRuntimeData. Read maxTextLength before writing a per-channel text variant.
1317
+ */
1318
+ capabilities: {
1319
+ [k: string]: unknown;
1320
+ };
1321
+ /**
1322
+ * Platform connector connection backing this channel, or null for a reminder channel that needs none. This toolkit never holds social credentials.
1323
+ */
1324
+ connectionId: (string | null);
1325
+ /**
1326
+ * How the post reaches the network: auto (this API publishes it) or reminder (the system prepares it and notifies a person, who publishes by hand). Every seeded channel is reminder.
1327
+ */
1328
+ deliveryMode: ("auto" | "reminder");
1329
+ }
1330
+ interface ContentChannelsListInput {
1331
+ /**
1332
+ * Maximum number of channels to return (1-100, default 50).
1333
+ */
1334
+ limit?: number;
1335
+ /**
1336
+ * How many channels to skip, for paging.
1337
+ */
1338
+ offset?: number;
1339
+ /**
1340
+ * Return only channels on this network.
1341
+ */
1342
+ network?: ("linkedin" | "x" | "youtube" | "instagram" | "reddit");
1343
+ }
1344
+ interface ContentChannelsListOutput {
1345
+ /**
1346
+ * Total number of matching channels, ignoring paging.
1347
+ */
1348
+ total: number;
1349
+ /**
1350
+ * The page of channels, ordered by network.
1351
+ */
1352
+ channels: {
1353
+ /**
1354
+ * Channel id — pass this to content_publications_schedule.
1355
+ */
1356
+ id: string;
1357
+ /**
1358
+ * Social network: linkedin, x, youtube, instagram or reddit.
1359
+ */
1360
+ network: string;
1361
+ /**
1362
+ * ISO-8601 creation time.
1363
+ */
1364
+ createdAt: string;
1365
+ /**
1366
+ * ISO-8601 time of the last change.
1367
+ */
1368
+ updatedAt: string;
1369
+ /**
1370
+ * Human label for the channel.
1371
+ */
1372
+ displayName: string;
1373
+ /**
1374
+ * Who publishes: member (a personal account) or organization (a company page). Phase 1 channels are all member accounts.
1375
+ */
1376
+ subjectType: ("member" | "organization");
1377
+ /**
1378
+ * What the channel accepts and what it costs: maxTextLength, maxMedia, supportsVideo, supportsLink, costPerPostUsd, costPerLinkPostUsd, dailyPostCeiling, ceilingIsRuntimeData. Read maxTextLength before writing a per-channel text variant.
1379
+ */
1380
+ capabilities: {
1381
+ [k: string]: unknown;
1382
+ };
1383
+ /**
1384
+ * Platform connector connection backing this channel, or null for a reminder channel that needs none. This toolkit never holds social credentials.
1385
+ */
1386
+ connectionId: (string | null);
1387
+ /**
1388
+ * How the post reaches the network: auto (this API publishes it) or reminder (the system prepares it and notifies a person, who publishes by hand). Every seeded channel is reminder.
1389
+ */
1390
+ deliveryMode: ("auto" | "reminder");
1391
+ }[];
1392
+ }
1393
+ interface ContentChannelsUpdateInput {
1394
+ /**
1395
+ * The channel id returned by content_channels_list.
1396
+ */
1397
+ id: string;
1398
+ /**
1399
+ * New human label for the channel. Omit to keep the current one.
1400
+ */
1401
+ displayName?: string;
1402
+ /**
1403
+ * Override individual capability fields — a known ceiling beats the hand-filled constant. Merges over the existing descriptor; fields you omit keep their current values.
1404
+ */
1405
+ capabilities?: {
1406
+ [k: string]: unknown;
1407
+ };
1408
+ /**
1409
+ * Change how the post reaches the network. Only reminder can be scheduled in this release — no publishing adapter exists yet.
1410
+ */
1411
+ deliveryMode?: ("auto" | "reminder");
1412
+ }
1413
+ interface ContentChannelsUpdateOutput {
1414
+ /**
1415
+ * Channel id — pass this to content_publications_schedule.
1416
+ */
1417
+ id: string;
1418
+ /**
1419
+ * Social network: linkedin, x, youtube, instagram or reddit.
1420
+ */
1421
+ network: string;
1422
+ /**
1423
+ * ISO-8601 creation time.
1424
+ */
1425
+ createdAt: string;
1426
+ /**
1427
+ * ISO-8601 time of the last change.
1428
+ */
1429
+ updatedAt: string;
1430
+ /**
1431
+ * Human label for the channel.
1432
+ */
1433
+ displayName: string;
1434
+ /**
1435
+ * Who publishes: member (a personal account) or organization (a company page). Phase 1 channels are all member accounts.
1436
+ */
1437
+ subjectType: ("member" | "organization");
1438
+ /**
1439
+ * What the channel accepts and what it costs: maxTextLength, maxMedia, supportsVideo, supportsLink, costPerPostUsd, costPerLinkPostUsd, dailyPostCeiling, ceilingIsRuntimeData. Read maxTextLength before writing a per-channel text variant.
1440
+ */
1441
+ capabilities: {
1442
+ [k: string]: unknown;
1443
+ };
1444
+ /**
1445
+ * Platform connector connection backing this channel, or null for a reminder channel that needs none. This toolkit never holds social credentials.
1446
+ */
1447
+ connectionId: (string | null);
1448
+ /**
1449
+ * How the post reaches the network: auto (this API publishes it) or reminder (the system prepares it and notifies a person, who publishes by hand). Every seeded channel is reminder.
1450
+ */
1451
+ deliveryMode: ("auto" | "reminder");
1452
+ }
1453
+ interface ContentPostsApproveInput {
1454
+ /**
1455
+ * The post id returned by content_posts_create.
1456
+ */
1457
+ id: string;
1458
+ }
1459
+ interface ContentPostsApproveOutput {
1460
+ /**
1461
+ * Post id.
1462
+ */
1463
+ id: string;
1464
+ /**
1465
+ * The current text of the post.
1466
+ */
1467
+ text: string;
1468
+ /**
1469
+ * Media references attached to the current version.
1470
+ */
1471
+ media: string[];
1472
+ /**
1473
+ * Identity id of whoever composed the post.
1474
+ */
1475
+ author: string;
1476
+ /**
1477
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
1478
+ */
1479
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
1480
+ /**
1481
+ * ISO-8601 creation time.
1482
+ */
1483
+ createdAt: string;
1484
+ /**
1485
+ * ISO-8601 time of the last change.
1486
+ */
1487
+ updatedAt: string;
1488
+ /**
1489
+ * Version number of the current text.
1490
+ */
1491
+ currentVersion: number;
1492
+ /**
1493
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
1494
+ */
1495
+ approvedVersion: (number | null);
1496
+ }
1497
+ interface ContentPostsCreateInput {
1498
+ /**
1499
+ * The post text, channel-independent. Per-channel variants come later, at publish time.
1500
+ */
1501
+ text: string;
1502
+ /**
1503
+ * Media references attached to the post, in display order. Opaque strings — the toolkit does not upload or resolve them.
1504
+ *
1505
+ * @maxItems 20
1506
+ */
1507
+ media?: [] | [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string] | [string, string, string, string, string, string] | [string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string];
1508
+ }
1509
+ interface ContentPostsCreateOutput {
1510
+ /**
1511
+ * Post id.
1512
+ */
1513
+ id: string;
1514
+ /**
1515
+ * The current text of the post.
1516
+ */
1517
+ text: string;
1518
+ /**
1519
+ * Media references attached to the current version.
1520
+ */
1521
+ media: string[];
1522
+ /**
1523
+ * Identity id of whoever composed the post.
1524
+ */
1525
+ author: string;
1526
+ /**
1527
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
1528
+ */
1529
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
1530
+ /**
1531
+ * ISO-8601 creation time.
1532
+ */
1533
+ createdAt: string;
1534
+ /**
1535
+ * ISO-8601 time of the last change.
1536
+ */
1537
+ updatedAt: string;
1538
+ /**
1539
+ * Version number of the current text.
1540
+ */
1541
+ currentVersion: number;
1542
+ /**
1543
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
1544
+ */
1545
+ approvedVersion: (number | null);
1546
+ }
1547
+ interface ContentPostsGetInput {
1548
+ /**
1549
+ * The post id returned by content_posts_create.
1550
+ */
1551
+ id: string;
1552
+ }
1553
+ interface ContentPostsGetOutput {
1554
+ /**
1555
+ * Post id.
1556
+ */
1557
+ id: string;
1558
+ /**
1559
+ * The current text of the post.
1560
+ */
1561
+ text: string;
1562
+ /**
1563
+ * Media references attached to the current version.
1564
+ */
1565
+ media: string[];
1566
+ /**
1567
+ * Identity id of whoever composed the post.
1568
+ */
1569
+ author: string;
1570
+ /**
1571
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
1572
+ */
1573
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
1574
+ /**
1575
+ * ISO-8601 creation time.
1576
+ */
1577
+ createdAt: string;
1578
+ /**
1579
+ * ISO-8601 time of the last change.
1580
+ */
1581
+ updatedAt: string;
1582
+ /**
1583
+ * Version number of the current text.
1584
+ */
1585
+ currentVersion: number;
1586
+ /**
1587
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
1588
+ */
1589
+ approvedVersion: (number | null);
1590
+ }
1591
+ interface ContentPostsListInput {
1592
+ /**
1593
+ * Maximum number of posts to return (1-100, default 50).
1594
+ */
1595
+ limit?: number;
1596
+ /**
1597
+ * How many posts to skip, for paging.
1598
+ */
1599
+ offset?: number;
1600
+ /**
1601
+ * Return only posts in this status.
1602
+ */
1603
+ status?: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
1604
+ }
1605
+ interface ContentPostsListOutput {
1606
+ /**
1607
+ * The page of posts, newest first.
1608
+ */
1609
+ posts: {
1610
+ /**
1611
+ * Post id.
1612
+ */
1613
+ id: string;
1614
+ /**
1615
+ * The current text of the post.
1616
+ */
1617
+ text: string;
1618
+ /**
1619
+ * Media references attached to the current version.
1620
+ */
1621
+ media: string[];
1622
+ /**
1623
+ * Identity id of whoever composed the post.
1624
+ */
1625
+ author: string;
1626
+ /**
1627
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
1628
+ */
1629
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
1630
+ /**
1631
+ * ISO-8601 creation time.
1632
+ */
1633
+ createdAt: string;
1634
+ /**
1635
+ * ISO-8601 time of the last change.
1636
+ */
1637
+ updatedAt: string;
1638
+ /**
1639
+ * Version number of the current text.
1640
+ */
1641
+ currentVersion: number;
1642
+ /**
1643
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
1644
+ */
1645
+ approvedVersion: (number | null);
1646
+ }[];
1647
+ /**
1648
+ * Total number of matching posts, ignoring paging.
1649
+ */
1650
+ total: number;
1651
+ }
1652
+ interface ContentPostsSubmitInput {
1653
+ /**
1654
+ * The post id returned by content_posts_create.
1655
+ */
1656
+ id: string;
1657
+ }
1658
+ interface ContentPostsSubmitOutput {
1659
+ /**
1660
+ * Post id.
1661
+ */
1662
+ id: string;
1663
+ /**
1664
+ * The current text of the post.
1665
+ */
1666
+ text: string;
1667
+ /**
1668
+ * Media references attached to the current version.
1669
+ */
1670
+ media: string[];
1671
+ /**
1672
+ * Identity id of whoever composed the post.
1673
+ */
1674
+ author: string;
1675
+ /**
1676
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
1677
+ */
1678
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
1679
+ /**
1680
+ * ISO-8601 creation time.
1681
+ */
1682
+ createdAt: string;
1683
+ /**
1684
+ * ISO-8601 time of the last change.
1685
+ */
1686
+ updatedAt: string;
1687
+ /**
1688
+ * Version number of the current text.
1689
+ */
1690
+ currentVersion: number;
1691
+ /**
1692
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
1693
+ */
1694
+ approvedVersion: (number | null);
1695
+ }
1696
+ interface ContentPostsUpdateInput {
1697
+ /**
1698
+ * The post id returned by content_posts_create.
1699
+ */
1700
+ id: string;
1701
+ /**
1702
+ * Replacement text. Omit to keep the current text.
1703
+ */
1704
+ text?: string;
1705
+ /**
1706
+ * Replacement media list (replaces, never merges). Omit to keep the current media.
1707
+ *
1708
+ * @maxItems 20
1709
+ */
1710
+ media?: [] | [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string] | [string, string, string, string, string, string] | [string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string];
1711
+ }
1712
+ interface ContentPostsUpdateOutput {
1713
+ /**
1714
+ * Post id.
1715
+ */
1716
+ id: string;
1717
+ /**
1718
+ * The current text of the post.
1719
+ */
1720
+ text: string;
1721
+ /**
1722
+ * Media references attached to the current version.
1723
+ */
1724
+ media: string[];
1725
+ /**
1726
+ * Identity id of whoever composed the post.
1727
+ */
1728
+ author: string;
1729
+ /**
1730
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
1731
+ */
1732
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
1733
+ /**
1734
+ * ISO-8601 creation time.
1735
+ */
1736
+ createdAt: string;
1737
+ /**
1738
+ * ISO-8601 time of the last change.
1739
+ */
1740
+ updatedAt: string;
1741
+ /**
1742
+ * Version number of the current text.
1743
+ */
1744
+ currentVersion: number;
1745
+ /**
1746
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
1747
+ */
1748
+ approvedVersion: (number | null);
1749
+ }
1750
+ interface ContentPostsVersionsInput {
1751
+ /**
1752
+ * The post id returned by content_posts_create.
1753
+ */
1754
+ id: string;
1755
+ }
1756
+ interface ContentPostsVersionsOutput {
1757
+ /**
1758
+ * The post these versions belong to.
1759
+ */
1760
+ postId: string;
1761
+ /**
1762
+ * Every version, oldest first.
1763
+ */
1764
+ versions: {
1765
+ /**
1766
+ * The text as it stood at this version.
1767
+ */
1768
+ text: string;
1769
+ /**
1770
+ * Media references as they stood at this version.
1771
+ */
1772
+ media: string[];
1773
+ /**
1774
+ * Post the version belongs to.
1775
+ */
1776
+ postId: string;
1777
+ /**
1778
+ * Version number, starting at 1.
1779
+ */
1780
+ version: number;
1781
+ /**
1782
+ * ISO-8601 time the version was recorded.
1783
+ */
1784
+ createdAt: string;
1785
+ /**
1786
+ * Identity id of whoever produced this version.
1787
+ */
1788
+ createdBy: string;
1789
+ }[];
1790
+ }
1791
+ interface ContentPublicationsCancelInput {
1792
+ /**
1793
+ * The publication id returned by content_publications_schedule.
1794
+ */
1795
+ id: string;
1796
+ }
1797
+ interface ContentPublicationsCancelOutput {
1798
+ /**
1799
+ * Publication id.
1800
+ */
1801
+ id: string;
1802
+ /**
1803
+ * The per-channel variant of the text that will be published.
1804
+ */
1805
+ text: string;
1806
+ /**
1807
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
1808
+ */
1809
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
1810
+ /**
1811
+ * The post being published.
1812
+ */
1813
+ postId: string;
1814
+ /**
1815
+ * How many dispatch attempts have been made.
1816
+ */
1817
+ attempts: number;
1818
+ /**
1819
+ * The channel it is published to.
1820
+ */
1821
+ channelId: string;
1822
+ /**
1823
+ * ISO-8601 creation time.
1824
+ */
1825
+ createdAt: string;
1826
+ /**
1827
+ * The most recent failure, if any.
1828
+ */
1829
+ lastError: (string | null);
1830
+ /**
1831
+ * ISO-8601 time of the last change.
1832
+ */
1833
+ updatedAt: string;
1834
+ /**
1835
+ * The network's id for the published post, once known.
1836
+ */
1837
+ externalId: (string | null);
1838
+ /**
1839
+ * URL of the published post, once known.
1840
+ */
1841
+ externalUrl: (string | null);
1842
+ /**
1843
+ * ISO-8601 time it was confirmed published.
1844
+ */
1845
+ publishedAt: (string | null);
1846
+ /**
1847
+ * ISO-8601 time the publication is due.
1848
+ */
1849
+ scheduledAt: string;
1850
+ /**
1851
+ * How many reminders have been sent for this publication.
1852
+ */
1853
+ reminderCount: number;
1854
+ /**
1855
+ * The key that makes a retry the same publication.
1856
+ */
1857
+ idempotencyKey: string;
1858
+ /**
1859
+ * ISO-8601 time the most recent reminder went out, or null if none has.
1860
+ */
1861
+ reminderSentAt: (string | null);
1862
+ }
1863
+ interface ContentPublicationsConfirmInput {
1864
+ /**
1865
+ * The publication id returned by content_publications_schedule.
1866
+ */
1867
+ id: string;
1868
+ /**
1869
+ * The network's own id for the post, if known.
1870
+ */
1871
+ externalId?: string;
1872
+ /**
1873
+ * URL of the post the person actually published. Worth supplying — it is what identifies the post later.
1874
+ */
1875
+ externalUrl?: string;
1876
+ }
1877
+ interface ContentPublicationsConfirmOutput {
1878
+ /**
1879
+ * Publication id.
1880
+ */
1881
+ id: string;
1882
+ /**
1883
+ * The per-channel variant of the text that will be published.
1884
+ */
1885
+ text: string;
1886
+ /**
1887
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
1888
+ */
1889
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
1890
+ /**
1891
+ * The post being published.
1892
+ */
1893
+ postId: string;
1894
+ /**
1895
+ * How many dispatch attempts have been made.
1896
+ */
1897
+ attempts: number;
1898
+ /**
1899
+ * The channel it is published to.
1900
+ */
1901
+ channelId: string;
1902
+ /**
1903
+ * ISO-8601 creation time.
1904
+ */
1905
+ createdAt: string;
1906
+ /**
1907
+ * The most recent failure, if any.
1908
+ */
1909
+ lastError: (string | null);
1910
+ /**
1911
+ * ISO-8601 time of the last change.
1912
+ */
1913
+ updatedAt: string;
1914
+ /**
1915
+ * The network's id for the published post, once known.
1916
+ */
1917
+ externalId: (string | null);
1918
+ /**
1919
+ * URL of the published post, once known.
1920
+ */
1921
+ externalUrl: (string | null);
1922
+ /**
1923
+ * ISO-8601 time it was confirmed published.
1924
+ */
1925
+ publishedAt: (string | null);
1926
+ /**
1927
+ * ISO-8601 time the publication is due.
1928
+ */
1929
+ scheduledAt: string;
1930
+ /**
1931
+ * How many reminders have been sent for this publication.
1932
+ */
1933
+ reminderCount: number;
1934
+ /**
1935
+ * The key that makes a retry the same publication.
1936
+ */
1937
+ idempotencyKey: string;
1938
+ /**
1939
+ * ISO-8601 time the most recent reminder went out, or null if none has.
1940
+ */
1941
+ reminderSentAt: (string | null);
1942
+ }
1943
+ interface ContentPublicationsGetInput {
1944
+ /**
1945
+ * The publication id returned by content_publications_schedule.
1946
+ */
1947
+ id: string;
1948
+ }
1949
+ interface ContentPublicationsGetOutput {
1950
+ /**
1951
+ * Publication id.
1952
+ */
1953
+ id: string;
1954
+ /**
1955
+ * The per-channel variant of the text that will be published.
1956
+ */
1957
+ text: string;
1958
+ /**
1959
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
1960
+ */
1961
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
1962
+ /**
1963
+ * The post being published.
1964
+ */
1965
+ postId: string;
1966
+ /**
1967
+ * How many dispatch attempts have been made.
1968
+ */
1969
+ attempts: number;
1970
+ /**
1971
+ * The channel it is published to.
1972
+ */
1973
+ channelId: string;
1974
+ /**
1975
+ * ISO-8601 creation time.
1976
+ */
1977
+ createdAt: string;
1978
+ /**
1979
+ * The most recent failure, if any.
1980
+ */
1981
+ lastError: (string | null);
1982
+ /**
1983
+ * ISO-8601 time of the last change.
1984
+ */
1985
+ updatedAt: string;
1986
+ /**
1987
+ * The network's id for the published post, once known.
1988
+ */
1989
+ externalId: (string | null);
1990
+ /**
1991
+ * URL of the published post, once known.
1992
+ */
1993
+ externalUrl: (string | null);
1994
+ /**
1995
+ * ISO-8601 time it was confirmed published.
1996
+ */
1997
+ publishedAt: (string | null);
1998
+ /**
1999
+ * ISO-8601 time the publication is due.
2000
+ */
2001
+ scheduledAt: string;
2002
+ /**
2003
+ * How many reminders have been sent for this publication.
2004
+ */
2005
+ reminderCount: number;
2006
+ /**
2007
+ * The key that makes a retry the same publication.
2008
+ */
2009
+ idempotencyKey: string;
2010
+ /**
2011
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2012
+ */
2013
+ reminderSentAt: (string | null);
2014
+ }
2015
+ interface ContentPublicationsListInput {
2016
+ /**
2017
+ * Maximum number to return (1-100, default 50).
2018
+ */
2019
+ limit?: number;
2020
+ /**
2021
+ * Return only publications in this state.
2022
+ */
2023
+ state?: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2024
+ /**
2025
+ * How many to skip, for paging.
2026
+ */
2027
+ offset?: number;
2028
+ /**
2029
+ * Return only publications of this post.
2030
+ */
2031
+ postId?: string;
2032
+ /**
2033
+ * Return only publications to this channel.
2034
+ */
2035
+ channelId?: string;
2036
+ }
2037
+ interface ContentPublicationsListOutput {
2038
+ /**
2039
+ * Total number of matching publications, ignoring paging.
2040
+ */
2041
+ total: number;
2042
+ /**
2043
+ * The page of publications, newest slot first.
2044
+ */
2045
+ publications: {
2046
+ /**
2047
+ * Publication id.
2048
+ */
2049
+ id: string;
2050
+ /**
2051
+ * The per-channel variant of the text that will be published.
2052
+ */
2053
+ text: string;
2054
+ /**
2055
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2056
+ */
2057
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2058
+ /**
2059
+ * The post being published.
2060
+ */
2061
+ postId: string;
2062
+ /**
2063
+ * How many dispatch attempts have been made.
2064
+ */
2065
+ attempts: number;
2066
+ /**
2067
+ * The channel it is published to.
2068
+ */
2069
+ channelId: string;
2070
+ /**
2071
+ * ISO-8601 creation time.
2072
+ */
2073
+ createdAt: string;
2074
+ /**
2075
+ * The most recent failure, if any.
2076
+ */
2077
+ lastError: (string | null);
2078
+ /**
2079
+ * ISO-8601 time of the last change.
2080
+ */
2081
+ updatedAt: string;
2082
+ /**
2083
+ * The network's id for the published post, once known.
2084
+ */
2085
+ externalId: (string | null);
2086
+ /**
2087
+ * URL of the published post, once known.
2088
+ */
2089
+ externalUrl: (string | null);
2090
+ /**
2091
+ * ISO-8601 time it was confirmed published.
2092
+ */
2093
+ publishedAt: (string | null);
2094
+ /**
2095
+ * ISO-8601 time the publication is due.
2096
+ */
2097
+ scheduledAt: string;
2098
+ /**
2099
+ * How many reminders have been sent for this publication.
2100
+ */
2101
+ reminderCount: number;
2102
+ /**
2103
+ * The key that makes a retry the same publication.
2104
+ */
2105
+ idempotencyKey: string;
2106
+ /**
2107
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2108
+ */
2109
+ reminderSentAt: (string | null);
2110
+ }[];
2111
+ }
2112
+ interface ContentPublicationsPublishInput {
2113
+ /**
2114
+ * Per-channel variant of the text. Omit to publish the post text as written.
2115
+ */
2116
+ text?: string;
2117
+ /**
2118
+ * The post to publish. It must already be approved.
2119
+ */
2120
+ postId: string;
2121
+ /**
2122
+ * The channel to publish to.
2123
+ */
2124
+ channelId: string;
2125
+ /**
2126
+ * Your own key for this publishing intent, unique within the product. Resending the same key returns the SAME publication instead of creating a second one — a duplicate in a client feed is the worst defect this product can ship. Omit it and one is derived from post, channel and time.
2127
+ */
2128
+ idempotencyKey?: string;
2129
+ }
2130
+ interface ContentPublicationsPublishOutput {
2131
+ /**
2132
+ * Publication id.
2133
+ */
2134
+ id: string;
2135
+ /**
2136
+ * The per-channel variant of the text that will be published.
2137
+ */
2138
+ text: string;
2139
+ /**
2140
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2141
+ */
2142
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2143
+ /**
2144
+ * The post being published.
2145
+ */
2146
+ postId: string;
2147
+ /**
2148
+ * How many dispatch attempts have been made.
2149
+ */
2150
+ attempts: number;
2151
+ /**
2152
+ * The channel it is published to.
2153
+ */
2154
+ channelId: string;
2155
+ /**
2156
+ * ISO-8601 creation time.
2157
+ */
2158
+ createdAt: string;
2159
+ /**
2160
+ * The most recent failure, if any.
2161
+ */
2162
+ lastError: (string | null);
2163
+ /**
2164
+ * ISO-8601 time of the last change.
2165
+ */
2166
+ updatedAt: string;
2167
+ /**
2168
+ * The network's id for the published post, once known.
2169
+ */
2170
+ externalId: (string | null);
2171
+ /**
2172
+ * URL of the published post, once known.
2173
+ */
2174
+ externalUrl: (string | null);
2175
+ /**
2176
+ * ISO-8601 time it was confirmed published.
2177
+ */
2178
+ publishedAt: (string | null);
2179
+ /**
2180
+ * ISO-8601 time the publication is due.
2181
+ */
2182
+ scheduledAt: string;
2183
+ /**
2184
+ * How many reminders have been sent for this publication.
2185
+ */
2186
+ reminderCount: number;
2187
+ /**
2188
+ * The key that makes a retry the same publication.
2189
+ */
2190
+ idempotencyKey: string;
2191
+ /**
2192
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2193
+ */
2194
+ reminderSentAt: (string | null);
2195
+ }
2196
+ interface ContentPublicationsRemindInput {
2197
+ /**
2198
+ * The publication id returned by content_publications_schedule.
2199
+ */
2200
+ id: string;
2201
+ }
2202
+ interface ContentPublicationsRemindOutput {
2203
+ /**
2204
+ * Publication id.
2205
+ */
2206
+ id: string;
2207
+ /**
2208
+ * The per-channel variant of the text that will be published.
2209
+ */
2210
+ text: string;
2211
+ /**
2212
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2213
+ */
2214
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2215
+ /**
2216
+ * The post being published.
2217
+ */
2218
+ postId: string;
2219
+ /**
2220
+ * How many dispatch attempts have been made.
2221
+ */
2222
+ attempts: number;
2223
+ /**
2224
+ * The channel it is published to.
2225
+ */
2226
+ channelId: string;
2227
+ /**
2228
+ * ISO-8601 creation time.
2229
+ */
2230
+ createdAt: string;
2231
+ /**
2232
+ * The most recent failure, if any.
2233
+ */
2234
+ lastError: (string | null);
2235
+ /**
2236
+ * ISO-8601 time of the last change.
2237
+ */
2238
+ updatedAt: string;
2239
+ /**
2240
+ * The network's id for the published post, once known.
2241
+ */
2242
+ externalId: (string | null);
2243
+ /**
2244
+ * URL of the published post, once known.
2245
+ */
2246
+ externalUrl: (string | null);
2247
+ /**
2248
+ * ISO-8601 time it was confirmed published.
2249
+ */
2250
+ publishedAt: (string | null);
2251
+ /**
2252
+ * ISO-8601 time the publication is due.
2253
+ */
2254
+ scheduledAt: string;
2255
+ /**
2256
+ * How many reminders have been sent for this publication.
2257
+ */
2258
+ reminderCount: number;
2259
+ /**
2260
+ * The key that makes a retry the same publication.
2261
+ */
2262
+ idempotencyKey: string;
2263
+ /**
2264
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2265
+ */
2266
+ reminderSentAt: (string | null);
2267
+ }
2268
+ interface ContentPublicationsRescheduleInput {
2269
+ /**
2270
+ * The publication id returned by content_publications_schedule.
2271
+ */
2272
+ id: string;
2273
+ /**
2274
+ * New ISO-8601 time. The publication returns to the queue.
2275
+ */
2276
+ scheduledAt: string;
2277
+ }
2278
+ interface ContentPublicationsRescheduleOutput {
2279
+ /**
2280
+ * Publication id.
2281
+ */
2282
+ id: string;
2283
+ /**
2284
+ * The per-channel variant of the text that will be published.
2285
+ */
2286
+ text: string;
2287
+ /**
2288
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2289
+ */
2290
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2291
+ /**
2292
+ * The post being published.
2293
+ */
2294
+ postId: string;
2295
+ /**
2296
+ * How many dispatch attempts have been made.
2297
+ */
2298
+ attempts: number;
2299
+ /**
2300
+ * The channel it is published to.
2301
+ */
2302
+ channelId: string;
2303
+ /**
2304
+ * ISO-8601 creation time.
2305
+ */
2306
+ createdAt: string;
2307
+ /**
2308
+ * The most recent failure, if any.
2309
+ */
2310
+ lastError: (string | null);
2311
+ /**
2312
+ * ISO-8601 time of the last change.
2313
+ */
2314
+ updatedAt: string;
2315
+ /**
2316
+ * The network's id for the published post, once known.
2317
+ */
2318
+ externalId: (string | null);
2319
+ /**
2320
+ * URL of the published post, once known.
2321
+ */
2322
+ externalUrl: (string | null);
2323
+ /**
2324
+ * ISO-8601 time it was confirmed published.
2325
+ */
2326
+ publishedAt: (string | null);
2327
+ /**
2328
+ * ISO-8601 time the publication is due.
2329
+ */
2330
+ scheduledAt: string;
2331
+ /**
2332
+ * How many reminders have been sent for this publication.
2333
+ */
2334
+ reminderCount: number;
2335
+ /**
2336
+ * The key that makes a retry the same publication.
2337
+ */
2338
+ idempotencyKey: string;
2339
+ /**
2340
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2341
+ */
2342
+ reminderSentAt: (string | null);
2343
+ }
2344
+ interface ContentPublicationsScheduleInput {
2345
+ /**
2346
+ * Per-channel variant of the text. Omit to publish the post text as written.
2347
+ */
2348
+ text?: string;
2349
+ /**
2350
+ * The post to publish. It must already be approved — an unapproved text never publishes.
2351
+ */
2352
+ postId: string;
2353
+ /**
2354
+ * The channel to publish to. Get its character limit from content_channels_get first.
2355
+ */
2356
+ channelId: string;
2357
+ /**
2358
+ * ISO-8601 time to publish. In the past means "as soon as the next tick runs".
2359
+ */
2360
+ scheduledAt: string;
2361
+ /**
2362
+ * Your own key for this publishing intent, unique within the product. Resending the same key returns the SAME publication instead of creating a second one — a duplicate in a client feed is the worst defect this product can ship. Omit it and one is derived from post, channel and time.
2363
+ */
2364
+ idempotencyKey?: string;
2365
+ }
2366
+ interface ContentPublicationsScheduleOutput {
2367
+ /**
2368
+ * Publication id.
2369
+ */
2370
+ id: string;
2371
+ /**
2372
+ * The per-channel variant of the text that will be published.
2373
+ */
2374
+ text: string;
2375
+ /**
2376
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2377
+ */
2378
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2379
+ /**
2380
+ * The post being published.
2381
+ */
2382
+ postId: string;
2383
+ /**
2384
+ * How many dispatch attempts have been made.
2385
+ */
2386
+ attempts: number;
2387
+ /**
2388
+ * The channel it is published to.
2389
+ */
2390
+ channelId: string;
2391
+ /**
2392
+ * ISO-8601 creation time.
2393
+ */
2394
+ createdAt: string;
2395
+ /**
2396
+ * The most recent failure, if any.
2397
+ */
2398
+ lastError: (string | null);
2399
+ /**
2400
+ * ISO-8601 time of the last change.
2401
+ */
2402
+ updatedAt: string;
2403
+ /**
2404
+ * The network's id for the published post, once known.
2405
+ */
2406
+ externalId: (string | null);
2407
+ /**
2408
+ * URL of the published post, once known.
2409
+ */
2410
+ externalUrl: (string | null);
2411
+ /**
2412
+ * ISO-8601 time it was confirmed published.
2413
+ */
2414
+ publishedAt: (string | null);
2415
+ /**
2416
+ * ISO-8601 time the publication is due.
2417
+ */
2418
+ scheduledAt: string;
2419
+ /**
2420
+ * How many reminders have been sent for this publication.
2421
+ */
2422
+ reminderCount: number;
2423
+ /**
2424
+ * The key that makes a retry the same publication.
2425
+ */
2426
+ idempotencyKey: string;
2427
+ /**
2428
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2429
+ */
2430
+ reminderSentAt: (string | null);
2431
+ }
1284
2432
  interface DeploymentAlertCreateInput {
1285
2433
  metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
1286
2434
  enabled?: boolean;
@@ -41838,6 +42986,32 @@ interface GeneratedClient {
41838
42986
  get(input: ConsentStatsGetInput): Promise<ConsentStatsGetOutput>;
41839
42987
  };
41840
42988
  };
42989
+ content: {
42990
+ channels: {
42991
+ get(input: ContentChannelsGetInput): Promise<ContentChannelsGetOutput>;
42992
+ list(input: ContentChannelsListInput): Promise<ContentChannelsListOutput>;
42993
+ update(input: ContentChannelsUpdateInput): Promise<ContentChannelsUpdateOutput>;
42994
+ };
42995
+ posts: {
42996
+ approve(input: ContentPostsApproveInput): Promise<ContentPostsApproveOutput>;
42997
+ create(input: ContentPostsCreateInput): Promise<ContentPostsCreateOutput>;
42998
+ get(input: ContentPostsGetInput): Promise<ContentPostsGetOutput>;
42999
+ list(input: ContentPostsListInput): Promise<ContentPostsListOutput>;
43000
+ submit(input: ContentPostsSubmitInput): Promise<ContentPostsSubmitOutput>;
43001
+ update(input: ContentPostsUpdateInput): Promise<ContentPostsUpdateOutput>;
43002
+ versions(input: ContentPostsVersionsInput): Promise<ContentPostsVersionsOutput>;
43003
+ };
43004
+ publications: {
43005
+ cancel(input: ContentPublicationsCancelInput): Promise<ContentPublicationsCancelOutput>;
43006
+ confirm(input: ContentPublicationsConfirmInput): Promise<ContentPublicationsConfirmOutput>;
43007
+ get(input: ContentPublicationsGetInput): Promise<ContentPublicationsGetOutput>;
43008
+ list(input: ContentPublicationsListInput): Promise<ContentPublicationsListOutput>;
43009
+ publish(input: ContentPublicationsPublishInput): Promise<ContentPublicationsPublishOutput>;
43010
+ remind(input: ContentPublicationsRemindInput): Promise<ContentPublicationsRemindOutput>;
43011
+ reschedule(input: ContentPublicationsRescheduleInput): Promise<ContentPublicationsRescheduleOutput>;
43012
+ schedule(input: ContentPublicationsScheduleInput): Promise<ContentPublicationsScheduleOutput>;
43013
+ };
43014
+ };
41841
43015
  deployment: {
41842
43016
  alert: {
41843
43017
  create(input: DeploymentAlertCreateInput): Promise<DeploymentAlertCreateOutput>;
@@ -42615,4 +43789,4 @@ interface GeneratedClient {
42615
43789
  };
42616
43790
  }
42617
43791
 
42618
- export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, ObserveAlertsGetOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, ObserveAlertsCreateInput as fU, ObserveAlertsCreateOutput as fV, ObserveAlertsDeleteInput as fW, ObserveAlertsDeleteOutput as fX, ObserveAlertsEventsListInput as fY, ObserveAlertsEventsListOutput as fZ, ObserveAlertsGetInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationAuthMeOutput as g$, ObserveAlertsListInput as g0, ObserveAlertsListOutput as g1, ObserveAlertsUpdateInput as g2, ObserveAlertsUpdateOutput as g3, ObserveArtifactsDeleteInput as g4, ObserveArtifactsDeleteOutput as g5, ObserveArtifactsListInput as g6, ObserveArtifactsListOutput as g7, ObserveArtifactsResolveInput as g8, ObserveArtifactsResolveOutput as g9, ObserveLogsTailInput as gA, ObserveLogsTailOutput as gB, ObserveMetricsListInput as gC, ObserveMetricsListOutput as gD, ObserveMetricsQueryInput as gE, ObserveMetricsQueryOutput as gF, ObserveTracesGetInput as gG, ObserveTracesGetOutput as gH, ObserveTracesSearchInput as gI, ObserveTracesSearchOutput as gJ, ObserveWebhooksCreateInput as gK, ObserveWebhooksCreateOutput as gL, ObserveWebhooksDeleteInput as gM, ObserveWebhooksDeleteOutput as gN, ObserveWebhooksDeliveriesListInput as gO, ObserveWebhooksDeliveriesListOutput as gP, ObserveWebhooksGetInput as gQ, ObserveWebhooksGetOutput as gR, ObserveWebhooksListInput as gS, ObserveWebhooksListOutput as gT, ObserveWebhooksRedeliverInput as gU, ObserveWebhooksRedeliverOutput as gV, ObserveWebhooksRotateSecretInput as gW, ObserveWebhooksRotateSecretOutput as gX, ObserveWebhooksUpdateInput as gY, ObserveWebhooksUpdateOutput as gZ, OrganizationAuthMeInput as g_, ObserveIssuesArchiveInput as ga, ObserveIssuesArchiveOutput as gb, ObserveIssuesAssignInput as gc, ObserveIssuesAssignOutput as gd, ObserveIssuesEventInput as ge, ObserveIssuesEventOutput as gf, ObserveIssuesEventsInput as gg, ObserveIssuesEventsOutput as gh, ObserveIssuesGetInput as gi, ObserveIssuesGetOutput as gj, ObserveIssuesHistogramInput as gk, ObserveIssuesHistogramOutput as gl, ObserveIssuesListInput as gm, ObserveIssuesListOutput as gn, ObserveIssuesResolveInput as go, ObserveIssuesResolveOutput as gp, ObserveKeysCreateInput as gq, ObserveKeysCreateOutput as gr, ObserveKeysListInput as gs, ObserveKeysListOutput as gt, ObserveKeysRevokeInput as gu, ObserveKeysRevokeOutput as gv, ObserveLogsFacetsInput as gw, ObserveLogsFacetsOutput as gx, ObserveLogsSearchInput as gy, ObserveLogsSearchOutput as gz, BrainBackupsListOutput as h, OrganizationGoogleadsInstallOutput as h$, OrganizationBillingBudgetsGetInput as h0, OrganizationBillingBudgetsGetOutput as h1, OrganizationBillingBudgetsSetInput as h2, OrganizationBillingBudgetsSetOutput as h3, OrganizationBillingCapsClearInput as h4, OrganizationBillingCapsClearOutput as h5, OrganizationBillingCapsSetInput as h6, OrganizationBillingCapsSetOutput as h7, OrganizationBindingsListInput as h8, OrganizationBindingsListOutput as h9, OrganizationConnectorsRemoveInput as hA, OrganizationConnectorsRemoveOutput as hB, OrganizationConnectorsRequestInput as hC, OrganizationConnectorsRequestOutput as hD, OrganizationCreateInput as hE, OrganizationCreateOutput as hF, OrganizationDomainsAddInput as hG, OrganizationDomainsAddOutput as hH, OrganizationDomainsGetInput as hI, OrganizationDomainsGetOutput as hJ, OrganizationDomainsListInput as hK, OrganizationDomainsListOutput as hL, OrganizationDomainsRemoveInput as hM, OrganizationDomainsRemoveOutput as hN, OrganizationDomainsSetModeInput as hO, OrganizationDomainsSetModeOutput as hP, OrganizationExtensionsListInstalledInput as hQ, OrganizationExtensionsListInstalledOutput as hR, OrganizationFeedbackSubmitInput as hS, OrganizationFeedbackSubmitOutput as hT, OrganizationGdriveInstallInput as hU, OrganizationGdriveInstallOutput as hV, OrganizationGithubInstallInput as hW, OrganizationGithubInstallOutput as hX, OrganizationGithubListInstallationsInput as hY, OrganizationGithubListInstallationsOutput as hZ, OrganizationGoogleadsInstallInput as h_, OrganizationClickupInstallInput as ha, OrganizationClickupInstallOutput as hb, OrganizationClickupListInstallationsInput as hc, OrganizationClickupListInstallationsOutput as hd, OrganizationCloudflareInstallInput as he, OrganizationCloudflareInstallOutput as hf, OrganizationConnectorsApproveRequestInput as hg, OrganizationConnectorsApproveRequestOutput as hh, OrganizationConnectorsAttachInput as hi, OrganizationConnectorsAttachOutput as hj, OrganizationConnectorsDeleteInput as hk, OrganizationConnectorsDeleteOutput as hl, OrganizationConnectorsDenyRequestInput as hm, OrganizationConnectorsDenyRequestOutput as hn, OrganizationConnectorsDetachInput as ho, OrganizationConnectorsDetachOutput as hp, OrganizationConnectorsListAttachmentsInput as hq, OrganizationConnectorsListAttachmentsOutput as hr, OrganizationConnectorsListAvailableInput as hs, OrganizationConnectorsListAvailableOutput as ht, OrganizationConnectorsListOrgInput as hu, OrganizationConnectorsListOrgOutput as hv, OrganizationConnectorsListInput as hw, OrganizationConnectorsListOutput as hx, OrganizationConnectorsListRequestsInput as hy, OrganizationConnectorsListRequestsOutput as hz, BrainClickupChannelsListInput as i, OrganizationRolesListOutput as i$, OrganizationListInput as i0, OrganizationListOutput as i1, OrganizationMemberAcceptInviteInput as i2, OrganizationMemberAcceptInviteOutput as i3, OrganizationMemberInviteInput as i4, OrganizationMemberInviteOutput as i5, OrganizationMemberListInvitationsInput as i6, OrganizationMemberListInvitationsOutput as i7, OrganizationMemberListProductAccessInput as i8, OrganizationMemberListProductAccessOutput as i9, OrganizationProductListRolesInput as iA, OrganizationProductListRolesOutput as iB, OrganizationProductRevokeAccessInput as iC, OrganizationProductRevokeAccessOutput as iD, OrganizationProductSelectInput as iE, OrganizationProductSelectOutput as iF, OrganizationProductSetAccessInput as iG, OrganizationProductSetAccessOutput as iH, OrganizationProductUpdateInput as iI, OrganizationProductUpdateOutput as iJ, OrganizationPublicKeysCreateInput as iK, OrganizationPublicKeysCreateOutput as iL, OrganizationPublicKeysListInput as iM, OrganizationPublicKeysListOutput as iN, OrganizationPublicKeysRevokeInput as iO, OrganizationPublicKeysRevokeOutput as iP, OrganizationPublicKeysUpdateScopeInput as iQ, OrganizationPublicKeysUpdateScopeOutput as iR, OrganizationPublicRoutesListInput as iS, OrganizationPublicRoutesListOutput as iT, OrganizationRolesCreateInput as iU, OrganizationRolesCreateOutput as iV, OrganizationRolesDeleteInput as iW, OrganizationRolesDeleteOutput as iX, OrganizationRolesGetInput as iY, OrganizationRolesGetOutput as iZ, OrganizationRolesListInput as i_, OrganizationMemberListInput as ia, OrganizationMemberListOutput as ib, OrganizationMemberRemoveInput as ic, OrganizationMemberRemoveOutput as id, OrganizationMemberRevokeInvitationInput as ie, OrganizationMemberRevokeInvitationOutput as ig, OrganizationMemberSetRoleInput as ih, OrganizationMemberSetRoleOutput as ii, OrganizationMemberShareProductInput as ij, OrganizationMemberShareProductOutput as ik, OrganizationMemberUnshareProductInput as il, OrganizationMemberUnshareProductOutput as im, OrganizationMembersAssignRoleInput as io, OrganizationMembersAssignRoleOutput as ip, OrganizationPermissionCatalogInput as iq, OrganizationPermissionCatalogOutput as ir, OrganizationProductCreateInput as is, OrganizationProductCreateOutput as it, OrganizationProductListAccessInput as iu, OrganizationProductListAccessOutput as iv, OrganizationProductListMembersInput as iw, OrganizationProductListMembersOutput as ix, OrganizationProductListInput as iy, OrganizationProductListOutput as iz, BrainClickupChannelsListOutput as j, RealtimeNamespaceUpdateOutput as j$, OrganizationRolesUpdateInput as j0, OrganizationRolesUpdateOutput as j1, OrganizationSecurityMfaEnableInput as j2, OrganizationSecurityMfaEnableOutput as j3, OrganizationSelectInput as j4, OrganizationSelectOutput as j5, OrganizationSupportThreadCreateInput as j6, OrganizationSupportThreadCreateOutput as j7, OrganizationSupportThreadGetInput as j8, OrganizationSupportThreadGetOutput as j9, PlaygroundWebhookGetLastInput as jA, PlaygroundWebhookGetLastOutput as jB, RealtimeArchiveExportInput as jC, RealtimeArchiveExportOutput as jD, RealtimeArchiveExportStatusInput as jE, RealtimeArchiveExportStatusOutput as jF, RealtimeArchiveGetInput as jG, RealtimeArchiveGetOutput as jH, RealtimeGrantCreateInput as jI, RealtimeGrantCreateOutput as jJ, RealtimeGrantListInput as jK, RealtimeGrantListOutput as jL, RealtimeGrantRevokeInput as jM, RealtimeGrantRevokeOutput as jN, RealtimeHistoryGetInput as jO, RealtimeHistoryGetOutput as jP, RealtimeMessagesPublishInput as jQ, RealtimeMessagesPublishOutput as jR, RealtimeNamespaceCreateInput as jS, RealtimeNamespaceCreateOutput as jT, RealtimeNamespaceDeleteInput as jU, RealtimeNamespaceDeleteOutput as jV, RealtimeNamespaceGetInput as jW, RealtimeNamespaceGetOutput as jX, RealtimeNamespaceListInput as jY, RealtimeNamespaceListOutput as jZ, RealtimeNamespaceUpdateInput as j_, OrganizationSupportThreadReplyInput as ja, OrganizationSupportThreadReplyOutput as jb, OrganizationSupportThreadsListInput as jc, OrganizationSupportThreadsListOutput as jd, PlaygroundAnalyticsOverviewInput as je, PlaygroundAnalyticsOverviewOutput as jf, PlaygroundBillingEntitlementsInput as jg, PlaygroundBillingEntitlementsOutput as jh, PlaygroundBillingRecordUsageInput as ji, PlaygroundBillingRecordUsageOutput as jj, PlaygroundClickupCreateTaskInput as jk, PlaygroundClickupCreateTaskOutput as jl, PlaygroundClickupGetLastWebhookInput as jm, PlaygroundClickupGetLastWebhookOutput as jn, PlaygroundClickupGetOverviewInput as jo, PlaygroundClickupGetOverviewOutput as jp, PlaygroundGdriveGetLastChangeInput as jq, PlaygroundGdriveGetLastChangeOutput as jr, PlaygroundGdriveReadFileInput as js, PlaygroundGdriveReadFileOutput as jt, PlaygroundGoogleadsReadCustomerInput as ju, PlaygroundGoogleadsReadCustomerOutput as jv, PlaygroundLifecycleGetStateInput as jw, PlaygroundLifecycleGetStateOutput as jx, PlaygroundLifecycleListEventsInput as jy, PlaygroundLifecycleListEventsOutput as jz, BrainClickupConnectionsListInput as k, SupportRuleListOutput as k$, RealtimePresenceEnterInput as k0, RealtimePresenceEnterOutput as k1, RealtimePresenceGetInput as k2, RealtimePresenceGetOutput as k3, RealtimePresenceLeaveInput as k4, RealtimePresenceLeaveOutput as k5, RealtimePresenceStatsInput as k6, RealtimePresenceStatsOutput as k7, RealtimePresenceUpdateInput as k8, RealtimePresenceUpdateOutput as k9, SupportAgentUpdateInput as kA, SupportAgentUpdateOutput as kB, SupportAttachmentCreateInput as kC, SupportAttachmentCreateOutput as kD, SupportAttachmentFinalizeInput as kE, SupportAttachmentFinalizeOutput as kF, SupportLabelCreateInput as kG, SupportLabelCreateOutput as kH, SupportLabelListInput as kI, SupportLabelListOutput as kJ, SupportMessageCreateInput as kK, SupportMessageCreateOutput as kL, SupportMessageListInput as kM, SupportMessageListOutput as kN, SupportResponseEscalateInput as kO, SupportResponseEscalateOutput as kP, SupportResponseGetInput as kQ, SupportResponseGetOutput as kR, SupportResponseListInput as kS, SupportResponseListOutput as kT, SupportRuleCreateInput as kU, SupportRuleCreateOutput as kV, SupportRuleDeleteInput as kW, SupportRuleDeleteOutput as kX, SupportRuleGetInput as kY, SupportRuleGetOutput as kZ, SupportRuleListInput as k_, RealtimePublicAccessStatusInput as ka, RealtimePublicAccessStatusOutput as kb, RealtimeStatusGetInput as kc, RealtimeStatusGetOutput as kd, RealtimeTokensCreateInput as ke, RealtimeTokensCreateOutput as kf, RealtimeWebhookCreateInput as kg, RealtimeWebhookCreateOutput as kh, RealtimeWebhookDeleteInput as ki, RealtimeWebhookDeleteOutput as kj, RealtimeWebhookDeliveriesListInput as kk, RealtimeWebhookDeliveriesListOutput as kl, RealtimeWebhookGetInput as km, RealtimeWebhookGetOutput as kn, RealtimeWebhookListInput as ko, RealtimeWebhookListOutput as kp, RealtimeWebhookSecretRotateInput as kq, RealtimeWebhookSecretRotateOutput as kr, RealtimeWebhookUpdateInput as ks, RealtimeWebhookUpdateOutput as kt, SupportAgentCreateInput as ku, SupportAgentCreateOutput as kv, SupportAgentGetInput as kw, SupportAgentGetOutput as kx, SupportAgentListInput as ky, SupportAgentListOutput as kz, BrainClickupConnectionsListOutput as l, TrackingDomainsVerifyOutput as l$, SupportRuleUpdateInput as l0, SupportRuleUpdateOutput as l1, SupportStatusArchiveInput as l2, SupportStatusArchiveOutput as l3, SupportStatusCreateInput as l4, SupportStatusCreateOutput as l5, SupportStatusListInput as l6, SupportStatusListOutput as l7, SupportStatusUpdateInput as l8, SupportStatusUpdateOutput as l9, SupportThreadUpdateInput as lA, SupportThreadUpdateOutput as lB, SupportWebhookCreateInput as lC, SupportWebhookCreateOutput as lD, SupportWebhookDeleteInput as lE, SupportWebhookDeleteOutput as lF, SupportWebhookDeliveriesListInput as lG, SupportWebhookDeliveriesListOutput as lH, SupportWebhookGetInput as lI, SupportWebhookGetOutput as lJ, SupportWebhookListInput as lK, SupportWebhookListOutput as lL, SupportWebhookRedeliverInput as lM, SupportWebhookRedeliverOutput as lN, SupportWebhookRotateSecretInput as lO, SupportWebhookRotateSecretOutput as lP, SupportWebhookUpdateInput as lQ, SupportWebhookUpdateOutput as lR, TrackingDomainsCreateInput as lS, TrackingDomainsCreateOutput as lT, TrackingDomainsDeleteInput as lU, TrackingDomainsDeleteOutput as lV, TrackingDomainsGetInput as lW, TrackingDomainsGetOutput as lX, TrackingDomainsListInput as lY, TrackingDomainsListOutput as lZ, TrackingDomainsVerifyInput as l_, SupportSurveyArchiveInput as la, SupportSurveyArchiveOutput as lb, SupportSurveyCreateInput as lc, SupportSurveyCreateOutput as ld, SupportSurveyGetInput as le, SupportSurveyGetOutput as lf, SupportSurveyListInput as lg, SupportSurveyListOutput as lh, SupportSurveyPublishInput as li, SupportSurveyPublishOutput as lj, SupportSurveyStatsInput as lk, SupportSurveyStatsOutput as ll, SupportSurveyUnpublishInput as lm, SupportSurveyUnpublishOutput as ln, SupportSurveyUpdateInput as lo, SupportSurveyUpdateOutput as lp, SupportThreadAssignInput as lq, SupportThreadAssignOutput as lr, SupportThreadCreateInput as ls, SupportThreadCreateOutput as lt, SupportThreadGetInput as lu, SupportThreadGetOutput as lv, SupportThreadListInput as lw, SupportThreadListOutput as lx, SupportThreadStatusSetInput as ly, SupportThreadStatusSetOutput as lz, BrainClickupListsListInput as m, UsersApikeysCreateOutput as m$, TrackingEventNamesArchiveInput as m0, TrackingEventNamesArchiveOutput as m1, TrackingEventNamesListInput as m2, TrackingEventNamesListOutput as m3, TrackingEventNamesUnarchiveInput as m4, TrackingEventNamesUnarchiveOutput as m5, TrackingGoogleadsConnectionStatusInput as m6, TrackingGoogleadsConnectionStatusOutput as m7, TrackingGoogleadsConversionActionsInput as m8, TrackingGoogleadsConversionActionsOutput as m9, TrackingLinkDomainsCreateInput as mA, TrackingLinkDomainsCreateOutput as mB, TrackingLinkDomainsDeleteInput as mC, TrackingLinkDomainsDeleteOutput as mD, TrackingLinkDomainsListInput as mE, TrackingLinkDomainsListOutput as mF, TrackingLiveEventsListInput as mG, TrackingLiveEventsListOutput as mH, TrackingProfilesDeleteInput as mI, TrackingProfilesDeleteOutput as mJ, TrackingProfilesExportInput as mK, TrackingProfilesExportOutput as mL, TrackingProfilesGetInput as mM, TrackingProfilesGetOutput as mN, TrackingProfilesListInput as mO, TrackingProfilesListOutput as mP, TrackingReportsAttributedJourneyInput as mQ, TrackingReportsAttributedJourneyOutput as mR, TrackingReportsEventVolumeInput as mS, TrackingReportsEventVolumeOutput as mT, TrackingReportsRevenueBySourceInput as mU, TrackingReportsRevenueBySourceOutput as mV, TrackingReportsSourcePeopleInput as mW, TrackingReportsSourcePeopleOutput as mX, TrackingSnippetsGetInput as mY, TrackingSnippetsGetOutput as mZ, UsersApikeysCreateInput as m_, TrackingGoogleadsFeedbackConfigGetInput as ma, TrackingGoogleadsFeedbackConfigGetOutput as mb, TrackingGoogleadsFeedbackConfigSetInput as mc, TrackingGoogleadsFeedbackConfigSetOutput as md, TrackingGoogleadsFeedbackRunInput as me, TrackingGoogleadsFeedbackRunOutput as mf, TrackingGoogleadsFeedbackStatusInput as mg, TrackingGoogleadsFeedbackStatusOutput as mh, TrackingGoogleadsFeedbackUploadsInput as mi, TrackingGoogleadsFeedbackUploadsOutput as mj, TrackingGoogleadsRoasReportInput as mk, TrackingGoogleadsRoasReportOutput as ml, TrackingGoogleadsSyncNowInput as mm, TrackingGoogleadsSyncNowOutput as mn, TrackingGoogleadsTrackingHealthInput as mo, TrackingGoogleadsTrackingHealthOutput as mp, TrackingGoogleadsUsVsPlatformInput as mq, TrackingGoogleadsUsVsPlatformOutput as mr, TrackingIdentityHealthInput as ms, TrackingIdentityHealthOutput as mt, TrackingInstallDomainsCreateInput as mu, TrackingInstallDomainsCreateOutput as mv, TrackingInstallDomainsDeleteInput as mw, TrackingInstallDomainsDeleteOutput as mx, TrackingInstallDomainsListInput as my, TrackingInstallDomainsListOutput as mz, BrainClickupListsListOutput as n, UsersWaitlistEraseOutput as n$, UsersApikeysListInput as n0, UsersApikeysListOutput as n1, UsersApikeysRevokeInput as n2, UsersApikeysRevokeOutput as n3, UsersAuditListInput as n4, UsersAuditListOutput as n5, UsersConfigGetInput as n6, UsersConfigGetOutput as n7, UsersConfigUpsertInput as n8, UsersConfigUpsertOutput as n9, UsersStatsGetInput as nA, UsersStatsGetOutput as nB, UsersUsersBanInput as nC, UsersUsersBanOutput as nD, UsersUsersCreateInput as nE, UsersUsersCreateOutput as nF, UsersUsersDeleteInput as nG, UsersUsersDeleteOutput as nH, UsersUsersEraseInput as nI, UsersUsersEraseOutput as nJ, UsersUsersExportInput as nK, UsersUsersExportOutput as nL, UsersUsersGetInput as nM, UsersUsersGetOutput as nN, UsersUsersImportInput as nO, UsersUsersImportOutput as nP, UsersUsersInviteInput as nQ, UsersUsersInviteOutput as nR, UsersUsersListInput as nS, UsersUsersListOutput as nT, UsersUsersSetPrimaryIdentifierInput as nU, UsersUsersSetPrimaryIdentifierOutput as nV, UsersUsersUnbanInput as nW, UsersUsersUnbanOutput as nX, UsersUsersUpdateInput as nY, UsersUsersUpdateOutput as nZ, UsersWaitlistEraseInput as n_, UsersFactorsListInput as na, UsersFactorsListOutput as nb, UsersFactorsResetInput as nc, UsersFactorsResetOutput as nd, UsersKeysListInput as ne, UsersKeysListOutput as nf, UsersKeysRevokeInput as ng, UsersKeysRevokeOutput as nh, UsersKeysRotateInput as ni, UsersKeysRotateOutput as nj, UsersOpsRetentionGetInput as nk, UsersOpsRetentionGetOutput as nl, UsersOpsSloGetInput as nm, UsersOpsSloGetOutput as nn, UsersPasskeysListInput as no, UsersPasskeysListOutput as np, UsersPasskeysRevokeInput as nq, UsersPasskeysRevokeOutput as nr, UsersSessionsGetInput as ns, UsersSessionsGetOutput as nt, UsersSessionsImpersonateInput as nu, UsersSessionsImpersonateOutput as nv, UsersSessionsListInput as nw, UsersSessionsListOutput as nx, UsersSessionsRevokeInput as ny, UsersSessionsRevokeOutput as nz, BrainClickupSpacesListInput as o, UsersWaitlistFunnelInput as o0, UsersWaitlistFunnelOutput as o1, UsersWaitlistImportInput as o2, UsersWaitlistImportOutput as o3, UsersWaitlistInviteInput as o4, UsersWaitlistInviteOutput as o5, UsersWaitlistListInput as o6, UsersWaitlistListOutput as o7, UsersWebhooksCreateInput as o8, UsersWebhooksCreateOutput as o9, UsersWebhooksDeleteInput as oa, UsersWebhooksDeleteOutput as ob, UsersWebhooksDeliveriesListInput as oc, UsersWebhooksDeliveriesListOutput as od, UsersWebhooksGetInput as oe, UsersWebhooksGetOutput as of, UsersWebhooksListInput as og, UsersWebhooksListOutput as oh, UsersWebhooksRotateSecretInput as oi, UsersWebhooksRotateSecretOutput as oj, UsersWebhooksUpdateInput as ok, UsersWebhooksUpdateOutput as ol, WaitlistConfigGetInput as om, WaitlistConfigGetOutput as on, WaitlistConfigUpsertInput as oo, WaitlistConfigUpsertOutput as op, WaitlistEmbedGetInput as oq, WaitlistEmbedGetOutput as or, WaitlistInvitesSendInput as os, WaitlistInvitesSendOutput as ot, WaitlistSignupsEraseInput as ou, WaitlistSignupsEraseOutput as ov, WaitlistSignupsFunnelInput as ow, WaitlistSignupsFunnelOutput as ox, WaitlistSignupsListInput as oy, WaitlistSignupsListOutput as oz, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
43792
+ export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, ContentChannelsUpdateInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, ContentChannelsGetInput as aX, ContentChannelsGetOutput as aY, ContentChannelsListInput as aZ, ContentChannelsListOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentCloudSqlDatabaseDetachInput as b$, ContentChannelsUpdateOutput as b0, ContentPostsApproveInput as b1, ContentPostsApproveOutput as b2, ContentPostsCreateInput as b3, ContentPostsCreateOutput as b4, ContentPostsGetInput as b5, ContentPostsGetOutput as b6, ContentPostsListInput as b7, ContentPostsListOutput as b8, ContentPostsSubmitInput as b9, DeploymentAlertEventsListOutput as bA, DeploymentAlertListInput as bB, DeploymentAlertListOutput as bC, DeploymentAlertUpdateInput as bD, DeploymentAlertUpdateOutput as bE, DeploymentAnalyticsQueryInput as bF, DeploymentAnalyticsQueryOutput as bG, DeploymentAuditListInput as bH, DeploymentAuditListOutput as bI, DeploymentBuildGetInput as bJ, DeploymentBuildGetOutput as bK, DeploymentBuildListInput as bL, DeploymentBuildListOutput as bM, DeploymentBuildLogsInput as bN, DeploymentBuildLogsOutput as bO, DeploymentCanvasGetInput as bP, DeploymentCanvasGetOutput as bQ, DeploymentCanvasMoveNodeInput as bR, DeploymentCanvasMoveNodeOutput as bS, DeploymentCloudSqlBackfillLogFlagsInput as bT, DeploymentCloudSqlBackfillLogFlagsOutput as bU, DeploymentCloudSqlDatabaseAttachInput as bV, DeploymentCloudSqlDatabaseAttachOutput as bW, DeploymentCloudSqlDatabaseCreateInput as bX, DeploymentCloudSqlDatabaseCreateOutput as bY, DeploymentCloudSqlDatabaseDeleteInput as bZ, DeploymentCloudSqlDatabaseDeleteOutput as b_, ContentPostsSubmitOutput as ba, ContentPostsUpdateInput as bb, ContentPostsUpdateOutput as bc, ContentPostsVersionsInput as bd, ContentPostsVersionsOutput as be, ContentPublicationsCancelInput as bf, ContentPublicationsCancelOutput as bg, ContentPublicationsConfirmInput as bh, ContentPublicationsConfirmOutput as bi, ContentPublicationsGetInput as bj, ContentPublicationsGetOutput as bk, ContentPublicationsListInput as bl, ContentPublicationsListOutput as bm, ContentPublicationsPublishInput as bn, ContentPublicationsPublishOutput as bo, ContentPublicationsRemindInput as bp, ContentPublicationsRemindOutput as bq, ContentPublicationsRescheduleInput as br, ContentPublicationsRescheduleOutput as bs, ContentPublicationsScheduleInput as bt, ContentPublicationsScheduleOutput as bu, DeploymentAlertCreateInput as bv, DeploymentAlertCreateOutput as bw, DeploymentAlertDeleteInput as bx, DeploymentAlertDeleteOutput as by, DeploymentAlertEventsListInput as bz, BrainBackupRestoreInput as c, DeploymentEnvironmentReconcileInput as c$, DeploymentCloudSqlDatabaseDetachOutput as c0, DeploymentCloudSqlDatabaseGetInput as c1, DeploymentCloudSqlDatabaseGetOutput as c2, DeploymentCloudSqlDatabaseListInput as c3, DeploymentCloudSqlDatabaseListOutput as c4, DeploymentCloudSqlInstanceBackupListInput as c5, DeploymentCloudSqlInstanceBackupListOutput as c6, DeploymentCloudSqlInstanceBackupInput as c7, DeploymentCloudSqlInstanceBackupOutput as c8, DeploymentCloudSqlInstanceCreateInput as c9, DeploymentDomainListByServiceOutput as cA, DeploymentDomainListInput as cB, DeploymentDomainListOutput as cC, DeploymentDomainRedirectWwwInput as cD, DeploymentDomainRedirectWwwOutput as cE, DeploymentDomainRemoveInput as cF, DeploymentDomainRemoveOutput as cG, DeploymentDomainRoutesAddInput as cH, DeploymentDomainRoutesAddOutput as cI, DeploymentDomainRoutesListInput as cJ, DeploymentDomainRoutesListOutput as cK, DeploymentDomainRoutesRemoveInput as cL, DeploymentDomainRoutesRemoveOutput as cM, DeploymentDomainRoutesUpdateInput as cN, DeploymentDomainRoutesUpdateOutput as cO, DeploymentDomainVerifyInput as cP, DeploymentDomainVerifyOutput as cQ, DeploymentEnvironmentCreateInput as cR, DeploymentEnvironmentCreateOutput as cS, DeploymentEnvironmentDeleteInput as cT, DeploymentEnvironmentDeleteOutput as cU, DeploymentEnvironmentForkInput as cV, DeploymentEnvironmentForkOutput as cW, DeploymentEnvironmentGetInput as cX, DeploymentEnvironmentGetOutput as cY, DeploymentEnvironmentListInput as cZ, DeploymentEnvironmentListOutput as c_, DeploymentCloudSqlInstanceCreateOutput as ca, DeploymentCloudSqlInstanceDeleteInput as cb, DeploymentCloudSqlInstanceDeleteOutput as cc, DeploymentCloudSqlInstanceGetInput as cd, DeploymentCloudSqlInstanceGetOutput as ce, DeploymentCloudSqlInstanceListInput as cf, DeploymentCloudSqlInstanceListOutput as cg, DeploymentCloudSqlInstanceResizeInput as ch, DeploymentCloudSqlInstanceResizeOutput as ci, DeploymentCloudSqlInstanceRestoreInput as cj, DeploymentCloudSqlInstanceRestoreOutput as ck, DeploymentCloudSqlLogsInput as cl, DeploymentCloudSqlLogsOutput as cm, DeploymentDeploymentCancelInput as cn, DeploymentDeploymentCancelOutput as co, DeploymentDeploymentGetInput as cp, DeploymentDeploymentGetOutput as cq, DeploymentDeploymentListInput as cr, DeploymentDeploymentListOutput as cs, DeploymentDomainAddInput as ct, DeploymentDomainAddOutput as cu, DeploymentDomainAllowedListInput as cv, DeploymentDomainAllowedListOutput as cw, DeploymentDomainGetInput as cx, DeploymentDomainGetOutput as cy, DeploymentDomainListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentServiceRestartOutput as d$, DeploymentEnvironmentReconcileOutput as d0, DeploymentEnvironmentUpdateInput as d1, DeploymentEnvironmentUpdateOutput as d2, DeploymentEventsListByEnvironmentInput as d3, DeploymentEventsListByEnvironmentOutput as d4, DeploymentEventsListByServiceInput as d5, DeploymentEventsListByServiceOutput as d6, DeploymentManagedServiceBackupListInput as d7, DeploymentManagedServiceBackupListOutput as d8, DeploymentManagedServiceBackupInput as d9, DeploymentMetricsGetInput as dA, DeploymentMetricsGetOutput as dB, DeploymentPreviewEnvironmentCreateInput as dC, DeploymentPreviewEnvironmentCreateOutput as dD, DeploymentPreviewEnvironmentDeleteInput as dE, DeploymentPreviewEnvironmentDeleteOutput as dF, DeploymentPreviewEnvironmentListInput as dG, DeploymentPreviewEnvironmentListOutput as dH, DeploymentPreviewPolicyGetInput as dI, DeploymentPreviewPolicyGetOutput as dJ, DeploymentPreviewPolicySetInput as dK, DeploymentPreviewPolicySetOutput as dL, DeploymentServiceCreateInput as dM, DeploymentServiceCreateOutput as dN, DeploymentServiceDeleteInput as dO, DeploymentServiceDeleteOutput as dP, DeploymentServiceExecInput as dQ, DeploymentServiceExecOutput as dR, DeploymentServiceGetInput as dS, DeploymentServiceGetOutput as dT, DeploymentServiceListInput as dU, DeploymentServiceListOutput as dV, DeploymentServiceLogsInput as dW, DeploymentServiceLogsOutput as dX, DeploymentServiceRedeployInput as dY, DeploymentServiceRedeployOutput as dZ, DeploymentServiceRestartInput as d_, DeploymentManagedServiceBackupOutput as da, DeploymentManagedServiceConnectInfoInput as db, DeploymentManagedServiceConnectInfoOutput as dc, DeploymentManagedServiceDeleteInput as dd, DeploymentManagedServiceDeleteOutput as de, DeploymentManagedServiceGetInput as df, DeploymentManagedServiceGetOutput as dg, DeploymentManagedServiceListInput as dh, DeploymentManagedServiceListOutput as di, DeploymentManagedServiceLogsInput as dj, DeploymentManagedServiceLogsOutput as dk, DeploymentManagedServiceProvisionInput as dl, DeploymentManagedServiceProvisionOutput as dm, DeploymentManagedServiceReconcileInput as dn, DeploymentManagedServiceReconcileOutput as dp, DeploymentManagedServiceResizeInput as dq, DeploymentManagedServiceResizeOutput as dr, DeploymentManagedServiceRestoreInput as ds, DeploymentManagedServiceRestoreOutput as dt, DeploymentManagedServiceStartInput as du, DeploymentManagedServiceStartOutput as dv, DeploymentManagedServiceStopInput as dw, DeploymentManagedServiceStopOutput as dx, DeploymentManagedServiceTypesInput as dy, DeploymentManagedServiceTypesOutput as dz, BrainBackupStatusInput as e, MailAudienceDeleteOutput as e$, DeploymentServiceRollbackInput as e0, DeploymentServiceRollbackOutput as e1, DeploymentServiceScaleInput as e2, DeploymentServiceScaleOutput as e3, DeploymentServiceUpdateInput as e4, DeploymentServiceUpdateOutput as e5, DeploymentServiceWakeInput as e6, DeploymentServiceWakeOutput as e7, DeploymentSshCommandInput as e8, DeploymentSshCommandOutput as e9, DeploymentVcsBranchListInput as eA, DeploymentVcsBranchListOutput as eB, DeploymentVcsConnectionListInput as eC, DeploymentVcsConnectionListOutput as eD, DeploymentVcsRepoListInput as eE, DeploymentVcsRepoListOutput as eF, DeploymentVolumeCreateInput as eG, DeploymentVolumeCreateOutput as eH, DeploymentVolumeDeleteInput as eI, DeploymentVolumeDeleteOutput as eJ, DeploymentVolumeDetachInput as eK, DeploymentVolumeDetachOutput as eL, DeploymentVolumeGetInput as eM, DeploymentVolumeGetOutput as eN, DeploymentVolumeListInput as eO, DeploymentVolumeListOutput as eP, DeploymentVolumeResizeInput as eQ, DeploymentVolumeResizeOutput as eR, MailApikeyCreateInput as eS, MailApikeyCreateOutput as eT, MailApikeyDeleteInput as eU, MailApikeyDeleteOutput as eV, MailApikeyListInput as eW, MailApikeyListOutput as eX, MailAudienceCreateInput as eY, MailAudienceCreateOutput as eZ, MailAudienceDeleteInput as e_, DeploymentSshKeyDeleteInput as ea, DeploymentSshKeyDeleteOutput as eb, DeploymentSshKeyListInput as ec, DeploymentSshKeyListOutput as ed, DeploymentSshKeyRegisterInput as ee, DeploymentSshKeyRegisterOutput as ef, DeploymentSuspensionGetInput as eg, DeploymentSuspensionGetOutput as eh, DeploymentVariableListEnvInput as ei, DeploymentVariableListEnvOutput as ej, DeploymentVariableListProductInput as ek, DeploymentVariableListProductOutput as el, DeploymentVariableListInput as em, DeploymentVariableListOutput as en, DeploymentVariableSetEnvInput as eo, DeploymentVariableSetEnvOutput as ep, DeploymentVariableSetInput as eq, DeploymentVariableSetOutput as er, DeploymentVariableSetProductInput as es, DeploymentVariableSetProductOutput as et, DeploymentVariableUnsetEnvInput as eu, DeploymentVariableUnsetEnvOutput as ev, DeploymentVariableUnsetInput as ew, DeploymentVariableUnsetOutput as ex, DeploymentVariableUnsetProductInput as ey, DeploymentVariableUnsetProductOutput as ez, BrainBackupStatusOutput as f, MailSuppressionRemoveInput as f$, MailAudienceGetInput as f0, MailAudienceGetOutput as f1, MailAudienceListInput as f2, MailAudienceListOutput as f3, MailAudienceUpdateInput as f4, MailAudienceUpdateOutput as f5, MailBroadcastCancelInput as f6, MailBroadcastCancelOutput as f7, MailBroadcastCreateInput as f8, MailBroadcastCreateOutput as f9, MailDomainDeleteInput as fA, MailDomainDeleteOutput as fB, MailDomainGetInput as fC, MailDomainGetOutput as fD, MailDomainListInput as fE, MailDomainListOutput as fF, MailDomainUpdateInput as fG, MailDomainUpdateOutput as fH, MailDomainVerifyInput as fI, MailDomainVerifyOutput as fJ, MailEmailCancelInput as fK, MailEmailCancelOutput as fL, MailEmailGetInput as fM, MailEmailSendBatchInput as fN, MailEmailSendBatchOutput as fO, MailEmailSendInput as fP, MailEmailSendOutput as fQ, MailEmailUpdateInput as fR, MailEmailUpdateOutput as fS, MailReputationGetInput as fT, MailReputationGetOutput as fU, MailStatsGetInput as fV, MailStatsGetOutput as fW, MailSuppressionAddInput as fX, MailSuppressionAddOutput as fY, MailSuppressionListInput as fZ, MailSuppressionListOutput as f_, MailBroadcastDeleteInput as fa, MailBroadcastDeleteOutput as fb, MailBroadcastGetInput as fc, MailBroadcastGetOutput as fd, MailBroadcastListInput as fe, MailBroadcastListOutput as ff, MailBroadcastQueueInput as fg, MailBroadcastQueueOutput as fh, MailBroadcastStatsInput as fi, MailBroadcastStatsOutput as fj, MailBroadcastUpdateInput as fk, MailBroadcastUpdateOutput as fl, MailContactCreateInput as fm, MailContactCreateOutput as fn, MailContactDeleteInput as fo, MailContactDeleteOutput as fp, MailContactGetInput as fq, MailContactGetOutput as fr, MailContactListInput as fs, MailContactListOutput as ft, MailContactUpdateInput as fu, MailContactUpdateOutput as fv, MailDomainAllowedListInput as fw, MailDomainAllowedListOutput as fx, MailDomainCreateInput as fy, MailDomainCreateOutput as fz, BrainBackupsListInput as g, ObserveKeysCreateOutput as g$, MailSuppressionRemoveOutput as g0, MailTemplateCreateInput as g1, MailTemplateCreateOutput as g2, MailTemplateDeleteInput as g3, MailTemplateDeleteOutput as g4, MailTemplateGetInput as g5, MailTemplateGetOutput as g6, MailTemplateListInput as g7, MailTemplateListOutput as g8, MailTemplatePublishInput as g9, ObserveAlertsListInput as gA, ObserveAlertsListOutput as gB, ObserveAlertsUpdateInput as gC, ObserveAlertsUpdateOutput as gD, ObserveArtifactsDeleteInput as gE, ObserveArtifactsDeleteOutput as gF, ObserveArtifactsListInput as gG, ObserveArtifactsListOutput as gH, ObserveArtifactsResolveInput as gI, ObserveArtifactsResolveOutput as gJ, ObserveIssuesArchiveInput as gK, ObserveIssuesArchiveOutput as gL, ObserveIssuesAssignInput as gM, ObserveIssuesAssignOutput as gN, ObserveIssuesEventInput as gO, ObserveIssuesEventOutput as gP, ObserveIssuesEventsInput as gQ, ObserveIssuesEventsOutput as gR, ObserveIssuesGetInput as gS, ObserveIssuesGetOutput as gT, ObserveIssuesHistogramInput as gU, ObserveIssuesHistogramOutput as gV, ObserveIssuesListInput as gW, ObserveIssuesListOutput as gX, ObserveIssuesResolveInput as gY, ObserveIssuesResolveOutput as gZ, ObserveKeysCreateInput as g_, MailTemplatePublishOutput as ga, MailTemplateUpdateInput as gb, MailTemplateUpdateOutput as gc, MailUsageGetInput as gd, MailUsageGetOutput as ge, MailWebhookCreateInput as gf, MailWebhookCreateOutput as gg, MailWebhookDeleteInput as gh, MailWebhookDeleteOutput as gi, MailWebhookDeliveriesListInput as gj, MailWebhookDeliveriesListOutput as gk, MailWebhookGetInput as gl, MailWebhookGetOutput as gm, MailWebhookListInput as gn, MailWebhookListOutput as go, MailWebhookUpdateInput as gp, MailWebhookUpdateOutput as gq, MailEmailGetOutput as gr, ObserveAlertsCreateInput as gs, ObserveAlertsCreateOutput as gt, ObserveAlertsDeleteInput as gu, ObserveAlertsDeleteOutput as gv, ObserveAlertsEventsListInput as gw, ObserveAlertsEventsListOutput as gx, ObserveAlertsGetInput as gy, ObserveAlertsGetOutput as gz, BrainBackupsListOutput as h, OrganizationConnectorsListAttachmentsOutput as h$, ObserveKeysListInput as h0, ObserveKeysListOutput as h1, ObserveKeysRevokeInput as h2, ObserveKeysRevokeOutput as h3, ObserveLogsFacetsInput as h4, ObserveLogsFacetsOutput as h5, ObserveLogsSearchInput as h6, ObserveLogsSearchOutput as h7, ObserveLogsTailInput as h8, ObserveLogsTailOutput as h9, OrganizationBillingBudgetsGetInput as hA, OrganizationBillingBudgetsGetOutput as hB, OrganizationBillingBudgetsSetInput as hC, OrganizationBillingBudgetsSetOutput as hD, OrganizationBillingCapsClearInput as hE, OrganizationBillingCapsClearOutput as hF, OrganizationBillingCapsSetInput as hG, OrganizationBillingCapsSetOutput as hH, OrganizationBindingsListInput as hI, OrganizationBindingsListOutput as hJ, OrganizationClickupInstallInput as hK, OrganizationClickupInstallOutput as hL, OrganizationClickupListInstallationsInput as hM, OrganizationClickupListInstallationsOutput as hN, OrganizationCloudflareInstallInput as hO, OrganizationCloudflareInstallOutput as hP, OrganizationConnectorsApproveRequestInput as hQ, OrganizationConnectorsApproveRequestOutput as hR, OrganizationConnectorsAttachInput as hS, OrganizationConnectorsAttachOutput as hT, OrganizationConnectorsDeleteInput as hU, OrganizationConnectorsDeleteOutput as hV, OrganizationConnectorsDenyRequestInput as hW, OrganizationConnectorsDenyRequestOutput as hX, OrganizationConnectorsDetachInput as hY, OrganizationConnectorsDetachOutput as hZ, OrganizationConnectorsListAttachmentsInput as h_, ObserveMetricsListInput as ha, ObserveMetricsListOutput as hb, ObserveMetricsQueryInput as hc, ObserveMetricsQueryOutput as hd, ObserveTracesGetInput as he, ObserveTracesGetOutput as hf, ObserveTracesSearchInput as hg, ObserveTracesSearchOutput as hh, ObserveWebhooksCreateInput as hi, ObserveWebhooksCreateOutput as hj, ObserveWebhooksDeleteInput as hk, ObserveWebhooksDeleteOutput as hl, ObserveWebhooksDeliveriesListInput as hm, ObserveWebhooksDeliveriesListOutput as hn, ObserveWebhooksGetInput as ho, ObserveWebhooksGetOutput as hp, ObserveWebhooksListInput as hq, ObserveWebhooksListOutput as hr, ObserveWebhooksRedeliverInput as hs, ObserveWebhooksRedeliverOutput as ht, ObserveWebhooksRotateSecretInput as hu, ObserveWebhooksRotateSecretOutput as hv, ObserveWebhooksUpdateInput as hw, ObserveWebhooksUpdateOutput as hx, OrganizationAuthMeInput as hy, OrganizationAuthMeOutput as hz, BrainClickupChannelsListInput as i, OrganizationPermissionCatalogOutput as i$, OrganizationConnectorsListAvailableInput as i0, OrganizationConnectorsListAvailableOutput as i1, OrganizationConnectorsListOrgInput as i2, OrganizationConnectorsListOrgOutput as i3, OrganizationConnectorsListInput as i4, OrganizationConnectorsListOutput as i5, OrganizationConnectorsListRequestsInput as i6, OrganizationConnectorsListRequestsOutput as i7, OrganizationConnectorsRemoveInput as i8, OrganizationConnectorsRemoveOutput as i9, OrganizationGoogleadsInstallInput as iA, OrganizationGoogleadsInstallOutput as iB, OrganizationListInput as iC, OrganizationListOutput as iD, OrganizationMemberAcceptInviteInput as iE, OrganizationMemberAcceptInviteOutput as iF, OrganizationMemberInviteInput as iG, OrganizationMemberInviteOutput as iH, OrganizationMemberListInvitationsInput as iI, OrganizationMemberListInvitationsOutput as iJ, OrganizationMemberListProductAccessInput as iK, OrganizationMemberListProductAccessOutput as iL, OrganizationMemberListInput as iM, OrganizationMemberListOutput as iN, OrganizationMemberRemoveInput as iO, OrganizationMemberRemoveOutput as iP, OrganizationMemberRevokeInvitationInput as iQ, OrganizationMemberRevokeInvitationOutput as iR, OrganizationMemberSetRoleInput as iS, OrganizationMemberSetRoleOutput as iT, OrganizationMemberShareProductInput as iU, OrganizationMemberShareProductOutput as iV, OrganizationMemberUnshareProductInput as iW, OrganizationMemberUnshareProductOutput as iX, OrganizationMembersAssignRoleInput as iY, OrganizationMembersAssignRoleOutput as iZ, OrganizationPermissionCatalogInput as i_, OrganizationConnectorsRequestInput as ia, OrganizationConnectorsRequestOutput as ib, OrganizationCreateInput as ic, OrganizationCreateOutput as id, OrganizationDomainsAddInput as ie, OrganizationDomainsAddOutput as ig, OrganizationDomainsGetInput as ih, OrganizationDomainsGetOutput as ii, OrganizationDomainsListInput as ij, OrganizationDomainsListOutput as ik, OrganizationDomainsRemoveInput as il, OrganizationDomainsRemoveOutput as im, OrganizationDomainsSetModeInput as io, OrganizationDomainsSetModeOutput as ip, OrganizationExtensionsListInstalledInput as iq, OrganizationExtensionsListInstalledOutput as ir, OrganizationFeedbackSubmitInput as is, OrganizationFeedbackSubmitOutput as it, OrganizationGdriveInstallInput as iu, OrganizationGdriveInstallOutput as iv, OrganizationGithubInstallInput as iw, OrganizationGithubInstallOutput as ix, OrganizationGithubListInstallationsInput as iy, OrganizationGithubListInstallationsOutput as iz, BrainClickupChannelsListOutput as j, PlaygroundGdriveGetLastChangeOutput as j$, OrganizationProductCreateInput as j0, OrganizationProductCreateOutput as j1, OrganizationProductListAccessInput as j2, OrganizationProductListAccessOutput as j3, OrganizationProductListMembersInput as j4, OrganizationProductListMembersOutput as j5, OrganizationProductListInput as j6, OrganizationProductListOutput as j7, OrganizationProductListRolesInput as j8, OrganizationProductListRolesOutput as j9, OrganizationRolesUpdateInput as jA, OrganizationRolesUpdateOutput as jB, OrganizationSecurityMfaEnableInput as jC, OrganizationSecurityMfaEnableOutput as jD, OrganizationSelectInput as jE, OrganizationSelectOutput as jF, OrganizationSupportThreadCreateInput as jG, OrganizationSupportThreadCreateOutput as jH, OrganizationSupportThreadGetInput as jI, OrganizationSupportThreadGetOutput as jJ, OrganizationSupportThreadReplyInput as jK, OrganizationSupportThreadReplyOutput as jL, OrganizationSupportThreadsListInput as jM, OrganizationSupportThreadsListOutput as jN, PlaygroundAnalyticsOverviewInput as jO, PlaygroundAnalyticsOverviewOutput as jP, PlaygroundBillingEntitlementsInput as jQ, PlaygroundBillingEntitlementsOutput as jR, PlaygroundBillingRecordUsageInput as jS, PlaygroundBillingRecordUsageOutput as jT, PlaygroundClickupCreateTaskInput as jU, PlaygroundClickupCreateTaskOutput as jV, PlaygroundClickupGetLastWebhookInput as jW, PlaygroundClickupGetLastWebhookOutput as jX, PlaygroundClickupGetOverviewInput as jY, PlaygroundClickupGetOverviewOutput as jZ, PlaygroundGdriveGetLastChangeInput as j_, OrganizationProductRevokeAccessInput as ja, OrganizationProductRevokeAccessOutput as jb, OrganizationProductSelectInput as jc, OrganizationProductSelectOutput as jd, OrganizationProductSetAccessInput as je, OrganizationProductSetAccessOutput as jf, OrganizationProductUpdateInput as jg, OrganizationProductUpdateOutput as jh, OrganizationPublicKeysCreateInput as ji, OrganizationPublicKeysCreateOutput as jj, OrganizationPublicKeysListInput as jk, OrganizationPublicKeysListOutput as jl, OrganizationPublicKeysRevokeInput as jm, OrganizationPublicKeysRevokeOutput as jn, OrganizationPublicKeysUpdateScopeInput as jo, OrganizationPublicKeysUpdateScopeOutput as jp, OrganizationPublicRoutesListInput as jq, OrganizationPublicRoutesListOutput as jr, OrganizationRolesCreateInput as js, OrganizationRolesCreateOutput as jt, OrganizationRolesDeleteInput as ju, OrganizationRolesDeleteOutput as jv, OrganizationRolesGetInput as jw, OrganizationRolesGetOutput as jx, OrganizationRolesListInput as jy, OrganizationRolesListOutput as jz, BrainClickupConnectionsListInput as k, RealtimeWebhookSecretRotateOutput as k$, PlaygroundGdriveReadFileInput as k0, PlaygroundGdriveReadFileOutput as k1, PlaygroundGoogleadsReadCustomerInput as k2, PlaygroundGoogleadsReadCustomerOutput as k3, PlaygroundLifecycleGetStateInput as k4, PlaygroundLifecycleGetStateOutput as k5, PlaygroundLifecycleListEventsInput as k6, PlaygroundLifecycleListEventsOutput as k7, PlaygroundWebhookGetLastInput as k8, PlaygroundWebhookGetLastOutput as k9, RealtimePresenceEnterInput as kA, RealtimePresenceEnterOutput as kB, RealtimePresenceGetInput as kC, RealtimePresenceGetOutput as kD, RealtimePresenceLeaveInput as kE, RealtimePresenceLeaveOutput as kF, RealtimePresenceStatsInput as kG, RealtimePresenceStatsOutput as kH, RealtimePresenceUpdateInput as kI, RealtimePresenceUpdateOutput as kJ, RealtimePublicAccessStatusInput as kK, RealtimePublicAccessStatusOutput as kL, RealtimeStatusGetInput as kM, RealtimeStatusGetOutput as kN, RealtimeTokensCreateInput as kO, RealtimeTokensCreateOutput as kP, RealtimeWebhookCreateInput as kQ, RealtimeWebhookCreateOutput as kR, RealtimeWebhookDeleteInput as kS, RealtimeWebhookDeleteOutput as kT, RealtimeWebhookDeliveriesListInput as kU, RealtimeWebhookDeliveriesListOutput as kV, RealtimeWebhookGetInput as kW, RealtimeWebhookGetOutput as kX, RealtimeWebhookListInput as kY, RealtimeWebhookListOutput as kZ, RealtimeWebhookSecretRotateInput as k_, RealtimeArchiveExportInput as ka, RealtimeArchiveExportOutput as kb, RealtimeArchiveExportStatusInput as kc, RealtimeArchiveExportStatusOutput as kd, RealtimeArchiveGetInput as ke, RealtimeArchiveGetOutput as kf, RealtimeGrantCreateInput as kg, RealtimeGrantCreateOutput as kh, RealtimeGrantListInput as ki, RealtimeGrantListOutput as kj, RealtimeGrantRevokeInput as kk, RealtimeGrantRevokeOutput as kl, RealtimeHistoryGetInput as km, RealtimeHistoryGetOutput as kn, RealtimeMessagesPublishInput as ko, RealtimeMessagesPublishOutput as kp, RealtimeNamespaceCreateInput as kq, RealtimeNamespaceCreateOutput as kr, RealtimeNamespaceDeleteInput as ks, RealtimeNamespaceDeleteOutput as kt, RealtimeNamespaceGetInput as ku, RealtimeNamespaceGetOutput as kv, RealtimeNamespaceListInput as kw, RealtimeNamespaceListOutput as kx, RealtimeNamespaceUpdateInput as ky, RealtimeNamespaceUpdateOutput as kz, BrainClickupConnectionsListOutput as l, SupportThreadAssignOutput as l$, RealtimeWebhookUpdateInput as l0, RealtimeWebhookUpdateOutput as l1, SupportAgentCreateInput as l2, SupportAgentCreateOutput as l3, SupportAgentGetInput as l4, SupportAgentGetOutput as l5, SupportAgentListInput as l6, SupportAgentListOutput as l7, SupportAgentUpdateInput as l8, SupportAgentUpdateOutput as l9, SupportRuleUpdateInput as lA, SupportRuleUpdateOutput as lB, SupportStatusArchiveInput as lC, SupportStatusArchiveOutput as lD, SupportStatusCreateInput as lE, SupportStatusCreateOutput as lF, SupportStatusListInput as lG, SupportStatusListOutput as lH, SupportStatusUpdateInput as lI, SupportStatusUpdateOutput as lJ, SupportSurveyArchiveInput as lK, SupportSurveyArchiveOutput as lL, SupportSurveyCreateInput as lM, SupportSurveyCreateOutput as lN, SupportSurveyGetInput as lO, SupportSurveyGetOutput as lP, SupportSurveyListInput as lQ, SupportSurveyListOutput as lR, SupportSurveyPublishInput as lS, SupportSurveyPublishOutput as lT, SupportSurveyStatsInput as lU, SupportSurveyStatsOutput as lV, SupportSurveyUnpublishInput as lW, SupportSurveyUnpublishOutput as lX, SupportSurveyUpdateInput as lY, SupportSurveyUpdateOutput as lZ, SupportThreadAssignInput as l_, SupportAttachmentCreateInput as la, SupportAttachmentCreateOutput as lb, SupportAttachmentFinalizeInput as lc, SupportAttachmentFinalizeOutput as ld, SupportLabelCreateInput as le, SupportLabelCreateOutput as lf, SupportLabelListInput as lg, SupportLabelListOutput as lh, SupportMessageCreateInput as li, SupportMessageCreateOutput as lj, SupportMessageListInput as lk, SupportMessageListOutput as ll, SupportResponseEscalateInput as lm, SupportResponseEscalateOutput as ln, SupportResponseGetInput as lo, SupportResponseGetOutput as lp, SupportResponseListInput as lq, SupportResponseListOutput as lr, SupportRuleCreateInput as ls, SupportRuleCreateOutput as lt, SupportRuleDeleteInput as lu, SupportRuleDeleteOutput as lv, SupportRuleGetInput as lw, SupportRuleGetOutput as lx, SupportRuleListInput as ly, SupportRuleListOutput as lz, BrainClickupListsListInput as m, TrackingGoogleadsUsVsPlatformOutput as m$, SupportThreadCreateInput as m0, SupportThreadCreateOutput as m1, SupportThreadGetInput as m2, SupportThreadGetOutput as m3, SupportThreadListInput as m4, SupportThreadListOutput as m5, SupportThreadStatusSetInput as m6, SupportThreadStatusSetOutput as m7, SupportThreadUpdateInput as m8, SupportThreadUpdateOutput as m9, TrackingEventNamesArchiveInput as mA, TrackingEventNamesArchiveOutput as mB, TrackingEventNamesListInput as mC, TrackingEventNamesListOutput as mD, TrackingEventNamesUnarchiveInput as mE, TrackingEventNamesUnarchiveOutput as mF, TrackingGoogleadsConnectionStatusInput as mG, TrackingGoogleadsConnectionStatusOutput as mH, TrackingGoogleadsConversionActionsInput as mI, TrackingGoogleadsConversionActionsOutput as mJ, TrackingGoogleadsFeedbackConfigGetInput as mK, TrackingGoogleadsFeedbackConfigGetOutput as mL, TrackingGoogleadsFeedbackConfigSetInput as mM, TrackingGoogleadsFeedbackConfigSetOutput as mN, TrackingGoogleadsFeedbackRunInput as mO, TrackingGoogleadsFeedbackRunOutput as mP, TrackingGoogleadsFeedbackStatusInput as mQ, TrackingGoogleadsFeedbackStatusOutput as mR, TrackingGoogleadsFeedbackUploadsInput as mS, TrackingGoogleadsFeedbackUploadsOutput as mT, TrackingGoogleadsRoasReportInput as mU, TrackingGoogleadsRoasReportOutput as mV, TrackingGoogleadsSyncNowInput as mW, TrackingGoogleadsSyncNowOutput as mX, TrackingGoogleadsTrackingHealthInput as mY, TrackingGoogleadsTrackingHealthOutput as mZ, TrackingGoogleadsUsVsPlatformInput as m_, SupportWebhookCreateInput as ma, SupportWebhookCreateOutput as mb, SupportWebhookDeleteInput as mc, SupportWebhookDeleteOutput as md, SupportWebhookDeliveriesListInput as me, SupportWebhookDeliveriesListOutput as mf, SupportWebhookGetInput as mg, SupportWebhookGetOutput as mh, SupportWebhookListInput as mi, SupportWebhookListOutput as mj, SupportWebhookRedeliverInput as mk, SupportWebhookRedeliverOutput as ml, SupportWebhookRotateSecretInput as mm, SupportWebhookRotateSecretOutput as mn, SupportWebhookUpdateInput as mo, SupportWebhookUpdateOutput as mp, TrackingDomainsCreateInput as mq, TrackingDomainsCreateOutput as mr, TrackingDomainsDeleteInput as ms, TrackingDomainsDeleteOutput as mt, TrackingDomainsGetInput as mu, TrackingDomainsGetOutput as mv, TrackingDomainsListInput as mw, TrackingDomainsListOutput as mx, TrackingDomainsVerifyInput as my, TrackingDomainsVerifyOutput as mz, BrainClickupListsListOutput as n, UsersPasskeysRevokeOutput as n$, TrackingIdentityHealthInput as n0, TrackingIdentityHealthOutput as n1, TrackingInstallDomainsCreateInput as n2, TrackingInstallDomainsCreateOutput as n3, TrackingInstallDomainsDeleteInput as n4, TrackingInstallDomainsDeleteOutput as n5, TrackingInstallDomainsListInput as n6, TrackingInstallDomainsListOutput as n7, TrackingLinkDomainsCreateInput as n8, TrackingLinkDomainsCreateOutput as n9, UsersApikeysListInput as nA, UsersApikeysListOutput as nB, UsersApikeysRevokeInput as nC, UsersApikeysRevokeOutput as nD, UsersAuditListInput as nE, UsersAuditListOutput as nF, UsersConfigGetInput as nG, UsersConfigGetOutput as nH, UsersConfigUpsertInput as nI, UsersConfigUpsertOutput as nJ, UsersFactorsListInput as nK, UsersFactorsListOutput as nL, UsersFactorsResetInput as nM, UsersFactorsResetOutput as nN, UsersKeysListInput as nO, UsersKeysListOutput as nP, UsersKeysRevokeInput as nQ, UsersKeysRevokeOutput as nR, UsersKeysRotateInput as nS, UsersKeysRotateOutput as nT, UsersOpsRetentionGetInput as nU, UsersOpsRetentionGetOutput as nV, UsersOpsSloGetInput as nW, UsersOpsSloGetOutput as nX, UsersPasskeysListInput as nY, UsersPasskeysListOutput as nZ, UsersPasskeysRevokeInput as n_, TrackingLinkDomainsDeleteInput as na, TrackingLinkDomainsDeleteOutput as nb, TrackingLinkDomainsListInput as nc, TrackingLinkDomainsListOutput as nd, TrackingLiveEventsListInput as ne, TrackingLiveEventsListOutput as nf, TrackingProfilesDeleteInput as ng, TrackingProfilesDeleteOutput as nh, TrackingProfilesExportInput as ni, TrackingProfilesExportOutput as nj, TrackingProfilesGetInput as nk, TrackingProfilesGetOutput as nl, TrackingProfilesListInput as nm, TrackingProfilesListOutput as nn, TrackingReportsAttributedJourneyInput as no, TrackingReportsAttributedJourneyOutput as np, TrackingReportsEventVolumeInput as nq, TrackingReportsEventVolumeOutput as nr, TrackingReportsRevenueBySourceInput as ns, TrackingReportsRevenueBySourceOutput as nt, TrackingReportsSourcePeopleInput as nu, TrackingReportsSourcePeopleOutput as nv, TrackingSnippetsGetInput as nw, TrackingSnippetsGetOutput as nx, UsersApikeysCreateInput as ny, UsersApikeysCreateOutput as nz, BrainClickupSpacesListInput as o, WaitlistEmbedGetOutput as o$, UsersSessionsGetInput as o0, UsersSessionsGetOutput as o1, UsersSessionsImpersonateInput as o2, UsersSessionsImpersonateOutput as o3, UsersSessionsListInput as o4, UsersSessionsListOutput as o5, UsersSessionsRevokeInput as o6, UsersSessionsRevokeOutput as o7, UsersStatsGetInput as o8, UsersStatsGetOutput as o9, UsersWaitlistFunnelInput as oA, UsersWaitlistFunnelOutput as oB, UsersWaitlistImportInput as oC, UsersWaitlistImportOutput as oD, UsersWaitlistInviteInput as oE, UsersWaitlistInviteOutput as oF, UsersWaitlistListInput as oG, UsersWaitlistListOutput as oH, UsersWebhooksCreateInput as oI, UsersWebhooksCreateOutput as oJ, UsersWebhooksDeleteInput as oK, UsersWebhooksDeleteOutput as oL, UsersWebhooksDeliveriesListInput as oM, UsersWebhooksDeliveriesListOutput as oN, UsersWebhooksGetInput as oO, UsersWebhooksGetOutput as oP, UsersWebhooksListInput as oQ, UsersWebhooksListOutput as oR, UsersWebhooksRotateSecretInput as oS, UsersWebhooksRotateSecretOutput as oT, UsersWebhooksUpdateInput as oU, UsersWebhooksUpdateOutput as oV, WaitlistConfigGetInput as oW, WaitlistConfigGetOutput as oX, WaitlistConfigUpsertInput as oY, WaitlistConfigUpsertOutput as oZ, WaitlistEmbedGetInput as o_, UsersUsersBanInput as oa, UsersUsersBanOutput as ob, UsersUsersCreateInput as oc, UsersUsersCreateOutput as od, UsersUsersDeleteInput as oe, UsersUsersDeleteOutput as of, UsersUsersEraseInput as og, UsersUsersEraseOutput as oh, UsersUsersExportInput as oi, UsersUsersExportOutput as oj, UsersUsersGetInput as ok, UsersUsersGetOutput as ol, UsersUsersImportInput as om, UsersUsersImportOutput as on, UsersUsersInviteInput as oo, UsersUsersInviteOutput as op, UsersUsersListInput as oq, UsersUsersListOutput as or, UsersUsersSetPrimaryIdentifierInput as os, UsersUsersSetPrimaryIdentifierOutput as ot, UsersUsersUnbanInput as ou, UsersUsersUnbanOutput as ov, UsersUsersUpdateInput as ow, UsersUsersUpdateOutput as ox, UsersWaitlistEraseInput as oy, UsersWaitlistEraseOutput as oz, BrainClickupSpacesListOutput as p, WaitlistInvitesSendInput as p0, WaitlistInvitesSendOutput as p1, WaitlistSignupsEraseInput as p2, WaitlistSignupsEraseOutput as p3, WaitlistSignupsFunnelInput as p4, WaitlistSignupsFunnelOutput as p5, WaitlistSignupsListInput as p6, WaitlistSignupsListOutput as p7, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };