@lessly/sdk-app 44.0.0 → 44.1.0

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