@botpress/api 1.48.0 → 1.48.1

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.
@@ -1,5 +1,5 @@
1
1
  import * as opapi from '@bpinternal/opapi';
2
- export type State = opapi.State<'Bot' | 'Integration' | 'Interface' | 'Plugin' | 'Workspace' | 'WorkspaceMember' | 'Account' | 'Usage' | 'Issue' | 'IssueEvent' | 'Activity' | 'Version' | 'User' | 'Conversation' | 'Event' | 'Message' | 'State' | 'Task' | 'Workflow' | 'Table' | 'Column' | 'Row' | 'File', never, 'user' | 'conversation' | 'event' | 'message' | 'state' | 'hub' | 'action' | 'task' | 'workflow' | 'tag' | 'bot' | 'integration' | 'interface' | 'plugin' | 'workspace' | 'workspaceMember' | 'account' | 'usage' | 'quotas' | 'helper' | 'activity' | 'tables' | 'files'>;
2
+ export type State = opapi.State<'Table' | 'Column' | 'Row', never, 'tables'>;
3
3
  export declare const state: {
4
4
  operations: {
5
5
  listTables: {
@@ -893,6 +893,7 @@ export declare const state: {
893
893
  type: "array";
894
894
  items: {
895
895
  type: "number";
896
+ maximum: number;
896
897
  };
897
898
  maxItems: number;
898
899
  };
@@ -951,6 +952,7 @@ export declare const state: {
951
952
  properties: {
952
953
  id: {
953
954
  type: "number";
955
+ maximum: number;
954
956
  };
955
957
  };
956
958
  required: string[];
@@ -1027,6 +1029,7 @@ export declare const state: {
1027
1029
  properties: {
1028
1030
  id: {
1029
1031
  type: "number";
1032
+ maximum: number;
1030
1033
  };
1031
1034
  };
1032
1035
  additionalProperties: true;
@@ -1182,2523 +1185,12 @@ export declare const state: {
1182
1185
  upsertTableRowsResponse: true;
1183
1186
  };
1184
1187
  schemas: {
1185
- Bot: true;
1186
- Integration: true;
1187
- Interface: true;
1188
- Plugin: true;
1189
- Workspace: true;
1190
- WorkspaceMember: true;
1191
- Account: true;
1192
- Usage: true;
1193
- Issue: true;
1194
- IssueEvent: true;
1195
- Activity: true;
1196
- Version: true;
1197
- User: true;
1198
- Conversation: true;
1199
- Event: true;
1200
- Message: true;
1201
- State: true;
1202
- Task: true;
1203
- Workflow: true;
1204
1188
  Table: true;
1205
1189
  Column: true;
1206
1190
  Row: true;
1207
- File: true;
1208
1191
  };
1209
1192
  };
1210
1193
  schemas: {
1211
- Bot: {
1212
- section: "bot";
1213
- schema: {
1214
- type: "object";
1215
- properties: {
1216
- id: {
1217
- type: "string";
1218
- minLength: number;
1219
- maxLength: number;
1220
- description: string;
1221
- };
1222
- createdAt: {
1223
- type: "string";
1224
- format: string;
1225
- description: string;
1226
- };
1227
- updatedAt: {
1228
- type: "string";
1229
- format: string;
1230
- description: string;
1231
- };
1232
- signingSecret: {
1233
- type: "string";
1234
- maxLength: number;
1235
- description: string;
1236
- };
1237
- integrations: {
1238
- type: "object";
1239
- additionalProperties: {
1240
- type: "object";
1241
- properties: {
1242
- enabled: {
1243
- type: "boolean";
1244
- };
1245
- name: {
1246
- type: "string";
1247
- maxLength: number;
1248
- description: string;
1249
- };
1250
- version: {
1251
- type: "string";
1252
- maxLength: number;
1253
- description: string;
1254
- };
1255
- webhookUrl: {
1256
- type: "string";
1257
- maxLength: number;
1258
- };
1259
- webhookId: {
1260
- type: "string";
1261
- maxLength: number;
1262
- };
1263
- identifier: {
1264
- type: "string";
1265
- maxLength: number;
1266
- };
1267
- configurationType: {
1268
- type: "string";
1269
- maxLength: number;
1270
- nullable: true;
1271
- };
1272
- configuration: {
1273
- type: "object";
1274
- additionalProperties: true;
1275
- };
1276
- status: {
1277
- type: "string";
1278
- enum: string[];
1279
- };
1280
- statusReason: {
1281
- type: "string";
1282
- maxLength: number;
1283
- nullable: true;
1284
- };
1285
- disabledChannels: {
1286
- type: "array";
1287
- items: {
1288
- type: "string";
1289
- description: string;
1290
- };
1291
- description: string;
1292
- };
1293
- id: {
1294
- type: "string";
1295
- minLength: number;
1296
- maxLength: number;
1297
- description: string;
1298
- };
1299
- createdAt: {
1300
- type: "string";
1301
- format: string;
1302
- description: string;
1303
- };
1304
- updatedAt: {
1305
- type: "string";
1306
- format: string;
1307
- description: string;
1308
- };
1309
- title: {
1310
- type: "string";
1311
- minLength: number;
1312
- maxLength: number;
1313
- description: string;
1314
- };
1315
- description: {
1316
- type: "string";
1317
- maxLength: number;
1318
- description: string;
1319
- };
1320
- iconUrl: {
1321
- type: "string";
1322
- description: string;
1323
- };
1324
- public: {
1325
- type: "boolean";
1326
- description: string;
1327
- deprecated: true;
1328
- };
1329
- visibility: {
1330
- type: "string";
1331
- enum: string[];
1332
- description: string;
1333
- };
1334
- verificationStatus: {
1335
- type: "string";
1336
- enum: string[];
1337
- description: string;
1338
- };
1339
- };
1340
- required: string[];
1341
- additionalProperties: false;
1342
- };
1343
- description: string;
1344
- };
1345
- plugins: {
1346
- type: "object";
1347
- additionalProperties: {
1348
- type: "object";
1349
- properties: {
1350
- enabled: {
1351
- type: "boolean";
1352
- };
1353
- name: {
1354
- type: "string";
1355
- maxLength: number;
1356
- description: string;
1357
- };
1358
- version: {
1359
- type: "string";
1360
- maxLength: number;
1361
- description: string;
1362
- };
1363
- configuration: {
1364
- type: "object";
1365
- additionalProperties: true;
1366
- };
1367
- interfaces: {
1368
- type: "object";
1369
- additionalProperties: {
1370
- type: "object";
1371
- properties: {
1372
- integrationId: {
1373
- type: "string";
1374
- minLength: number;
1375
- maxLength: number;
1376
- };
1377
- integrationAlias: {
1378
- type: "string";
1379
- maxLength: number;
1380
- };
1381
- integrationInterfaceAlias: {
1382
- type: "string";
1383
- maxLength: number;
1384
- };
1385
- interfaceId: {
1386
- type: "string";
1387
- minLength: number;
1388
- maxLength: number;
1389
- };
1390
- };
1391
- required: string[];
1392
- additionalProperties: false;
1393
- };
1394
- description: string;
1395
- };
1396
- integrations: {
1397
- type: "object";
1398
- additionalProperties: {
1399
- type: "object";
1400
- properties: {
1401
- integrationId: {
1402
- type: "string";
1403
- minLength: number;
1404
- maxLength: number;
1405
- };
1406
- integrationAlias: {
1407
- type: "string";
1408
- maxLength: number;
1409
- };
1410
- };
1411
- required: string[];
1412
- additionalProperties: false;
1413
- };
1414
- description: string;
1415
- };
1416
- id: {
1417
- type: "string";
1418
- minLength: number;
1419
- maxLength: number;
1420
- description: string;
1421
- };
1422
- createdAt: {
1423
- type: "string";
1424
- format: string;
1425
- description: string;
1426
- };
1427
- updatedAt: {
1428
- type: "string";
1429
- format: string;
1430
- description: string;
1431
- };
1432
- title: {
1433
- type: "string";
1434
- minLength: number;
1435
- maxLength: number;
1436
- description: string;
1437
- };
1438
- description: {
1439
- type: "string";
1440
- maxLength: number;
1441
- description: string;
1442
- };
1443
- iconUrl: {
1444
- type: "string";
1445
- description: string;
1446
- };
1447
- readmeUrl: {
1448
- type: "string";
1449
- description: string;
1450
- };
1451
- public: {
1452
- type: "boolean";
1453
- description: string;
1454
- };
1455
- };
1456
- required: string[];
1457
- additionalProperties: false;
1458
- };
1459
- description: string;
1460
- };
1461
- maxExecutionTime: {
1462
- type: "number";
1463
- description: string;
1464
- };
1465
- user: {
1466
- type: "object";
1467
- properties: {
1468
- tags: {
1469
- type: "object";
1470
- additionalProperties: {
1471
- type: "object";
1472
- properties: {
1473
- title: {
1474
- type: "string";
1475
- maxLength: number;
1476
- description: string;
1477
- };
1478
- description: {
1479
- type: "string";
1480
- maxLength: number;
1481
- description: string;
1482
- };
1483
- };
1484
- description: string;
1485
- additionalProperties: false;
1486
- };
1487
- };
1488
- };
1489
- required: string[];
1490
- description: string;
1491
- additionalProperties: false;
1492
- };
1493
- conversation: {
1494
- type: "object";
1495
- properties: {
1496
- tags: {
1497
- type: "object";
1498
- additionalProperties: {
1499
- type: "object";
1500
- properties: {
1501
- title: {
1502
- type: "string";
1503
- maxLength: number;
1504
- description: string;
1505
- };
1506
- description: {
1507
- type: "string";
1508
- maxLength: number;
1509
- description: string;
1510
- };
1511
- };
1512
- description: string;
1513
- additionalProperties: false;
1514
- };
1515
- };
1516
- };
1517
- required: string[];
1518
- description: string;
1519
- additionalProperties: false;
1520
- };
1521
- message: {
1522
- type: "object";
1523
- properties: {
1524
- tags: {
1525
- type: "object";
1526
- additionalProperties: {
1527
- type: "object";
1528
- properties: {
1529
- title: {
1530
- type: "string";
1531
- maxLength: number;
1532
- description: string;
1533
- };
1534
- description: {
1535
- type: "string";
1536
- maxLength: number;
1537
- description: string;
1538
- };
1539
- };
1540
- description: string;
1541
- additionalProperties: false;
1542
- };
1543
- };
1544
- };
1545
- required: string[];
1546
- description: string;
1547
- additionalProperties: false;
1548
- };
1549
- states: {
1550
- type: "object";
1551
- additionalProperties: {
1552
- type: "object";
1553
- properties: {
1554
- type: {
1555
- type: "string";
1556
- enum: string[];
1557
- description: string;
1558
- };
1559
- schema: {
1560
- type: "object";
1561
- additionalProperties: true;
1562
- description: string;
1563
- };
1564
- expiry: {
1565
- type: "number";
1566
- minimum: number;
1567
- description: string;
1568
- };
1569
- };
1570
- required: string[];
1571
- additionalProperties: false;
1572
- };
1573
- description: string;
1574
- };
1575
- configuration: {
1576
- type: "object";
1577
- properties: {
1578
- data: {
1579
- type: "object";
1580
- additionalProperties: true;
1581
- description: string;
1582
- };
1583
- schema: {
1584
- type: "object";
1585
- additionalProperties: true;
1586
- description: string;
1587
- };
1588
- };
1589
- required: string[];
1590
- description: string;
1591
- additionalProperties: false;
1592
- };
1593
- events: {
1594
- type: "object";
1595
- additionalProperties: {
1596
- type: "object";
1597
- properties: {
1598
- title: {
1599
- type: "string";
1600
- maxLength: number;
1601
- description: string;
1602
- };
1603
- description: {
1604
- type: "string";
1605
- maxLength: number;
1606
- description: string;
1607
- };
1608
- schema: {
1609
- type: "object";
1610
- additionalProperties: true;
1611
- };
1612
- attributes: {
1613
- type: "object";
1614
- additionalProperties: {
1615
- type: "string";
1616
- maxLength: number;
1617
- };
1618
- description: string;
1619
- };
1620
- };
1621
- required: string[];
1622
- description: string;
1623
- additionalProperties: false;
1624
- };
1625
- description: string;
1626
- };
1627
- recurringEvents: {
1628
- type: "object";
1629
- additionalProperties: {
1630
- type: "object";
1631
- properties: {
1632
- schedule: {
1633
- type: "object";
1634
- properties: {
1635
- cron: {
1636
- type: "string";
1637
- maxLength: number;
1638
- };
1639
- };
1640
- required: string[];
1641
- additionalProperties: false;
1642
- };
1643
- type: {
1644
- type: "string";
1645
- maxLength: number;
1646
- };
1647
- payload: {
1648
- type: "object";
1649
- additionalProperties: true;
1650
- };
1651
- failedAttempts: {
1652
- type: "number";
1653
- description: string;
1654
- };
1655
- lastFailureReason: {
1656
- type: "string";
1657
- maxLength: number;
1658
- description: string;
1659
- nullable: true;
1660
- };
1661
- };
1662
- required: string[];
1663
- additionalProperties: false;
1664
- };
1665
- description: string;
1666
- };
1667
- subscriptions: {
1668
- type: "object";
1669
- properties: {
1670
- events: {
1671
- type: "object";
1672
- additionalProperties: {
1673
- type: "object";
1674
- additionalProperties: false;
1675
- };
1676
- nullable: true;
1677
- description: string;
1678
- };
1679
- };
1680
- required: string[];
1681
- description: string;
1682
- additionalProperties: false;
1683
- };
1684
- actions: {
1685
- type: "object";
1686
- additionalProperties: {
1687
- type: "object";
1688
- properties: {
1689
- title: {
1690
- type: "string";
1691
- maxLength: number;
1692
- description: string;
1693
- };
1694
- description: {
1695
- type: "string";
1696
- maxLength: number;
1697
- description: string;
1698
- };
1699
- billable: {
1700
- type: "boolean";
1701
- };
1702
- cacheable: {
1703
- type: "boolean";
1704
- };
1705
- input: {
1706
- type: "object";
1707
- properties: {
1708
- schema: {
1709
- type: "object";
1710
- additionalProperties: true;
1711
- };
1712
- };
1713
- required: string[];
1714
- additionalProperties: false;
1715
- };
1716
- output: {
1717
- type: "object";
1718
- properties: {
1719
- schema: {
1720
- type: "object";
1721
- additionalProperties: true;
1722
- };
1723
- };
1724
- required: string[];
1725
- additionalProperties: false;
1726
- };
1727
- attributes: {
1728
- type: "object";
1729
- additionalProperties: {
1730
- type: "string";
1731
- maxLength: number;
1732
- };
1733
- description: string;
1734
- };
1735
- };
1736
- required: string[];
1737
- description: string;
1738
- additionalProperties: false;
1739
- };
1740
- description: string;
1741
- };
1742
- tags: {
1743
- type: "object";
1744
- additionalProperties: {
1745
- type: "string";
1746
- };
1747
- description: string;
1748
- };
1749
- name: {
1750
- type: "string";
1751
- description: string;
1752
- };
1753
- deployedAt: {
1754
- type: "string";
1755
- format: string;
1756
- description: string;
1757
- };
1758
- dev: {
1759
- type: "boolean";
1760
- description: string;
1761
- };
1762
- createdBy: {
1763
- type: "string";
1764
- description: string;
1765
- };
1766
- alwaysAlive: {
1767
- type: "boolean";
1768
- description: string;
1769
- };
1770
- status: {
1771
- type: "string";
1772
- enum: string[];
1773
- description: string;
1774
- };
1775
- medias: {
1776
- type: "array";
1777
- items: {
1778
- type: "object";
1779
- properties: {
1780
- url: {
1781
- type: "string";
1782
- description: string;
1783
- };
1784
- name: {
1785
- type: "string";
1786
- description: string;
1787
- };
1788
- };
1789
- required: string[];
1790
- };
1791
- description: string;
1792
- };
1793
- };
1794
- required: string[];
1795
- additionalProperties: false;
1796
- };
1797
- };
1798
- Integration: {
1799
- section: "integration";
1800
- schema: {
1801
- type: "object";
1802
- properties: {
1803
- id: {
1804
- type: "string";
1805
- minLength: number;
1806
- maxLength: number;
1807
- description: string;
1808
- };
1809
- createdAt: {
1810
- type: "string";
1811
- format: string;
1812
- description: string;
1813
- };
1814
- updatedAt: {
1815
- type: "string";
1816
- format: string;
1817
- description: string;
1818
- };
1819
- identifier: {
1820
- type: "object";
1821
- properties: {
1822
- fallbackHandlerScript: {
1823
- type: "string";
1824
- maxLength: number;
1825
- description: string;
1826
- };
1827
- extractScript: {
1828
- type: "string";
1829
- maxLength: number;
1830
- description: string;
1831
- };
1832
- };
1833
- description: string;
1834
- additionalProperties: false;
1835
- };
1836
- sandbox: {
1837
- type: "object";
1838
- properties: {
1839
- identifierExtractScript: {
1840
- type: "string";
1841
- maxLength: number;
1842
- description: string;
1843
- };
1844
- messageExtractScript: {
1845
- type: "string";
1846
- maxLength: number;
1847
- description: string;
1848
- };
1849
- };
1850
- additionalProperties: false;
1851
- };
1852
- maxExecutionTime: {
1853
- type: "number";
1854
- description: string;
1855
- };
1856
- url: {
1857
- type: "string";
1858
- maxLength: number;
1859
- description: string;
1860
- };
1861
- name: {
1862
- type: "string";
1863
- maxLength: number;
1864
- description: string;
1865
- };
1866
- version: {
1867
- type: "string";
1868
- maxLength: number;
1869
- description: string;
1870
- };
1871
- interfaces: {
1872
- type: "object";
1873
- additionalProperties: {
1874
- type: "object";
1875
- properties: {
1876
- id: {
1877
- type: "string";
1878
- minLength: number;
1879
- maxLength: number;
1880
- description: string;
1881
- };
1882
- name: {
1883
- type: "string";
1884
- maxLength: number;
1885
- description: string;
1886
- };
1887
- version: {
1888
- type: "string";
1889
- maxLength: number;
1890
- description: string;
1891
- };
1892
- entities: {
1893
- type: "object";
1894
- additionalProperties: {
1895
- type: "object";
1896
- properties: {
1897
- name: {
1898
- type: "string";
1899
- maxLength: number;
1900
- };
1901
- };
1902
- required: string[];
1903
- additionalProperties: false;
1904
- };
1905
- };
1906
- actions: {
1907
- type: "object";
1908
- additionalProperties: {
1909
- type: "object";
1910
- properties: {
1911
- name: {
1912
- type: "string";
1913
- maxLength: number;
1914
- };
1915
- };
1916
- required: string[];
1917
- additionalProperties: false;
1918
- };
1919
- };
1920
- events: {
1921
- type: "object";
1922
- additionalProperties: {
1923
- type: "object";
1924
- properties: {
1925
- name: {
1926
- type: "string";
1927
- maxLength: number;
1928
- };
1929
- };
1930
- required: string[];
1931
- additionalProperties: false;
1932
- };
1933
- };
1934
- channels: {
1935
- type: "object";
1936
- additionalProperties: {
1937
- type: "object";
1938
- properties: {
1939
- name: {
1940
- type: "string";
1941
- maxLength: number;
1942
- };
1943
- };
1944
- required: string[];
1945
- additionalProperties: false;
1946
- };
1947
- };
1948
- };
1949
- required: string[];
1950
- additionalProperties: false;
1951
- };
1952
- };
1953
- configuration: {
1954
- type: "object";
1955
- properties: {
1956
- title: {
1957
- type: "string";
1958
- maxLength: number;
1959
- description: string;
1960
- };
1961
- description: {
1962
- type: "string";
1963
- maxLength: number;
1964
- description: string;
1965
- };
1966
- identifier: {
1967
- type: "object";
1968
- properties: {
1969
- linkTemplateScript: {
1970
- type: "string";
1971
- maxLength: number;
1972
- };
1973
- required: {
1974
- type: "boolean";
1975
- };
1976
- };
1977
- required: string[];
1978
- description: string;
1979
- additionalProperties: false;
1980
- };
1981
- schema: {
1982
- type: "object";
1983
- additionalProperties: true;
1984
- description: string;
1985
- };
1986
- };
1987
- required: string[];
1988
- description: string;
1989
- additionalProperties: false;
1990
- };
1991
- configurations: {
1992
- type: "object";
1993
- additionalProperties: {
1994
- type: "object";
1995
- properties: {
1996
- title: {
1997
- type: "string";
1998
- maxLength: number;
1999
- description: string;
2000
- };
2001
- description: {
2002
- type: "string";
2003
- maxLength: number;
2004
- description: string;
2005
- };
2006
- identifier: {
2007
- type: "object";
2008
- properties: {
2009
- linkTemplateScript: {
2010
- type: "string";
2011
- maxLength: number;
2012
- };
2013
- required: {
2014
- type: "boolean";
2015
- };
2016
- };
2017
- required: string[];
2018
- description: string;
2019
- additionalProperties: false;
2020
- };
2021
- schema: {
2022
- type: "object";
2023
- additionalProperties: true;
2024
- description: string;
2025
- };
2026
- };
2027
- required: string[];
2028
- description: string;
2029
- additionalProperties: false;
2030
- };
2031
- };
2032
- channels: {
2033
- type: "object";
2034
- additionalProperties: {
2035
- type: "object";
2036
- properties: {
2037
- title: {
2038
- type: "string";
2039
- maxLength: number;
2040
- description: string;
2041
- };
2042
- description: {
2043
- type: "string";
2044
- maxLength: number;
2045
- description: string;
2046
- };
2047
- messages: {
2048
- type: "object";
2049
- additionalProperties: {
2050
- type: "object";
2051
- properties: {
2052
- schema: {
2053
- type: "object";
2054
- additionalProperties: true;
2055
- };
2056
- };
2057
- required: string[];
2058
- description: string;
2059
- additionalProperties: false;
2060
- };
2061
- };
2062
- conversation: {
2063
- type: "object";
2064
- properties: {
2065
- tags: {
2066
- type: "object";
2067
- additionalProperties: {
2068
- type: "object";
2069
- properties: {
2070
- title: {
2071
- type: "string";
2072
- maxLength: number;
2073
- description: string;
2074
- };
2075
- description: {
2076
- type: "string";
2077
- maxLength: number;
2078
- description: string;
2079
- };
2080
- };
2081
- description: string;
2082
- additionalProperties: false;
2083
- };
2084
- };
2085
- creation: {
2086
- type: "object";
2087
- properties: {
2088
- enabled: {
2089
- type: "boolean";
2090
- description: string;
2091
- };
2092
- requiredTags: {
2093
- type: "array";
2094
- items: {
2095
- type: "string";
2096
- };
2097
- description: string;
2098
- };
2099
- };
2100
- required: string[];
2101
- description: string;
2102
- additionalProperties: false;
2103
- };
2104
- };
2105
- required: string[];
2106
- description: string;
2107
- additionalProperties: false;
2108
- };
2109
- message: {
2110
- type: "object";
2111
- properties: {
2112
- tags: {
2113
- type: "object";
2114
- additionalProperties: {
2115
- type: "object";
2116
- properties: {
2117
- title: {
2118
- type: "string";
2119
- maxLength: number;
2120
- description: string;
2121
- };
2122
- description: {
2123
- type: "string";
2124
- maxLength: number;
2125
- description: string;
2126
- };
2127
- };
2128
- description: string;
2129
- additionalProperties: false;
2130
- };
2131
- };
2132
- };
2133
- required: string[];
2134
- description: string;
2135
- additionalProperties: false;
2136
- };
2137
- };
2138
- required: string[];
2139
- description: string;
2140
- additionalProperties: false;
2141
- };
2142
- };
2143
- states: {
2144
- type: "object";
2145
- additionalProperties: {
2146
- type: "object";
2147
- properties: {
2148
- type: {
2149
- type: "string";
2150
- enum: string[];
2151
- description: string;
2152
- };
2153
- schema: {
2154
- type: "object";
2155
- additionalProperties: true;
2156
- description: string;
2157
- };
2158
- };
2159
- required: string[];
2160
- description: string;
2161
- additionalProperties: false;
2162
- };
2163
- };
2164
- events: {
2165
- type: "object";
2166
- additionalProperties: {
2167
- type: "object";
2168
- properties: {
2169
- title: {
2170
- type: "string";
2171
- maxLength: number;
2172
- description: string;
2173
- };
2174
- description: {
2175
- type: "string";
2176
- maxLength: number;
2177
- description: string;
2178
- };
2179
- schema: {
2180
- type: "object";
2181
- additionalProperties: true;
2182
- };
2183
- attributes: {
2184
- type: "object";
2185
- additionalProperties: {
2186
- type: "string";
2187
- maxLength: number;
2188
- };
2189
- description: string;
2190
- };
2191
- };
2192
- required: string[];
2193
- description: string;
2194
- additionalProperties: false;
2195
- };
2196
- };
2197
- actions: {
2198
- type: "object";
2199
- additionalProperties: {
2200
- type: "object";
2201
- properties: {
2202
- title: {
2203
- type: "string";
2204
- maxLength: number;
2205
- description: string;
2206
- };
2207
- description: {
2208
- type: "string";
2209
- maxLength: number;
2210
- description: string;
2211
- };
2212
- billable: {
2213
- type: "boolean";
2214
- };
2215
- cacheable: {
2216
- type: "boolean";
2217
- };
2218
- input: {
2219
- type: "object";
2220
- properties: {
2221
- schema: {
2222
- type: "object";
2223
- additionalProperties: true;
2224
- };
2225
- };
2226
- required: string[];
2227
- additionalProperties: false;
2228
- };
2229
- output: {
2230
- type: "object";
2231
- properties: {
2232
- schema: {
2233
- type: "object";
2234
- additionalProperties: true;
2235
- };
2236
- };
2237
- required: string[];
2238
- additionalProperties: false;
2239
- };
2240
- attributes: {
2241
- type: "object";
2242
- additionalProperties: {
2243
- type: "string";
2244
- maxLength: number;
2245
- };
2246
- description: string;
2247
- };
2248
- };
2249
- required: string[];
2250
- description: string;
2251
- additionalProperties: false;
2252
- };
2253
- };
2254
- user: {
2255
- type: "object";
2256
- properties: {
2257
- tags: {
2258
- type: "object";
2259
- additionalProperties: {
2260
- type: "object";
2261
- properties: {
2262
- title: {
2263
- type: "string";
2264
- maxLength: number;
2265
- description: string;
2266
- };
2267
- description: {
2268
- type: "string";
2269
- maxLength: number;
2270
- description: string;
2271
- };
2272
- };
2273
- description: string;
2274
- additionalProperties: false;
2275
- };
2276
- };
2277
- creation: {
2278
- type: "object";
2279
- properties: {
2280
- enabled: {
2281
- type: "boolean";
2282
- description: string;
2283
- };
2284
- requiredTags: {
2285
- type: "array";
2286
- items: {
2287
- type: "string";
2288
- };
2289
- description: string;
2290
- };
2291
- };
2292
- required: string[];
2293
- description: string;
2294
- additionalProperties: false;
2295
- };
2296
- };
2297
- required: string[];
2298
- description: string;
2299
- additionalProperties: false;
2300
- };
2301
- entities: {
2302
- type: "object";
2303
- additionalProperties: {
2304
- type: "object";
2305
- properties: {
2306
- title: {
2307
- type: "string";
2308
- maxLength: number;
2309
- description: string;
2310
- };
2311
- description: {
2312
- type: "string";
2313
- maxLength: number;
2314
- description: string;
2315
- };
2316
- schema: {
2317
- type: "object";
2318
- additionalProperties: true;
2319
- };
2320
- };
2321
- required: string[];
2322
- description: string;
2323
- additionalProperties: false;
2324
- };
2325
- };
2326
- attributes: {
2327
- type: "object";
2328
- additionalProperties: {
2329
- type: "string";
2330
- maxLength: number;
2331
- };
2332
- description: string;
2333
- };
2334
- dev: {
2335
- type: "boolean";
2336
- description: string;
2337
- };
2338
- title: {
2339
- type: "string";
2340
- minLength: number;
2341
- maxLength: number;
2342
- description: string;
2343
- };
2344
- description: {
2345
- type: "string";
2346
- maxLength: number;
2347
- description: string;
2348
- };
2349
- iconUrl: {
2350
- type: "string";
2351
- description: string;
2352
- };
2353
- readmeUrl: {
2354
- type: "string";
2355
- description: string;
2356
- };
2357
- public: {
2358
- type: "boolean";
2359
- description: string;
2360
- deprecated: true;
2361
- };
2362
- visibility: {
2363
- type: "string";
2364
- enum: string[];
2365
- description: string;
2366
- };
2367
- verificationStatus: {
2368
- type: "string";
2369
- enum: string[];
2370
- description: string;
2371
- };
2372
- secrets: {
2373
- type: "array";
2374
- items: {
2375
- type: "string";
2376
- };
2377
- description: string;
2378
- };
2379
- };
2380
- required: string[];
2381
- additionalProperties: false;
2382
- };
2383
- };
2384
- Interface: {
2385
- section: "interface";
2386
- schema: {
2387
- type: "object";
2388
- properties: {
2389
- id: {
2390
- type: "string";
2391
- minLength: number;
2392
- maxLength: number;
2393
- description: string;
2394
- };
2395
- createdAt: {
2396
- type: "string";
2397
- format: string;
2398
- description: string;
2399
- };
2400
- updatedAt: {
2401
- type: "string";
2402
- format: string;
2403
- description: string;
2404
- };
2405
- name: {
2406
- type: "string";
2407
- maxLength: number;
2408
- description: string;
2409
- };
2410
- version: {
2411
- type: "string";
2412
- maxLength: number;
2413
- description: string;
2414
- };
2415
- entities: {
2416
- type: "object";
2417
- additionalProperties: {
2418
- type: "object";
2419
- properties: {
2420
- title: {
2421
- type: "string";
2422
- maxLength: number;
2423
- description: string;
2424
- };
2425
- description: {
2426
- type: "string";
2427
- maxLength: number;
2428
- description: string;
2429
- };
2430
- schema: {
2431
- type: "object";
2432
- additionalProperties: true;
2433
- };
2434
- };
2435
- required: string[];
2436
- description: string;
2437
- additionalProperties: false;
2438
- };
2439
- };
2440
- events: {
2441
- type: "object";
2442
- additionalProperties: {
2443
- type: "object";
2444
- properties: {
2445
- title: {
2446
- type: "string";
2447
- maxLength: number;
2448
- description: string;
2449
- };
2450
- description: {
2451
- type: "string";
2452
- maxLength: number;
2453
- description: string;
2454
- };
2455
- schema: {
2456
- type: "object";
2457
- additionalProperties: true;
2458
- };
2459
- attributes: {
2460
- type: "object";
2461
- additionalProperties: {
2462
- type: "string";
2463
- maxLength: number;
2464
- };
2465
- description: string;
2466
- };
2467
- };
2468
- required: string[];
2469
- description: string;
2470
- additionalProperties: false;
2471
- };
2472
- };
2473
- actions: {
2474
- type: "object";
2475
- additionalProperties: {
2476
- type: "object";
2477
- properties: {
2478
- title: {
2479
- type: "string";
2480
- maxLength: number;
2481
- description: string;
2482
- };
2483
- description: {
2484
- type: "string";
2485
- maxLength: number;
2486
- description: string;
2487
- };
2488
- billable: {
2489
- type: "boolean";
2490
- };
2491
- cacheable: {
2492
- type: "boolean";
2493
- };
2494
- input: {
2495
- type: "object";
2496
- properties: {
2497
- schema: {
2498
- type: "object";
2499
- additionalProperties: true;
2500
- };
2501
- };
2502
- required: string[];
2503
- additionalProperties: false;
2504
- };
2505
- output: {
2506
- type: "object";
2507
- properties: {
2508
- schema: {
2509
- type: "object";
2510
- additionalProperties: true;
2511
- };
2512
- };
2513
- required: string[];
2514
- additionalProperties: false;
2515
- };
2516
- attributes: {
2517
- type: "object";
2518
- additionalProperties: {
2519
- type: "string";
2520
- maxLength: number;
2521
- };
2522
- description: string;
2523
- };
2524
- };
2525
- required: string[];
2526
- description: string;
2527
- additionalProperties: false;
2528
- };
2529
- };
2530
- channels: {
2531
- type: "object";
2532
- additionalProperties: {
2533
- type: "object";
2534
- properties: {
2535
- title: {
2536
- type: "string";
2537
- maxLength: number;
2538
- description: string;
2539
- };
2540
- description: {
2541
- type: "string";
2542
- maxLength: number;
2543
- description: string;
2544
- };
2545
- messages: {
2546
- type: "object";
2547
- additionalProperties: {
2548
- type: "object";
2549
- properties: {
2550
- schema: {
2551
- type: "object";
2552
- additionalProperties: true;
2553
- };
2554
- };
2555
- required: string[];
2556
- description: string;
2557
- additionalProperties: false;
2558
- };
2559
- };
2560
- };
2561
- required: string[];
2562
- additionalProperties: false;
2563
- };
2564
- };
2565
- nameTemplate: {
2566
- type: "object";
2567
- properties: {
2568
- script: {
2569
- type: "string";
2570
- maxLength: number;
2571
- };
2572
- language: {
2573
- type: "string";
2574
- maxLength: number;
2575
- };
2576
- };
2577
- required: string[];
2578
- description: string;
2579
- additionalProperties: false;
2580
- };
2581
- attributes: {
2582
- type: "object";
2583
- additionalProperties: {
2584
- type: "string";
2585
- maxLength: number;
2586
- };
2587
- description: string;
2588
- };
2589
- title: {
2590
- type: "string";
2591
- minLength: number;
2592
- maxLength: number;
2593
- description: string;
2594
- };
2595
- description: {
2596
- type: "string";
2597
- maxLength: number;
2598
- description: string;
2599
- };
2600
- iconUrl: {
2601
- type: "string";
2602
- description: string;
2603
- };
2604
- readmeUrl: {
2605
- type: "string";
2606
- description: string;
2607
- };
2608
- public: {
2609
- type: "boolean";
2610
- description: string;
2611
- };
2612
- };
2613
- required: string[];
2614
- additionalProperties: false;
2615
- };
2616
- };
2617
- Plugin: {
2618
- section: "plugin";
2619
- schema: {
2620
- type: "object";
2621
- properties: {
2622
- id: {
2623
- type: "string";
2624
- minLength: number;
2625
- maxLength: number;
2626
- description: string;
2627
- };
2628
- name: {
2629
- type: "string";
2630
- maxLength: number;
2631
- description: string;
2632
- };
2633
- version: {
2634
- type: "string";
2635
- maxLength: number;
2636
- description: string;
2637
- };
2638
- createdAt: {
2639
- type: "string";
2640
- format: string;
2641
- description: string;
2642
- };
2643
- updatedAt: {
2644
- type: "string";
2645
- format: string;
2646
- description: string;
2647
- };
2648
- configuration: {
2649
- type: "object";
2650
- properties: {
2651
- title: {
2652
- type: "string";
2653
- maxLength: number;
2654
- description: string;
2655
- };
2656
- description: {
2657
- type: "string";
2658
- maxLength: number;
2659
- description: string;
2660
- };
2661
- schema: {
2662
- type: "object";
2663
- additionalProperties: true;
2664
- description: string;
2665
- };
2666
- };
2667
- required: string[];
2668
- description: string;
2669
- additionalProperties: false;
2670
- };
2671
- states: {
2672
- type: "object";
2673
- additionalProperties: {
2674
- type: "object";
2675
- properties: {
2676
- type: {
2677
- type: "string";
2678
- enum: string[];
2679
- description: string;
2680
- };
2681
- schema: {
2682
- type: "object";
2683
- additionalProperties: true;
2684
- description: string;
2685
- };
2686
- expiry: {
2687
- type: "number";
2688
- minimum: number;
2689
- description: string;
2690
- };
2691
- };
2692
- required: string[];
2693
- additionalProperties: false;
2694
- };
2695
- };
2696
- events: {
2697
- type: "object";
2698
- additionalProperties: {
2699
- type: "object";
2700
- properties: {
2701
- title: {
2702
- type: "string";
2703
- maxLength: number;
2704
- description: string;
2705
- };
2706
- description: {
2707
- type: "string";
2708
- maxLength: number;
2709
- description: string;
2710
- };
2711
- schema: {
2712
- type: "object";
2713
- additionalProperties: true;
2714
- };
2715
- attributes: {
2716
- type: "object";
2717
- additionalProperties: {
2718
- type: "string";
2719
- maxLength: number;
2720
- };
2721
- description: string;
2722
- };
2723
- };
2724
- required: string[];
2725
- description: string;
2726
- additionalProperties: false;
2727
- };
2728
- };
2729
- actions: {
2730
- type: "object";
2731
- additionalProperties: {
2732
- type: "object";
2733
- properties: {
2734
- title: {
2735
- type: "string";
2736
- maxLength: number;
2737
- description: string;
2738
- };
2739
- description: {
2740
- type: "string";
2741
- maxLength: number;
2742
- description: string;
2743
- };
2744
- billable: {
2745
- type: "boolean";
2746
- };
2747
- cacheable: {
2748
- type: "boolean";
2749
- };
2750
- input: {
2751
- type: "object";
2752
- properties: {
2753
- schema: {
2754
- type: "object";
2755
- additionalProperties: true;
2756
- };
2757
- };
2758
- required: string[];
2759
- additionalProperties: false;
2760
- };
2761
- output: {
2762
- type: "object";
2763
- properties: {
2764
- schema: {
2765
- type: "object";
2766
- additionalProperties: true;
2767
- };
2768
- };
2769
- required: string[];
2770
- additionalProperties: false;
2771
- };
2772
- attributes: {
2773
- type: "object";
2774
- additionalProperties: {
2775
- type: "string";
2776
- maxLength: number;
2777
- };
2778
- description: string;
2779
- };
2780
- };
2781
- required: string[];
2782
- description: string;
2783
- additionalProperties: false;
2784
- };
2785
- };
2786
- dependencies: {
2787
- type: "object";
2788
- properties: {
2789
- interfaces: {
2790
- type: "object";
2791
- additionalProperties: {
2792
- type: "object";
2793
- properties: {
2794
- id: {
2795
- type: "string";
2796
- minLength: number;
2797
- maxLength: number;
2798
- };
2799
- name: {
2800
- type: "string";
2801
- maxLength: number;
2802
- };
2803
- version: {
2804
- type: "string";
2805
- maxLength: number;
2806
- };
2807
- };
2808
- required: string[];
2809
- additionalProperties: false;
2810
- };
2811
- };
2812
- integrations: {
2813
- type: "object";
2814
- additionalProperties: {
2815
- type: "object";
2816
- properties: {
2817
- id: {
2818
- type: "string";
2819
- minLength: number;
2820
- maxLength: number;
2821
- };
2822
- name: {
2823
- type: "string";
2824
- maxLength: number;
2825
- };
2826
- version: {
2827
- type: "string";
2828
- maxLength: number;
2829
- };
2830
- };
2831
- required: string[];
2832
- additionalProperties: false;
2833
- };
2834
- };
2835
- };
2836
- required: string[];
2837
- additionalProperties: false;
2838
- };
2839
- user: {
2840
- type: "object";
2841
- properties: {
2842
- tags: {
2843
- type: "object";
2844
- additionalProperties: {
2845
- type: "object";
2846
- properties: {
2847
- title: {
2848
- type: "string";
2849
- maxLength: number;
2850
- description: string;
2851
- };
2852
- description: {
2853
- type: "string";
2854
- maxLength: number;
2855
- description: string;
2856
- };
2857
- };
2858
- description: string;
2859
- additionalProperties: false;
2860
- };
2861
- };
2862
- };
2863
- required: string[];
2864
- description: string;
2865
- additionalProperties: false;
2866
- };
2867
- conversation: {
2868
- type: "object";
2869
- properties: {
2870
- tags: {
2871
- type: "object";
2872
- additionalProperties: {
2873
- type: "object";
2874
- properties: {
2875
- title: {
2876
- type: "string";
2877
- maxLength: number;
2878
- description: string;
2879
- };
2880
- description: {
2881
- type: "string";
2882
- maxLength: number;
2883
- description: string;
2884
- };
2885
- };
2886
- description: string;
2887
- additionalProperties: false;
2888
- };
2889
- };
2890
- };
2891
- required: string[];
2892
- description: string;
2893
- additionalProperties: false;
2894
- };
2895
- attributes: {
2896
- type: "object";
2897
- additionalProperties: {
2898
- type: "string";
2899
- maxLength: number;
2900
- };
2901
- description: string;
2902
- };
2903
- title: {
2904
- type: "string";
2905
- minLength: number;
2906
- maxLength: number;
2907
- description: string;
2908
- };
2909
- description: {
2910
- type: "string";
2911
- maxLength: number;
2912
- description: string;
2913
- };
2914
- iconUrl: {
2915
- type: "string";
2916
- description: string;
2917
- };
2918
- readmeUrl: {
2919
- type: "string";
2920
- description: string;
2921
- };
2922
- public: {
2923
- type: "boolean";
2924
- description: string;
2925
- };
2926
- };
2927
- required: string[];
2928
- additionalProperties: false;
2929
- };
2930
- };
2931
- Workspace: {
2932
- section: "workspace";
2933
- schema: {
2934
- type: "object";
2935
- properties: {
2936
- id: {
2937
- type: "string";
2938
- };
2939
- name: {
2940
- type: "string";
2941
- };
2942
- ownerId: {
2943
- type: "string";
2944
- };
2945
- createdAt: {
2946
- type: "string";
2947
- };
2948
- updatedAt: {
2949
- type: "string";
2950
- };
2951
- botCount: {
2952
- type: "number";
2953
- };
2954
- billingVersion: {
2955
- type: "string";
2956
- enum: string[];
2957
- };
2958
- plan: {
2959
- type: "string";
2960
- enum: string[];
2961
- };
2962
- blocked: {
2963
- type: "boolean";
2964
- };
2965
- spendingLimit: {
2966
- type: "number";
2967
- };
2968
- about: {
2969
- default: string;
2970
- type: "string";
2971
- };
2972
- profilePicture: {
2973
- default: string;
2974
- type: "string";
2975
- };
2976
- contactEmail: {
2977
- default: string;
2978
- type: "string";
2979
- };
2980
- website: {
2981
- default: string;
2982
- type: "string";
2983
- };
2984
- socialAccounts: {
2985
- default: never[];
2986
- type: "array";
2987
- items: {
2988
- type: "string";
2989
- };
2990
- };
2991
- isPublic: {
2992
- type: "boolean";
2993
- };
2994
- handle: {
2995
- type: "string";
2996
- };
2997
- activeTrialId: {
2998
- type: "string";
2999
- nullable: true;
3000
- };
3001
- };
3002
- required: string[];
3003
- title: string;
3004
- additionalProperties: false;
3005
- };
3006
- };
3007
- WorkspaceMember: {
3008
- section: "workspaceMember";
3009
- schema: {
3010
- type: "object";
3011
- properties: {
3012
- id: {
3013
- type: "string";
3014
- };
3015
- userId: {
3016
- type: "string";
3017
- format: string;
3018
- };
3019
- email: {
3020
- type: "string";
3021
- };
3022
- createdAt: {
3023
- type: "string";
3024
- };
3025
- role: {
3026
- type: "string";
3027
- enum: string[];
3028
- };
3029
- profilePicture: {
3030
- type: "string";
3031
- };
3032
- displayName: {
3033
- type: "string";
3034
- maxLength: number;
3035
- };
3036
- };
3037
- required: string[];
3038
- title: string;
3039
- additionalProperties: false;
3040
- };
3041
- };
3042
- Account: {
3043
- section: "account";
3044
- schema: {
3045
- type: "object";
3046
- properties: {
3047
- id: {
3048
- type: "string";
3049
- };
3050
- email: {
3051
- type: "string";
3052
- };
3053
- displayName: {
3054
- type: "string";
3055
- maxLength: number;
3056
- };
3057
- emailVerified: {
3058
- type: "boolean";
3059
- };
3060
- profilePicture: {
3061
- type: "string";
3062
- };
3063
- createdAt: {
3064
- type: "string";
3065
- format: string;
3066
- description: string;
3067
- };
3068
- };
3069
- required: string[];
3070
- additionalProperties: false;
3071
- };
3072
- };
3073
- Usage: {
3074
- section: "usage";
3075
- schema: {
3076
- type: "object";
3077
- properties: {
3078
- id: {
3079
- type: "string";
3080
- description: string;
3081
- };
3082
- period: {
3083
- type: "string";
3084
- description: string;
3085
- };
3086
- value: {
3087
- type: "number";
3088
- description: string;
3089
- };
3090
- quota: {
3091
- type: "number";
3092
- description: string;
3093
- };
3094
- type: {
3095
- type: "string";
3096
- enum: string[];
3097
- description: string;
3098
- };
3099
- };
3100
- required: string[];
3101
- additionalProperties: false;
3102
- };
3103
- };
3104
- Issue: {
3105
- section: "bot";
3106
- schema: {
3107
- type: "object";
3108
- properties: {
3109
- id: {
3110
- type: "string";
3111
- };
3112
- code: {
3113
- type: "string";
3114
- };
3115
- createdAt: {
3116
- type: "string";
3117
- format: string;
3118
- };
3119
- lastSeenAt: {
3120
- type: "string";
3121
- format: string;
3122
- };
3123
- title: {
3124
- type: "string";
3125
- };
3126
- description: {
3127
- type: "string";
3128
- };
3129
- groupedData: {
3130
- type: "object";
3131
- additionalProperties: {
3132
- type: "object";
3133
- properties: {
3134
- raw: {
3135
- type: "string";
3136
- };
3137
- pretty: {
3138
- type: "string";
3139
- };
3140
- };
3141
- required: string[];
3142
- additionalProperties: false;
3143
- };
3144
- };
3145
- eventsCount: {
3146
- type: "number";
3147
- };
3148
- category: {
3149
- type: "string";
3150
- enum: string[];
3151
- };
3152
- resolutionLink: {
3153
- type: "string";
3154
- nullable: true;
3155
- };
3156
- };
3157
- required: string[];
3158
- additionalProperties: false;
3159
- };
3160
- };
3161
- IssueEvent: {
3162
- section: "bot";
3163
- schema: {
3164
- type: "object";
3165
- properties: {
3166
- id: {
3167
- type: "string";
3168
- };
3169
- createdAt: {
3170
- type: "string";
3171
- format: string;
3172
- };
3173
- data: {
3174
- type: "object";
3175
- additionalProperties: {
3176
- type: "object";
3177
- properties: {
3178
- raw: {
3179
- type: "string";
3180
- };
3181
- pretty: {
3182
- type: "string";
3183
- };
3184
- };
3185
- required: string[];
3186
- additionalProperties: false;
3187
- };
3188
- };
3189
- };
3190
- required: string[];
3191
- additionalProperties: false;
3192
- };
3193
- };
3194
- Activity: {
3195
- section: "activity";
3196
- schema: {
3197
- type: "object";
3198
- properties: {
3199
- id: {
3200
- type: "string";
3201
- };
3202
- description: {
3203
- type: "string";
3204
- };
3205
- taskId: {
3206
- type: "string";
3207
- };
3208
- category: {
3209
- type: "string";
3210
- enum: string[];
3211
- };
3212
- data: {
3213
- type: "object";
3214
- additionalProperties: true;
3215
- };
3216
- createdAt: {
3217
- type: "string";
3218
- format: string;
3219
- description: string;
3220
- };
3221
- };
3222
- required: string[];
3223
- additionalProperties: false;
3224
- };
3225
- };
3226
- Version: {
3227
- section: "bot";
3228
- schema: {
3229
- type: "object";
3230
- properties: {
3231
- id: {
3232
- type: "string";
3233
- };
3234
- name: {
3235
- type: "string";
3236
- };
3237
- description: {
3238
- type: "string";
3239
- };
3240
- };
3241
- required: string[];
3242
- additionalProperties: false;
3243
- };
3244
- };
3245
- User: {
3246
- section: "user";
3247
- schema: {
3248
- type: "object";
3249
- properties: {
3250
- id: {
3251
- type: "string";
3252
- minLength: number;
3253
- maxLength: number;
3254
- description: string;
3255
- };
3256
- createdAt: {
3257
- type: "string";
3258
- format: string;
3259
- description: string;
3260
- };
3261
- updatedAt: {
3262
- type: "string";
3263
- format: string;
3264
- description: string;
3265
- };
3266
- tags: {
3267
- type: "object";
3268
- additionalProperties: {
3269
- type: "string";
3270
- };
3271
- description: string;
3272
- };
3273
- name: {
3274
- type: "string";
3275
- maxLength: number;
3276
- description: string;
3277
- };
3278
- pictureUrl: {
3279
- type: "string";
3280
- maxLength: number;
3281
- description: string;
3282
- };
3283
- };
3284
- required: string[];
3285
- description: string;
3286
- additionalProperties: false;
3287
- };
3288
- };
3289
- Conversation: {
3290
- section: "conversation";
3291
- schema: {
3292
- type: "object";
3293
- properties: {
3294
- id: {
3295
- type: "string";
3296
- minLength: number;
3297
- maxLength: number;
3298
- description: string;
3299
- };
3300
- currentTaskId: {
3301
- type: "string";
3302
- minLength: number;
3303
- maxLength: number;
3304
- description: string;
3305
- };
3306
- currentWorkflowId: {
3307
- type: "string";
3308
- minLength: number;
3309
- maxLength: number;
3310
- description: string;
3311
- };
3312
- createdAt: {
3313
- type: "string";
3314
- format: string;
3315
- description: string;
3316
- };
3317
- updatedAt: {
3318
- type: "string";
3319
- format: string;
3320
- description: string;
3321
- };
3322
- channel: {
3323
- type: "string";
3324
- description: string;
3325
- };
3326
- integration: {
3327
- type: "string";
3328
- description: string;
3329
- };
3330
- tags: {
3331
- type: "object";
3332
- additionalProperties: {
3333
- type: "string";
3334
- };
3335
- description: string;
3336
- };
3337
- };
3338
- required: string[];
3339
- description: string;
3340
- additionalProperties: false;
3341
- };
3342
- };
3343
- Event: {
3344
- section: "event";
3345
- schema: {
3346
- type: "object";
3347
- properties: {
3348
- id: {
3349
- type: "string";
3350
- minLength: number;
3351
- maxLength: number;
3352
- description: string;
3353
- };
3354
- createdAt: {
3355
- type: "string";
3356
- format: string;
3357
- description: string;
3358
- };
3359
- type: {
3360
- type: "string";
3361
- maxLength: number;
3362
- description: string;
3363
- };
3364
- payload: {
3365
- type: "object";
3366
- additionalProperties: true;
3367
- description: string;
3368
- };
3369
- conversationId: {
3370
- type: "string";
3371
- minLength: number;
3372
- maxLength: number;
3373
- description: string;
3374
- };
3375
- userId: {
3376
- type: "string";
3377
- minLength: number;
3378
- maxLength: number;
3379
- description: string;
3380
- };
3381
- messageId: {
3382
- type: "string";
3383
- minLength: number;
3384
- maxLength: number;
3385
- description: string;
3386
- };
3387
- status: {
3388
- type: "string";
3389
- enum: string[];
3390
- };
3391
- failureReason: {
3392
- type: "string";
3393
- maxLength: number;
3394
- nullable: true;
3395
- description: string;
3396
- };
3397
- };
3398
- required: string[];
3399
- description: string;
3400
- additionalProperties: false;
3401
- };
3402
- };
3403
- Message: {
3404
- section: "message";
3405
- schema: {
3406
- type: "object";
3407
- properties: {
3408
- id: {
3409
- type: "string";
3410
- minLength: number;
3411
- maxLength: number;
3412
- description: string;
3413
- };
3414
- createdAt: {
3415
- type: "string";
3416
- format: string;
3417
- description: string;
3418
- };
3419
- updatedAt: {
3420
- type: "string";
3421
- format: string;
3422
- description: string;
3423
- };
3424
- type: {
3425
- type: "string";
3426
- maxLength: number;
3427
- description: string;
3428
- };
3429
- payload: {
3430
- type: "object";
3431
- additionalProperties: true;
3432
- description: string;
3433
- };
3434
- direction: {
3435
- type: "string";
3436
- enum: string[];
3437
- description: string;
3438
- };
3439
- userId: {
3440
- type: "string";
3441
- minLength: number;
3442
- maxLength: number;
3443
- description: string;
3444
- };
3445
- conversationId: {
3446
- type: "string";
3447
- minLength: number;
3448
- maxLength: number;
3449
- description: string;
3450
- };
3451
- tags: {
3452
- type: "object";
3453
- additionalProperties: {
3454
- type: "string";
3455
- };
3456
- description: string;
3457
- };
3458
- origin: {
3459
- type: "string";
3460
- enum: string[];
3461
- description: string;
3462
- };
3463
- };
3464
- required: string[];
3465
- description: string;
3466
- additionalProperties: false;
3467
- };
3468
- };
3469
- State: {
3470
- section: "state";
3471
- schema: {
3472
- type: "object";
3473
- properties: {
3474
- id: {
3475
- type: "string";
3476
- minLength: number;
3477
- maxLength: number;
3478
- description: string;
3479
- };
3480
- createdAt: {
3481
- type: "string";
3482
- format: string;
3483
- description: string;
3484
- };
3485
- updatedAt: {
3486
- type: "string";
3487
- format: string;
3488
- description: string;
3489
- };
3490
- botId: {
3491
- type: "string";
3492
- minLength: number;
3493
- maxLength: number;
3494
- description: string;
3495
- };
3496
- conversationId: {
3497
- type: "string";
3498
- minLength: number;
3499
- maxLength: number;
3500
- description: string;
3501
- };
3502
- userId: {
3503
- type: "string";
3504
- minLength: number;
3505
- maxLength: number;
3506
- description: string;
3507
- };
3508
- name: {
3509
- type: "string";
3510
- maxLength: number;
3511
- description: string;
3512
- };
3513
- type: {
3514
- type: "string";
3515
- enum: string[];
3516
- description: string;
3517
- };
3518
- payload: {
3519
- type: "object";
3520
- additionalProperties: true;
3521
- description: string;
3522
- };
3523
- };
3524
- required: string[];
3525
- description: string;
3526
- additionalProperties: false;
3527
- };
3528
- };
3529
- Task: {
3530
- section: "task";
3531
- schema: {
3532
- type: "object";
3533
- properties: {
3534
- id: {
3535
- type: "string";
3536
- minLength: number;
3537
- maxLength: number;
3538
- description: string;
3539
- };
3540
- title: {
3541
- type: "string";
3542
- maxLength: number;
3543
- description: string;
3544
- };
3545
- description: {
3546
- type: "string";
3547
- maxLength: number;
3548
- description: string;
3549
- };
3550
- type: {
3551
- type: "string";
3552
- description: string;
3553
- };
3554
- data: {
3555
- type: "object";
3556
- additionalProperties: true;
3557
- description: string;
3558
- };
3559
- status: {
3560
- type: "string";
3561
- enum: string[];
3562
- description: string;
3563
- };
3564
- parentTaskId: {
3565
- type: "string";
3566
- minLength: number;
3567
- maxLength: number;
3568
- description: string;
3569
- };
3570
- conversationId: {
3571
- type: "string";
3572
- minLength: number;
3573
- maxLength: number;
3574
- description: string;
3575
- };
3576
- userId: {
3577
- type: "string";
3578
- minLength: number;
3579
- maxLength: number;
3580
- description: string;
3581
- };
3582
- timeoutAt: {
3583
- type: "string";
3584
- format: string;
3585
- description: string;
3586
- };
3587
- createdAt: {
3588
- type: "string";
3589
- format: string;
3590
- description: string;
3591
- };
3592
- updatedAt: {
3593
- type: "string";
3594
- format: string;
3595
- description: string;
3596
- };
3597
- failureReason: {
3598
- type: "string";
3599
- maxLength: number;
3600
- description: string;
3601
- };
3602
- tags: {
3603
- type: "object";
3604
- additionalProperties: {
3605
- type: "string";
3606
- };
3607
- description: string;
3608
- };
3609
- };
3610
- required: string[];
3611
- description: string;
3612
- additionalProperties: false;
3613
- };
3614
- };
3615
- Workflow: {
3616
- section: "workflow";
3617
- schema: {
3618
- type: "object";
3619
- properties: {
3620
- id: {
3621
- type: "string";
3622
- minLength: number;
3623
- maxLength: number;
3624
- description: string;
3625
- };
3626
- name: {
3627
- type: "string";
3628
- maxLength: number;
3629
- description: string;
3630
- };
3631
- status: {
3632
- type: "string";
3633
- enum: string[];
3634
- description: string;
3635
- };
3636
- input: {
3637
- type: "object";
3638
- additionalProperties: true;
3639
- description: string;
3640
- };
3641
- output: {
3642
- type: "object";
3643
- additionalProperties: true;
3644
- description: string;
3645
- };
3646
- parentWorkflowId: {
3647
- type: "string";
3648
- minLength: number;
3649
- maxLength: number;
3650
- description: string;
3651
- };
3652
- conversationId: {
3653
- type: "string";
3654
- minLength: number;
3655
- maxLength: number;
3656
- description: string;
3657
- };
3658
- userId: {
3659
- type: "string";
3660
- minLength: number;
3661
- maxLength: number;
3662
- description: string;
3663
- };
3664
- createdAt: {
3665
- type: "string";
3666
- format: string;
3667
- description: string;
3668
- };
3669
- updatedAt: {
3670
- type: "string";
3671
- format: string;
3672
- description: string;
3673
- };
3674
- completedAt: {
3675
- type: "string";
3676
- format: string;
3677
- description: string;
3678
- };
3679
- failureReason: {
3680
- type: "string";
3681
- maxLength: number;
3682
- description: string;
3683
- };
3684
- timeoutAt: {
3685
- type: "string";
3686
- format: string;
3687
- description: string;
3688
- };
3689
- tags: {
3690
- type: "object";
3691
- additionalProperties: {
3692
- type: "string";
3693
- };
3694
- description: string;
3695
- };
3696
- };
3697
- required: string[];
3698
- description: string;
3699
- additionalProperties: false;
3700
- };
3701
- };
3702
1194
  Table: {
3703
1195
  section: "tables";
3704
1196
  schema: {
@@ -4055,253 +1547,14 @@ export declare const state: {
4055
1547
  additionalProperties: true;
4056
1548
  };
4057
1549
  };
4058
- File: {
4059
- section: "files";
4060
- schema: {
4061
- type: "object";
4062
- properties: {
4063
- id: {
4064
- type: "string";
4065
- description: string;
4066
- };
4067
- botId: {
4068
- type: "string";
4069
- description: string;
4070
- };
4071
- key: {
4072
- type: "string";
4073
- description: string;
4074
- };
4075
- url: {
4076
- type: "string";
4077
- description: string;
4078
- };
4079
- size: {
4080
- type: "number";
4081
- description: string;
4082
- nullable: true;
4083
- };
4084
- contentType: {
4085
- type: "string";
4086
- description: string;
4087
- };
4088
- tags: {
4089
- type: "object";
4090
- additionalProperties: {
4091
- type: "string";
4092
- maxLength: number;
4093
- };
4094
- description: string;
4095
- };
4096
- metadata: {
4097
- type: "object";
4098
- additionalProperties: {
4099
- nullable: true;
4100
- };
4101
- description: string;
4102
- };
4103
- createdAt: {
4104
- type: "string";
4105
- description: string;
4106
- };
4107
- updatedAt: {
4108
- type: "string";
4109
- description: string;
4110
- };
4111
- accessPolicies: {
4112
- type: "array";
4113
- items: {
4114
- type: "string";
4115
- enum: string[];
4116
- };
4117
- description: string;
4118
- };
4119
- index: {
4120
- type: "boolean";
4121
- description: string;
4122
- };
4123
- status: {
4124
- type: "string";
4125
- enum: string[];
4126
- description: string;
4127
- };
4128
- failedStatusReason: {
4129
- type: "string";
4130
- description: string;
4131
- };
4132
- expiresAt: {
4133
- type: "string";
4134
- description: string;
4135
- };
4136
- owner: {
4137
- type: "object";
4138
- properties: {
4139
- type: {
4140
- type: "string";
4141
- enum: string[];
4142
- };
4143
- id: {
4144
- type: "string";
4145
- description: string;
4146
- };
4147
- name: {
4148
- type: "string";
4149
- description: string;
4150
- };
4151
- };
4152
- required: string[];
4153
- additionalProperties: false;
4154
- };
4155
- indexingStack: {
4156
- type: "string";
4157
- enum: string[];
4158
- description: string;
4159
- };
4160
- };
4161
- required: string[];
4162
- additionalProperties: false;
4163
- };
4164
- };
4165
1550
  };
4166
- sections: ({
4167
- description: string;
4168
- title: string;
4169
- name: "user";
4170
- operations: never[];
4171
- schema: string;
4172
- } | {
4173
- description: string;
4174
- title: string;
4175
- name: "conversation";
4176
- operations: never[];
4177
- schema: string;
4178
- } | {
4179
- description: string;
4180
- title: string;
4181
- name: "event";
4182
- operations: never[];
4183
- schema: string;
4184
- } | {
4185
- description: string;
4186
- title: string;
4187
- name: "message";
4188
- operations: never[];
4189
- schema: string;
4190
- } | {
4191
- description: string;
4192
- title: string;
4193
- name: "state";
4194
- operations: never[];
4195
- schema: string;
4196
- } | {
4197
- title: string;
4198
- description: string;
4199
- name: "hub";
4200
- operations: never[];
4201
- schema?: undefined;
4202
- } | {
4203
- description: string;
4204
- title: string;
4205
- name: "action";
4206
- operations: never[];
4207
- schema?: undefined;
4208
- } | {
4209
- description: string;
4210
- title: string;
4211
- name: "task";
4212
- operations: never[];
4213
- schema: string;
4214
- } | {
4215
- description: string;
4216
- title: string;
4217
- name: "workflow";
4218
- operations: never[];
4219
- schema: string;
4220
- } | {
4221
- description: string;
4222
- title: string;
4223
- name: "tag";
4224
- operations: never[];
4225
- schema?: undefined;
4226
- } | {
4227
- title: string;
4228
- description: string;
4229
- name: "bot";
4230
- operations: never[];
4231
- schema: string;
4232
- } | {
4233
- title: string;
4234
- description: string;
4235
- name: "integration";
4236
- operations: never[];
4237
- schema: string;
4238
- } | {
4239
- title: string;
4240
- description: string;
4241
- name: "interface";
4242
- operations: never[];
4243
- schema: string;
4244
- } | {
4245
- title: string;
4246
- description: string;
4247
- name: "plugin";
4248
- operations: never[];
4249
- schema: string;
4250
- } | {
4251
- title: string;
4252
- description: string;
4253
- name: "workspace";
4254
- operations: never[];
4255
- schema: string;
4256
- } | {
4257
- title: string;
4258
- description: string;
4259
- name: "workspaceMember";
4260
- operations: never[];
4261
- schema: string;
4262
- } | {
4263
- title: string;
4264
- description: string;
4265
- name: "account";
4266
- operations: never[];
4267
- schema: string;
4268
- } | {
4269
- title: string;
4270
- description: string;
4271
- name: "usage";
4272
- operations: never[];
4273
- schema: string;
4274
- } | {
4275
- title: string;
4276
- description: string;
4277
- name: "quotas";
4278
- operations: never[];
4279
- schema?: undefined;
4280
- } | {
4281
- title: string;
4282
- description: string;
4283
- name: "helper";
4284
- operations: never[];
4285
- schema?: undefined;
4286
- } | {
4287
- title: string;
4288
- description: string;
4289
- name: "activity";
4290
- operations: never[];
4291
- schema: string;
4292
- } | {
1551
+ sections: {
4293
1552
  title: string;
4294
1553
  description: string;
4295
1554
  name: "tables";
4296
1555
  operations: string[];
4297
1556
  schema: string;
4298
- } | {
4299
- title: string;
4300
- description: string;
4301
- name: "files";
4302
- operations: never[];
4303
- schema: string;
4304
- })[];
1557
+ }[];
4305
1558
  options: {
4306
1559
  allowUnions: false;
4307
1560
  };