@lessly/sdk-app 50.0.0 → 50.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 (45) 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-Dw0AIIZi.d.cts → client.gen-xvJrhIVe.d.cts} +4182 -1
  6. package/dist/{client.gen-Dw0AIIZi.d.ts → client.gen-xvJrhIVe.d.ts} +4182 -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 +161 -0
  10. package/dist/content/index.cjs.map +1 -0
  11. package/dist/content/index.d.cts +128 -0
  12. package/dist/content/index.d.ts +128 -0
  13. package/dist/content/index.js +129 -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 +529 -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 +529 -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/realtime/index.d.cts +1 -1
  30. package/dist/realtime/index.d.ts +1 -1
  31. package/dist/support/index.d.cts +1 -1
  32. package/dist/support/index.d.ts +1 -1
  33. package/dist/tracking/index.d.cts +1 -1
  34. package/dist/tracking/index.d.ts +1 -1
  35. package/dist/users/index.d.cts +1 -1
  36. package/dist/users/index.d.ts +1 -1
  37. package/dist/waitlist/index.d.cts +1 -1
  38. package/dist/waitlist/index.d.ts +1 -1
  39. package/package.json +7 -2
  40. package/src/gen/bindings.gen.ts +529 -0
  41. package/src/gen/client.gen.ts +113 -0
  42. package/src/gen/content/index.ts +3 -0
  43. package/src/gen/content/queryOptions.gen.ts +202 -0
  44. package/src/gen/manifest.gen.ts +1 -1
  45. package/src/gen/types.gen.ts +3962 -0
@@ -1371,6 +1371,4136 @@ interface ConsentStatsGetOutput {
1371
1371
  deny_all_pct: number;
1372
1372
  accept_all_pct: number;
1373
1373
  }
1374
+ interface ContentChannelsBindInput {
1375
+ /**
1376
+ * The channel id returned by content_channels_list.
1377
+ */
1378
+ id: string;
1379
+ /**
1380
+ * The platform connector to publish through — the id of a connector attached to this product, from the workspace connectors list. Networks with no publishing connector (instagram, LinkedIn company pages) are rejected.
1381
+ */
1382
+ connectorId: string;
1383
+ /**
1384
+ * Pass auto to make this API publish through the connector. Omit to keep the current mode: binding alone never switches a channel to automatic publishing.
1385
+ */
1386
+ deliveryMode?: ("auto" | "reminder");
1387
+ }
1388
+ interface ContentChannelsBindOutput {
1389
+ /**
1390
+ * Channel id — pass this to content_publications_schedule.
1391
+ */
1392
+ id: string;
1393
+ /**
1394
+ * Social network: linkedin, x, youtube, instagram or reddit.
1395
+ */
1396
+ network: string;
1397
+ /**
1398
+ * ISO-8601 time the connector stopped working, or null when healthy. A paused channel keeps its scheduled publications — they are frozen, not cancelled, and dispatch once it resumes.
1399
+ */
1400
+ pausedAt: (string | null);
1401
+ /**
1402
+ * ISO-8601 creation time.
1403
+ */
1404
+ createdAt: string;
1405
+ /**
1406
+ * ISO-8601 time of the last change.
1407
+ */
1408
+ updatedAt: string;
1409
+ /**
1410
+ * Platform connector this channel publishes through, or null for a reminder channel that needs none. An id — this toolkit never holds social credentials; a token is fetched per call and discarded.
1411
+ */
1412
+ connectorId: (string | null);
1413
+ /**
1414
+ * Human label for the channel.
1415
+ */
1416
+ displayName: string;
1417
+ /**
1418
+ * Why it paused: revoked (access was taken away), expired (the credential ran out), or the provider reason code from a failed publish. Null when healthy.
1419
+ */
1420
+ pauseReason: (string | null);
1421
+ /**
1422
+ * Who publishes: member (a personal account) or organization (a company page). Phase 1 channels are all member accounts.
1423
+ */
1424
+ subjectType: ("member" | "organization");
1425
+ /**
1426
+ * 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.
1427
+ */
1428
+ capabilities: {
1429
+ [k: string]: unknown;
1430
+ };
1431
+ /**
1432
+ * 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.
1433
+ */
1434
+ deliveryMode: ("auto" | "reminder");
1435
+ }
1436
+ interface ContentChannelsGetInput {
1437
+ /**
1438
+ * The channel id returned by content_channels_list.
1439
+ */
1440
+ id: string;
1441
+ }
1442
+ interface ContentChannelsGetOutput {
1443
+ /**
1444
+ * Channel id — pass this to content_publications_schedule.
1445
+ */
1446
+ id: string;
1447
+ /**
1448
+ * Social network: linkedin, x, youtube, instagram or reddit.
1449
+ */
1450
+ network: string;
1451
+ /**
1452
+ * ISO-8601 time the connector stopped working, or null when healthy. A paused channel keeps its scheduled publications — they are frozen, not cancelled, and dispatch once it resumes.
1453
+ */
1454
+ pausedAt: (string | null);
1455
+ /**
1456
+ * ISO-8601 creation time.
1457
+ */
1458
+ createdAt: string;
1459
+ /**
1460
+ * ISO-8601 time of the last change.
1461
+ */
1462
+ updatedAt: string;
1463
+ /**
1464
+ * Platform connector this channel publishes through, or null for a reminder channel that needs none. An id — this toolkit never holds social credentials; a token is fetched per call and discarded.
1465
+ */
1466
+ connectorId: (string | null);
1467
+ /**
1468
+ * Human label for the channel.
1469
+ */
1470
+ displayName: string;
1471
+ /**
1472
+ * Why it paused: revoked (access was taken away), expired (the credential ran out), or the provider reason code from a failed publish. Null when healthy.
1473
+ */
1474
+ pauseReason: (string | null);
1475
+ /**
1476
+ * Who publishes: member (a personal account) or organization (a company page). Phase 1 channels are all member accounts.
1477
+ */
1478
+ subjectType: ("member" | "organization");
1479
+ /**
1480
+ * 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.
1481
+ */
1482
+ capabilities: {
1483
+ [k: string]: unknown;
1484
+ };
1485
+ /**
1486
+ * 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.
1487
+ */
1488
+ deliveryMode: ("auto" | "reminder");
1489
+ }
1490
+ interface ContentChannelsListInput {
1491
+ /**
1492
+ * Maximum number of channels to return (1-100, default 50).
1493
+ */
1494
+ limit?: number;
1495
+ /**
1496
+ * How many channels to skip, for paging.
1497
+ */
1498
+ offset?: number;
1499
+ /**
1500
+ * Return only channels on this network.
1501
+ */
1502
+ network?: ("linkedin" | "x" | "youtube" | "instagram" | "reddit");
1503
+ }
1504
+ interface ContentChannelsListOutput {
1505
+ /**
1506
+ * Total number of matching channels, ignoring paging.
1507
+ */
1508
+ total: number;
1509
+ /**
1510
+ * The page of channels, ordered by network.
1511
+ */
1512
+ channels: {
1513
+ /**
1514
+ * Channel id — pass this to content_publications_schedule.
1515
+ */
1516
+ id: string;
1517
+ /**
1518
+ * Social network: linkedin, x, youtube, instagram or reddit.
1519
+ */
1520
+ network: string;
1521
+ /**
1522
+ * ISO-8601 time the connector stopped working, or null when healthy. A paused channel keeps its scheduled publications — they are frozen, not cancelled, and dispatch once it resumes.
1523
+ */
1524
+ pausedAt: (string | null);
1525
+ /**
1526
+ * ISO-8601 creation time.
1527
+ */
1528
+ createdAt: string;
1529
+ /**
1530
+ * ISO-8601 time of the last change.
1531
+ */
1532
+ updatedAt: string;
1533
+ /**
1534
+ * Platform connector this channel publishes through, or null for a reminder channel that needs none. An id — this toolkit never holds social credentials; a token is fetched per call and discarded.
1535
+ */
1536
+ connectorId: (string | null);
1537
+ /**
1538
+ * Human label for the channel.
1539
+ */
1540
+ displayName: string;
1541
+ /**
1542
+ * Why it paused: revoked (access was taken away), expired (the credential ran out), or the provider reason code from a failed publish. Null when healthy.
1543
+ */
1544
+ pauseReason: (string | null);
1545
+ /**
1546
+ * Who publishes: member (a personal account) or organization (a company page). Phase 1 channels are all member accounts.
1547
+ */
1548
+ subjectType: ("member" | "organization");
1549
+ /**
1550
+ * 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.
1551
+ */
1552
+ capabilities: {
1553
+ [k: string]: unknown;
1554
+ };
1555
+ /**
1556
+ * 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.
1557
+ */
1558
+ deliveryMode: ("auto" | "reminder");
1559
+ }[];
1560
+ }
1561
+ interface ContentChannelsResumeInput {
1562
+ /**
1563
+ * The paused channel to resume, once its connector has been reconnected.
1564
+ */
1565
+ id: string;
1566
+ }
1567
+ interface ContentChannelsResumeOutput {
1568
+ /**
1569
+ * Channel id — pass this to content_publications_schedule.
1570
+ */
1571
+ id: string;
1572
+ /**
1573
+ * Social network: linkedin, x, youtube, instagram or reddit.
1574
+ */
1575
+ network: string;
1576
+ /**
1577
+ * ISO-8601 time the connector stopped working, or null when healthy. A paused channel keeps its scheduled publications — they are frozen, not cancelled, and dispatch once it resumes.
1578
+ */
1579
+ pausedAt: (string | null);
1580
+ /**
1581
+ * ISO-8601 creation time.
1582
+ */
1583
+ createdAt: string;
1584
+ /**
1585
+ * ISO-8601 time of the last change.
1586
+ */
1587
+ updatedAt: string;
1588
+ /**
1589
+ * Platform connector this channel publishes through, or null for a reminder channel that needs none. An id — this toolkit never holds social credentials; a token is fetched per call and discarded.
1590
+ */
1591
+ connectorId: (string | null);
1592
+ /**
1593
+ * Human label for the channel.
1594
+ */
1595
+ displayName: string;
1596
+ /**
1597
+ * Why it paused: revoked (access was taken away), expired (the credential ran out), or the provider reason code from a failed publish. Null when healthy.
1598
+ */
1599
+ pauseReason: (string | null);
1600
+ /**
1601
+ * Who publishes: member (a personal account) or organization (a company page). Phase 1 channels are all member accounts.
1602
+ */
1603
+ subjectType: ("member" | "organization");
1604
+ /**
1605
+ * 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.
1606
+ */
1607
+ capabilities: {
1608
+ [k: string]: unknown;
1609
+ };
1610
+ /**
1611
+ * 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.
1612
+ */
1613
+ deliveryMode: ("auto" | "reminder");
1614
+ }
1615
+ interface ContentChannelsUnbindInput {
1616
+ /**
1617
+ * The channel id returned by content_channels_list.
1618
+ */
1619
+ id: string;
1620
+ }
1621
+ interface ContentChannelsUnbindOutput {
1622
+ /**
1623
+ * Channel id — pass this to content_publications_schedule.
1624
+ */
1625
+ id: string;
1626
+ /**
1627
+ * Social network: linkedin, x, youtube, instagram or reddit.
1628
+ */
1629
+ network: string;
1630
+ /**
1631
+ * ISO-8601 time the connector stopped working, or null when healthy. A paused channel keeps its scheduled publications — they are frozen, not cancelled, and dispatch once it resumes.
1632
+ */
1633
+ pausedAt: (string | null);
1634
+ /**
1635
+ * ISO-8601 creation time.
1636
+ */
1637
+ createdAt: string;
1638
+ /**
1639
+ * ISO-8601 time of the last change.
1640
+ */
1641
+ updatedAt: string;
1642
+ /**
1643
+ * Platform connector this channel publishes through, or null for a reminder channel that needs none. An id — this toolkit never holds social credentials; a token is fetched per call and discarded.
1644
+ */
1645
+ connectorId: (string | null);
1646
+ /**
1647
+ * Human label for the channel.
1648
+ */
1649
+ displayName: string;
1650
+ /**
1651
+ * Why it paused: revoked (access was taken away), expired (the credential ran out), or the provider reason code from a failed publish. Null when healthy.
1652
+ */
1653
+ pauseReason: (string | null);
1654
+ /**
1655
+ * Who publishes: member (a personal account) or organization (a company page). Phase 1 channels are all member accounts.
1656
+ */
1657
+ subjectType: ("member" | "organization");
1658
+ /**
1659
+ * 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.
1660
+ */
1661
+ capabilities: {
1662
+ [k: string]: unknown;
1663
+ };
1664
+ /**
1665
+ * 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.
1666
+ */
1667
+ deliveryMode: ("auto" | "reminder");
1668
+ }
1669
+ interface ContentChannelsUpdateInput {
1670
+ /**
1671
+ * The channel id returned by content_channels_list.
1672
+ */
1673
+ id: string;
1674
+ /**
1675
+ * New human label for the channel. Omit to keep the current one.
1676
+ */
1677
+ displayName?: string;
1678
+ /**
1679
+ * Override individual capability fields — a known ceiling beats the hand-filled constant. Merges over the existing descriptor; fields you omit keep their current values.
1680
+ */
1681
+ capabilities?: {
1682
+ [k: string]: unknown;
1683
+ };
1684
+ /**
1685
+ * Change how the post reaches the network. Only reminder can be scheduled in this release — no publishing adapter exists yet.
1686
+ */
1687
+ deliveryMode?: ("auto" | "reminder");
1688
+ }
1689
+ interface ContentChannelsUpdateOutput {
1690
+ /**
1691
+ * Channel id — pass this to content_publications_schedule.
1692
+ */
1693
+ id: string;
1694
+ /**
1695
+ * Social network: linkedin, x, youtube, instagram or reddit.
1696
+ */
1697
+ network: string;
1698
+ /**
1699
+ * ISO-8601 time the connector stopped working, or null when healthy. A paused channel keeps its scheduled publications — they are frozen, not cancelled, and dispatch once it resumes.
1700
+ */
1701
+ pausedAt: (string | null);
1702
+ /**
1703
+ * ISO-8601 creation time.
1704
+ */
1705
+ createdAt: string;
1706
+ /**
1707
+ * ISO-8601 time of the last change.
1708
+ */
1709
+ updatedAt: string;
1710
+ /**
1711
+ * Platform connector this channel publishes through, or null for a reminder channel that needs none. An id — this toolkit never holds social credentials; a token is fetched per call and discarded.
1712
+ */
1713
+ connectorId: (string | null);
1714
+ /**
1715
+ * Human label for the channel.
1716
+ */
1717
+ displayName: string;
1718
+ /**
1719
+ * Why it paused: revoked (access was taken away), expired (the credential ran out), or the provider reason code from a failed publish. Null when healthy.
1720
+ */
1721
+ pauseReason: (string | null);
1722
+ /**
1723
+ * Who publishes: member (a personal account) or organization (a company page). Phase 1 channels are all member accounts.
1724
+ */
1725
+ subjectType: ("member" | "organization");
1726
+ /**
1727
+ * 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.
1728
+ */
1729
+ capabilities: {
1730
+ [k: string]: unknown;
1731
+ };
1732
+ /**
1733
+ * 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.
1734
+ */
1735
+ deliveryMode: ("auto" | "reminder");
1736
+ }
1737
+ interface ContentMediaCreateUploadUrlInput {
1738
+ /**
1739
+ * Name to store the file under, for display purposes.
1740
+ */
1741
+ filename?: string;
1742
+ /**
1743
+ * The media type the app will PUT, e.g. video/mp4. Must be image/* or video/*.
1744
+ */
1745
+ contentType: string;
1746
+ }
1747
+ interface ContentMediaCreateUploadUrlOutput {
1748
+ /**
1749
+ * The pending asset row. It turns ready on finalize.
1750
+ */
1751
+ asset: {
1752
+ /**
1753
+ * Media asset id. Use it to attach the asset to a post.
1754
+ */
1755
+ id: string;
1756
+ /**
1757
+ * Object key in the product bucket. Private — hand it to no one, it is not a URL.
1758
+ */
1759
+ key: string;
1760
+ /**
1761
+ * Stored media type, or null while still pending.
1762
+ */
1763
+ mime: (string | null);
1764
+ /**
1765
+ * Why the asset is failed — a readable reason, or null when nothing went wrong.
1766
+ */
1767
+ error: (string | null);
1768
+ /**
1769
+ * How the bytes arrived: url (fetched by the toolkit) or upload (PUT by the app).
1770
+ */
1771
+ source: ("url" | "upload");
1772
+ /**
1773
+ * Storage status: pending (the bytes are not in the bucket yet) -> ready (stored, attachable to a post) or failed (ingestion gave up; see error).
1774
+ */
1775
+ status: ("pending" | "ready" | "failed");
1776
+ /**
1777
+ * Original filename, kept for display only.
1778
+ */
1779
+ filename: (string | null);
1780
+ /**
1781
+ * ISO-8601 creation time.
1782
+ */
1783
+ createdAt: string;
1784
+ /**
1785
+ * Stored size in bytes, or null while pending.
1786
+ */
1787
+ sizeBytes: (number | null);
1788
+ /**
1789
+ * The URL the bytes were fetched from, if any.
1790
+ */
1791
+ sourceUrl: (string | null);
1792
+ /**
1793
+ * ISO-8601 time of the last change.
1794
+ */
1795
+ updatedAt: string;
1796
+ };
1797
+ /**
1798
+ * ISO-8601 time after which the upload URL stops working.
1799
+ */
1800
+ expiresAt: string;
1801
+ /**
1802
+ * Time-limited signed PUT URL. Upload the bytes to it, then call the finalize tool.
1803
+ */
1804
+ uploadUrl: string;
1805
+ /**
1806
+ * The Content-Type header the PUT must send — the signature covers it.
1807
+ */
1808
+ contentType: string;
1809
+ }
1810
+ interface ContentMediaFinalizeInput {
1811
+ /**
1812
+ * The media asset id returned when it was created.
1813
+ */
1814
+ id: string;
1815
+ }
1816
+ interface ContentMediaFinalizeOutput {
1817
+ /**
1818
+ * Media asset id. Use it to attach the asset to a post.
1819
+ */
1820
+ id: string;
1821
+ /**
1822
+ * Object key in the product bucket. Private — hand it to no one, it is not a URL.
1823
+ */
1824
+ key: string;
1825
+ /**
1826
+ * Stored media type, or null while still pending.
1827
+ */
1828
+ mime: (string | null);
1829
+ /**
1830
+ * Why the asset is failed — a readable reason, or null when nothing went wrong.
1831
+ */
1832
+ error: (string | null);
1833
+ /**
1834
+ * How the bytes arrived: url (fetched by the toolkit) or upload (PUT by the app).
1835
+ */
1836
+ source: ("url" | "upload");
1837
+ /**
1838
+ * Storage status: pending (the bytes are not in the bucket yet) -> ready (stored, attachable to a post) or failed (ingestion gave up; see error).
1839
+ */
1840
+ status: ("pending" | "ready" | "failed");
1841
+ /**
1842
+ * Original filename, kept for display only.
1843
+ */
1844
+ filename: (string | null);
1845
+ /**
1846
+ * ISO-8601 creation time.
1847
+ */
1848
+ createdAt: string;
1849
+ /**
1850
+ * Stored size in bytes, or null while pending.
1851
+ */
1852
+ sizeBytes: (number | null);
1853
+ /**
1854
+ * The URL the bytes were fetched from, if any.
1855
+ */
1856
+ sourceUrl: (string | null);
1857
+ /**
1858
+ * ISO-8601 time of the last change.
1859
+ */
1860
+ updatedAt: string;
1861
+ }
1862
+ interface ContentMediaGetInput {
1863
+ /**
1864
+ * The media asset id returned when it was created.
1865
+ */
1866
+ id: string;
1867
+ }
1868
+ interface ContentMediaGetOutput {
1869
+ /**
1870
+ * Media asset id. Use it to attach the asset to a post.
1871
+ */
1872
+ id: string;
1873
+ /**
1874
+ * Object key in the product bucket. Private — hand it to no one, it is not a URL.
1875
+ */
1876
+ key: string;
1877
+ /**
1878
+ * Stored media type, or null while still pending.
1879
+ */
1880
+ mime: (string | null);
1881
+ /**
1882
+ * Why the asset is failed — a readable reason, or null when nothing went wrong.
1883
+ */
1884
+ error: (string | null);
1885
+ /**
1886
+ * How the bytes arrived: url (fetched by the toolkit) or upload (PUT by the app).
1887
+ */
1888
+ source: ("url" | "upload");
1889
+ /**
1890
+ * Storage status: pending (the bytes are not in the bucket yet) -> ready (stored, attachable to a post) or failed (ingestion gave up; see error).
1891
+ */
1892
+ status: ("pending" | "ready" | "failed");
1893
+ /**
1894
+ * Original filename, kept for display only.
1895
+ */
1896
+ filename: (string | null);
1897
+ /**
1898
+ * ISO-8601 creation time.
1899
+ */
1900
+ createdAt: string;
1901
+ /**
1902
+ * Stored size in bytes, or null while pending.
1903
+ */
1904
+ sizeBytes: (number | null);
1905
+ /**
1906
+ * The URL the bytes were fetched from, if any.
1907
+ */
1908
+ sourceUrl: (string | null);
1909
+ /**
1910
+ * ISO-8601 time of the last change.
1911
+ */
1912
+ updatedAt: string;
1913
+ }
1914
+ interface ContentMediaListInput {
1915
+ /**
1916
+ * Maximum number of assets to return (1-100, default 50).
1917
+ */
1918
+ limit?: number;
1919
+ /**
1920
+ * How many assets to skip, for paging.
1921
+ */
1922
+ offset?: number;
1923
+ /**
1924
+ * Return only assets in this storage status.
1925
+ */
1926
+ status?: ("pending" | "ready" | "failed");
1927
+ }
1928
+ interface ContentMediaListOutput {
1929
+ /**
1930
+ * Total number of matching assets, ignoring paging.
1931
+ */
1932
+ total: number;
1933
+ /**
1934
+ * The page of assets, newest first.
1935
+ */
1936
+ assets: {
1937
+ /**
1938
+ * Media asset id. Use it to attach the asset to a post.
1939
+ */
1940
+ id: string;
1941
+ /**
1942
+ * Object key in the product bucket. Private — hand it to no one, it is not a URL.
1943
+ */
1944
+ key: string;
1945
+ /**
1946
+ * Stored media type, or null while still pending.
1947
+ */
1948
+ mime: (string | null);
1949
+ /**
1950
+ * Why the asset is failed — a readable reason, or null when nothing went wrong.
1951
+ */
1952
+ error: (string | null);
1953
+ /**
1954
+ * How the bytes arrived: url (fetched by the toolkit) or upload (PUT by the app).
1955
+ */
1956
+ source: ("url" | "upload");
1957
+ /**
1958
+ * Storage status: pending (the bytes are not in the bucket yet) -> ready (stored, attachable to a post) or failed (ingestion gave up; see error).
1959
+ */
1960
+ status: ("pending" | "ready" | "failed");
1961
+ /**
1962
+ * Original filename, kept for display only.
1963
+ */
1964
+ filename: (string | null);
1965
+ /**
1966
+ * ISO-8601 creation time.
1967
+ */
1968
+ createdAt: string;
1969
+ /**
1970
+ * Stored size in bytes, or null while pending.
1971
+ */
1972
+ sizeBytes: (number | null);
1973
+ /**
1974
+ * The URL the bytes were fetched from, if any.
1975
+ */
1976
+ sourceUrl: (string | null);
1977
+ /**
1978
+ * ISO-8601 time of the last change.
1979
+ */
1980
+ updatedAt: string;
1981
+ }[];
1982
+ }
1983
+ interface ContentMediaUploadInput {
1984
+ /**
1985
+ * Name to store the file under. Defaults to the last path segment of the URL.
1986
+ */
1987
+ filename?: string;
1988
+ /**
1989
+ * Public http(s) URL the toolkit fetches server-side. Images and video only, up to 512 MB.
1990
+ */
1991
+ sourceUrl: string;
1992
+ }
1993
+ interface ContentMediaUploadOutput {
1994
+ /**
1995
+ * Media asset id. Use it to attach the asset to a post.
1996
+ */
1997
+ id: string;
1998
+ /**
1999
+ * Object key in the product bucket. Private — hand it to no one, it is not a URL.
2000
+ */
2001
+ key: string;
2002
+ /**
2003
+ * Stored media type, or null while still pending.
2004
+ */
2005
+ mime: (string | null);
2006
+ /**
2007
+ * Why the asset is failed — a readable reason, or null when nothing went wrong.
2008
+ */
2009
+ error: (string | null);
2010
+ /**
2011
+ * How the bytes arrived: url (fetched by the toolkit) or upload (PUT by the app).
2012
+ */
2013
+ source: ("url" | "upload");
2014
+ /**
2015
+ * Storage status: pending (the bytes are not in the bucket yet) -> ready (stored, attachable to a post) or failed (ingestion gave up; see error).
2016
+ */
2017
+ status: ("pending" | "ready" | "failed");
2018
+ /**
2019
+ * Original filename, kept for display only.
2020
+ */
2021
+ filename: (string | null);
2022
+ /**
2023
+ * ISO-8601 creation time.
2024
+ */
2025
+ createdAt: string;
2026
+ /**
2027
+ * Stored size in bytes, or null while pending.
2028
+ */
2029
+ sizeBytes: (number | null);
2030
+ /**
2031
+ * The URL the bytes were fetched from, if any.
2032
+ */
2033
+ sourceUrl: (string | null);
2034
+ /**
2035
+ * ISO-8601 time of the last change.
2036
+ */
2037
+ updatedAt: string;
2038
+ }
2039
+ interface ContentMetricsChannelSeriesInput {
2040
+ /**
2041
+ * The channel id, from content_channels_list.
2042
+ */
2043
+ id: string;
2044
+ /**
2045
+ * ISO-8601 upper bound on capture time, inclusive. Omit for "up to now".
2046
+ */
2047
+ to?: string;
2048
+ /**
2049
+ * ISO-8601 lower bound on capture time, inclusive. Omit for "from the beginning".
2050
+ */
2051
+ from?: string;
2052
+ /**
2053
+ * Maximum number of snapshots to return, oldest first.
2054
+ */
2055
+ limit?: number;
2056
+ }
2057
+ interface ContentMetricsChannelSeriesOutput {
2058
+ /**
2059
+ * Daily snapshots, oldest first.
2060
+ */
2061
+ points: {
2062
+ /**
2063
+ * The snapshot as the adapter recorded it: the availability it reported, the cross-network metric set (a null field means the network does not report it — never zero), and the raw payload.
2064
+ */
2065
+ metrics: {
2066
+ [k: string]: unknown;
2067
+ };
2068
+ /**
2069
+ * ISO-8601 time this snapshot was taken.
2070
+ */
2071
+ capturedAt: string;
2072
+ }[];
2073
+ /**
2074
+ * The network the channel publishes to.
2075
+ */
2076
+ network: string;
2077
+ /**
2078
+ * What this network reports for this account. "none" means no snapshot will ever be taken — a personal Instagram profile has no API at all; "basic" means fewer numbers than a business account gets, so an absent metric is the network's silence, not a zero.
2079
+ */
2080
+ analytics: ("full" | "basic" | "none");
2081
+ /**
2082
+ * The channel these snapshots belong to.
2083
+ */
2084
+ channelId: string;
2085
+ }
2086
+ interface ContentMetricsPostSeriesInput {
2087
+ /**
2088
+ * The publication id, from content_publications_schedule or content_publications_list.
2089
+ */
2090
+ id: string;
2091
+ /**
2092
+ * ISO-8601 upper bound on capture time, inclusive. Omit for "up to now".
2093
+ */
2094
+ to?: string;
2095
+ /**
2096
+ * ISO-8601 lower bound on capture time, inclusive. Omit for "from the beginning".
2097
+ */
2098
+ from?: string;
2099
+ /**
2100
+ * Maximum number of snapshots to return, oldest first.
2101
+ */
2102
+ limit?: number;
2103
+ }
2104
+ interface ContentMetricsPostSeriesOutput {
2105
+ /**
2106
+ * Snapshots oldest first. Readings over time, not a current value: reach keeps growing for weeks. Empty means nothing has been captured yet.
2107
+ */
2108
+ points: {
2109
+ /**
2110
+ * The snapshot as the adapter recorded it: the availability it reported, the cross-network metric set (a null field means the network does not report it — never zero), and the raw payload.
2111
+ */
2112
+ metrics: {
2113
+ [k: string]: unknown;
2114
+ };
2115
+ /**
2116
+ * ISO-8601 time this snapshot was taken.
2117
+ */
2118
+ capturedAt: string;
2119
+ }[];
2120
+ /**
2121
+ * The network the channel publishes to.
2122
+ */
2123
+ network: string;
2124
+ /**
2125
+ * What this network reports for this account. "none" means no snapshot will ever be taken — a personal Instagram profile has no API at all; "basic" means fewer numbers than a business account gets, so an absent metric is the network's silence, not a zero.
2126
+ */
2127
+ analytics: ("full" | "basic" | "none");
2128
+ /**
2129
+ * The channel it was published to.
2130
+ */
2131
+ channelId: string;
2132
+ /**
2133
+ * The publication these snapshots belong to.
2134
+ */
2135
+ publicationId: string;
2136
+ }
2137
+ interface ContentPostsApproveInput {
2138
+ /**
2139
+ * The post id returned by content_posts_create.
2140
+ */
2141
+ id: string;
2142
+ }
2143
+ interface ContentPostsApproveOutput {
2144
+ /**
2145
+ * Post id.
2146
+ */
2147
+ id: string;
2148
+ /**
2149
+ * The current text of the post, in markdown.
2150
+ */
2151
+ text: string;
2152
+ /**
2153
+ * Media references attached to the current version.
2154
+ */
2155
+ media: string[];
2156
+ /**
2157
+ * Identity id of whoever composed the post.
2158
+ */
2159
+ author: string;
2160
+ /**
2161
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
2162
+ */
2163
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
2164
+ /**
2165
+ * ISO-8601 creation time.
2166
+ */
2167
+ createdAt: string;
2168
+ /**
2169
+ * ISO-8601 time of the last change.
2170
+ */
2171
+ updatedAt: string;
2172
+ /**
2173
+ * Version number of the current text.
2174
+ */
2175
+ currentVersion: number;
2176
+ /**
2177
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
2178
+ */
2179
+ approvedVersion: (number | null);
2180
+ }
2181
+ interface ContentPostsAttachMediaInput {
2182
+ /**
2183
+ * The post id.
2184
+ */
2185
+ id: string;
2186
+ /**
2187
+ * Media asset ids, in the order they should appear on the post.
2188
+ *
2189
+ * @minItems 1
2190
+ * @maxItems 20
2191
+ */
2192
+ mediaIds: [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string] | [string, string, string, string, string, string] | [string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string];
2193
+ }
2194
+ interface ContentPostsAttachMediaOutput {
2195
+ /**
2196
+ * Post id.
2197
+ */
2198
+ id: string;
2199
+ /**
2200
+ * The current text of the post, in markdown.
2201
+ */
2202
+ text: string;
2203
+ /**
2204
+ * Media references attached to the current version.
2205
+ */
2206
+ media: string[];
2207
+ /**
2208
+ * Identity id of whoever composed the post.
2209
+ */
2210
+ author: string;
2211
+ /**
2212
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
2213
+ */
2214
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
2215
+ /**
2216
+ * ISO-8601 creation time.
2217
+ */
2218
+ createdAt: string;
2219
+ /**
2220
+ * ISO-8601 time of the last change.
2221
+ */
2222
+ updatedAt: string;
2223
+ /**
2224
+ * Version number of the current text.
2225
+ */
2226
+ currentVersion: number;
2227
+ /**
2228
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
2229
+ */
2230
+ approvedVersion: (number | null);
2231
+ }
2232
+ interface ContentPostsCreateInput {
2233
+ /**
2234
+ * The post text, channel-independent, written in markdown — bold, italic, lists, links. Each network gets it flattened to the plain text that network accepts; content_publications_validate shows exactly what that looks like per channel. Per-channel variants come later, at publish time.
2235
+ */
2236
+ text: string;
2237
+ /**
2238
+ * Media references attached to the post, in display order. Opaque strings — the toolkit does not upload or resolve them.
2239
+ *
2240
+ * @maxItems 20
2241
+ */
2242
+ 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];
2243
+ }
2244
+ interface ContentPostsCreateOutput {
2245
+ /**
2246
+ * Post id.
2247
+ */
2248
+ id: string;
2249
+ /**
2250
+ * The current text of the post, in markdown.
2251
+ */
2252
+ text: string;
2253
+ /**
2254
+ * Media references attached to the current version.
2255
+ */
2256
+ media: string[];
2257
+ /**
2258
+ * Identity id of whoever composed the post.
2259
+ */
2260
+ author: string;
2261
+ /**
2262
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
2263
+ */
2264
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
2265
+ /**
2266
+ * ISO-8601 creation time.
2267
+ */
2268
+ createdAt: string;
2269
+ /**
2270
+ * ISO-8601 time of the last change.
2271
+ */
2272
+ updatedAt: string;
2273
+ /**
2274
+ * Version number of the current text.
2275
+ */
2276
+ currentVersion: number;
2277
+ /**
2278
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
2279
+ */
2280
+ approvedVersion: (number | null);
2281
+ }
2282
+ interface ContentPostsDetachMediaInput {
2283
+ /**
2284
+ * The post id.
2285
+ */
2286
+ id: string;
2287
+ /**
2288
+ * Media asset ids to remove from the post.
2289
+ *
2290
+ * @minItems 1
2291
+ * @maxItems 20
2292
+ */
2293
+ mediaIds: [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string] | [string, string, string, string, string, string] | [string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string];
2294
+ }
2295
+ interface ContentPostsDetachMediaOutput {
2296
+ /**
2297
+ * Post id.
2298
+ */
2299
+ id: string;
2300
+ /**
2301
+ * The current text of the post, in markdown.
2302
+ */
2303
+ text: string;
2304
+ /**
2305
+ * Media references attached to the current version.
2306
+ */
2307
+ media: string[];
2308
+ /**
2309
+ * Identity id of whoever composed the post.
2310
+ */
2311
+ author: string;
2312
+ /**
2313
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
2314
+ */
2315
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
2316
+ /**
2317
+ * ISO-8601 creation time.
2318
+ */
2319
+ createdAt: string;
2320
+ /**
2321
+ * ISO-8601 time of the last change.
2322
+ */
2323
+ updatedAt: string;
2324
+ /**
2325
+ * Version number of the current text.
2326
+ */
2327
+ currentVersion: number;
2328
+ /**
2329
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
2330
+ */
2331
+ approvedVersion: (number | null);
2332
+ }
2333
+ interface ContentPostsGetInput {
2334
+ /**
2335
+ * The post id returned by content_posts_create.
2336
+ */
2337
+ id: string;
2338
+ }
2339
+ interface ContentPostsGetOutput {
2340
+ /**
2341
+ * Post id.
2342
+ */
2343
+ id: string;
2344
+ /**
2345
+ * The current text of the post, in markdown.
2346
+ */
2347
+ text: string;
2348
+ /**
2349
+ * Media references attached to the current version.
2350
+ */
2351
+ media: string[];
2352
+ /**
2353
+ * Identity id of whoever composed the post.
2354
+ */
2355
+ author: string;
2356
+ /**
2357
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
2358
+ */
2359
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
2360
+ /**
2361
+ * ISO-8601 creation time.
2362
+ */
2363
+ createdAt: string;
2364
+ /**
2365
+ * ISO-8601 time of the last change.
2366
+ */
2367
+ updatedAt: string;
2368
+ /**
2369
+ * Version number of the current text.
2370
+ */
2371
+ currentVersion: number;
2372
+ /**
2373
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
2374
+ */
2375
+ approvedVersion: (number | null);
2376
+ }
2377
+ interface ContentPostsListInput {
2378
+ /**
2379
+ * Maximum number of posts to return (1-100, default 50).
2380
+ */
2381
+ limit?: number;
2382
+ /**
2383
+ * How many posts to skip, for paging.
2384
+ */
2385
+ offset?: number;
2386
+ /**
2387
+ * Return only posts in this status.
2388
+ */
2389
+ status?: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
2390
+ }
2391
+ interface ContentPostsListOutput {
2392
+ /**
2393
+ * The page of posts, newest first.
2394
+ */
2395
+ posts: {
2396
+ /**
2397
+ * Post id.
2398
+ */
2399
+ id: string;
2400
+ /**
2401
+ * The current text of the post, in markdown.
2402
+ */
2403
+ text: string;
2404
+ /**
2405
+ * Media references attached to the current version.
2406
+ */
2407
+ media: string[];
2408
+ /**
2409
+ * Identity id of whoever composed the post.
2410
+ */
2411
+ author: string;
2412
+ /**
2413
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
2414
+ */
2415
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
2416
+ /**
2417
+ * ISO-8601 creation time.
2418
+ */
2419
+ createdAt: string;
2420
+ /**
2421
+ * ISO-8601 time of the last change.
2422
+ */
2423
+ updatedAt: string;
2424
+ /**
2425
+ * Version number of the current text.
2426
+ */
2427
+ currentVersion: number;
2428
+ /**
2429
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
2430
+ */
2431
+ approvedVersion: (number | null);
2432
+ }[];
2433
+ /**
2434
+ * Total number of matching posts, ignoring paging.
2435
+ */
2436
+ total: number;
2437
+ }
2438
+ interface ContentPostsSubmitInput {
2439
+ /**
2440
+ * The post id returned by content_posts_create.
2441
+ */
2442
+ id: string;
2443
+ }
2444
+ interface ContentPostsSubmitOutput {
2445
+ /**
2446
+ * Post id.
2447
+ */
2448
+ id: string;
2449
+ /**
2450
+ * The current text of the post, in markdown.
2451
+ */
2452
+ text: string;
2453
+ /**
2454
+ * Media references attached to the current version.
2455
+ */
2456
+ media: string[];
2457
+ /**
2458
+ * Identity id of whoever composed the post.
2459
+ */
2460
+ author: string;
2461
+ /**
2462
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
2463
+ */
2464
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
2465
+ /**
2466
+ * ISO-8601 creation time.
2467
+ */
2468
+ createdAt: string;
2469
+ /**
2470
+ * ISO-8601 time of the last change.
2471
+ */
2472
+ updatedAt: string;
2473
+ /**
2474
+ * Version number of the current text.
2475
+ */
2476
+ currentVersion: number;
2477
+ /**
2478
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
2479
+ */
2480
+ approvedVersion: (number | null);
2481
+ }
2482
+ interface ContentPostsUpdateInput {
2483
+ /**
2484
+ * The post id returned by content_posts_create.
2485
+ */
2486
+ id: string;
2487
+ /**
2488
+ * Replacement text, in markdown. Omit to keep the current text.
2489
+ */
2490
+ text?: string;
2491
+ /**
2492
+ * Replacement media list (replaces, never merges). Omit to keep the current media.
2493
+ *
2494
+ * @maxItems 20
2495
+ */
2496
+ 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];
2497
+ }
2498
+ interface ContentPostsUpdateOutput {
2499
+ /**
2500
+ * Post id.
2501
+ */
2502
+ id: string;
2503
+ /**
2504
+ * The current text of the post, in markdown.
2505
+ */
2506
+ text: string;
2507
+ /**
2508
+ * Media references attached to the current version.
2509
+ */
2510
+ media: string[];
2511
+ /**
2512
+ * Identity id of whoever composed the post.
2513
+ */
2514
+ author: string;
2515
+ /**
2516
+ * Post lifecycle status: draft (being written) -> pending_approval (submitted) -> approved (cleared to publish); scheduled/published/failed are set by the publishing pipeline.
2517
+ */
2518
+ status: ("draft" | "pending_approval" | "approved" | "scheduled" | "published" | "failed");
2519
+ /**
2520
+ * ISO-8601 creation time.
2521
+ */
2522
+ createdAt: string;
2523
+ /**
2524
+ * ISO-8601 time of the last change.
2525
+ */
2526
+ updatedAt: string;
2527
+ /**
2528
+ * Version number of the current text.
2529
+ */
2530
+ currentVersion: number;
2531
+ /**
2532
+ * The version an approval binds to, or null. Cleared on every edit: approving one text never covers another.
2533
+ */
2534
+ approvedVersion: (number | null);
2535
+ }
2536
+ interface ContentPostsVersionsInput {
2537
+ /**
2538
+ * The post id returned by content_posts_create.
2539
+ */
2540
+ id: string;
2541
+ }
2542
+ interface ContentPostsVersionsOutput {
2543
+ /**
2544
+ * The post these versions belong to.
2545
+ */
2546
+ postId: string;
2547
+ /**
2548
+ * Every version, oldest first.
2549
+ */
2550
+ versions: {
2551
+ /**
2552
+ * The text as it stood at this version.
2553
+ */
2554
+ text: string;
2555
+ /**
2556
+ * Media references as they stood at this version.
2557
+ */
2558
+ media: string[];
2559
+ /**
2560
+ * Post the version belongs to.
2561
+ */
2562
+ postId: string;
2563
+ /**
2564
+ * Version number, starting at 1.
2565
+ */
2566
+ version: number;
2567
+ /**
2568
+ * ISO-8601 time the version was recorded.
2569
+ */
2570
+ createdAt: string;
2571
+ /**
2572
+ * Identity id of whoever produced this version.
2573
+ */
2574
+ createdBy: string;
2575
+ }[];
2576
+ }
2577
+ interface ContentPublicationsCancelInput {
2578
+ /**
2579
+ * The publication id returned by content_publications_schedule.
2580
+ */
2581
+ id: string;
2582
+ }
2583
+ interface ContentPublicationsCancelOutput {
2584
+ /**
2585
+ * Publication id.
2586
+ */
2587
+ id: string;
2588
+ /**
2589
+ * The exact text that will be published to this channel — markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2590
+ */
2591
+ text: string;
2592
+ /**
2593
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2594
+ */
2595
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2596
+ /**
2597
+ * The post being published.
2598
+ */
2599
+ postId: string;
2600
+ /**
2601
+ * What publishing this costs in USD, computed when it was scheduled. On X a post carrying a link costs 13x a plain one. Null means the cost is not known — an auto channel refuses to dispatch it.
2602
+ */
2603
+ costUsd: (number | null);
2604
+ /**
2605
+ * How many dispatch attempts have been made.
2606
+ */
2607
+ attempts: number;
2608
+ /**
2609
+ * The channel it is published to.
2610
+ */
2611
+ channelId: string;
2612
+ /**
2613
+ * Which rate produced costUsd: "plain", "link" or "free".
2614
+ */
2615
+ costBasis: (string | null);
2616
+ /**
2617
+ * ISO-8601 creation time.
2618
+ */
2619
+ createdAt: string;
2620
+ /**
2621
+ * The most recent failure, if any.
2622
+ */
2623
+ lastError: (string | null);
2624
+ /**
2625
+ * ISO-8601 time of the last change.
2626
+ */
2627
+ updatedAt: string;
2628
+ /**
2629
+ * The network's id for the published post, once known.
2630
+ */
2631
+ externalId: (string | null);
2632
+ /**
2633
+ * URL of the published post, once known.
2634
+ */
2635
+ externalUrl: (string | null);
2636
+ /**
2637
+ * ISO-8601 time it was confirmed published.
2638
+ */
2639
+ publishedAt: (string | null);
2640
+ /**
2641
+ * ISO-8601 time the publication is due.
2642
+ */
2643
+ scheduledAt: string;
2644
+ /**
2645
+ * How many reminders have been sent for this publication.
2646
+ */
2647
+ reminderCount: number;
2648
+ /**
2649
+ * The key that makes a retry the same publication.
2650
+ */
2651
+ idempotencyKey: string;
2652
+ /**
2653
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2654
+ */
2655
+ reminderSentAt: (string | null);
2656
+ }
2657
+ interface ContentPublicationsConfirmInput {
2658
+ /**
2659
+ * The publication id returned by content_publications_schedule.
2660
+ */
2661
+ id: string;
2662
+ /**
2663
+ * The network's own id for the post, if known.
2664
+ */
2665
+ externalId?: string;
2666
+ /**
2667
+ * URL of the post the person actually published. Worth supplying — it is what identifies the post later.
2668
+ */
2669
+ externalUrl?: string;
2670
+ }
2671
+ interface ContentPublicationsConfirmOutput {
2672
+ /**
2673
+ * Publication id.
2674
+ */
2675
+ id: string;
2676
+ /**
2677
+ * The exact text that will be published to this channel — markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2678
+ */
2679
+ text: string;
2680
+ /**
2681
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2682
+ */
2683
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2684
+ /**
2685
+ * The post being published.
2686
+ */
2687
+ postId: string;
2688
+ /**
2689
+ * What publishing this costs in USD, computed when it was scheduled. On X a post carrying a link costs 13x a plain one. Null means the cost is not known — an auto channel refuses to dispatch it.
2690
+ */
2691
+ costUsd: (number | null);
2692
+ /**
2693
+ * How many dispatch attempts have been made.
2694
+ */
2695
+ attempts: number;
2696
+ /**
2697
+ * The channel it is published to.
2698
+ */
2699
+ channelId: string;
2700
+ /**
2701
+ * Which rate produced costUsd: "plain", "link" or "free".
2702
+ */
2703
+ costBasis: (string | null);
2704
+ /**
2705
+ * ISO-8601 creation time.
2706
+ */
2707
+ createdAt: string;
2708
+ /**
2709
+ * The most recent failure, if any.
2710
+ */
2711
+ lastError: (string | null);
2712
+ /**
2713
+ * ISO-8601 time of the last change.
2714
+ */
2715
+ updatedAt: string;
2716
+ /**
2717
+ * The network's id for the published post, once known.
2718
+ */
2719
+ externalId: (string | null);
2720
+ /**
2721
+ * URL of the published post, once known.
2722
+ */
2723
+ externalUrl: (string | null);
2724
+ /**
2725
+ * ISO-8601 time it was confirmed published.
2726
+ */
2727
+ publishedAt: (string | null);
2728
+ /**
2729
+ * ISO-8601 time the publication is due.
2730
+ */
2731
+ scheduledAt: string;
2732
+ /**
2733
+ * How many reminders have been sent for this publication.
2734
+ */
2735
+ reminderCount: number;
2736
+ /**
2737
+ * The key that makes a retry the same publication.
2738
+ */
2739
+ idempotencyKey: string;
2740
+ /**
2741
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2742
+ */
2743
+ reminderSentAt: (string | null);
2744
+ }
2745
+ interface ContentPublicationsGetInput {
2746
+ /**
2747
+ * The publication id returned by content_publications_schedule.
2748
+ */
2749
+ id: string;
2750
+ }
2751
+ interface ContentPublicationsGetOutput {
2752
+ /**
2753
+ * Publication id.
2754
+ */
2755
+ id: string;
2756
+ /**
2757
+ * The exact text that will be published to this channel — markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2758
+ */
2759
+ text: string;
2760
+ /**
2761
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2762
+ */
2763
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2764
+ /**
2765
+ * The post being published.
2766
+ */
2767
+ postId: string;
2768
+ /**
2769
+ * What publishing this costs in USD, computed when it was scheduled. On X a post carrying a link costs 13x a plain one. Null means the cost is not known — an auto channel refuses to dispatch it.
2770
+ */
2771
+ costUsd: (number | null);
2772
+ /**
2773
+ * How many dispatch attempts have been made.
2774
+ */
2775
+ attempts: number;
2776
+ /**
2777
+ * The channel it is published to.
2778
+ */
2779
+ channelId: string;
2780
+ /**
2781
+ * Which rate produced costUsd: "plain", "link" or "free".
2782
+ */
2783
+ costBasis: (string | null);
2784
+ /**
2785
+ * ISO-8601 creation time.
2786
+ */
2787
+ createdAt: string;
2788
+ /**
2789
+ * The most recent failure, if any.
2790
+ */
2791
+ lastError: (string | null);
2792
+ /**
2793
+ * ISO-8601 time of the last change.
2794
+ */
2795
+ updatedAt: string;
2796
+ /**
2797
+ * The network's id for the published post, once known.
2798
+ */
2799
+ externalId: (string | null);
2800
+ /**
2801
+ * URL of the published post, once known.
2802
+ */
2803
+ externalUrl: (string | null);
2804
+ /**
2805
+ * ISO-8601 time it was confirmed published.
2806
+ */
2807
+ publishedAt: (string | null);
2808
+ /**
2809
+ * ISO-8601 time the publication is due.
2810
+ */
2811
+ scheduledAt: string;
2812
+ /**
2813
+ * How many reminders have been sent for this publication.
2814
+ */
2815
+ reminderCount: number;
2816
+ /**
2817
+ * The key that makes a retry the same publication.
2818
+ */
2819
+ idempotencyKey: string;
2820
+ /**
2821
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2822
+ */
2823
+ reminderSentAt: (string | null);
2824
+ }
2825
+ interface ContentPublicationsListInput {
2826
+ /**
2827
+ * Maximum number to return (1-100, default 50).
2828
+ */
2829
+ limit?: number;
2830
+ /**
2831
+ * Return only publications in this state.
2832
+ */
2833
+ state?: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2834
+ /**
2835
+ * How many to skip, for paging.
2836
+ */
2837
+ offset?: number;
2838
+ /**
2839
+ * Return only publications of this post.
2840
+ */
2841
+ postId?: string;
2842
+ /**
2843
+ * Return only publications to this channel.
2844
+ */
2845
+ channelId?: string;
2846
+ /**
2847
+ * Return only publications scheduled at or before this ISO-8601 time.
2848
+ */
2849
+ scheduledTo?: string;
2850
+ /**
2851
+ * Return only publications scheduled at or after this ISO-8601 time.
2852
+ */
2853
+ scheduledFrom?: string;
2854
+ }
2855
+ interface ContentPublicationsListOutput {
2856
+ /**
2857
+ * Total number of matching publications, ignoring paging.
2858
+ */
2859
+ total: number;
2860
+ /**
2861
+ * The page of publications, newest slot first.
2862
+ */
2863
+ publications: {
2864
+ /**
2865
+ * Publication id.
2866
+ */
2867
+ id: string;
2868
+ /**
2869
+ * The exact text that will be published to this channel — markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2870
+ */
2871
+ text: string;
2872
+ /**
2873
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2874
+ */
2875
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2876
+ /**
2877
+ * The post being published.
2878
+ */
2879
+ postId: string;
2880
+ /**
2881
+ * What publishing this costs in USD, computed when it was scheduled. On X a post carrying a link costs 13x a plain one. Null means the cost is not known — an auto channel refuses to dispatch it.
2882
+ */
2883
+ costUsd: (number | null);
2884
+ /**
2885
+ * How many dispatch attempts have been made.
2886
+ */
2887
+ attempts: number;
2888
+ /**
2889
+ * The channel it is published to.
2890
+ */
2891
+ channelId: string;
2892
+ /**
2893
+ * Which rate produced costUsd: "plain", "link" or "free".
2894
+ */
2895
+ costBasis: (string | null);
2896
+ /**
2897
+ * ISO-8601 creation time.
2898
+ */
2899
+ createdAt: string;
2900
+ /**
2901
+ * The most recent failure, if any.
2902
+ */
2903
+ lastError: (string | null);
2904
+ /**
2905
+ * ISO-8601 time of the last change.
2906
+ */
2907
+ updatedAt: string;
2908
+ /**
2909
+ * The network's id for the published post, once known.
2910
+ */
2911
+ externalId: (string | null);
2912
+ /**
2913
+ * URL of the published post, once known.
2914
+ */
2915
+ externalUrl: (string | null);
2916
+ /**
2917
+ * ISO-8601 time it was confirmed published.
2918
+ */
2919
+ publishedAt: (string | null);
2920
+ /**
2921
+ * ISO-8601 time the publication is due.
2922
+ */
2923
+ scheduledAt: string;
2924
+ /**
2925
+ * How many reminders have been sent for this publication.
2926
+ */
2927
+ reminderCount: number;
2928
+ /**
2929
+ * The key that makes a retry the same publication.
2930
+ */
2931
+ idempotencyKey: string;
2932
+ /**
2933
+ * ISO-8601 time the most recent reminder went out, or null if none has.
2934
+ */
2935
+ reminderSentAt: (string | null);
2936
+ }[];
2937
+ }
2938
+ interface ContentPublicationsPublishInput {
2939
+ /**
2940
+ * Per-channel variant of the text, in markdown. Omit to use the post text. It is rendered to plain network text before it is stored — call content_publications_validate first if you want to see the result.
2941
+ */
2942
+ text?: string;
2943
+ /**
2944
+ * The post to publish. It must already be approved.
2945
+ */
2946
+ postId: string;
2947
+ /**
2948
+ * The channel to publish to.
2949
+ */
2950
+ channelId: string;
2951
+ /**
2952
+ * 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.
2953
+ */
2954
+ idempotencyKey?: string;
2955
+ }
2956
+ interface ContentPublicationsPublishOutput {
2957
+ /**
2958
+ * Publication id.
2959
+ */
2960
+ id: string;
2961
+ /**
2962
+ * The exact text that will be published to this channel — markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
2963
+ */
2964
+ text: string;
2965
+ /**
2966
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
2967
+ */
2968
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
2969
+ /**
2970
+ * The post being published.
2971
+ */
2972
+ postId: string;
2973
+ /**
2974
+ * What publishing this costs in USD, computed when it was scheduled. On X a post carrying a link costs 13x a plain one. Null means the cost is not known — an auto channel refuses to dispatch it.
2975
+ */
2976
+ costUsd: (number | null);
2977
+ /**
2978
+ * How many dispatch attempts have been made.
2979
+ */
2980
+ attempts: number;
2981
+ /**
2982
+ * The channel it is published to.
2983
+ */
2984
+ channelId: string;
2985
+ /**
2986
+ * Which rate produced costUsd: "plain", "link" or "free".
2987
+ */
2988
+ costBasis: (string | null);
2989
+ /**
2990
+ * ISO-8601 creation time.
2991
+ */
2992
+ createdAt: string;
2993
+ /**
2994
+ * The most recent failure, if any.
2995
+ */
2996
+ lastError: (string | null);
2997
+ /**
2998
+ * ISO-8601 time of the last change.
2999
+ */
3000
+ updatedAt: string;
3001
+ /**
3002
+ * The network's id for the published post, once known.
3003
+ */
3004
+ externalId: (string | null);
3005
+ /**
3006
+ * URL of the published post, once known.
3007
+ */
3008
+ externalUrl: (string | null);
3009
+ /**
3010
+ * ISO-8601 time it was confirmed published.
3011
+ */
3012
+ publishedAt: (string | null);
3013
+ /**
3014
+ * ISO-8601 time the publication is due.
3015
+ */
3016
+ scheduledAt: string;
3017
+ /**
3018
+ * How many reminders have been sent for this publication.
3019
+ */
3020
+ reminderCount: number;
3021
+ /**
3022
+ * The key that makes a retry the same publication.
3023
+ */
3024
+ idempotencyKey: string;
3025
+ /**
3026
+ * ISO-8601 time the most recent reminder went out, or null if none has.
3027
+ */
3028
+ reminderSentAt: (string | null);
3029
+ }
3030
+ interface ContentPublicationsRemindInput {
3031
+ /**
3032
+ * The publication id returned by content_publications_schedule.
3033
+ */
3034
+ id: string;
3035
+ }
3036
+ interface ContentPublicationsRemindOutput {
3037
+ /**
3038
+ * Publication id.
3039
+ */
3040
+ id: string;
3041
+ /**
3042
+ * The exact text that will be published to this channel — markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
3043
+ */
3044
+ text: string;
3045
+ /**
3046
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
3047
+ */
3048
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
3049
+ /**
3050
+ * The post being published.
3051
+ */
3052
+ postId: string;
3053
+ /**
3054
+ * What publishing this costs in USD, computed when it was scheduled. On X a post carrying a link costs 13x a plain one. Null means the cost is not known — an auto channel refuses to dispatch it.
3055
+ */
3056
+ costUsd: (number | null);
3057
+ /**
3058
+ * How many dispatch attempts have been made.
3059
+ */
3060
+ attempts: number;
3061
+ /**
3062
+ * The channel it is published to.
3063
+ */
3064
+ channelId: string;
3065
+ /**
3066
+ * Which rate produced costUsd: "plain", "link" or "free".
3067
+ */
3068
+ costBasis: (string | null);
3069
+ /**
3070
+ * ISO-8601 creation time.
3071
+ */
3072
+ createdAt: string;
3073
+ /**
3074
+ * The most recent failure, if any.
3075
+ */
3076
+ lastError: (string | null);
3077
+ /**
3078
+ * ISO-8601 time of the last change.
3079
+ */
3080
+ updatedAt: string;
3081
+ /**
3082
+ * The network's id for the published post, once known.
3083
+ */
3084
+ externalId: (string | null);
3085
+ /**
3086
+ * URL of the published post, once known.
3087
+ */
3088
+ externalUrl: (string | null);
3089
+ /**
3090
+ * ISO-8601 time it was confirmed published.
3091
+ */
3092
+ publishedAt: (string | null);
3093
+ /**
3094
+ * ISO-8601 time the publication is due.
3095
+ */
3096
+ scheduledAt: string;
3097
+ /**
3098
+ * How many reminders have been sent for this publication.
3099
+ */
3100
+ reminderCount: number;
3101
+ /**
3102
+ * The key that makes a retry the same publication.
3103
+ */
3104
+ idempotencyKey: string;
3105
+ /**
3106
+ * ISO-8601 time the most recent reminder went out, or null if none has.
3107
+ */
3108
+ reminderSentAt: (string | null);
3109
+ }
3110
+ interface ContentPublicationsRescheduleInput {
3111
+ /**
3112
+ * The publication id returned by content_publications_schedule.
3113
+ */
3114
+ id: string;
3115
+ /**
3116
+ * New ISO-8601 time. The publication returns to the queue.
3117
+ */
3118
+ scheduledAt: string;
3119
+ }
3120
+ interface ContentPublicationsRescheduleOutput {
3121
+ /**
3122
+ * Publication id.
3123
+ */
3124
+ id: string;
3125
+ /**
3126
+ * The exact text that will be published to this channel — markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
3127
+ */
3128
+ text: string;
3129
+ /**
3130
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
3131
+ */
3132
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
3133
+ /**
3134
+ * The post being published.
3135
+ */
3136
+ postId: string;
3137
+ /**
3138
+ * What publishing this costs in USD, computed when it was scheduled. On X a post carrying a link costs 13x a plain one. Null means the cost is not known — an auto channel refuses to dispatch it.
3139
+ */
3140
+ costUsd: (number | null);
3141
+ /**
3142
+ * How many dispatch attempts have been made.
3143
+ */
3144
+ attempts: number;
3145
+ /**
3146
+ * The channel it is published to.
3147
+ */
3148
+ channelId: string;
3149
+ /**
3150
+ * Which rate produced costUsd: "plain", "link" or "free".
3151
+ */
3152
+ costBasis: (string | null);
3153
+ /**
3154
+ * ISO-8601 creation time.
3155
+ */
3156
+ createdAt: string;
3157
+ /**
3158
+ * The most recent failure, if any.
3159
+ */
3160
+ lastError: (string | null);
3161
+ /**
3162
+ * ISO-8601 time of the last change.
3163
+ */
3164
+ updatedAt: string;
3165
+ /**
3166
+ * The network's id for the published post, once known.
3167
+ */
3168
+ externalId: (string | null);
3169
+ /**
3170
+ * URL of the published post, once known.
3171
+ */
3172
+ externalUrl: (string | null);
3173
+ /**
3174
+ * ISO-8601 time it was confirmed published.
3175
+ */
3176
+ publishedAt: (string | null);
3177
+ /**
3178
+ * ISO-8601 time the publication is due.
3179
+ */
3180
+ scheduledAt: string;
3181
+ /**
3182
+ * How many reminders have been sent for this publication.
3183
+ */
3184
+ reminderCount: number;
3185
+ /**
3186
+ * The key that makes a retry the same publication.
3187
+ */
3188
+ idempotencyKey: string;
3189
+ /**
3190
+ * ISO-8601 time the most recent reminder went out, or null if none has.
3191
+ */
3192
+ reminderSentAt: (string | null);
3193
+ }
3194
+ interface ContentPublicationsScheduleInput {
3195
+ /**
3196
+ * Per-channel variant of the text, in markdown. Omit to use the post text. It is rendered to plain network text before it is stored — call content_publications_validate first if you want to see the result.
3197
+ */
3198
+ text?: string;
3199
+ /**
3200
+ * The post to publish. It must already be approved — an unapproved text never publishes.
3201
+ */
3202
+ postId: string;
3203
+ /**
3204
+ * The channel to publish to. Get its character limit from content_channels_get first.
3205
+ */
3206
+ channelId: string;
3207
+ /**
3208
+ * ISO-8601 time to publish. In the past means "as soon as the next tick runs".
3209
+ */
3210
+ scheduledAt: string;
3211
+ /**
3212
+ * 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.
3213
+ */
3214
+ idempotencyKey?: string;
3215
+ }
3216
+ interface ContentPublicationsScheduleOutput {
3217
+ /**
3218
+ * Publication id.
3219
+ */
3220
+ id: string;
3221
+ /**
3222
+ * The exact text that will be published to this channel — markdown already flattened to plain network text at schedule time. Not the markdown source; that stays on the post.
3223
+ */
3224
+ text: string;
3225
+ /**
3226
+ * pending (queued) -> publishing (the reminder was sent; a person is publishing by hand) -> published (confirmed) | failed | cancelled.
3227
+ */
3228
+ state: ("pending" | "publishing" | "published" | "failed" | "cancelled");
3229
+ /**
3230
+ * The post being published.
3231
+ */
3232
+ postId: string;
3233
+ /**
3234
+ * What publishing this costs in USD, computed when it was scheduled. On X a post carrying a link costs 13x a plain one. Null means the cost is not known — an auto channel refuses to dispatch it.
3235
+ */
3236
+ costUsd: (number | null);
3237
+ /**
3238
+ * How many dispatch attempts have been made.
3239
+ */
3240
+ attempts: number;
3241
+ /**
3242
+ * The channel it is published to.
3243
+ */
3244
+ channelId: string;
3245
+ /**
3246
+ * Which rate produced costUsd: "plain", "link" or "free".
3247
+ */
3248
+ costBasis: (string | null);
3249
+ /**
3250
+ * ISO-8601 creation time.
3251
+ */
3252
+ createdAt: string;
3253
+ /**
3254
+ * The most recent failure, if any.
3255
+ */
3256
+ lastError: (string | null);
3257
+ /**
3258
+ * ISO-8601 time of the last change.
3259
+ */
3260
+ updatedAt: string;
3261
+ /**
3262
+ * The network's id for the published post, once known.
3263
+ */
3264
+ externalId: (string | null);
3265
+ /**
3266
+ * URL of the published post, once known.
3267
+ */
3268
+ externalUrl: (string | null);
3269
+ /**
3270
+ * ISO-8601 time it was confirmed published.
3271
+ */
3272
+ publishedAt: (string | null);
3273
+ /**
3274
+ * ISO-8601 time the publication is due.
3275
+ */
3276
+ scheduledAt: string;
3277
+ /**
3278
+ * How many reminders have been sent for this publication.
3279
+ */
3280
+ reminderCount: number;
3281
+ /**
3282
+ * The key that makes a retry the same publication.
3283
+ */
3284
+ idempotencyKey: string;
3285
+ /**
3286
+ * ISO-8601 time the most recent reminder went out, or null if none has.
3287
+ */
3288
+ reminderSentAt: (string | null);
3289
+ }
3290
+ interface ContentPublicationsValidateInput {
3291
+ /**
3292
+ * The post to check. It does not have to be approved yet — this never publishes.
3293
+ */
3294
+ postId: string;
3295
+ /**
3296
+ * One entry per channel you are considering. Check them all in one call.
3297
+ *
3298
+ * @minItems 1
3299
+ * @maxItems 20
3300
+ */
3301
+ channels: [
3302
+ {
3303
+ /**
3304
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3305
+ */
3306
+ text?: string;
3307
+ /**
3308
+ * A channel to check this post against.
3309
+ */
3310
+ channelId: string;
3311
+ }
3312
+ ] | [
3313
+ {
3314
+ /**
3315
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3316
+ */
3317
+ text?: string;
3318
+ /**
3319
+ * A channel to check this post against.
3320
+ */
3321
+ channelId: string;
3322
+ },
3323
+ {
3324
+ /**
3325
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3326
+ */
3327
+ text?: string;
3328
+ /**
3329
+ * A channel to check this post against.
3330
+ */
3331
+ channelId: string;
3332
+ }
3333
+ ] | [
3334
+ {
3335
+ /**
3336
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3337
+ */
3338
+ text?: string;
3339
+ /**
3340
+ * A channel to check this post against.
3341
+ */
3342
+ channelId: string;
3343
+ },
3344
+ {
3345
+ /**
3346
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3347
+ */
3348
+ text?: string;
3349
+ /**
3350
+ * A channel to check this post against.
3351
+ */
3352
+ channelId: string;
3353
+ },
3354
+ {
3355
+ /**
3356
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3357
+ */
3358
+ text?: string;
3359
+ /**
3360
+ * A channel to check this post against.
3361
+ */
3362
+ channelId: string;
3363
+ }
3364
+ ] | [
3365
+ {
3366
+ /**
3367
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3368
+ */
3369
+ text?: string;
3370
+ /**
3371
+ * A channel to check this post against.
3372
+ */
3373
+ channelId: string;
3374
+ },
3375
+ {
3376
+ /**
3377
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3378
+ */
3379
+ text?: string;
3380
+ /**
3381
+ * A channel to check this post against.
3382
+ */
3383
+ channelId: string;
3384
+ },
3385
+ {
3386
+ /**
3387
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3388
+ */
3389
+ text?: string;
3390
+ /**
3391
+ * A channel to check this post against.
3392
+ */
3393
+ channelId: string;
3394
+ },
3395
+ {
3396
+ /**
3397
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3398
+ */
3399
+ text?: string;
3400
+ /**
3401
+ * A channel to check this post against.
3402
+ */
3403
+ channelId: string;
3404
+ }
3405
+ ] | [
3406
+ {
3407
+ /**
3408
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3409
+ */
3410
+ text?: string;
3411
+ /**
3412
+ * A channel to check this post against.
3413
+ */
3414
+ channelId: string;
3415
+ },
3416
+ {
3417
+ /**
3418
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3419
+ */
3420
+ text?: string;
3421
+ /**
3422
+ * A channel to check this post against.
3423
+ */
3424
+ channelId: string;
3425
+ },
3426
+ {
3427
+ /**
3428
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3429
+ */
3430
+ text?: string;
3431
+ /**
3432
+ * A channel to check this post against.
3433
+ */
3434
+ channelId: string;
3435
+ },
3436
+ {
3437
+ /**
3438
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3439
+ */
3440
+ text?: string;
3441
+ /**
3442
+ * A channel to check this post against.
3443
+ */
3444
+ channelId: string;
3445
+ },
3446
+ {
3447
+ /**
3448
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3449
+ */
3450
+ text?: string;
3451
+ /**
3452
+ * A channel to check this post against.
3453
+ */
3454
+ channelId: string;
3455
+ }
3456
+ ] | [
3457
+ {
3458
+ /**
3459
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3460
+ */
3461
+ text?: string;
3462
+ /**
3463
+ * A channel to check this post against.
3464
+ */
3465
+ channelId: string;
3466
+ },
3467
+ {
3468
+ /**
3469
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3470
+ */
3471
+ text?: string;
3472
+ /**
3473
+ * A channel to check this post against.
3474
+ */
3475
+ channelId: string;
3476
+ },
3477
+ {
3478
+ /**
3479
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3480
+ */
3481
+ text?: string;
3482
+ /**
3483
+ * A channel to check this post against.
3484
+ */
3485
+ channelId: string;
3486
+ },
3487
+ {
3488
+ /**
3489
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3490
+ */
3491
+ text?: string;
3492
+ /**
3493
+ * A channel to check this post against.
3494
+ */
3495
+ channelId: string;
3496
+ },
3497
+ {
3498
+ /**
3499
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3500
+ */
3501
+ text?: string;
3502
+ /**
3503
+ * A channel to check this post against.
3504
+ */
3505
+ channelId: string;
3506
+ },
3507
+ {
3508
+ /**
3509
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3510
+ */
3511
+ text?: string;
3512
+ /**
3513
+ * A channel to check this post against.
3514
+ */
3515
+ channelId: string;
3516
+ }
3517
+ ] | [
3518
+ {
3519
+ /**
3520
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3521
+ */
3522
+ text?: string;
3523
+ /**
3524
+ * A channel to check this post against.
3525
+ */
3526
+ channelId: string;
3527
+ },
3528
+ {
3529
+ /**
3530
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3531
+ */
3532
+ text?: string;
3533
+ /**
3534
+ * A channel to check this post against.
3535
+ */
3536
+ channelId: string;
3537
+ },
3538
+ {
3539
+ /**
3540
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3541
+ */
3542
+ text?: string;
3543
+ /**
3544
+ * A channel to check this post against.
3545
+ */
3546
+ channelId: string;
3547
+ },
3548
+ {
3549
+ /**
3550
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3551
+ */
3552
+ text?: string;
3553
+ /**
3554
+ * A channel to check this post against.
3555
+ */
3556
+ channelId: string;
3557
+ },
3558
+ {
3559
+ /**
3560
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3561
+ */
3562
+ text?: string;
3563
+ /**
3564
+ * A channel to check this post against.
3565
+ */
3566
+ channelId: string;
3567
+ },
3568
+ {
3569
+ /**
3570
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3571
+ */
3572
+ text?: string;
3573
+ /**
3574
+ * A channel to check this post against.
3575
+ */
3576
+ channelId: string;
3577
+ },
3578
+ {
3579
+ /**
3580
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3581
+ */
3582
+ text?: string;
3583
+ /**
3584
+ * A channel to check this post against.
3585
+ */
3586
+ channelId: string;
3587
+ }
3588
+ ] | [
3589
+ {
3590
+ /**
3591
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3592
+ */
3593
+ text?: string;
3594
+ /**
3595
+ * A channel to check this post against.
3596
+ */
3597
+ channelId: string;
3598
+ },
3599
+ {
3600
+ /**
3601
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3602
+ */
3603
+ text?: string;
3604
+ /**
3605
+ * A channel to check this post against.
3606
+ */
3607
+ channelId: string;
3608
+ },
3609
+ {
3610
+ /**
3611
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3612
+ */
3613
+ text?: string;
3614
+ /**
3615
+ * A channel to check this post against.
3616
+ */
3617
+ channelId: string;
3618
+ },
3619
+ {
3620
+ /**
3621
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3622
+ */
3623
+ text?: string;
3624
+ /**
3625
+ * A channel to check this post against.
3626
+ */
3627
+ channelId: string;
3628
+ },
3629
+ {
3630
+ /**
3631
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3632
+ */
3633
+ text?: string;
3634
+ /**
3635
+ * A channel to check this post against.
3636
+ */
3637
+ channelId: string;
3638
+ },
3639
+ {
3640
+ /**
3641
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3642
+ */
3643
+ text?: string;
3644
+ /**
3645
+ * A channel to check this post against.
3646
+ */
3647
+ channelId: string;
3648
+ },
3649
+ {
3650
+ /**
3651
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3652
+ */
3653
+ text?: string;
3654
+ /**
3655
+ * A channel to check this post against.
3656
+ */
3657
+ channelId: string;
3658
+ },
3659
+ {
3660
+ /**
3661
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3662
+ */
3663
+ text?: string;
3664
+ /**
3665
+ * A channel to check this post against.
3666
+ */
3667
+ channelId: string;
3668
+ }
3669
+ ] | [
3670
+ {
3671
+ /**
3672
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3673
+ */
3674
+ text?: string;
3675
+ /**
3676
+ * A channel to check this post against.
3677
+ */
3678
+ channelId: string;
3679
+ },
3680
+ {
3681
+ /**
3682
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3683
+ */
3684
+ text?: string;
3685
+ /**
3686
+ * A channel to check this post against.
3687
+ */
3688
+ channelId: string;
3689
+ },
3690
+ {
3691
+ /**
3692
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3693
+ */
3694
+ text?: string;
3695
+ /**
3696
+ * A channel to check this post against.
3697
+ */
3698
+ channelId: string;
3699
+ },
3700
+ {
3701
+ /**
3702
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3703
+ */
3704
+ text?: string;
3705
+ /**
3706
+ * A channel to check this post against.
3707
+ */
3708
+ channelId: string;
3709
+ },
3710
+ {
3711
+ /**
3712
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3713
+ */
3714
+ text?: string;
3715
+ /**
3716
+ * A channel to check this post against.
3717
+ */
3718
+ channelId: string;
3719
+ },
3720
+ {
3721
+ /**
3722
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3723
+ */
3724
+ text?: string;
3725
+ /**
3726
+ * A channel to check this post against.
3727
+ */
3728
+ channelId: string;
3729
+ },
3730
+ {
3731
+ /**
3732
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3733
+ */
3734
+ text?: string;
3735
+ /**
3736
+ * A channel to check this post against.
3737
+ */
3738
+ channelId: string;
3739
+ },
3740
+ {
3741
+ /**
3742
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3743
+ */
3744
+ text?: string;
3745
+ /**
3746
+ * A channel to check this post against.
3747
+ */
3748
+ channelId: string;
3749
+ },
3750
+ {
3751
+ /**
3752
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3753
+ */
3754
+ text?: string;
3755
+ /**
3756
+ * A channel to check this post against.
3757
+ */
3758
+ channelId: string;
3759
+ }
3760
+ ] | [
3761
+ {
3762
+ /**
3763
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3764
+ */
3765
+ text?: string;
3766
+ /**
3767
+ * A channel to check this post against.
3768
+ */
3769
+ channelId: string;
3770
+ },
3771
+ {
3772
+ /**
3773
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3774
+ */
3775
+ text?: string;
3776
+ /**
3777
+ * A channel to check this post against.
3778
+ */
3779
+ channelId: string;
3780
+ },
3781
+ {
3782
+ /**
3783
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3784
+ */
3785
+ text?: string;
3786
+ /**
3787
+ * A channel to check this post against.
3788
+ */
3789
+ channelId: string;
3790
+ },
3791
+ {
3792
+ /**
3793
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3794
+ */
3795
+ text?: string;
3796
+ /**
3797
+ * A channel to check this post against.
3798
+ */
3799
+ channelId: string;
3800
+ },
3801
+ {
3802
+ /**
3803
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3804
+ */
3805
+ text?: string;
3806
+ /**
3807
+ * A channel to check this post against.
3808
+ */
3809
+ channelId: string;
3810
+ },
3811
+ {
3812
+ /**
3813
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3814
+ */
3815
+ text?: string;
3816
+ /**
3817
+ * A channel to check this post against.
3818
+ */
3819
+ channelId: string;
3820
+ },
3821
+ {
3822
+ /**
3823
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3824
+ */
3825
+ text?: string;
3826
+ /**
3827
+ * A channel to check this post against.
3828
+ */
3829
+ channelId: string;
3830
+ },
3831
+ {
3832
+ /**
3833
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3834
+ */
3835
+ text?: string;
3836
+ /**
3837
+ * A channel to check this post against.
3838
+ */
3839
+ channelId: string;
3840
+ },
3841
+ {
3842
+ /**
3843
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3844
+ */
3845
+ text?: string;
3846
+ /**
3847
+ * A channel to check this post against.
3848
+ */
3849
+ channelId: string;
3850
+ },
3851
+ {
3852
+ /**
3853
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3854
+ */
3855
+ text?: string;
3856
+ /**
3857
+ * A channel to check this post against.
3858
+ */
3859
+ channelId: string;
3860
+ }
3861
+ ] | [
3862
+ {
3863
+ /**
3864
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3865
+ */
3866
+ text?: string;
3867
+ /**
3868
+ * A channel to check this post against.
3869
+ */
3870
+ channelId: string;
3871
+ },
3872
+ {
3873
+ /**
3874
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3875
+ */
3876
+ text?: string;
3877
+ /**
3878
+ * A channel to check this post against.
3879
+ */
3880
+ channelId: string;
3881
+ },
3882
+ {
3883
+ /**
3884
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3885
+ */
3886
+ text?: string;
3887
+ /**
3888
+ * A channel to check this post against.
3889
+ */
3890
+ channelId: string;
3891
+ },
3892
+ {
3893
+ /**
3894
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3895
+ */
3896
+ text?: string;
3897
+ /**
3898
+ * A channel to check this post against.
3899
+ */
3900
+ channelId: string;
3901
+ },
3902
+ {
3903
+ /**
3904
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3905
+ */
3906
+ text?: string;
3907
+ /**
3908
+ * A channel to check this post against.
3909
+ */
3910
+ channelId: string;
3911
+ },
3912
+ {
3913
+ /**
3914
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3915
+ */
3916
+ text?: string;
3917
+ /**
3918
+ * A channel to check this post against.
3919
+ */
3920
+ channelId: string;
3921
+ },
3922
+ {
3923
+ /**
3924
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3925
+ */
3926
+ text?: string;
3927
+ /**
3928
+ * A channel to check this post against.
3929
+ */
3930
+ channelId: string;
3931
+ },
3932
+ {
3933
+ /**
3934
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3935
+ */
3936
+ text?: string;
3937
+ /**
3938
+ * A channel to check this post against.
3939
+ */
3940
+ channelId: string;
3941
+ },
3942
+ {
3943
+ /**
3944
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3945
+ */
3946
+ text?: string;
3947
+ /**
3948
+ * A channel to check this post against.
3949
+ */
3950
+ channelId: string;
3951
+ },
3952
+ {
3953
+ /**
3954
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3955
+ */
3956
+ text?: string;
3957
+ /**
3958
+ * A channel to check this post against.
3959
+ */
3960
+ channelId: string;
3961
+ },
3962
+ {
3963
+ /**
3964
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3965
+ */
3966
+ text?: string;
3967
+ /**
3968
+ * A channel to check this post against.
3969
+ */
3970
+ channelId: string;
3971
+ }
3972
+ ] | [
3973
+ {
3974
+ /**
3975
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3976
+ */
3977
+ text?: string;
3978
+ /**
3979
+ * A channel to check this post against.
3980
+ */
3981
+ channelId: string;
3982
+ },
3983
+ {
3984
+ /**
3985
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3986
+ */
3987
+ text?: string;
3988
+ /**
3989
+ * A channel to check this post against.
3990
+ */
3991
+ channelId: string;
3992
+ },
3993
+ {
3994
+ /**
3995
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
3996
+ */
3997
+ text?: string;
3998
+ /**
3999
+ * A channel to check this post against.
4000
+ */
4001
+ channelId: string;
4002
+ },
4003
+ {
4004
+ /**
4005
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4006
+ */
4007
+ text?: string;
4008
+ /**
4009
+ * A channel to check this post against.
4010
+ */
4011
+ channelId: string;
4012
+ },
4013
+ {
4014
+ /**
4015
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4016
+ */
4017
+ text?: string;
4018
+ /**
4019
+ * A channel to check this post against.
4020
+ */
4021
+ channelId: string;
4022
+ },
4023
+ {
4024
+ /**
4025
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4026
+ */
4027
+ text?: string;
4028
+ /**
4029
+ * A channel to check this post against.
4030
+ */
4031
+ channelId: string;
4032
+ },
4033
+ {
4034
+ /**
4035
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4036
+ */
4037
+ text?: string;
4038
+ /**
4039
+ * A channel to check this post against.
4040
+ */
4041
+ channelId: string;
4042
+ },
4043
+ {
4044
+ /**
4045
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4046
+ */
4047
+ text?: string;
4048
+ /**
4049
+ * A channel to check this post against.
4050
+ */
4051
+ channelId: string;
4052
+ },
4053
+ {
4054
+ /**
4055
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4056
+ */
4057
+ text?: string;
4058
+ /**
4059
+ * A channel to check this post against.
4060
+ */
4061
+ channelId: string;
4062
+ },
4063
+ {
4064
+ /**
4065
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4066
+ */
4067
+ text?: string;
4068
+ /**
4069
+ * A channel to check this post against.
4070
+ */
4071
+ channelId: string;
4072
+ },
4073
+ {
4074
+ /**
4075
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4076
+ */
4077
+ text?: string;
4078
+ /**
4079
+ * A channel to check this post against.
4080
+ */
4081
+ channelId: string;
4082
+ },
4083
+ {
4084
+ /**
4085
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4086
+ */
4087
+ text?: string;
4088
+ /**
4089
+ * A channel to check this post against.
4090
+ */
4091
+ channelId: string;
4092
+ }
4093
+ ] | [
4094
+ {
4095
+ /**
4096
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4097
+ */
4098
+ text?: string;
4099
+ /**
4100
+ * A channel to check this post against.
4101
+ */
4102
+ channelId: string;
4103
+ },
4104
+ {
4105
+ /**
4106
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4107
+ */
4108
+ text?: string;
4109
+ /**
4110
+ * A channel to check this post against.
4111
+ */
4112
+ channelId: string;
4113
+ },
4114
+ {
4115
+ /**
4116
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4117
+ */
4118
+ text?: string;
4119
+ /**
4120
+ * A channel to check this post against.
4121
+ */
4122
+ channelId: string;
4123
+ },
4124
+ {
4125
+ /**
4126
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4127
+ */
4128
+ text?: string;
4129
+ /**
4130
+ * A channel to check this post against.
4131
+ */
4132
+ channelId: string;
4133
+ },
4134
+ {
4135
+ /**
4136
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4137
+ */
4138
+ text?: string;
4139
+ /**
4140
+ * A channel to check this post against.
4141
+ */
4142
+ channelId: string;
4143
+ },
4144
+ {
4145
+ /**
4146
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4147
+ */
4148
+ text?: string;
4149
+ /**
4150
+ * A channel to check this post against.
4151
+ */
4152
+ channelId: string;
4153
+ },
4154
+ {
4155
+ /**
4156
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4157
+ */
4158
+ text?: string;
4159
+ /**
4160
+ * A channel to check this post against.
4161
+ */
4162
+ channelId: string;
4163
+ },
4164
+ {
4165
+ /**
4166
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4167
+ */
4168
+ text?: string;
4169
+ /**
4170
+ * A channel to check this post against.
4171
+ */
4172
+ channelId: string;
4173
+ },
4174
+ {
4175
+ /**
4176
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4177
+ */
4178
+ text?: string;
4179
+ /**
4180
+ * A channel to check this post against.
4181
+ */
4182
+ channelId: string;
4183
+ },
4184
+ {
4185
+ /**
4186
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4187
+ */
4188
+ text?: string;
4189
+ /**
4190
+ * A channel to check this post against.
4191
+ */
4192
+ channelId: string;
4193
+ },
4194
+ {
4195
+ /**
4196
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4197
+ */
4198
+ text?: string;
4199
+ /**
4200
+ * A channel to check this post against.
4201
+ */
4202
+ channelId: string;
4203
+ },
4204
+ {
4205
+ /**
4206
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4207
+ */
4208
+ text?: string;
4209
+ /**
4210
+ * A channel to check this post against.
4211
+ */
4212
+ channelId: string;
4213
+ },
4214
+ {
4215
+ /**
4216
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4217
+ */
4218
+ text?: string;
4219
+ /**
4220
+ * A channel to check this post against.
4221
+ */
4222
+ channelId: string;
4223
+ }
4224
+ ] | [
4225
+ {
4226
+ /**
4227
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4228
+ */
4229
+ text?: string;
4230
+ /**
4231
+ * A channel to check this post against.
4232
+ */
4233
+ channelId: string;
4234
+ },
4235
+ {
4236
+ /**
4237
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4238
+ */
4239
+ text?: string;
4240
+ /**
4241
+ * A channel to check this post against.
4242
+ */
4243
+ channelId: string;
4244
+ },
4245
+ {
4246
+ /**
4247
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4248
+ */
4249
+ text?: string;
4250
+ /**
4251
+ * A channel to check this post against.
4252
+ */
4253
+ channelId: string;
4254
+ },
4255
+ {
4256
+ /**
4257
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4258
+ */
4259
+ text?: string;
4260
+ /**
4261
+ * A channel to check this post against.
4262
+ */
4263
+ channelId: string;
4264
+ },
4265
+ {
4266
+ /**
4267
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4268
+ */
4269
+ text?: string;
4270
+ /**
4271
+ * A channel to check this post against.
4272
+ */
4273
+ channelId: string;
4274
+ },
4275
+ {
4276
+ /**
4277
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4278
+ */
4279
+ text?: string;
4280
+ /**
4281
+ * A channel to check this post against.
4282
+ */
4283
+ channelId: string;
4284
+ },
4285
+ {
4286
+ /**
4287
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4288
+ */
4289
+ text?: string;
4290
+ /**
4291
+ * A channel to check this post against.
4292
+ */
4293
+ channelId: string;
4294
+ },
4295
+ {
4296
+ /**
4297
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4298
+ */
4299
+ text?: string;
4300
+ /**
4301
+ * A channel to check this post against.
4302
+ */
4303
+ channelId: string;
4304
+ },
4305
+ {
4306
+ /**
4307
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4308
+ */
4309
+ text?: string;
4310
+ /**
4311
+ * A channel to check this post against.
4312
+ */
4313
+ channelId: string;
4314
+ },
4315
+ {
4316
+ /**
4317
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4318
+ */
4319
+ text?: string;
4320
+ /**
4321
+ * A channel to check this post against.
4322
+ */
4323
+ channelId: string;
4324
+ },
4325
+ {
4326
+ /**
4327
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4328
+ */
4329
+ text?: string;
4330
+ /**
4331
+ * A channel to check this post against.
4332
+ */
4333
+ channelId: string;
4334
+ },
4335
+ {
4336
+ /**
4337
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4338
+ */
4339
+ text?: string;
4340
+ /**
4341
+ * A channel to check this post against.
4342
+ */
4343
+ channelId: string;
4344
+ },
4345
+ {
4346
+ /**
4347
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4348
+ */
4349
+ text?: string;
4350
+ /**
4351
+ * A channel to check this post against.
4352
+ */
4353
+ channelId: string;
4354
+ },
4355
+ {
4356
+ /**
4357
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4358
+ */
4359
+ text?: string;
4360
+ /**
4361
+ * A channel to check this post against.
4362
+ */
4363
+ channelId: string;
4364
+ }
4365
+ ] | [
4366
+ {
4367
+ /**
4368
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4369
+ */
4370
+ text?: string;
4371
+ /**
4372
+ * A channel to check this post against.
4373
+ */
4374
+ channelId: string;
4375
+ },
4376
+ {
4377
+ /**
4378
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4379
+ */
4380
+ text?: string;
4381
+ /**
4382
+ * A channel to check this post against.
4383
+ */
4384
+ channelId: string;
4385
+ },
4386
+ {
4387
+ /**
4388
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4389
+ */
4390
+ text?: string;
4391
+ /**
4392
+ * A channel to check this post against.
4393
+ */
4394
+ channelId: string;
4395
+ },
4396
+ {
4397
+ /**
4398
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4399
+ */
4400
+ text?: string;
4401
+ /**
4402
+ * A channel to check this post against.
4403
+ */
4404
+ channelId: string;
4405
+ },
4406
+ {
4407
+ /**
4408
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4409
+ */
4410
+ text?: string;
4411
+ /**
4412
+ * A channel to check this post against.
4413
+ */
4414
+ channelId: string;
4415
+ },
4416
+ {
4417
+ /**
4418
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4419
+ */
4420
+ text?: string;
4421
+ /**
4422
+ * A channel to check this post against.
4423
+ */
4424
+ channelId: string;
4425
+ },
4426
+ {
4427
+ /**
4428
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4429
+ */
4430
+ text?: string;
4431
+ /**
4432
+ * A channel to check this post against.
4433
+ */
4434
+ channelId: string;
4435
+ },
4436
+ {
4437
+ /**
4438
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4439
+ */
4440
+ text?: string;
4441
+ /**
4442
+ * A channel to check this post against.
4443
+ */
4444
+ channelId: string;
4445
+ },
4446
+ {
4447
+ /**
4448
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4449
+ */
4450
+ text?: string;
4451
+ /**
4452
+ * A channel to check this post against.
4453
+ */
4454
+ channelId: string;
4455
+ },
4456
+ {
4457
+ /**
4458
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4459
+ */
4460
+ text?: string;
4461
+ /**
4462
+ * A channel to check this post against.
4463
+ */
4464
+ channelId: string;
4465
+ },
4466
+ {
4467
+ /**
4468
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4469
+ */
4470
+ text?: string;
4471
+ /**
4472
+ * A channel to check this post against.
4473
+ */
4474
+ channelId: string;
4475
+ },
4476
+ {
4477
+ /**
4478
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4479
+ */
4480
+ text?: string;
4481
+ /**
4482
+ * A channel to check this post against.
4483
+ */
4484
+ channelId: string;
4485
+ },
4486
+ {
4487
+ /**
4488
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4489
+ */
4490
+ text?: string;
4491
+ /**
4492
+ * A channel to check this post against.
4493
+ */
4494
+ channelId: string;
4495
+ },
4496
+ {
4497
+ /**
4498
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4499
+ */
4500
+ text?: string;
4501
+ /**
4502
+ * A channel to check this post against.
4503
+ */
4504
+ channelId: string;
4505
+ },
4506
+ {
4507
+ /**
4508
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4509
+ */
4510
+ text?: string;
4511
+ /**
4512
+ * A channel to check this post against.
4513
+ */
4514
+ channelId: string;
4515
+ }
4516
+ ] | [
4517
+ {
4518
+ /**
4519
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4520
+ */
4521
+ text?: string;
4522
+ /**
4523
+ * A channel to check this post against.
4524
+ */
4525
+ channelId: string;
4526
+ },
4527
+ {
4528
+ /**
4529
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4530
+ */
4531
+ text?: string;
4532
+ /**
4533
+ * A channel to check this post against.
4534
+ */
4535
+ channelId: string;
4536
+ },
4537
+ {
4538
+ /**
4539
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4540
+ */
4541
+ text?: string;
4542
+ /**
4543
+ * A channel to check this post against.
4544
+ */
4545
+ channelId: string;
4546
+ },
4547
+ {
4548
+ /**
4549
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4550
+ */
4551
+ text?: string;
4552
+ /**
4553
+ * A channel to check this post against.
4554
+ */
4555
+ channelId: string;
4556
+ },
4557
+ {
4558
+ /**
4559
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4560
+ */
4561
+ text?: string;
4562
+ /**
4563
+ * A channel to check this post against.
4564
+ */
4565
+ channelId: string;
4566
+ },
4567
+ {
4568
+ /**
4569
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4570
+ */
4571
+ text?: string;
4572
+ /**
4573
+ * A channel to check this post against.
4574
+ */
4575
+ channelId: string;
4576
+ },
4577
+ {
4578
+ /**
4579
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4580
+ */
4581
+ text?: string;
4582
+ /**
4583
+ * A channel to check this post against.
4584
+ */
4585
+ channelId: string;
4586
+ },
4587
+ {
4588
+ /**
4589
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4590
+ */
4591
+ text?: string;
4592
+ /**
4593
+ * A channel to check this post against.
4594
+ */
4595
+ channelId: string;
4596
+ },
4597
+ {
4598
+ /**
4599
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4600
+ */
4601
+ text?: string;
4602
+ /**
4603
+ * A channel to check this post against.
4604
+ */
4605
+ channelId: string;
4606
+ },
4607
+ {
4608
+ /**
4609
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4610
+ */
4611
+ text?: string;
4612
+ /**
4613
+ * A channel to check this post against.
4614
+ */
4615
+ channelId: string;
4616
+ },
4617
+ {
4618
+ /**
4619
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4620
+ */
4621
+ text?: string;
4622
+ /**
4623
+ * A channel to check this post against.
4624
+ */
4625
+ channelId: string;
4626
+ },
4627
+ {
4628
+ /**
4629
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4630
+ */
4631
+ text?: string;
4632
+ /**
4633
+ * A channel to check this post against.
4634
+ */
4635
+ channelId: string;
4636
+ },
4637
+ {
4638
+ /**
4639
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4640
+ */
4641
+ text?: string;
4642
+ /**
4643
+ * A channel to check this post against.
4644
+ */
4645
+ channelId: string;
4646
+ },
4647
+ {
4648
+ /**
4649
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4650
+ */
4651
+ text?: string;
4652
+ /**
4653
+ * A channel to check this post against.
4654
+ */
4655
+ channelId: string;
4656
+ },
4657
+ {
4658
+ /**
4659
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4660
+ */
4661
+ text?: string;
4662
+ /**
4663
+ * A channel to check this post against.
4664
+ */
4665
+ channelId: string;
4666
+ },
4667
+ {
4668
+ /**
4669
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4670
+ */
4671
+ text?: string;
4672
+ /**
4673
+ * A channel to check this post against.
4674
+ */
4675
+ channelId: string;
4676
+ }
4677
+ ] | [
4678
+ {
4679
+ /**
4680
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4681
+ */
4682
+ text?: string;
4683
+ /**
4684
+ * A channel to check this post against.
4685
+ */
4686
+ channelId: string;
4687
+ },
4688
+ {
4689
+ /**
4690
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4691
+ */
4692
+ text?: string;
4693
+ /**
4694
+ * A channel to check this post against.
4695
+ */
4696
+ channelId: string;
4697
+ },
4698
+ {
4699
+ /**
4700
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4701
+ */
4702
+ text?: string;
4703
+ /**
4704
+ * A channel to check this post against.
4705
+ */
4706
+ channelId: string;
4707
+ },
4708
+ {
4709
+ /**
4710
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4711
+ */
4712
+ text?: string;
4713
+ /**
4714
+ * A channel to check this post against.
4715
+ */
4716
+ channelId: string;
4717
+ },
4718
+ {
4719
+ /**
4720
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4721
+ */
4722
+ text?: string;
4723
+ /**
4724
+ * A channel to check this post against.
4725
+ */
4726
+ channelId: string;
4727
+ },
4728
+ {
4729
+ /**
4730
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4731
+ */
4732
+ text?: string;
4733
+ /**
4734
+ * A channel to check this post against.
4735
+ */
4736
+ channelId: string;
4737
+ },
4738
+ {
4739
+ /**
4740
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4741
+ */
4742
+ text?: string;
4743
+ /**
4744
+ * A channel to check this post against.
4745
+ */
4746
+ channelId: string;
4747
+ },
4748
+ {
4749
+ /**
4750
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4751
+ */
4752
+ text?: string;
4753
+ /**
4754
+ * A channel to check this post against.
4755
+ */
4756
+ channelId: string;
4757
+ },
4758
+ {
4759
+ /**
4760
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4761
+ */
4762
+ text?: string;
4763
+ /**
4764
+ * A channel to check this post against.
4765
+ */
4766
+ channelId: string;
4767
+ },
4768
+ {
4769
+ /**
4770
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4771
+ */
4772
+ text?: string;
4773
+ /**
4774
+ * A channel to check this post against.
4775
+ */
4776
+ channelId: string;
4777
+ },
4778
+ {
4779
+ /**
4780
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4781
+ */
4782
+ text?: string;
4783
+ /**
4784
+ * A channel to check this post against.
4785
+ */
4786
+ channelId: string;
4787
+ },
4788
+ {
4789
+ /**
4790
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4791
+ */
4792
+ text?: string;
4793
+ /**
4794
+ * A channel to check this post against.
4795
+ */
4796
+ channelId: string;
4797
+ },
4798
+ {
4799
+ /**
4800
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4801
+ */
4802
+ text?: string;
4803
+ /**
4804
+ * A channel to check this post against.
4805
+ */
4806
+ channelId: string;
4807
+ },
4808
+ {
4809
+ /**
4810
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4811
+ */
4812
+ text?: string;
4813
+ /**
4814
+ * A channel to check this post against.
4815
+ */
4816
+ channelId: string;
4817
+ },
4818
+ {
4819
+ /**
4820
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4821
+ */
4822
+ text?: string;
4823
+ /**
4824
+ * A channel to check this post against.
4825
+ */
4826
+ channelId: string;
4827
+ },
4828
+ {
4829
+ /**
4830
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4831
+ */
4832
+ text?: string;
4833
+ /**
4834
+ * A channel to check this post against.
4835
+ */
4836
+ channelId: string;
4837
+ },
4838
+ {
4839
+ /**
4840
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4841
+ */
4842
+ text?: string;
4843
+ /**
4844
+ * A channel to check this post against.
4845
+ */
4846
+ channelId: string;
4847
+ }
4848
+ ] | [
4849
+ {
4850
+ /**
4851
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4852
+ */
4853
+ text?: string;
4854
+ /**
4855
+ * A channel to check this post against.
4856
+ */
4857
+ channelId: string;
4858
+ },
4859
+ {
4860
+ /**
4861
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4862
+ */
4863
+ text?: string;
4864
+ /**
4865
+ * A channel to check this post against.
4866
+ */
4867
+ channelId: string;
4868
+ },
4869
+ {
4870
+ /**
4871
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4872
+ */
4873
+ text?: string;
4874
+ /**
4875
+ * A channel to check this post against.
4876
+ */
4877
+ channelId: string;
4878
+ },
4879
+ {
4880
+ /**
4881
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4882
+ */
4883
+ text?: string;
4884
+ /**
4885
+ * A channel to check this post against.
4886
+ */
4887
+ channelId: string;
4888
+ },
4889
+ {
4890
+ /**
4891
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4892
+ */
4893
+ text?: string;
4894
+ /**
4895
+ * A channel to check this post against.
4896
+ */
4897
+ channelId: string;
4898
+ },
4899
+ {
4900
+ /**
4901
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4902
+ */
4903
+ text?: string;
4904
+ /**
4905
+ * A channel to check this post against.
4906
+ */
4907
+ channelId: string;
4908
+ },
4909
+ {
4910
+ /**
4911
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4912
+ */
4913
+ text?: string;
4914
+ /**
4915
+ * A channel to check this post against.
4916
+ */
4917
+ channelId: string;
4918
+ },
4919
+ {
4920
+ /**
4921
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4922
+ */
4923
+ text?: string;
4924
+ /**
4925
+ * A channel to check this post against.
4926
+ */
4927
+ channelId: string;
4928
+ },
4929
+ {
4930
+ /**
4931
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4932
+ */
4933
+ text?: string;
4934
+ /**
4935
+ * A channel to check this post against.
4936
+ */
4937
+ channelId: string;
4938
+ },
4939
+ {
4940
+ /**
4941
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4942
+ */
4943
+ text?: string;
4944
+ /**
4945
+ * A channel to check this post against.
4946
+ */
4947
+ channelId: string;
4948
+ },
4949
+ {
4950
+ /**
4951
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4952
+ */
4953
+ text?: string;
4954
+ /**
4955
+ * A channel to check this post against.
4956
+ */
4957
+ channelId: string;
4958
+ },
4959
+ {
4960
+ /**
4961
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4962
+ */
4963
+ text?: string;
4964
+ /**
4965
+ * A channel to check this post against.
4966
+ */
4967
+ channelId: string;
4968
+ },
4969
+ {
4970
+ /**
4971
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4972
+ */
4973
+ text?: string;
4974
+ /**
4975
+ * A channel to check this post against.
4976
+ */
4977
+ channelId: string;
4978
+ },
4979
+ {
4980
+ /**
4981
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4982
+ */
4983
+ text?: string;
4984
+ /**
4985
+ * A channel to check this post against.
4986
+ */
4987
+ channelId: string;
4988
+ },
4989
+ {
4990
+ /**
4991
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
4992
+ */
4993
+ text?: string;
4994
+ /**
4995
+ * A channel to check this post against.
4996
+ */
4997
+ channelId: string;
4998
+ },
4999
+ {
5000
+ /**
5001
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5002
+ */
5003
+ text?: string;
5004
+ /**
5005
+ * A channel to check this post against.
5006
+ */
5007
+ channelId: string;
5008
+ },
5009
+ {
5010
+ /**
5011
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5012
+ */
5013
+ text?: string;
5014
+ /**
5015
+ * A channel to check this post against.
5016
+ */
5017
+ channelId: string;
5018
+ },
5019
+ {
5020
+ /**
5021
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5022
+ */
5023
+ text?: string;
5024
+ /**
5025
+ * A channel to check this post against.
5026
+ */
5027
+ channelId: string;
5028
+ }
5029
+ ] | [
5030
+ {
5031
+ /**
5032
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5033
+ */
5034
+ text?: string;
5035
+ /**
5036
+ * A channel to check this post against.
5037
+ */
5038
+ channelId: string;
5039
+ },
5040
+ {
5041
+ /**
5042
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5043
+ */
5044
+ text?: string;
5045
+ /**
5046
+ * A channel to check this post against.
5047
+ */
5048
+ channelId: string;
5049
+ },
5050
+ {
5051
+ /**
5052
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5053
+ */
5054
+ text?: string;
5055
+ /**
5056
+ * A channel to check this post against.
5057
+ */
5058
+ channelId: string;
5059
+ },
5060
+ {
5061
+ /**
5062
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5063
+ */
5064
+ text?: string;
5065
+ /**
5066
+ * A channel to check this post against.
5067
+ */
5068
+ channelId: string;
5069
+ },
5070
+ {
5071
+ /**
5072
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5073
+ */
5074
+ text?: string;
5075
+ /**
5076
+ * A channel to check this post against.
5077
+ */
5078
+ channelId: string;
5079
+ },
5080
+ {
5081
+ /**
5082
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5083
+ */
5084
+ text?: string;
5085
+ /**
5086
+ * A channel to check this post against.
5087
+ */
5088
+ channelId: string;
5089
+ },
5090
+ {
5091
+ /**
5092
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5093
+ */
5094
+ text?: string;
5095
+ /**
5096
+ * A channel to check this post against.
5097
+ */
5098
+ channelId: string;
5099
+ },
5100
+ {
5101
+ /**
5102
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5103
+ */
5104
+ text?: string;
5105
+ /**
5106
+ * A channel to check this post against.
5107
+ */
5108
+ channelId: string;
5109
+ },
5110
+ {
5111
+ /**
5112
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5113
+ */
5114
+ text?: string;
5115
+ /**
5116
+ * A channel to check this post against.
5117
+ */
5118
+ channelId: string;
5119
+ },
5120
+ {
5121
+ /**
5122
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5123
+ */
5124
+ text?: string;
5125
+ /**
5126
+ * A channel to check this post against.
5127
+ */
5128
+ channelId: string;
5129
+ },
5130
+ {
5131
+ /**
5132
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5133
+ */
5134
+ text?: string;
5135
+ /**
5136
+ * A channel to check this post against.
5137
+ */
5138
+ channelId: string;
5139
+ },
5140
+ {
5141
+ /**
5142
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5143
+ */
5144
+ text?: string;
5145
+ /**
5146
+ * A channel to check this post against.
5147
+ */
5148
+ channelId: string;
5149
+ },
5150
+ {
5151
+ /**
5152
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5153
+ */
5154
+ text?: string;
5155
+ /**
5156
+ * A channel to check this post against.
5157
+ */
5158
+ channelId: string;
5159
+ },
5160
+ {
5161
+ /**
5162
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5163
+ */
5164
+ text?: string;
5165
+ /**
5166
+ * A channel to check this post against.
5167
+ */
5168
+ channelId: string;
5169
+ },
5170
+ {
5171
+ /**
5172
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5173
+ */
5174
+ text?: string;
5175
+ /**
5176
+ * A channel to check this post against.
5177
+ */
5178
+ channelId: string;
5179
+ },
5180
+ {
5181
+ /**
5182
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5183
+ */
5184
+ text?: string;
5185
+ /**
5186
+ * A channel to check this post against.
5187
+ */
5188
+ channelId: string;
5189
+ },
5190
+ {
5191
+ /**
5192
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5193
+ */
5194
+ text?: string;
5195
+ /**
5196
+ * A channel to check this post against.
5197
+ */
5198
+ channelId: string;
5199
+ },
5200
+ {
5201
+ /**
5202
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5203
+ */
5204
+ text?: string;
5205
+ /**
5206
+ * A channel to check this post against.
5207
+ */
5208
+ channelId: string;
5209
+ },
5210
+ {
5211
+ /**
5212
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5213
+ */
5214
+ text?: string;
5215
+ /**
5216
+ * A channel to check this post against.
5217
+ */
5218
+ channelId: string;
5219
+ }
5220
+ ] | [
5221
+ {
5222
+ /**
5223
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5224
+ */
5225
+ text?: string;
5226
+ /**
5227
+ * A channel to check this post against.
5228
+ */
5229
+ channelId: string;
5230
+ },
5231
+ {
5232
+ /**
5233
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5234
+ */
5235
+ text?: string;
5236
+ /**
5237
+ * A channel to check this post against.
5238
+ */
5239
+ channelId: string;
5240
+ },
5241
+ {
5242
+ /**
5243
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5244
+ */
5245
+ text?: string;
5246
+ /**
5247
+ * A channel to check this post against.
5248
+ */
5249
+ channelId: string;
5250
+ },
5251
+ {
5252
+ /**
5253
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5254
+ */
5255
+ text?: string;
5256
+ /**
5257
+ * A channel to check this post against.
5258
+ */
5259
+ channelId: string;
5260
+ },
5261
+ {
5262
+ /**
5263
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5264
+ */
5265
+ text?: string;
5266
+ /**
5267
+ * A channel to check this post against.
5268
+ */
5269
+ channelId: string;
5270
+ },
5271
+ {
5272
+ /**
5273
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5274
+ */
5275
+ text?: string;
5276
+ /**
5277
+ * A channel to check this post against.
5278
+ */
5279
+ channelId: string;
5280
+ },
5281
+ {
5282
+ /**
5283
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5284
+ */
5285
+ text?: string;
5286
+ /**
5287
+ * A channel to check this post against.
5288
+ */
5289
+ channelId: string;
5290
+ },
5291
+ {
5292
+ /**
5293
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5294
+ */
5295
+ text?: string;
5296
+ /**
5297
+ * A channel to check this post against.
5298
+ */
5299
+ channelId: string;
5300
+ },
5301
+ {
5302
+ /**
5303
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5304
+ */
5305
+ text?: string;
5306
+ /**
5307
+ * A channel to check this post against.
5308
+ */
5309
+ channelId: string;
5310
+ },
5311
+ {
5312
+ /**
5313
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5314
+ */
5315
+ text?: string;
5316
+ /**
5317
+ * A channel to check this post against.
5318
+ */
5319
+ channelId: string;
5320
+ },
5321
+ {
5322
+ /**
5323
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5324
+ */
5325
+ text?: string;
5326
+ /**
5327
+ * A channel to check this post against.
5328
+ */
5329
+ channelId: string;
5330
+ },
5331
+ {
5332
+ /**
5333
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5334
+ */
5335
+ text?: string;
5336
+ /**
5337
+ * A channel to check this post against.
5338
+ */
5339
+ channelId: string;
5340
+ },
5341
+ {
5342
+ /**
5343
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5344
+ */
5345
+ text?: string;
5346
+ /**
5347
+ * A channel to check this post against.
5348
+ */
5349
+ channelId: string;
5350
+ },
5351
+ {
5352
+ /**
5353
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5354
+ */
5355
+ text?: string;
5356
+ /**
5357
+ * A channel to check this post against.
5358
+ */
5359
+ channelId: string;
5360
+ },
5361
+ {
5362
+ /**
5363
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5364
+ */
5365
+ text?: string;
5366
+ /**
5367
+ * A channel to check this post against.
5368
+ */
5369
+ channelId: string;
5370
+ },
5371
+ {
5372
+ /**
5373
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5374
+ */
5375
+ text?: string;
5376
+ /**
5377
+ * A channel to check this post against.
5378
+ */
5379
+ channelId: string;
5380
+ },
5381
+ {
5382
+ /**
5383
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5384
+ */
5385
+ text?: string;
5386
+ /**
5387
+ * A channel to check this post against.
5388
+ */
5389
+ channelId: string;
5390
+ },
5391
+ {
5392
+ /**
5393
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5394
+ */
5395
+ text?: string;
5396
+ /**
5397
+ * A channel to check this post against.
5398
+ */
5399
+ channelId: string;
5400
+ },
5401
+ {
5402
+ /**
5403
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5404
+ */
5405
+ text?: string;
5406
+ /**
5407
+ * A channel to check this post against.
5408
+ */
5409
+ channelId: string;
5410
+ },
5411
+ {
5412
+ /**
5413
+ * The per-channel variant you intend to schedule, in markdown. Omit to check the post text as written.
5414
+ */
5415
+ text?: string;
5416
+ /**
5417
+ * A channel to check this post against.
5418
+ */
5419
+ channelId: string;
5420
+ }
5421
+ ];
5422
+ /**
5423
+ * The slot you intend to use, ISO-8601. Only the daily ceiling depends on it; omit for "now".
5424
+ */
5425
+ scheduledAt?: string;
5426
+ }
5427
+ interface ContentPublicationsValidateOutput {
5428
+ /**
5429
+ * The post that was checked.
5430
+ */
5431
+ postId: string;
5432
+ /**
5433
+ * One result per requested channel, in the order they were given.
5434
+ */
5435
+ channels: {
5436
+ /**
5437
+ * The markdown that was checked, exactly as it was given or stored.
5438
+ */
5439
+ text: string;
5440
+ /**
5441
+ * Everything wrong, all at once. Any entry with severity "error" means scheduling this would be refused — there is no separate flag to disagree with the list.
5442
+ */
5443
+ issues: {
5444
+ /**
5445
+ * Stable machine code: text_empty, text_too_long, too_many_media, link_not_supported, media_missing, media_not_ready, media_not_supported, cost_unknown, daily_ceiling_exceeded.
5446
+ */
5447
+ code: string;
5448
+ /**
5449
+ * Which input the issue is about, when it is about one.
5450
+ */
5451
+ field?: string;
5452
+ /**
5453
+ * What is wrong, in a sentence you can show a person.
5454
+ */
5455
+ message: string;
5456
+ /**
5457
+ * `error` means scheduling would be refused or the publication would not go out. `warning` is advisory.
5458
+ */
5459
+ severity: ("error" | "warning");
5460
+ }[];
5461
+ /**
5462
+ * The daily ceiling that was checked, or null when nothing knows one.
5463
+ */
5464
+ ceiling: ({
5465
+ /**
5466
+ * How many publications this channel already has in that day, queued or done.
5467
+ */
5468
+ used: number;
5469
+ /**
5470
+ * Published posts this channel allows per day, or null when no figure is known.
5471
+ */
5472
+ limit: (number | null);
5473
+ /**
5474
+ * Where the limit came from: `channel` an operator override, `adapter` a live figure from the network, `catalog` the built-in constant (INV-053).
5475
+ */
5476
+ source: ("channel" | "adapter" | "catalog");
5477
+ } | null);
5478
+ /**
5479
+ * What this publication would cost in USD. On X a post carrying a link costs 13x a plain one ($0.20 against $0.015). Null means the cost cannot be computed, which blocks publishing.
5480
+ */
5481
+ costUsd: (number | null);
5482
+ /**
5483
+ * The network behind that channel.
5484
+ */
5485
+ network: string;
5486
+ /**
5487
+ * The channel this result is for.
5488
+ */
5489
+ channelId: string;
5490
+ /**
5491
+ * Which rate produced costUsd: "plain", "link" or "free".
5492
+ */
5493
+ costBasis: (string | null);
5494
+ /**
5495
+ * The channel as a person sees it.
5496
+ */
5497
+ displayName: string;
5498
+ /**
5499
+ * The text that would actually be published to this channel: the markdown flattened to plain network text — emphasis as styled characters, lists as bullets, links as "text (url)". Scheduling stores this string, so what you read here is what goes out, character for character. Length and cost are judged on it, not on the markdown.
5500
+ */
5501
+ renderedText: string;
5502
+ }[];
5503
+ }
1374
5504
  interface DeploymentAlertCreateInput {
1375
5505
  metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
1376
5506
  enabled?: boolean;
@@ -41752,6 +45882,57 @@ interface GeneratedClient {
41752
45882
  get(input: ConsentStatsGetInput): Promise<ConsentStatsGetOutput>;
41753
45883
  };
41754
45884
  };
45885
+ content: {
45886
+ channels: {
45887
+ bind(input: ContentChannelsBindInput): Promise<ContentChannelsBindOutput>;
45888
+ get(input: ContentChannelsGetInput): Promise<ContentChannelsGetOutput>;
45889
+ list(input: ContentChannelsListInput): Promise<ContentChannelsListOutput>;
45890
+ resume(input: ContentChannelsResumeInput): Promise<ContentChannelsResumeOutput>;
45891
+ unbind(input: ContentChannelsUnbindInput): Promise<ContentChannelsUnbindOutput>;
45892
+ update(input: ContentChannelsUpdateInput): Promise<ContentChannelsUpdateOutput>;
45893
+ };
45894
+ media: {
45895
+ finalize(input: ContentMediaFinalizeInput): Promise<ContentMediaFinalizeOutput>;
45896
+ get(input: ContentMediaGetInput): Promise<ContentMediaGetOutput>;
45897
+ list(input: ContentMediaListInput): Promise<ContentMediaListOutput>;
45898
+ upload(input: ContentMediaUploadInput): Promise<ContentMediaUploadOutput>;
45899
+ };
45900
+ 'media-create-upload': {
45901
+ url(input: ContentMediaCreateUploadUrlInput): Promise<ContentMediaCreateUploadUrlOutput>;
45902
+ };
45903
+ 'metrics-channel': {
45904
+ series(input: ContentMetricsChannelSeriesInput): Promise<ContentMetricsChannelSeriesOutput>;
45905
+ };
45906
+ 'metrics-post': {
45907
+ series(input: ContentMetricsPostSeriesInput): Promise<ContentMetricsPostSeriesOutput>;
45908
+ };
45909
+ posts: {
45910
+ approve(input: ContentPostsApproveInput): Promise<ContentPostsApproveOutput>;
45911
+ create(input: ContentPostsCreateInput): Promise<ContentPostsCreateOutput>;
45912
+ get(input: ContentPostsGetInput): Promise<ContentPostsGetOutput>;
45913
+ list(input: ContentPostsListInput): Promise<ContentPostsListOutput>;
45914
+ submit(input: ContentPostsSubmitInput): Promise<ContentPostsSubmitOutput>;
45915
+ update(input: ContentPostsUpdateInput): Promise<ContentPostsUpdateOutput>;
45916
+ versions(input: ContentPostsVersionsInput): Promise<ContentPostsVersionsOutput>;
45917
+ };
45918
+ 'posts-attach': {
45919
+ media(input: ContentPostsAttachMediaInput): Promise<ContentPostsAttachMediaOutput>;
45920
+ };
45921
+ 'posts-detach': {
45922
+ media(input: ContentPostsDetachMediaInput): Promise<ContentPostsDetachMediaOutput>;
45923
+ };
45924
+ publications: {
45925
+ cancel(input: ContentPublicationsCancelInput): Promise<ContentPublicationsCancelOutput>;
45926
+ confirm(input: ContentPublicationsConfirmInput): Promise<ContentPublicationsConfirmOutput>;
45927
+ get(input: ContentPublicationsGetInput): Promise<ContentPublicationsGetOutput>;
45928
+ list(input: ContentPublicationsListInput): Promise<ContentPublicationsListOutput>;
45929
+ publish(input: ContentPublicationsPublishInput): Promise<ContentPublicationsPublishOutput>;
45930
+ remind(input: ContentPublicationsRemindInput): Promise<ContentPublicationsRemindOutput>;
45931
+ reschedule(input: ContentPublicationsRescheduleInput): Promise<ContentPublicationsRescheduleOutput>;
45932
+ schedule(input: ContentPublicationsScheduleInput): Promise<ContentPublicationsScheduleOutput>;
45933
+ validate(input: ContentPublicationsValidateInput): Promise<ContentPublicationsValidateOutput>;
45934
+ };
45935
+ };
41755
45936
  deployment: {
41756
45937
  alert: {
41757
45938
  create(input: DeploymentAlertCreateInput): Promise<DeploymentAlertCreateOutput>;
@@ -42501,4 +46682,4 @@ interface GeneratedClient {
42501
46682
  };
42502
46683
  }
42503
46684
 
42504
- 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, DeploymentAlertDeleteInput 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, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput 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, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentSuspensionGetInput as dK, DeploymentSuspensionGetOutput as dL, DeploymentVariableListEnvInput as dM, DeploymentVariableListEnvOutput as dN, DeploymentVariableListProductInput as dO, DeploymentVariableListProductOutput as dP, DeploymentVariableListInput as dQ, DeploymentVariableListOutput as dR, DeploymentVariableSetEnvInput as dS, DeploymentVariableSetEnvOutput as dT, DeploymentVariableSetInput as dU, DeploymentVariableSetOutput as dV, DeploymentVariableSetProductInput as dW, DeploymentVariableSetProductOutput as dX, DeploymentVariableUnsetEnvInput as dY, DeploymentVariableUnsetEnvOutput as dZ, DeploymentVariableUnsetInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainAllowedListOutput as e$, DeploymentVariableUnsetProductInput as e0, DeploymentVariableUnsetProductOutput as e1, DeploymentVcsBranchListInput as e2, DeploymentVcsBranchListOutput as e3, DeploymentVcsConnectionListInput as e4, DeploymentVcsConnectionListOutput as e5, DeploymentVcsRepoListInput as e6, DeploymentVcsRepoListOutput as e7, DeploymentVolumeCreateInput as e8, DeploymentVolumeCreateOutput as e9, MailBroadcastCancelInput as eA, MailBroadcastCancelOutput as eB, MailBroadcastCreateInput as eC, MailBroadcastCreateOutput as eD, MailBroadcastDeleteInput as eE, MailBroadcastDeleteOutput as eF, MailBroadcastGetInput as eG, MailBroadcastGetOutput as eH, MailBroadcastListInput as eI, MailBroadcastListOutput as eJ, MailBroadcastQueueInput as eK, MailBroadcastQueueOutput as eL, MailBroadcastStatsInput as eM, MailBroadcastStatsOutput as eN, MailBroadcastUpdateInput as eO, MailBroadcastUpdateOutput as eP, MailContactCreateInput as eQ, MailContactCreateOutput as eR, MailContactDeleteInput as eS, MailContactDeleteOutput as eT, MailContactGetInput as eU, MailContactGetOutput as eV, MailContactListInput as eW, MailContactListOutput as eX, MailContactUpdateInput as eY, MailContactUpdateOutput as eZ, MailDomainAllowedListInput as e_, DeploymentVolumeDeleteInput as ea, DeploymentVolumeDeleteOutput as eb, DeploymentVolumeDetachInput as ec, DeploymentVolumeDetachOutput as ed, DeploymentVolumeGetInput as ee, DeploymentVolumeGetOutput as ef, DeploymentVolumeListInput as eg, DeploymentVolumeListOutput as eh, DeploymentVolumeResizeInput as ei, DeploymentVolumeResizeOutput as ej, MailApikeyCreateInput as ek, MailApikeyCreateOutput as el, MailApikeyDeleteInput as em, MailApikeyDeleteOutput as en, MailApikeyListInput as eo, MailApikeyListOutput as ep, MailAudienceCreateInput as eq, MailAudienceCreateOutput as er, MailAudienceDeleteInput as es, MailAudienceDeleteOutput as et, MailAudienceGetInput as eu, MailAudienceGetOutput as ev, MailAudienceListInput as ew, MailAudienceListOutput as ex, MailAudienceUpdateInput as ey, MailAudienceUpdateOutput as ez, BrainBackupStatusOutput as f, ObserveAlertsEventsListOutput as f$, MailDomainCreateInput as f0, MailDomainCreateOutput as f1, MailDomainDeleteInput as f2, MailDomainDeleteOutput as f3, MailDomainGetInput as f4, MailDomainGetOutput as f5, MailDomainListInput as f6, MailDomainListOutput as f7, MailDomainUpdateInput as f8, MailDomainUpdateOutput as f9, MailTemplateGetOutput as fA, MailTemplateListInput as fB, MailTemplateListOutput as fC, MailTemplatePublishInput as fD, MailTemplatePublishOutput as fE, MailTemplateUpdateInput as fF, MailTemplateUpdateOutput as fG, MailUsageGetInput as fH, MailUsageGetOutput as fI, MailWebhookCreateInput as fJ, MailWebhookCreateOutput as fK, MailWebhookDeleteInput as fL, MailWebhookDeleteOutput as fM, MailWebhookDeliveriesListInput as fN, MailWebhookDeliveriesListOutput as fO, MailWebhookGetInput as fP, MailWebhookGetOutput as fQ, MailWebhookListInput as fR, MailWebhookListOutput as fS, MailWebhookUpdateInput as fT, MailWebhookUpdateOutput as fU, MailEmailGetOutput as fV, ObserveAlertsCreateInput as fW, ObserveAlertsCreateOutput as fX, ObserveAlertsDeleteInput as fY, ObserveAlertsDeleteOutput as fZ, ObserveAlertsEventsListInput as f_, MailDomainVerifyInput as fa, MailDomainVerifyOutput as fb, MailEmailCancelInput as fc, MailEmailCancelOutput as fd, MailEmailGetInput as fe, MailEmailSendBatchInput as ff, MailEmailSendBatchOutput as fg, MailEmailSendInput as fh, MailEmailSendOutput as fi, MailEmailUpdateInput as fj, MailEmailUpdateOutput as fk, MailReputationGetInput as fl, MailReputationGetOutput as fm, MailStatsGetInput as fn, MailStatsGetOutput as fo, MailSuppressionAddInput as fp, MailSuppressionAddOutput as fq, MailSuppressionListInput as fr, MailSuppressionListOutput as fs, MailSuppressionRemoveInput as ft, MailSuppressionRemoveOutput as fu, MailTemplateCreateInput as fv, MailTemplateCreateOutput as fw, MailTemplateDeleteInput as fx, MailTemplateDeleteOutput as fy, MailTemplateGetInput as fz, BrainBackupsListInput as g, ObserveWebhooksUpdateOutput as g$, ObserveAlertsGetInput as g0, ObserveAlertsGetOutput as g1, ObserveAlertsListInput as g2, ObserveAlertsListOutput as g3, ObserveAlertsUpdateInput as g4, ObserveAlertsUpdateOutput as g5, ObserveArtifactsDeleteInput as g6, ObserveArtifactsDeleteOutput as g7, ObserveArtifactsListInput as g8, ObserveArtifactsListOutput as g9, ObserveLogsSearchInput as gA, ObserveLogsSearchOutput as gB, ObserveLogsTailInput as gC, ObserveLogsTailOutput as gD, ObserveMetricsListInput as gE, ObserveMetricsListOutput as gF, ObserveMetricsQueryInput as gG, ObserveMetricsQueryOutput as gH, ObserveTracesGetInput as gI, ObserveTracesGetOutput as gJ, ObserveTracesSearchInput as gK, ObserveTracesSearchOutput as gL, ObserveWebhooksCreateInput as gM, ObserveWebhooksCreateOutput as gN, ObserveWebhooksDeleteInput as gO, ObserveWebhooksDeleteOutput as gP, ObserveWebhooksDeliveriesListInput as gQ, ObserveWebhooksDeliveriesListOutput as gR, ObserveWebhooksGetInput as gS, ObserveWebhooksGetOutput as gT, ObserveWebhooksListInput as gU, ObserveWebhooksListOutput as gV, ObserveWebhooksRedeliverInput as gW, ObserveWebhooksRedeliverOutput as gX, ObserveWebhooksRotateSecretInput as gY, ObserveWebhooksRotateSecretOutput as gZ, ObserveWebhooksUpdateInput as g_, ObserveArtifactsResolveInput as ga, ObserveArtifactsResolveOutput as gb, ObserveIssuesArchiveInput as gc, ObserveIssuesArchiveOutput as gd, ObserveIssuesAssignInput as ge, ObserveIssuesAssignOutput as gf, ObserveIssuesEventInput as gg, ObserveIssuesEventOutput as gh, ObserveIssuesEventsInput as gi, ObserveIssuesEventsOutput as gj, ObserveIssuesGetInput as gk, ObserveIssuesGetOutput as gl, ObserveIssuesHistogramInput as gm, ObserveIssuesHistogramOutput as gn, ObserveIssuesListInput as go, ObserveIssuesListOutput as gp, ObserveIssuesResolveInput as gq, ObserveIssuesResolveOutput as gr, ObserveKeysCreateInput as gs, ObserveKeysCreateOutput as gt, ObserveKeysListInput as gu, ObserveKeysListOutput as gv, ObserveKeysRevokeInput as gw, ObserveKeysRevokeOutput as gx, ObserveLogsFacetsInput as gy, ObserveLogsFacetsOutput as gz, BrainBackupsListOutput as h, OrganizationGithubListInstallationsOutput as h$, OrganizationAuthMeInput as h0, OrganizationAuthMeOutput as h1, OrganizationBillingBudgetsGetInput as h2, OrganizationBillingBudgetsGetOutput as h3, OrganizationBillingBudgetsSetInput as h4, OrganizationBillingBudgetsSetOutput as h5, OrganizationBillingCapsClearInput as h6, OrganizationBillingCapsClearOutput as h7, OrganizationBillingCapsSetInput as h8, OrganizationBillingCapsSetOutput as h9, OrganizationConnectorsListRequestsInput as hA, OrganizationConnectorsListRequestsOutput as hB, OrganizationConnectorsRemoveInput as hC, OrganizationConnectorsRemoveOutput as hD, OrganizationConnectorsRequestInput as hE, OrganizationConnectorsRequestOutput as hF, OrganizationCreateInput as hG, OrganizationCreateOutput as hH, OrganizationDomainsAddInput as hI, OrganizationDomainsAddOutput as hJ, OrganizationDomainsGetInput as hK, OrganizationDomainsGetOutput as hL, OrganizationDomainsListInput as hM, OrganizationDomainsListOutput as hN, OrganizationDomainsRemoveInput as hO, OrganizationDomainsRemoveOutput as hP, OrganizationDomainsSetModeInput as hQ, OrganizationDomainsSetModeOutput as hR, OrganizationExtensionsListInstalledInput as hS, OrganizationExtensionsListInstalledOutput as hT, OrganizationFeedbackSubmitInput as hU, OrganizationFeedbackSubmitOutput as hV, OrganizationGdriveInstallInput as hW, OrganizationGdriveInstallOutput as hX, OrganizationGithubInstallInput as hY, OrganizationGithubInstallOutput as hZ, OrganizationGithubListInstallationsInput as h_, OrganizationBindingsListInput as ha, OrganizationBindingsListOutput as hb, OrganizationClickupInstallInput as hc, OrganizationClickupInstallOutput as hd, OrganizationClickupListInstallationsInput as he, OrganizationClickupListInstallationsOutput as hf, OrganizationCloudflareInstallInput as hg, OrganizationCloudflareInstallOutput as hh, OrganizationConnectorsApproveRequestInput as hi, OrganizationConnectorsApproveRequestOutput as hj, OrganizationConnectorsAttachInput as hk, OrganizationConnectorsAttachOutput as hl, OrganizationConnectorsDeleteInput as hm, OrganizationConnectorsDeleteOutput as hn, OrganizationConnectorsDenyRequestInput as ho, OrganizationConnectorsDenyRequestOutput as hp, OrganizationConnectorsDetachInput as hq, OrganizationConnectorsDetachOutput as hr, OrganizationConnectorsListAttachmentsInput as hs, OrganizationConnectorsListAttachmentsOutput as ht, OrganizationConnectorsListAvailableInput as hu, OrganizationConnectorsListAvailableOutput as hv, OrganizationConnectorsListOrgInput as hw, OrganizationConnectorsListOrgOutput as hx, OrganizationConnectorsListInput as hy, OrganizationConnectorsListOutput as hz, BrainClickupChannelsListInput as i, OrganizationRolesGetOutput as i$, OrganizationGoogleadsInstallInput as i0, OrganizationGoogleadsInstallOutput as i1, OrganizationListInput as i2, OrganizationListOutput as i3, OrganizationMemberAcceptInviteInput as i4, OrganizationMemberAcceptInviteOutput as i5, OrganizationMemberInviteInput as i6, OrganizationMemberInviteOutput as i7, OrganizationMemberListInvitationsInput as i8, OrganizationMemberListInvitationsOutput as i9, OrganizationProductListInput as iA, OrganizationProductListOutput as iB, OrganizationProductListRolesInput as iC, OrganizationProductListRolesOutput as iD, OrganizationProductRevokeAccessInput as iE, OrganizationProductRevokeAccessOutput as iF, OrganizationProductSelectInput as iG, OrganizationProductSelectOutput as iH, OrganizationProductSetAccessInput as iI, OrganizationProductSetAccessOutput as iJ, OrganizationProductUpdateInput as iK, OrganizationProductUpdateOutput as iL, OrganizationPublicKeysCreateInput as iM, OrganizationPublicKeysCreateOutput as iN, OrganizationPublicKeysListInput as iO, OrganizationPublicKeysListOutput as iP, OrganizationPublicKeysRevokeInput as iQ, OrganizationPublicKeysRevokeOutput as iR, OrganizationPublicKeysUpdateScopeInput as iS, OrganizationPublicKeysUpdateScopeOutput as iT, OrganizationPublicRoutesListInput as iU, OrganizationPublicRoutesListOutput as iV, OrganizationRolesCreateInput as iW, OrganizationRolesCreateOutput as iX, OrganizationRolesDeleteInput as iY, OrganizationRolesDeleteOutput as iZ, OrganizationRolesGetInput as i_, OrganizationMemberListProductAccessInput as ia, OrganizationMemberListProductAccessOutput as ib, OrganizationMemberListInput as ic, OrganizationMemberListOutput as id, OrganizationMemberRemoveInput as ie, OrganizationMemberRemoveOutput as ig, OrganizationMemberRevokeInvitationInput as ih, OrganizationMemberRevokeInvitationOutput as ii, OrganizationMemberSetRoleInput as ij, OrganizationMemberSetRoleOutput as ik, OrganizationMemberShareProductInput as il, OrganizationMemberShareProductOutput as im, OrganizationMemberUnshareProductInput as io, OrganizationMemberUnshareProductOutput as ip, OrganizationMembersAssignRoleInput as iq, OrganizationMembersAssignRoleOutput as ir, OrganizationPermissionCatalogInput as is, OrganizationPermissionCatalogOutput as it, OrganizationProductCreateInput as iu, OrganizationProductCreateOutput as iv, OrganizationProductListAccessInput as iw, OrganizationProductListAccessOutput as ix, OrganizationProductListMembersInput as iy, OrganizationProductListMembersOutput as iz, BrainClickupChannelsListOutput as j, RealtimeWebhookDeliveriesListOutput as j$, OrganizationRolesListInput as j0, OrganizationRolesListOutput as j1, OrganizationRolesUpdateInput as j2, OrganizationRolesUpdateOutput as j3, OrganizationSecurityMfaEnableInput as j4, OrganizationSecurityMfaEnableOutput as j5, OrganizationSelectInput as j6, OrganizationSelectOutput as j7, OrganizationSupportThreadCreateInput as j8, OrganizationSupportThreadCreateOutput as j9, RealtimeNamespaceGetInput as jA, RealtimeNamespaceGetOutput as jB, RealtimeNamespaceListInput as jC, RealtimeNamespaceListOutput as jD, RealtimeNamespaceUpdateInput as jE, RealtimeNamespaceUpdateOutput as jF, RealtimePresenceEnterInput as jG, RealtimePresenceEnterOutput as jH, RealtimePresenceGetInput as jI, RealtimePresenceGetOutput as jJ, RealtimePresenceLeaveInput as jK, RealtimePresenceLeaveOutput as jL, RealtimePresenceStatsInput as jM, RealtimePresenceStatsOutput as jN, RealtimePresenceUpdateInput as jO, RealtimePresenceUpdateOutput as jP, RealtimePublicAccessStatusInput as jQ, RealtimePublicAccessStatusOutput as jR, RealtimeStatusGetInput as jS, RealtimeStatusGetOutput as jT, RealtimeTokensCreateInput as jU, RealtimeTokensCreateOutput as jV, RealtimeWebhookCreateInput as jW, RealtimeWebhookCreateOutput as jX, RealtimeWebhookDeleteInput as jY, RealtimeWebhookDeleteOutput as jZ, RealtimeWebhookDeliveriesListInput as j_, OrganizationSupportThreadGetInput as ja, OrganizationSupportThreadGetOutput as jb, OrganizationSupportThreadReplyInput as jc, OrganizationSupportThreadReplyOutput as jd, OrganizationSupportThreadsListInput as je, OrganizationSupportThreadsListOutput as jf, RealtimeArchiveExportInput as jg, RealtimeArchiveExportOutput as jh, RealtimeArchiveExportStatusInput as ji, RealtimeArchiveExportStatusOutput as jj, RealtimeArchiveGetInput as jk, RealtimeArchiveGetOutput as jl, RealtimeGrantCreateInput as jm, RealtimeGrantCreateOutput as jn, RealtimeGrantListInput as jo, RealtimeGrantListOutput as jp, RealtimeGrantRevokeInput as jq, RealtimeGrantRevokeOutput as jr, RealtimeHistoryGetInput as js, RealtimeHistoryGetOutput as jt, RealtimeMessagesPublishInput as ju, RealtimeMessagesPublishOutput as jv, RealtimeNamespaceCreateInput as jw, RealtimeNamespaceCreateOutput as jx, RealtimeNamespaceDeleteInput as jy, RealtimeNamespaceDeleteOutput as jz, BrainClickupConnectionsListInput as k, SupportSurveyStatsOutput as k$, RealtimeWebhookGetInput as k0, RealtimeWebhookGetOutput as k1, RealtimeWebhookListInput as k2, RealtimeWebhookListOutput as k3, RealtimeWebhookSecretRotateInput as k4, RealtimeWebhookSecretRotateOutput as k5, RealtimeWebhookUpdateInput as k6, RealtimeWebhookUpdateOutput as k7, SupportAgentCreateInput as k8, SupportAgentCreateOutput as k9, SupportRuleDeleteInput as kA, SupportRuleDeleteOutput as kB, SupportRuleGetInput as kC, SupportRuleGetOutput as kD, SupportRuleListInput as kE, SupportRuleListOutput as kF, SupportRuleUpdateInput as kG, SupportRuleUpdateOutput as kH, SupportStatusArchiveInput as kI, SupportStatusArchiveOutput as kJ, SupportStatusCreateInput as kK, SupportStatusCreateOutput as kL, SupportStatusListInput as kM, SupportStatusListOutput as kN, SupportStatusUpdateInput as kO, SupportStatusUpdateOutput as kP, SupportSurveyArchiveInput as kQ, SupportSurveyArchiveOutput as kR, SupportSurveyCreateInput as kS, SupportSurveyCreateOutput as kT, SupportSurveyGetInput as kU, SupportSurveyGetOutput as kV, SupportSurveyListInput as kW, SupportSurveyListOutput as kX, SupportSurveyPublishInput as kY, SupportSurveyPublishOutput as kZ, SupportSurveyStatsInput as k_, SupportAgentGetInput as ka, SupportAgentGetOutput as kb, SupportAgentListInput as kc, SupportAgentListOutput as kd, SupportAgentUpdateInput as ke, SupportAgentUpdateOutput as kf, SupportAttachmentCreateInput as kg, SupportAttachmentCreateOutput as kh, SupportAttachmentFinalizeInput as ki, SupportAttachmentFinalizeOutput as kj, SupportLabelCreateInput as kk, SupportLabelCreateOutput as kl, SupportLabelListInput as km, SupportLabelListOutput as kn, SupportMessageCreateInput as ko, SupportMessageCreateOutput as kp, SupportMessageListInput as kq, SupportMessageListOutput as kr, SupportResponseEscalateInput as ks, SupportResponseEscalateOutput as kt, SupportResponseGetInput as ku, SupportResponseGetOutput as kv, SupportResponseListInput as kw, SupportResponseListOutput as kx, SupportRuleCreateInput as ky, SupportRuleCreateOutput as kz, BrainClickupConnectionsListOutput as l, TrackingGoogleadsRoasReportOutput as l$, SupportSurveyUnpublishInput as l0, SupportSurveyUnpublishOutput as l1, SupportSurveyUpdateInput as l2, SupportSurveyUpdateOutput as l3, SupportThreadAssignInput as l4, SupportThreadAssignOutput as l5, SupportThreadCreateInput as l6, SupportThreadCreateOutput as l7, SupportThreadGetInput as l8, SupportThreadGetOutput as l9, TrackingDomainsGetInput as lA, TrackingDomainsGetOutput as lB, TrackingDomainsListInput as lC, TrackingDomainsListOutput as lD, TrackingDomainsVerifyInput as lE, TrackingDomainsVerifyOutput as lF, TrackingEventNamesArchiveInput as lG, TrackingEventNamesArchiveOutput as lH, TrackingEventNamesListInput as lI, TrackingEventNamesListOutput as lJ, TrackingEventNamesUnarchiveInput as lK, TrackingEventNamesUnarchiveOutput as lL, TrackingGoogleadsConnectionStatusInput as lM, TrackingGoogleadsConnectionStatusOutput as lN, TrackingGoogleadsConversionActionsInput as lO, TrackingGoogleadsConversionActionsOutput as lP, TrackingGoogleadsFeedbackConfigGetInput as lQ, TrackingGoogleadsFeedbackConfigGetOutput as lR, TrackingGoogleadsFeedbackConfigSetInput as lS, TrackingGoogleadsFeedbackConfigSetOutput as lT, TrackingGoogleadsFeedbackRunInput as lU, TrackingGoogleadsFeedbackRunOutput as lV, TrackingGoogleadsFeedbackStatusInput as lW, TrackingGoogleadsFeedbackStatusOutput as lX, TrackingGoogleadsFeedbackUploadsInput as lY, TrackingGoogleadsFeedbackUploadsOutput as lZ, TrackingGoogleadsRoasReportInput as l_, SupportThreadListInput as la, SupportThreadListOutput as lb, SupportThreadStatusSetInput as lc, SupportThreadStatusSetOutput as ld, SupportThreadUpdateInput as le, SupportThreadUpdateOutput as lf, SupportWebhookCreateInput as lg, SupportWebhookCreateOutput as lh, SupportWebhookDeleteInput as li, SupportWebhookDeleteOutput as lj, SupportWebhookDeliveriesListInput as lk, SupportWebhookDeliveriesListOutput as ll, SupportWebhookGetInput as lm, SupportWebhookGetOutput as ln, SupportWebhookListInput as lo, SupportWebhookListOutput as lp, SupportWebhookRedeliverInput as lq, SupportWebhookRedeliverOutput as lr, SupportWebhookRotateSecretInput as ls, SupportWebhookRotateSecretOutput as lt, SupportWebhookUpdateInput as lu, SupportWebhookUpdateOutput as lv, TrackingDomainsCreateInput as lw, TrackingDomainsCreateOutput as lx, TrackingDomainsDeleteInput as ly, TrackingDomainsDeleteOutput as lz, BrainClickupListsListInput as m, UsersOpsRetentionGetOutput as m$, TrackingGoogleadsSyncNowInput as m0, TrackingGoogleadsSyncNowOutput as m1, TrackingGoogleadsTrackingHealthInput as m2, TrackingGoogleadsTrackingHealthOutput as m3, TrackingGoogleadsUsVsPlatformInput as m4, TrackingGoogleadsUsVsPlatformOutput as m5, TrackingIdentityHealthInput as m6, TrackingIdentityHealthOutput as m7, TrackingInstallDomainsCreateInput as m8, TrackingInstallDomainsCreateOutput as m9, TrackingReportsSourcePeopleInput as mA, TrackingReportsSourcePeopleOutput as mB, TrackingSnippetsGetInput as mC, TrackingSnippetsGetOutput as mD, UsersApikeysCreateInput as mE, UsersApikeysCreateOutput as mF, UsersApikeysListInput as mG, UsersApikeysListOutput as mH, UsersApikeysRevokeInput as mI, UsersApikeysRevokeOutput as mJ, UsersAuditListInput as mK, UsersAuditListOutput as mL, UsersConfigGetInput as mM, UsersConfigGetOutput as mN, UsersConfigUpsertInput as mO, UsersConfigUpsertOutput as mP, UsersFactorsListInput as mQ, UsersFactorsListOutput as mR, UsersFactorsResetInput as mS, UsersFactorsResetOutput as mT, UsersKeysListInput as mU, UsersKeysListOutput as mV, UsersKeysRevokeInput as mW, UsersKeysRevokeOutput as mX, UsersKeysRotateInput as mY, UsersKeysRotateOutput as mZ, UsersOpsRetentionGetInput as m_, TrackingInstallDomainsDeleteInput as ma, TrackingInstallDomainsDeleteOutput as mb, TrackingInstallDomainsListInput as mc, TrackingInstallDomainsListOutput as md, TrackingLinkDomainsCreateInput as me, TrackingLinkDomainsCreateOutput as mf, TrackingLinkDomainsDeleteInput as mg, TrackingLinkDomainsDeleteOutput as mh, TrackingLinkDomainsListInput as mi, TrackingLinkDomainsListOutput as mj, TrackingLiveEventsListInput as mk, TrackingLiveEventsListOutput as ml, TrackingProfilesDeleteInput as mm, TrackingProfilesDeleteOutput as mn, TrackingProfilesExportInput as mo, TrackingProfilesExportOutput as mp, TrackingProfilesGetInput as mq, TrackingProfilesGetOutput as mr, TrackingProfilesListInput as ms, TrackingProfilesListOutput as mt, TrackingReportsAttributedJourneyInput as mu, TrackingReportsAttributedJourneyOutput as mv, TrackingReportsEventVolumeInput as mw, TrackingReportsEventVolumeOutput as mx, TrackingReportsRevenueBySourceInput as my, TrackingReportsRevenueBySourceOutput as mz, BrainClickupListsListOutput as n, UsersWebhooksUpdateOutput as n$, UsersOpsSloGetInput as n0, UsersOpsSloGetOutput as n1, UsersPasskeysListInput as n2, UsersPasskeysListOutput as n3, UsersPasskeysRevokeInput as n4, UsersPasskeysRevokeOutput as n5, UsersSessionsGetInput as n6, UsersSessionsGetOutput as n7, UsersSessionsImpersonateInput as n8, UsersSessionsImpersonateOutput as n9, UsersUsersUnbanInput as nA, UsersUsersUnbanOutput as nB, UsersUsersUpdateInput as nC, UsersUsersUpdateOutput as nD, UsersWaitlistEraseInput as nE, UsersWaitlistEraseOutput as nF, UsersWaitlistFunnelInput as nG, UsersWaitlistFunnelOutput as nH, UsersWaitlistImportInput as nI, UsersWaitlistImportOutput as nJ, UsersWaitlistInviteInput as nK, UsersWaitlistInviteOutput as nL, UsersWaitlistListInput as nM, UsersWaitlistListOutput as nN, UsersWebhooksCreateInput as nO, UsersWebhooksCreateOutput as nP, UsersWebhooksDeleteInput as nQ, UsersWebhooksDeleteOutput as nR, UsersWebhooksDeliveriesListInput as nS, UsersWebhooksDeliveriesListOutput as nT, UsersWebhooksGetInput as nU, UsersWebhooksGetOutput as nV, UsersWebhooksListInput as nW, UsersWebhooksListOutput as nX, UsersWebhooksRotateSecretInput as nY, UsersWebhooksRotateSecretOutput as nZ, UsersWebhooksUpdateInput as n_, UsersSessionsListInput as na, UsersSessionsListOutput as nb, UsersSessionsRevokeInput as nc, UsersSessionsRevokeOutput as nd, UsersStatsGetInput as ne, UsersStatsGetOutput as nf, UsersUsersBanInput as ng, UsersUsersBanOutput as nh, UsersUsersCreateInput as ni, UsersUsersCreateOutput as nj, UsersUsersDeleteInput as nk, UsersUsersDeleteOutput as nl, UsersUsersEraseInput as nm, UsersUsersEraseOutput as nn, UsersUsersExportInput as no, UsersUsersExportOutput as np, UsersUsersGetInput as nq, UsersUsersGetOutput as nr, UsersUsersImportInput as ns, UsersUsersImportOutput as nt, UsersUsersInviteInput as nu, UsersUsersInviteOutput as nv, UsersUsersListInput as nw, UsersUsersListOutput as nx, UsersUsersSetPrimaryIdentifierInput as ny, UsersUsersSetPrimaryIdentifierOutput as nz, BrainClickupSpacesListInput as o, WaitlistConfigGetInput as o0, WaitlistConfigGetOutput as o1, WaitlistConfigUpsertInput as o2, WaitlistConfigUpsertOutput as o3, WaitlistEmbedGetInput as o4, WaitlistEmbedGetOutput as o5, WaitlistInvitesSendInput as o6, WaitlistInvitesSendOutput as o7, WaitlistSignupsEraseInput as o8, WaitlistSignupsEraseOutput as o9, WaitlistSignupsFunnelInput as oa, WaitlistSignupsFunnelOutput as ob, WaitlistSignupsListInput as oc, WaitlistSignupsListOutput as od, 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 };
46685
+ 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, ContentChannelsGetInput 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, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, ContentChannelsBindInput as aZ, ContentChannelsBindOutput 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, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentAlertEventsListInput as b$, ContentChannelsGetOutput as b0, ContentChannelsListInput as b1, ContentChannelsListOutput as b2, ContentChannelsResumeInput as b3, ContentChannelsResumeOutput as b4, ContentChannelsUnbindInput as b5, ContentChannelsUnbindOutput as b6, ContentChannelsUpdateInput as b7, ContentChannelsUpdateOutput as b8, ContentMediaCreateUploadUrlInput as b9, 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, ContentPublicationsValidateInput as bV, ContentPublicationsValidateOutput as bW, DeploymentAlertCreateInput as bX, DeploymentAlertCreateOutput as bY, DeploymentAlertDeleteInput as bZ, DeploymentAlertDeleteOutput as b_, ContentMediaCreateUploadUrlOutput as ba, ContentMediaFinalizeInput as bb, ContentMediaFinalizeOutput as bc, ContentMediaGetInput as bd, ContentMediaGetOutput as be, ContentMediaListInput as bf, ContentMediaListOutput as bg, ContentMediaUploadInput as bh, ContentMediaUploadOutput as bi, ContentMetricsChannelSeriesInput as bj, ContentMetricsChannelSeriesOutput as bk, ContentMetricsPostSeriesInput as bl, ContentMetricsPostSeriesOutput as bm, ContentPostsApproveInput as bn, ContentPostsApproveOutput as bo, ContentPostsAttachMediaInput as bp, ContentPostsAttachMediaOutput as bq, ContentPostsCreateInput as br, ContentPostsCreateOutput as bs, ContentPostsDetachMediaInput as bt, ContentPostsDetachMediaOutput as bu, ContentPostsGetInput as bv, ContentPostsGetOutput as bw, ContentPostsListInput as bx, ContentPostsListOutput as by, ContentPostsSubmitInput as bz, BrainBackupRestoreInput as c, DeploymentDomainListByServiceInput as c$, DeploymentAlertEventsListOutput as c0, DeploymentAlertListInput as c1, DeploymentAlertListOutput as c2, DeploymentAlertUpdateInput as c3, DeploymentAlertUpdateOutput as c4, DeploymentAnalyticsQueryInput as c5, DeploymentAnalyticsQueryOutput as c6, DeploymentAuditListInput as c7, DeploymentAuditListOutput as c8, DeploymentBuildGetInput as c9, DeploymentCloudSqlInstanceBackupOutput as cA, DeploymentCloudSqlInstanceCreateInput as cB, DeploymentCloudSqlInstanceCreateOutput as cC, DeploymentCloudSqlInstanceDeleteInput as cD, DeploymentCloudSqlInstanceDeleteOutput as cE, DeploymentCloudSqlInstanceGetInput as cF, DeploymentCloudSqlInstanceGetOutput as cG, DeploymentCloudSqlInstanceListInput as cH, DeploymentCloudSqlInstanceListOutput as cI, DeploymentCloudSqlInstanceResizeInput as cJ, DeploymentCloudSqlInstanceResizeOutput as cK, DeploymentCloudSqlInstanceRestoreInput as cL, DeploymentCloudSqlInstanceRestoreOutput as cM, DeploymentCloudSqlLogsInput as cN, DeploymentCloudSqlLogsOutput as cO, DeploymentDeploymentCancelInput as cP, DeploymentDeploymentCancelOutput as cQ, DeploymentDeploymentGetInput as cR, DeploymentDeploymentGetOutput as cS, DeploymentDeploymentListInput as cT, DeploymentDeploymentListOutput as cU, DeploymentDomainAddInput as cV, DeploymentDomainAddOutput as cW, DeploymentDomainAllowedListInput as cX, DeploymentDomainAllowedListOutput as cY, DeploymentDomainGetInput as cZ, DeploymentDomainGetOutput as c_, DeploymentBuildGetOutput as ca, DeploymentBuildListInput as cb, DeploymentBuildListOutput as cc, DeploymentBuildLogsInput as cd, DeploymentBuildLogsOutput as ce, DeploymentCanvasGetInput as cf, DeploymentCanvasGetOutput as cg, DeploymentCanvasMoveNodeInput as ch, DeploymentCanvasMoveNodeOutput as ci, DeploymentCloudSqlBackfillLogFlagsInput as cj, DeploymentCloudSqlBackfillLogFlagsOutput as ck, DeploymentCloudSqlDatabaseAttachInput as cl, DeploymentCloudSqlDatabaseAttachOutput as cm, DeploymentCloudSqlDatabaseCreateInput as cn, DeploymentCloudSqlDatabaseCreateOutput as co, DeploymentCloudSqlDatabaseDeleteInput as cp, DeploymentCloudSqlDatabaseDeleteOutput as cq, DeploymentCloudSqlDatabaseDetachInput as cr, DeploymentCloudSqlDatabaseDetachOutput as cs, DeploymentCloudSqlDatabaseGetInput as ct, DeploymentCloudSqlDatabaseGetOutput as cu, DeploymentCloudSqlDatabaseListInput as cv, DeploymentCloudSqlDatabaseListOutput as cw, DeploymentCloudSqlInstanceBackupListInput as cx, DeploymentCloudSqlInstanceBackupListOutput as cy, DeploymentCloudSqlInstanceBackupInput as cz, BrainBackupRestoreOutput as d, DeploymentManagedServiceTypesOutput as d$, DeploymentDomainListByServiceOutput as d0, DeploymentDomainListInput as d1, DeploymentDomainListOutput as d2, DeploymentDomainRedirectWwwInput as d3, DeploymentDomainRedirectWwwOutput as d4, DeploymentDomainRemoveInput as d5, DeploymentDomainRemoveOutput as d6, DeploymentDomainRoutesAddInput as d7, DeploymentDomainRoutesAddOutput as d8, DeploymentDomainRoutesListInput as d9, DeploymentManagedServiceBackupListInput as dA, DeploymentManagedServiceBackupListOutput as dB, DeploymentManagedServiceBackupInput as dC, DeploymentManagedServiceBackupOutput as dD, DeploymentManagedServiceConnectInfoInput as dE, DeploymentManagedServiceConnectInfoOutput as dF, DeploymentManagedServiceDeleteInput as dG, DeploymentManagedServiceDeleteOutput as dH, DeploymentManagedServiceGetInput as dI, DeploymentManagedServiceGetOutput as dJ, DeploymentManagedServiceListInput as dK, DeploymentManagedServiceListOutput as dL, DeploymentManagedServiceLogsInput as dM, DeploymentManagedServiceLogsOutput as dN, DeploymentManagedServiceProvisionInput as dO, DeploymentManagedServiceProvisionOutput as dP, DeploymentManagedServiceReconcileInput as dQ, DeploymentManagedServiceReconcileOutput as dR, DeploymentManagedServiceResizeInput as dS, DeploymentManagedServiceResizeOutput as dT, DeploymentManagedServiceRestoreInput as dU, DeploymentManagedServiceRestoreOutput as dV, DeploymentManagedServiceStartInput as dW, DeploymentManagedServiceStartOutput as dX, DeploymentManagedServiceStopInput as dY, DeploymentManagedServiceStopOutput as dZ, DeploymentManagedServiceTypesInput as d_, DeploymentDomainRoutesListOutput as da, DeploymentDomainRoutesRemoveInput as db, DeploymentDomainRoutesRemoveOutput as dc, DeploymentDomainRoutesUpdateInput as dd, DeploymentDomainRoutesUpdateOutput as de, DeploymentDomainVerifyInput as df, DeploymentDomainVerifyOutput as dg, DeploymentEnvironmentCreateInput as dh, DeploymentEnvironmentCreateOutput as di, DeploymentEnvironmentDeleteInput as dj, DeploymentEnvironmentDeleteOutput as dk, DeploymentEnvironmentForkInput as dl, DeploymentEnvironmentForkOutput as dm, DeploymentEnvironmentGetInput as dn, DeploymentEnvironmentGetOutput as dp, DeploymentEnvironmentListInput as dq, DeploymentEnvironmentListOutput as dr, DeploymentEnvironmentReconcileInput as ds, DeploymentEnvironmentReconcileOutput as dt, DeploymentEnvironmentUpdateInput as du, DeploymentEnvironmentUpdateOutput as dv, DeploymentEventsListByEnvironmentInput as dw, DeploymentEventsListByEnvironmentOutput as dx, DeploymentEventsListByServiceInput as dy, DeploymentEventsListByServiceOutput as dz, BrainBackupStatusInput as e, DeploymentVariableUnsetProductOutput as e$, DeploymentMetricsGetInput as e0, DeploymentMetricsGetOutput as e1, DeploymentPreviewEnvironmentCreateInput as e2, DeploymentPreviewEnvironmentCreateOutput as e3, DeploymentPreviewEnvironmentDeleteInput as e4, DeploymentPreviewEnvironmentDeleteOutput as e5, DeploymentPreviewEnvironmentListInput as e6, DeploymentPreviewEnvironmentListOutput as e7, DeploymentPreviewPolicyGetInput as e8, DeploymentPreviewPolicyGetOutput as e9, DeploymentSshCommandInput as eA, DeploymentSshCommandOutput as eB, DeploymentSshKeyDeleteInput as eC, DeploymentSshKeyDeleteOutput as eD, DeploymentSshKeyListInput as eE, DeploymentSshKeyListOutput as eF, DeploymentSshKeyRegisterInput as eG, DeploymentSshKeyRegisterOutput as eH, DeploymentSuspensionGetInput as eI, DeploymentSuspensionGetOutput as eJ, DeploymentVariableListEnvInput as eK, DeploymentVariableListEnvOutput as eL, DeploymentVariableListProductInput as eM, DeploymentVariableListProductOutput as eN, DeploymentVariableListInput as eO, DeploymentVariableListOutput as eP, DeploymentVariableSetEnvInput as eQ, DeploymentVariableSetEnvOutput as eR, DeploymentVariableSetInput as eS, DeploymentVariableSetOutput as eT, DeploymentVariableSetProductInput as eU, DeploymentVariableSetProductOutput as eV, DeploymentVariableUnsetEnvInput as eW, DeploymentVariableUnsetEnvOutput as eX, DeploymentVariableUnsetInput as eY, DeploymentVariableUnsetOutput as eZ, DeploymentVariableUnsetProductInput as e_, DeploymentPreviewPolicySetInput as ea, DeploymentPreviewPolicySetOutput as eb, DeploymentServiceCreateInput as ec, DeploymentServiceCreateOutput as ed, DeploymentServiceDeleteInput as ee, DeploymentServiceDeleteOutput as ef, DeploymentServiceExecInput as eg, DeploymentServiceExecOutput as eh, DeploymentServiceGetInput as ei, DeploymentServiceGetOutput as ej, DeploymentServiceListInput as ek, DeploymentServiceListOutput as el, DeploymentServiceLogsInput as em, DeploymentServiceLogsOutput as en, DeploymentServiceRedeployInput as eo, DeploymentServiceRedeployOutput as ep, DeploymentServiceRestartInput as eq, DeploymentServiceRestartOutput as er, DeploymentServiceRollbackInput as es, DeploymentServiceRollbackOutput as et, DeploymentServiceScaleInput as eu, DeploymentServiceScaleOutput as ev, DeploymentServiceUpdateInput as ew, DeploymentServiceUpdateOutput as ex, DeploymentServiceWakeInput as ey, DeploymentServiceWakeOutput as ez, BrainBackupStatusOutput as f, MailDomainCreateOutput as f$, DeploymentVcsBranchListInput as f0, DeploymentVcsBranchListOutput as f1, DeploymentVcsConnectionListInput as f2, DeploymentVcsConnectionListOutput as f3, DeploymentVcsRepoListInput as f4, DeploymentVcsRepoListOutput as f5, DeploymentVolumeCreateInput as f6, DeploymentVolumeCreateOutput as f7, DeploymentVolumeDeleteInput as f8, DeploymentVolumeDeleteOutput as f9, MailBroadcastCreateInput as fA, MailBroadcastCreateOutput as fB, MailBroadcastDeleteInput as fC, MailBroadcastDeleteOutput as fD, MailBroadcastGetInput as fE, MailBroadcastGetOutput as fF, MailBroadcastListInput as fG, MailBroadcastListOutput as fH, MailBroadcastQueueInput as fI, MailBroadcastQueueOutput as fJ, MailBroadcastStatsInput as fK, MailBroadcastStatsOutput as fL, MailBroadcastUpdateInput as fM, MailBroadcastUpdateOutput as fN, MailContactCreateInput as fO, MailContactCreateOutput as fP, MailContactDeleteInput as fQ, MailContactDeleteOutput as fR, MailContactGetInput as fS, MailContactGetOutput as fT, MailContactListInput as fU, MailContactListOutput as fV, MailContactUpdateInput as fW, MailContactUpdateOutput as fX, MailDomainAllowedListInput as fY, MailDomainAllowedListOutput as fZ, MailDomainCreateInput as f_, DeploymentVolumeDetachInput as fa, DeploymentVolumeDetachOutput as fb, DeploymentVolumeGetInput as fc, DeploymentVolumeGetOutput as fd, DeploymentVolumeListInput as fe, DeploymentVolumeListOutput as ff, DeploymentVolumeResizeInput as fg, DeploymentVolumeResizeOutput as fh, MailApikeyCreateInput as fi, MailApikeyCreateOutput as fj, MailApikeyDeleteInput as fk, MailApikeyDeleteOutput as fl, MailApikeyListInput as fm, MailApikeyListOutput as fn, MailAudienceCreateInput as fo, MailAudienceCreateOutput as fp, MailAudienceDeleteInput as fq, MailAudienceDeleteOutput as fr, MailAudienceGetInput as fs, MailAudienceGetOutput as ft, MailAudienceListInput as fu, MailAudienceListOutput as fv, MailAudienceUpdateInput as fw, MailAudienceUpdateOutput as fx, MailBroadcastCancelInput as fy, MailBroadcastCancelOutput as fz, BrainBackupsListInput as g, ObserveAlertsGetOutput as g$, MailDomainDeleteInput as g0, MailDomainDeleteOutput as g1, MailDomainGetInput as g2, MailDomainGetOutput as g3, MailDomainListInput as g4, MailDomainListOutput as g5, MailDomainUpdateInput as g6, MailDomainUpdateOutput as g7, MailDomainVerifyInput as g8, MailDomainVerifyOutput as g9, MailTemplateListOutput as gA, MailTemplatePublishInput as gB, MailTemplatePublishOutput as gC, MailTemplateUpdateInput as gD, MailTemplateUpdateOutput as gE, MailUsageGetInput as gF, MailUsageGetOutput as gG, MailWebhookCreateInput as gH, MailWebhookCreateOutput as gI, MailWebhookDeleteInput as gJ, MailWebhookDeleteOutput as gK, MailWebhookDeliveriesListInput as gL, MailWebhookDeliveriesListOutput as gM, MailWebhookGetInput as gN, MailWebhookGetOutput as gO, MailWebhookListInput as gP, MailWebhookListOutput as gQ, MailWebhookUpdateInput as gR, MailWebhookUpdateOutput as gS, MailEmailGetOutput as gT, ObserveAlertsCreateInput as gU, ObserveAlertsCreateOutput as gV, ObserveAlertsDeleteInput as gW, ObserveAlertsDeleteOutput as gX, ObserveAlertsEventsListInput as gY, ObserveAlertsEventsListOutput as gZ, ObserveAlertsGetInput as g_, MailEmailCancelInput as ga, MailEmailCancelOutput as gb, MailEmailGetInput as gc, MailEmailSendBatchInput as gd, MailEmailSendBatchOutput as ge, MailEmailSendInput as gf, MailEmailSendOutput as gg, MailEmailUpdateInput as gh, MailEmailUpdateOutput as gi, MailReputationGetInput as gj, MailReputationGetOutput as gk, MailStatsGetInput as gl, MailStatsGetOutput as gm, MailSuppressionAddInput as gn, MailSuppressionAddOutput as go, MailSuppressionListInput as gp, MailSuppressionListOutput as gq, MailSuppressionRemoveInput as gr, MailSuppressionRemoveOutput as gs, MailTemplateCreateInput as gt, MailTemplateCreateOutput as gu, MailTemplateDeleteInput as gv, MailTemplateDeleteOutput as gw, MailTemplateGetInput as gx, MailTemplateGetOutput as gy, MailTemplateListInput as gz, BrainBackupsListOutput as h, OrganizationAuthMeOutput as h$, ObserveAlertsListInput as h0, ObserveAlertsListOutput as h1, ObserveAlertsUpdateInput as h2, ObserveAlertsUpdateOutput as h3, ObserveArtifactsDeleteInput as h4, ObserveArtifactsDeleteOutput as h5, ObserveArtifactsListInput as h6, ObserveArtifactsListOutput as h7, ObserveArtifactsResolveInput as h8, ObserveArtifactsResolveOutput as h9, ObserveLogsTailInput as hA, ObserveLogsTailOutput as hB, ObserveMetricsListInput as hC, ObserveMetricsListOutput as hD, ObserveMetricsQueryInput as hE, ObserveMetricsQueryOutput as hF, ObserveTracesGetInput as hG, ObserveTracesGetOutput as hH, ObserveTracesSearchInput as hI, ObserveTracesSearchOutput as hJ, ObserveWebhooksCreateInput as hK, ObserveWebhooksCreateOutput as hL, ObserveWebhooksDeleteInput as hM, ObserveWebhooksDeleteOutput as hN, ObserveWebhooksDeliveriesListInput as hO, ObserveWebhooksDeliveriesListOutput as hP, ObserveWebhooksGetInput as hQ, ObserveWebhooksGetOutput as hR, ObserveWebhooksListInput as hS, ObserveWebhooksListOutput as hT, ObserveWebhooksRedeliverInput as hU, ObserveWebhooksRedeliverOutput as hV, ObserveWebhooksRotateSecretInput as hW, ObserveWebhooksRotateSecretOutput as hX, ObserveWebhooksUpdateInput as hY, ObserveWebhooksUpdateOutput as hZ, OrganizationAuthMeInput as h_, ObserveIssuesArchiveInput as ha, ObserveIssuesArchiveOutput as hb, ObserveIssuesAssignInput as hc, ObserveIssuesAssignOutput as hd, ObserveIssuesEventInput as he, ObserveIssuesEventOutput as hf, ObserveIssuesEventsInput as hg, ObserveIssuesEventsOutput as hh, ObserveIssuesGetInput as hi, ObserveIssuesGetOutput as hj, ObserveIssuesHistogramInput as hk, ObserveIssuesHistogramOutput as hl, ObserveIssuesListInput as hm, ObserveIssuesListOutput as hn, ObserveIssuesResolveInput as ho, ObserveIssuesResolveOutput as hp, ObserveKeysCreateInput as hq, ObserveKeysCreateOutput as hr, ObserveKeysListInput as hs, ObserveKeysListOutput as ht, ObserveKeysRevokeInput as hu, ObserveKeysRevokeOutput as hv, ObserveLogsFacetsInput as hw, ObserveLogsFacetsOutput as hx, ObserveLogsSearchInput as hy, ObserveLogsSearchOutput as hz, BrainClickupChannelsListInput as i, OrganizationGithubListInstallationsOutput as i$, OrganizationBillingBudgetsGetInput as i0, OrganizationBillingBudgetsGetOutput as i1, OrganizationBillingBudgetsSetInput as i2, OrganizationBillingBudgetsSetOutput as i3, OrganizationBillingCapsClearInput as i4, OrganizationBillingCapsClearOutput as i5, OrganizationBillingCapsSetInput as i6, OrganizationBillingCapsSetOutput as i7, OrganizationBindingsListInput as i8, OrganizationBindingsListOutput as i9, OrganizationConnectorsListRequestsInput as iA, OrganizationConnectorsListRequestsOutput as iB, OrganizationConnectorsRemoveInput as iC, OrganizationConnectorsRemoveOutput as iD, OrganizationConnectorsRequestInput as iE, OrganizationConnectorsRequestOutput as iF, OrganizationCreateInput as iG, OrganizationCreateOutput as iH, OrganizationDomainsAddInput as iI, OrganizationDomainsAddOutput as iJ, OrganizationDomainsGetInput as iK, OrganizationDomainsGetOutput as iL, OrganizationDomainsListInput as iM, OrganizationDomainsListOutput as iN, OrganizationDomainsRemoveInput as iO, OrganizationDomainsRemoveOutput as iP, OrganizationDomainsSetModeInput as iQ, OrganizationDomainsSetModeOutput as iR, OrganizationExtensionsListInstalledInput as iS, OrganizationExtensionsListInstalledOutput as iT, OrganizationFeedbackSubmitInput as iU, OrganizationFeedbackSubmitOutput as iV, OrganizationGdriveInstallInput as iW, OrganizationGdriveInstallOutput as iX, OrganizationGithubInstallInput as iY, OrganizationGithubInstallOutput as iZ, OrganizationGithubListInstallationsInput as i_, OrganizationClickupInstallInput as ia, OrganizationClickupInstallOutput as ib, OrganizationClickupListInstallationsInput as ic, OrganizationClickupListInstallationsOutput as id, OrganizationCloudflareInstallInput as ie, OrganizationCloudflareInstallOutput as ig, OrganizationConnectorsApproveRequestInput as ih, OrganizationConnectorsApproveRequestOutput as ii, OrganizationConnectorsAttachInput as ij, OrganizationConnectorsAttachOutput as ik, OrganizationConnectorsDeleteInput as il, OrganizationConnectorsDeleteOutput as im, OrganizationConnectorsDenyRequestInput as io, OrganizationConnectorsDenyRequestOutput as ip, OrganizationConnectorsDetachInput as iq, OrganizationConnectorsDetachOutput as ir, OrganizationConnectorsListAttachmentsInput as is, OrganizationConnectorsListAttachmentsOutput as it, OrganizationConnectorsListAvailableInput as iu, OrganizationConnectorsListAvailableOutput as iv, OrganizationConnectorsListOrgInput as iw, OrganizationConnectorsListOrgOutput as ix, OrganizationConnectorsListInput as iy, OrganizationConnectorsListOutput as iz, BrainClickupChannelsListOutput as j, OrganizationRolesListOutput as j$, OrganizationGoogleadsInstallInput as j0, OrganizationGoogleadsInstallOutput as j1, OrganizationListInput as j2, OrganizationListOutput as j3, OrganizationMemberAcceptInviteInput as j4, OrganizationMemberAcceptInviteOutput as j5, OrganizationMemberInviteInput as j6, OrganizationMemberInviteOutput as j7, OrganizationMemberListInvitationsInput as j8, OrganizationMemberListInvitationsOutput as j9, OrganizationProductListRolesInput as jA, OrganizationProductListRolesOutput as jB, OrganizationProductRevokeAccessInput as jC, OrganizationProductRevokeAccessOutput as jD, OrganizationProductSelectInput as jE, OrganizationProductSelectOutput as jF, OrganizationProductSetAccessInput as jG, OrganizationProductSetAccessOutput as jH, OrganizationProductUpdateInput as jI, OrganizationProductUpdateOutput as jJ, OrganizationPublicKeysCreateInput as jK, OrganizationPublicKeysCreateOutput as jL, OrganizationPublicKeysListInput as jM, OrganizationPublicKeysListOutput as jN, OrganizationPublicKeysRevokeInput as jO, OrganizationPublicKeysRevokeOutput as jP, OrganizationPublicKeysUpdateScopeInput as jQ, OrganizationPublicKeysUpdateScopeOutput as jR, OrganizationPublicRoutesListInput as jS, OrganizationPublicRoutesListOutput as jT, OrganizationRolesCreateInput as jU, OrganizationRolesCreateOutput as jV, OrganizationRolesDeleteInput as jW, OrganizationRolesDeleteOutput as jX, OrganizationRolesGetInput as jY, OrganizationRolesGetOutput as jZ, OrganizationRolesListInput as j_, OrganizationMemberListProductAccessInput as ja, OrganizationMemberListProductAccessOutput as jb, OrganizationMemberListInput as jc, OrganizationMemberListOutput as jd, OrganizationMemberRemoveInput as je, OrganizationMemberRemoveOutput as jf, OrganizationMemberRevokeInvitationInput as jg, OrganizationMemberRevokeInvitationOutput as jh, OrganizationMemberSetRoleInput as ji, OrganizationMemberSetRoleOutput as jj, OrganizationMemberShareProductInput as jk, OrganizationMemberShareProductOutput as jl, OrganizationMemberUnshareProductInput as jm, OrganizationMemberUnshareProductOutput as jn, OrganizationMembersAssignRoleInput as jo, OrganizationMembersAssignRoleOutput as jp, OrganizationPermissionCatalogInput as jq, OrganizationPermissionCatalogOutput as jr, OrganizationProductCreateInput as js, OrganizationProductCreateOutput as jt, OrganizationProductListAccessInput as ju, OrganizationProductListAccessOutput as jv, OrganizationProductListMembersInput as jw, OrganizationProductListMembersOutput as jx, OrganizationProductListInput as jy, OrganizationProductListOutput as jz, BrainClickupConnectionsListInput as k, RealtimeWebhookGetOutput as k$, OrganizationRolesUpdateInput as k0, OrganizationRolesUpdateOutput as k1, OrganizationSecurityMfaEnableInput as k2, OrganizationSecurityMfaEnableOutput as k3, OrganizationSelectInput as k4, OrganizationSelectOutput as k5, OrganizationSupportThreadCreateInput as k6, OrganizationSupportThreadCreateOutput as k7, OrganizationSupportThreadGetInput as k8, OrganizationSupportThreadGetOutput as k9, RealtimeNamespaceListInput as kA, RealtimeNamespaceListOutput as kB, RealtimeNamespaceUpdateInput as kC, RealtimeNamespaceUpdateOutput as kD, RealtimePresenceEnterInput as kE, RealtimePresenceEnterOutput as kF, RealtimePresenceGetInput as kG, RealtimePresenceGetOutput as kH, RealtimePresenceLeaveInput as kI, RealtimePresenceLeaveOutput as kJ, RealtimePresenceStatsInput as kK, RealtimePresenceStatsOutput as kL, RealtimePresenceUpdateInput as kM, RealtimePresenceUpdateOutput as kN, RealtimePublicAccessStatusInput as kO, RealtimePublicAccessStatusOutput as kP, RealtimeStatusGetInput as kQ, RealtimeStatusGetOutput as kR, RealtimeTokensCreateInput as kS, RealtimeTokensCreateOutput as kT, RealtimeWebhookCreateInput as kU, RealtimeWebhookCreateOutput as kV, RealtimeWebhookDeleteInput as kW, RealtimeWebhookDeleteOutput as kX, RealtimeWebhookDeliveriesListInput as kY, RealtimeWebhookDeliveriesListOutput as kZ, RealtimeWebhookGetInput as k_, OrganizationSupportThreadReplyInput as ka, OrganizationSupportThreadReplyOutput as kb, OrganizationSupportThreadsListInput as kc, OrganizationSupportThreadsListOutput as kd, RealtimeArchiveExportInput as ke, RealtimeArchiveExportOutput as kf, RealtimeArchiveExportStatusInput as kg, RealtimeArchiveExportStatusOutput as kh, RealtimeArchiveGetInput as ki, RealtimeArchiveGetOutput as kj, RealtimeGrantCreateInput as kk, RealtimeGrantCreateOutput as kl, RealtimeGrantListInput as km, RealtimeGrantListOutput as kn, RealtimeGrantRevokeInput as ko, RealtimeGrantRevokeOutput as kp, RealtimeHistoryGetInput as kq, RealtimeHistoryGetOutput as kr, RealtimeMessagesPublishInput as ks, RealtimeMessagesPublishOutput as kt, RealtimeNamespaceCreateInput as ku, RealtimeNamespaceCreateOutput as kv, RealtimeNamespaceDeleteInput as kw, RealtimeNamespaceDeleteOutput as kx, RealtimeNamespaceGetInput as ky, RealtimeNamespaceGetOutput as kz, BrainClickupConnectionsListOutput as l, SupportSurveyUnpublishOutput as l$, RealtimeWebhookListInput as l0, RealtimeWebhookListOutput as l1, RealtimeWebhookSecretRotateInput as l2, RealtimeWebhookSecretRotateOutput as l3, RealtimeWebhookUpdateInput as l4, RealtimeWebhookUpdateOutput as l5, SupportAgentCreateInput as l6, SupportAgentCreateOutput as l7, SupportAgentGetInput as l8, SupportAgentGetOutput as l9, SupportRuleGetInput as lA, SupportRuleGetOutput as lB, SupportRuleListInput as lC, SupportRuleListOutput as lD, SupportRuleUpdateInput as lE, SupportRuleUpdateOutput as lF, SupportStatusArchiveInput as lG, SupportStatusArchiveOutput as lH, SupportStatusCreateInput as lI, SupportStatusCreateOutput as lJ, SupportStatusListInput as lK, SupportStatusListOutput as lL, SupportStatusUpdateInput as lM, SupportStatusUpdateOutput as lN, SupportSurveyArchiveInput as lO, SupportSurveyArchiveOutput as lP, SupportSurveyCreateInput as lQ, SupportSurveyCreateOutput as lR, SupportSurveyGetInput as lS, SupportSurveyGetOutput as lT, SupportSurveyListInput as lU, SupportSurveyListOutput as lV, SupportSurveyPublishInput as lW, SupportSurveyPublishOutput as lX, SupportSurveyStatsInput as lY, SupportSurveyStatsOutput as lZ, SupportSurveyUnpublishInput as l_, SupportAgentListInput as la, SupportAgentListOutput as lb, SupportAgentUpdateInput as lc, SupportAgentUpdateOutput as ld, SupportAttachmentCreateInput as le, SupportAttachmentCreateOutput as lf, SupportAttachmentFinalizeInput as lg, SupportAttachmentFinalizeOutput as lh, SupportLabelCreateInput as li, SupportLabelCreateOutput as lj, SupportLabelListInput as lk, SupportLabelListOutput as ll, SupportMessageCreateInput as lm, SupportMessageCreateOutput as ln, SupportMessageListInput as lo, SupportMessageListOutput as lp, SupportResponseEscalateInput as lq, SupportResponseEscalateOutput as lr, SupportResponseGetInput as ls, SupportResponseGetOutput as lt, SupportResponseListInput as lu, SupportResponseListOutput as lv, SupportRuleCreateInput as lw, SupportRuleCreateOutput as lx, SupportRuleDeleteInput as ly, SupportRuleDeleteOutput as lz, BrainClickupListsListInput as m, TrackingGoogleadsSyncNowOutput as m$, SupportSurveyUpdateInput as m0, SupportSurveyUpdateOutput as m1, SupportThreadAssignInput as m2, SupportThreadAssignOutput as m3, SupportThreadCreateInput as m4, SupportThreadCreateOutput as m5, SupportThreadGetInput as m6, SupportThreadGetOutput as m7, SupportThreadListInput as m8, SupportThreadListOutput as m9, TrackingDomainsListInput as mA, TrackingDomainsListOutput as mB, TrackingDomainsVerifyInput as mC, TrackingDomainsVerifyOutput as mD, TrackingEventNamesArchiveInput as mE, TrackingEventNamesArchiveOutput as mF, TrackingEventNamesListInput as mG, TrackingEventNamesListOutput as mH, TrackingEventNamesUnarchiveInput as mI, TrackingEventNamesUnarchiveOutput as mJ, TrackingGoogleadsConnectionStatusInput as mK, TrackingGoogleadsConnectionStatusOutput as mL, TrackingGoogleadsConversionActionsInput as mM, TrackingGoogleadsConversionActionsOutput as mN, TrackingGoogleadsFeedbackConfigGetInput as mO, TrackingGoogleadsFeedbackConfigGetOutput as mP, TrackingGoogleadsFeedbackConfigSetInput as mQ, TrackingGoogleadsFeedbackConfigSetOutput as mR, TrackingGoogleadsFeedbackRunInput as mS, TrackingGoogleadsFeedbackRunOutput as mT, TrackingGoogleadsFeedbackStatusInput as mU, TrackingGoogleadsFeedbackStatusOutput as mV, TrackingGoogleadsFeedbackUploadsInput as mW, TrackingGoogleadsFeedbackUploadsOutput as mX, TrackingGoogleadsRoasReportInput as mY, TrackingGoogleadsRoasReportOutput as mZ, TrackingGoogleadsSyncNowInput as m_, SupportThreadStatusSetInput as ma, SupportThreadStatusSetOutput as mb, SupportThreadUpdateInput as mc, SupportThreadUpdateOutput as md, SupportWebhookCreateInput as me, SupportWebhookCreateOutput as mf, SupportWebhookDeleteInput as mg, SupportWebhookDeleteOutput as mh, SupportWebhookDeliveriesListInput as mi, SupportWebhookDeliveriesListOutput as mj, SupportWebhookGetInput as mk, SupportWebhookGetOutput as ml, SupportWebhookListInput as mm, SupportWebhookListOutput as mn, SupportWebhookRedeliverInput as mo, SupportWebhookRedeliverOutput as mp, SupportWebhookRotateSecretInput as mq, SupportWebhookRotateSecretOutput as mr, SupportWebhookUpdateInput as ms, SupportWebhookUpdateOutput as mt, TrackingDomainsCreateInput as mu, TrackingDomainsCreateOutput as mv, TrackingDomainsDeleteInput as mw, TrackingDomainsDeleteOutput as mx, TrackingDomainsGetInput as my, TrackingDomainsGetOutput as mz, BrainClickupListsListOutput as n, UsersOpsSloGetOutput as n$, TrackingGoogleadsTrackingHealthInput as n0, TrackingGoogleadsTrackingHealthOutput as n1, TrackingGoogleadsUsVsPlatformInput as n2, TrackingGoogleadsUsVsPlatformOutput as n3, TrackingIdentityHealthInput as n4, TrackingIdentityHealthOutput as n5, TrackingInstallDomainsCreateInput as n6, TrackingInstallDomainsCreateOutput as n7, TrackingInstallDomainsDeleteInput as n8, TrackingInstallDomainsDeleteOutput as n9, TrackingSnippetsGetInput as nA, TrackingSnippetsGetOutput as nB, UsersApikeysCreateInput as nC, UsersApikeysCreateOutput as nD, UsersApikeysListInput as nE, UsersApikeysListOutput as nF, UsersApikeysRevokeInput as nG, UsersApikeysRevokeOutput as nH, UsersAuditListInput as nI, UsersAuditListOutput as nJ, UsersConfigGetInput as nK, UsersConfigGetOutput as nL, UsersConfigUpsertInput as nM, UsersConfigUpsertOutput as nN, UsersFactorsListInput as nO, UsersFactorsListOutput as nP, UsersFactorsResetInput as nQ, UsersFactorsResetOutput as nR, UsersKeysListInput as nS, UsersKeysListOutput as nT, UsersKeysRevokeInput as nU, UsersKeysRevokeOutput as nV, UsersKeysRotateInput as nW, UsersKeysRotateOutput as nX, UsersOpsRetentionGetInput as nY, UsersOpsRetentionGetOutput as nZ, UsersOpsSloGetInput as n_, TrackingInstallDomainsListInput as na, TrackingInstallDomainsListOutput as nb, TrackingLinkDomainsCreateInput as nc, TrackingLinkDomainsCreateOutput as nd, TrackingLinkDomainsDeleteInput as ne, TrackingLinkDomainsDeleteOutput as nf, TrackingLinkDomainsListInput as ng, TrackingLinkDomainsListOutput as nh, TrackingLiveEventsListInput as ni, TrackingLiveEventsListOutput as nj, TrackingProfilesDeleteInput as nk, TrackingProfilesDeleteOutput as nl, TrackingProfilesExportInput as nm, TrackingProfilesExportOutput as nn, TrackingProfilesGetInput as no, TrackingProfilesGetOutput as np, TrackingProfilesListInput as nq, TrackingProfilesListOutput as nr, TrackingReportsAttributedJourneyInput as ns, TrackingReportsAttributedJourneyOutput as nt, TrackingReportsEventVolumeInput as nu, TrackingReportsEventVolumeOutput as nv, TrackingReportsRevenueBySourceInput as nw, TrackingReportsRevenueBySourceOutput as nx, TrackingReportsSourcePeopleInput as ny, TrackingReportsSourcePeopleOutput as nz, BrainClickupSpacesListInput as o, WaitlistConfigGetOutput as o$, UsersPasskeysListInput as o0, UsersPasskeysListOutput as o1, UsersPasskeysRevokeInput as o2, UsersPasskeysRevokeOutput as o3, UsersSessionsGetInput as o4, UsersSessionsGetOutput as o5, UsersSessionsImpersonateInput as o6, UsersSessionsImpersonateOutput as o7, UsersSessionsListInput as o8, UsersSessionsListOutput as o9, UsersUsersUpdateInput as oA, UsersUsersUpdateOutput as oB, UsersWaitlistEraseInput as oC, UsersWaitlistEraseOutput as oD, UsersWaitlistFunnelInput as oE, UsersWaitlistFunnelOutput as oF, UsersWaitlistImportInput as oG, UsersWaitlistImportOutput as oH, UsersWaitlistInviteInput as oI, UsersWaitlistInviteOutput as oJ, UsersWaitlistListInput as oK, UsersWaitlistListOutput as oL, UsersWebhooksCreateInput as oM, UsersWebhooksCreateOutput as oN, UsersWebhooksDeleteInput as oO, UsersWebhooksDeleteOutput as oP, UsersWebhooksDeliveriesListInput as oQ, UsersWebhooksDeliveriesListOutput as oR, UsersWebhooksGetInput as oS, UsersWebhooksGetOutput as oT, UsersWebhooksListInput as oU, UsersWebhooksListOutput as oV, UsersWebhooksRotateSecretInput as oW, UsersWebhooksRotateSecretOutput as oX, UsersWebhooksUpdateInput as oY, UsersWebhooksUpdateOutput as oZ, WaitlistConfigGetInput as o_, UsersSessionsRevokeInput as oa, UsersSessionsRevokeOutput as ob, UsersStatsGetInput as oc, UsersStatsGetOutput as od, UsersUsersBanInput as oe, UsersUsersBanOutput as of, UsersUsersCreateInput as og, UsersUsersCreateOutput as oh, UsersUsersDeleteInput as oi, UsersUsersDeleteOutput as oj, UsersUsersEraseInput as ok, UsersUsersEraseOutput as ol, UsersUsersExportInput as om, UsersUsersExportOutput as on, UsersUsersGetInput as oo, UsersUsersGetOutput as op, UsersUsersImportInput as oq, UsersUsersImportOutput as or, UsersUsersInviteInput as os, UsersUsersInviteOutput as ot, UsersUsersListInput as ou, UsersUsersListOutput as ov, UsersUsersSetPrimaryIdentifierInput as ow, UsersUsersSetPrimaryIdentifierOutput as ox, UsersUsersUnbanInput as oy, UsersUsersUnbanOutput as oz, BrainClickupSpacesListOutput as p, WaitlistConfigUpsertInput as p0, WaitlistConfigUpsertOutput as p1, WaitlistEmbedGetInput as p2, WaitlistEmbedGetOutput as p3, WaitlistInvitesSendInput as p4, WaitlistInvitesSendOutput as p5, WaitlistSignupsEraseInput as p6, WaitlistSignupsEraseOutput as p7, WaitlistSignupsFunnelInput as p8, WaitlistSignupsFunnelOutput as p9, WaitlistSignupsListInput as pa, WaitlistSignupsListOutput as pb, 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 };