@botpress/api 0.15.12 → 0.16.2
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.
- package/dist/index.js +1022 -175
- package/dist/src/gen/state.d.ts +795 -46
- package/dist/src/index.d.ts +2 -2
- package/package.json +2 -2
- package/src/gen/metadata.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +889 -64
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as opapi from "@bpinternal/opapi";
|
|
2
|
-
export type State = opapi.State<"Bot" | "Integration" | "Workspace" | "WorkspaceMember" | "Account" | "Usage" | "Issue" | "IssueEvent" | "User" | "Conversation" | "Event" | "Message" | "State" | "File" | "Table" | "Column" | "Row", never, "user" | "conversation" | "event" | "message" | "file" | "state" | "hub" | "action" | "bot" | "integration" | "workspace" | "workspaceMember" | "account" | "usage" | "quotas" | "helper" | "tables">;
|
|
2
|
+
export type State = opapi.State<"Bot" | "Integration" | "Workspace" | "WorkspaceMember" | "Account" | "Usage" | "Issue" | "IssueEvent" | "User" | "Conversation" | "Event" | "Message" | "State" | "Task" | "File" | "Table" | "Column" | "Row", never, "user" | "conversation" | "event" | "message" | "file" | "state" | "hub" | "action" | "task" | "bot" | "integration" | "workspace" | "workspaceMember" | "account" | "usage" | "quotas" | "helper" | "tables">;
|
|
3
3
|
export declare const state: {
|
|
4
4
|
operations: {
|
|
5
5
|
createConversation: {
|
|
@@ -1404,6 +1404,279 @@ export declare const state: {
|
|
|
1404
1404
|
};
|
|
1405
1405
|
parameters: {};
|
|
1406
1406
|
};
|
|
1407
|
+
getTask: {
|
|
1408
|
+
name: string;
|
|
1409
|
+
description: string;
|
|
1410
|
+
method: "get";
|
|
1411
|
+
path: string;
|
|
1412
|
+
parameters: {
|
|
1413
|
+
id: {
|
|
1414
|
+
in: "path";
|
|
1415
|
+
type: "string";
|
|
1416
|
+
description: string;
|
|
1417
|
+
};
|
|
1418
|
+
};
|
|
1419
|
+
section: "task";
|
|
1420
|
+
response: {
|
|
1421
|
+
description: string;
|
|
1422
|
+
schema: {
|
|
1423
|
+
type: "object";
|
|
1424
|
+
properties: {
|
|
1425
|
+
task: {
|
|
1426
|
+
$ref: string;
|
|
1427
|
+
};
|
|
1428
|
+
};
|
|
1429
|
+
required: string[];
|
|
1430
|
+
title: string;
|
|
1431
|
+
additionalProperties: false;
|
|
1432
|
+
};
|
|
1433
|
+
};
|
|
1434
|
+
};
|
|
1435
|
+
createTask: {
|
|
1436
|
+
name: string;
|
|
1437
|
+
description: string;
|
|
1438
|
+
method: "post";
|
|
1439
|
+
path: string;
|
|
1440
|
+
requestBody: {
|
|
1441
|
+
description: string;
|
|
1442
|
+
schema: {
|
|
1443
|
+
type: "object";
|
|
1444
|
+
properties: {
|
|
1445
|
+
title: {
|
|
1446
|
+
type: "string";
|
|
1447
|
+
description: string;
|
|
1448
|
+
};
|
|
1449
|
+
instruction: {
|
|
1450
|
+
type: "string";
|
|
1451
|
+
description: string;
|
|
1452
|
+
};
|
|
1453
|
+
type: {
|
|
1454
|
+
type: "string";
|
|
1455
|
+
description: string;
|
|
1456
|
+
};
|
|
1457
|
+
data: {
|
|
1458
|
+
type: "object";
|
|
1459
|
+
additionalProperties: true;
|
|
1460
|
+
description: string;
|
|
1461
|
+
};
|
|
1462
|
+
parentTaskId: {
|
|
1463
|
+
type: "string";
|
|
1464
|
+
description: string;
|
|
1465
|
+
};
|
|
1466
|
+
conversationId: {
|
|
1467
|
+
type: "string";
|
|
1468
|
+
description: string;
|
|
1469
|
+
};
|
|
1470
|
+
userId: {
|
|
1471
|
+
type: "string";
|
|
1472
|
+
description: string;
|
|
1473
|
+
};
|
|
1474
|
+
timeoutAt: {
|
|
1475
|
+
type: "string";
|
|
1476
|
+
format: string;
|
|
1477
|
+
description: string;
|
|
1478
|
+
};
|
|
1479
|
+
tags: {
|
|
1480
|
+
type: "object";
|
|
1481
|
+
additionalProperties: {
|
|
1482
|
+
type: "string";
|
|
1483
|
+
maxLength: number;
|
|
1484
|
+
};
|
|
1485
|
+
description: string;
|
|
1486
|
+
};
|
|
1487
|
+
};
|
|
1488
|
+
required: string[];
|
|
1489
|
+
title: string;
|
|
1490
|
+
additionalProperties: false;
|
|
1491
|
+
};
|
|
1492
|
+
};
|
|
1493
|
+
section: "task";
|
|
1494
|
+
response: {
|
|
1495
|
+
description: string;
|
|
1496
|
+
status: 201;
|
|
1497
|
+
schema: {
|
|
1498
|
+
type: "object";
|
|
1499
|
+
properties: {
|
|
1500
|
+
task: {
|
|
1501
|
+
$ref: string;
|
|
1502
|
+
};
|
|
1503
|
+
};
|
|
1504
|
+
required: string[];
|
|
1505
|
+
title: string;
|
|
1506
|
+
additionalProperties: false;
|
|
1507
|
+
};
|
|
1508
|
+
};
|
|
1509
|
+
parameters: {};
|
|
1510
|
+
};
|
|
1511
|
+
updateTask: {
|
|
1512
|
+
name: string;
|
|
1513
|
+
description: string;
|
|
1514
|
+
method: "put";
|
|
1515
|
+
path: string;
|
|
1516
|
+
parameters: {
|
|
1517
|
+
id: {
|
|
1518
|
+
in: "path";
|
|
1519
|
+
type: "string";
|
|
1520
|
+
description: string;
|
|
1521
|
+
};
|
|
1522
|
+
};
|
|
1523
|
+
requestBody: {
|
|
1524
|
+
description: string;
|
|
1525
|
+
schema: {
|
|
1526
|
+
type: "object";
|
|
1527
|
+
properties: {
|
|
1528
|
+
title: {
|
|
1529
|
+
type: "string";
|
|
1530
|
+
description: string;
|
|
1531
|
+
};
|
|
1532
|
+
instruction: {
|
|
1533
|
+
type: "string";
|
|
1534
|
+
description: string;
|
|
1535
|
+
};
|
|
1536
|
+
data: {
|
|
1537
|
+
type: "object";
|
|
1538
|
+
additionalProperties: true;
|
|
1539
|
+
description: string;
|
|
1540
|
+
};
|
|
1541
|
+
timeoutAt: {
|
|
1542
|
+
type: "string";
|
|
1543
|
+
format: string;
|
|
1544
|
+
description: string;
|
|
1545
|
+
};
|
|
1546
|
+
status: {
|
|
1547
|
+
type: "string";
|
|
1548
|
+
enum: string[];
|
|
1549
|
+
description: string;
|
|
1550
|
+
};
|
|
1551
|
+
tags: {
|
|
1552
|
+
type: "object";
|
|
1553
|
+
additionalProperties: {
|
|
1554
|
+
type: "string";
|
|
1555
|
+
maxLength: number;
|
|
1556
|
+
};
|
|
1557
|
+
description: string;
|
|
1558
|
+
};
|
|
1559
|
+
};
|
|
1560
|
+
title: string;
|
|
1561
|
+
additionalProperties: false;
|
|
1562
|
+
};
|
|
1563
|
+
};
|
|
1564
|
+
section: "task";
|
|
1565
|
+
response: {
|
|
1566
|
+
description: string;
|
|
1567
|
+
schema: {
|
|
1568
|
+
type: "object";
|
|
1569
|
+
properties: {
|
|
1570
|
+
task: {
|
|
1571
|
+
$ref: string;
|
|
1572
|
+
};
|
|
1573
|
+
};
|
|
1574
|
+
required: string[];
|
|
1575
|
+
title: string;
|
|
1576
|
+
additionalProperties: false;
|
|
1577
|
+
};
|
|
1578
|
+
};
|
|
1579
|
+
};
|
|
1580
|
+
deleteTask: {
|
|
1581
|
+
name: string;
|
|
1582
|
+
description: string;
|
|
1583
|
+
method: "delete";
|
|
1584
|
+
path: string;
|
|
1585
|
+
parameters: {
|
|
1586
|
+
id: {
|
|
1587
|
+
in: "path";
|
|
1588
|
+
type: "string";
|
|
1589
|
+
description: string;
|
|
1590
|
+
};
|
|
1591
|
+
};
|
|
1592
|
+
section: "task";
|
|
1593
|
+
response: {
|
|
1594
|
+
description: string;
|
|
1595
|
+
schema: {
|
|
1596
|
+
type: "object";
|
|
1597
|
+
title: string;
|
|
1598
|
+
additionalProperties: false;
|
|
1599
|
+
};
|
|
1600
|
+
};
|
|
1601
|
+
};
|
|
1602
|
+
listTasks: {
|
|
1603
|
+
name: string;
|
|
1604
|
+
description: string;
|
|
1605
|
+
method: "get";
|
|
1606
|
+
path: string;
|
|
1607
|
+
parameters: {
|
|
1608
|
+
nextToken: {
|
|
1609
|
+
in: "query";
|
|
1610
|
+
description: string;
|
|
1611
|
+
type: "string";
|
|
1612
|
+
};
|
|
1613
|
+
tags: {
|
|
1614
|
+
in: "query";
|
|
1615
|
+
type: "object";
|
|
1616
|
+
schema: {
|
|
1617
|
+
type: "object";
|
|
1618
|
+
additionalProperties: {
|
|
1619
|
+
type: "string";
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1622
|
+
description: string;
|
|
1623
|
+
};
|
|
1624
|
+
conversationId: {
|
|
1625
|
+
in: "query";
|
|
1626
|
+
type: "string";
|
|
1627
|
+
description: string;
|
|
1628
|
+
};
|
|
1629
|
+
userId: {
|
|
1630
|
+
in: "query";
|
|
1631
|
+
type: "string";
|
|
1632
|
+
description: string;
|
|
1633
|
+
};
|
|
1634
|
+
parentTaskId: {
|
|
1635
|
+
in: "query";
|
|
1636
|
+
type: "string";
|
|
1637
|
+
description: string;
|
|
1638
|
+
};
|
|
1639
|
+
status: {
|
|
1640
|
+
in: "query";
|
|
1641
|
+
type: "string";
|
|
1642
|
+
description: string;
|
|
1643
|
+
enum: string[];
|
|
1644
|
+
};
|
|
1645
|
+
type: {
|
|
1646
|
+
in: "query";
|
|
1647
|
+
type: "string";
|
|
1648
|
+
description: string;
|
|
1649
|
+
};
|
|
1650
|
+
};
|
|
1651
|
+
section: "task";
|
|
1652
|
+
response: {
|
|
1653
|
+
description: string;
|
|
1654
|
+
schema: {
|
|
1655
|
+
type: "object";
|
|
1656
|
+
properties: {
|
|
1657
|
+
tasks: {
|
|
1658
|
+
type: "array";
|
|
1659
|
+
items: {
|
|
1660
|
+
$ref: string;
|
|
1661
|
+
};
|
|
1662
|
+
};
|
|
1663
|
+
meta: {
|
|
1664
|
+
type: "object";
|
|
1665
|
+
properties: {
|
|
1666
|
+
nextToken: {
|
|
1667
|
+
type: "string";
|
|
1668
|
+
description: string;
|
|
1669
|
+
};
|
|
1670
|
+
};
|
|
1671
|
+
additionalProperties: false;
|
|
1672
|
+
};
|
|
1673
|
+
};
|
|
1674
|
+
required: string[];
|
|
1675
|
+
title: string;
|
|
1676
|
+
additionalProperties: false;
|
|
1677
|
+
};
|
|
1678
|
+
};
|
|
1679
|
+
};
|
|
1407
1680
|
runVrl: {
|
|
1408
1681
|
name: string;
|
|
1409
1682
|
description: string;
|
|
@@ -1939,6 +2212,25 @@ export declare const state: {
|
|
|
1939
2212
|
additionalProperties: false;
|
|
1940
2213
|
};
|
|
1941
2214
|
};
|
|
2215
|
+
subscriptions: {
|
|
2216
|
+
type: "object";
|
|
2217
|
+
properties: {
|
|
2218
|
+
events: {
|
|
2219
|
+
type: "object";
|
|
2220
|
+
additionalProperties: {
|
|
2221
|
+
type: "object";
|
|
2222
|
+
additionalProperties: {
|
|
2223
|
+
readOnly: true;
|
|
2224
|
+
};
|
|
2225
|
+
};
|
|
2226
|
+
nullable: true;
|
|
2227
|
+
description: string;
|
|
2228
|
+
};
|
|
2229
|
+
};
|
|
2230
|
+
required: string[];
|
|
2231
|
+
description: string;
|
|
2232
|
+
additionalProperties: false;
|
|
2233
|
+
};
|
|
1942
2234
|
configuration: {
|
|
1943
2235
|
type: "object";
|
|
1944
2236
|
properties: {
|
|
@@ -2319,6 +2611,24 @@ export declare const state: {
|
|
|
2319
2611
|
additionalProperties: false;
|
|
2320
2612
|
};
|
|
2321
2613
|
};
|
|
2614
|
+
subscriptions: {
|
|
2615
|
+
type: "object";
|
|
2616
|
+
properties: {
|
|
2617
|
+
events: {
|
|
2618
|
+
type: "object";
|
|
2619
|
+
additionalProperties: {
|
|
2620
|
+
type: "object";
|
|
2621
|
+
additionalProperties: {
|
|
2622
|
+
readOnly: true;
|
|
2623
|
+
};
|
|
2624
|
+
nullable: true;
|
|
2625
|
+
};
|
|
2626
|
+
nullable: true;
|
|
2627
|
+
};
|
|
2628
|
+
};
|
|
2629
|
+
required: string[];
|
|
2630
|
+
additionalProperties: false;
|
|
2631
|
+
};
|
|
2322
2632
|
code: {
|
|
2323
2633
|
type: "string";
|
|
2324
2634
|
description: string;
|
|
@@ -3280,6 +3590,36 @@ export declare const state: {
|
|
|
3280
3590
|
spendingLimit: {
|
|
3281
3591
|
type: "number";
|
|
3282
3592
|
};
|
|
3593
|
+
about: {
|
|
3594
|
+
default: string;
|
|
3595
|
+
type: "string";
|
|
3596
|
+
};
|
|
3597
|
+
profilePicture: {
|
|
3598
|
+
default: string;
|
|
3599
|
+
type: "string";
|
|
3600
|
+
};
|
|
3601
|
+
contactEmail: {
|
|
3602
|
+
default: string;
|
|
3603
|
+
type: "string";
|
|
3604
|
+
};
|
|
3605
|
+
website: {
|
|
3606
|
+
default: string;
|
|
3607
|
+
type: "string";
|
|
3608
|
+
};
|
|
3609
|
+
socialAccounts: {
|
|
3610
|
+
default: never[];
|
|
3611
|
+
type: "array";
|
|
3612
|
+
items: {
|
|
3613
|
+
type: "string";
|
|
3614
|
+
};
|
|
3615
|
+
};
|
|
3616
|
+
isPublic: {
|
|
3617
|
+
type: "boolean";
|
|
3618
|
+
};
|
|
3619
|
+
handle: {
|
|
3620
|
+
default: string;
|
|
3621
|
+
type: "string";
|
|
3622
|
+
};
|
|
3283
3623
|
};
|
|
3284
3624
|
required: string[];
|
|
3285
3625
|
title: string;
|
|
@@ -3345,6 +3685,36 @@ export declare const state: {
|
|
|
3345
3685
|
spendingLimit: {
|
|
3346
3686
|
type: "number";
|
|
3347
3687
|
};
|
|
3688
|
+
about: {
|
|
3689
|
+
default: string;
|
|
3690
|
+
type: "string";
|
|
3691
|
+
};
|
|
3692
|
+
profilePicture: {
|
|
3693
|
+
default: string;
|
|
3694
|
+
type: "string";
|
|
3695
|
+
};
|
|
3696
|
+
contactEmail: {
|
|
3697
|
+
default: string;
|
|
3698
|
+
type: "string";
|
|
3699
|
+
};
|
|
3700
|
+
website: {
|
|
3701
|
+
default: string;
|
|
3702
|
+
type: "string";
|
|
3703
|
+
};
|
|
3704
|
+
socialAccounts: {
|
|
3705
|
+
default: never[];
|
|
3706
|
+
type: "array";
|
|
3707
|
+
items: {
|
|
3708
|
+
type: "string";
|
|
3709
|
+
};
|
|
3710
|
+
};
|
|
3711
|
+
isPublic: {
|
|
3712
|
+
type: "boolean";
|
|
3713
|
+
};
|
|
3714
|
+
handle: {
|
|
3715
|
+
default: string;
|
|
3716
|
+
type: "string";
|
|
3717
|
+
};
|
|
3348
3718
|
};
|
|
3349
3719
|
required: string[];
|
|
3350
3720
|
title: string;
|
|
@@ -3635,9 +4005,37 @@ export declare const state: {
|
|
|
3635
4005
|
minimum: number;
|
|
3636
4006
|
maximum: number;
|
|
3637
4007
|
};
|
|
4008
|
+
about: {
|
|
4009
|
+
type: "string";
|
|
4010
|
+
};
|
|
4011
|
+
profilePicture: {
|
|
4012
|
+
type: "string";
|
|
4013
|
+
};
|
|
4014
|
+
contactEmail: {
|
|
4015
|
+
type: "string";
|
|
4016
|
+
};
|
|
4017
|
+
website: {
|
|
4018
|
+
type: "string";
|
|
4019
|
+
};
|
|
4020
|
+
socialAccounts: {
|
|
4021
|
+
type: "array";
|
|
4022
|
+
items: {
|
|
4023
|
+
type: "string";
|
|
4024
|
+
};
|
|
4025
|
+
maxItems: number;
|
|
4026
|
+
};
|
|
4027
|
+
isPublic: {
|
|
4028
|
+
type: "boolean";
|
|
4029
|
+
};
|
|
4030
|
+
handle: {
|
|
4031
|
+
type: "string";
|
|
4032
|
+
minLength: number;
|
|
4033
|
+
maxLength: number;
|
|
4034
|
+
pattern: string;
|
|
4035
|
+
};
|
|
3638
4036
|
};
|
|
3639
|
-
title: string;
|
|
3640
4037
|
additionalProperties: false;
|
|
4038
|
+
title: string;
|
|
3641
4039
|
};
|
|
3642
4040
|
};
|
|
3643
4041
|
response: {
|
|
@@ -3681,12 +4079,93 @@ export declare const state: {
|
|
|
3681
4079
|
spendingLimit: {
|
|
3682
4080
|
type: "number";
|
|
3683
4081
|
};
|
|
4082
|
+
about: {
|
|
4083
|
+
default: string;
|
|
4084
|
+
type: "string";
|
|
4085
|
+
};
|
|
4086
|
+
profilePicture: {
|
|
4087
|
+
default: string;
|
|
4088
|
+
type: "string";
|
|
4089
|
+
};
|
|
4090
|
+
contactEmail: {
|
|
4091
|
+
default: string;
|
|
4092
|
+
type: "string";
|
|
4093
|
+
};
|
|
4094
|
+
website: {
|
|
4095
|
+
default: string;
|
|
4096
|
+
type: "string";
|
|
4097
|
+
};
|
|
4098
|
+
socialAccounts: {
|
|
4099
|
+
default: never[];
|
|
4100
|
+
type: "array";
|
|
4101
|
+
items: {
|
|
4102
|
+
type: "string";
|
|
4103
|
+
};
|
|
4104
|
+
};
|
|
4105
|
+
isPublic: {
|
|
4106
|
+
type: "boolean";
|
|
4107
|
+
};
|
|
4108
|
+
handle: {
|
|
4109
|
+
default: string;
|
|
4110
|
+
type: "string";
|
|
4111
|
+
};
|
|
4112
|
+
};
|
|
4113
|
+
required: string[];
|
|
4114
|
+
title: string;
|
|
4115
|
+
additionalProperties: false;
|
|
4116
|
+
};
|
|
4117
|
+
};
|
|
4118
|
+
};
|
|
4119
|
+
checkHandleAvailability: {
|
|
4120
|
+
name: string;
|
|
4121
|
+
description: string;
|
|
4122
|
+
section: "workspace";
|
|
4123
|
+
method: "put";
|
|
4124
|
+
disableDefaultParameters: {
|
|
4125
|
+
"x-workspace-id": boolean;
|
|
4126
|
+
};
|
|
4127
|
+
path: string;
|
|
4128
|
+
requestBody: {
|
|
4129
|
+
description: string;
|
|
4130
|
+
schema: {
|
|
4131
|
+
type: "object";
|
|
4132
|
+
properties: {
|
|
4133
|
+
handle: {
|
|
4134
|
+
type: "string";
|
|
4135
|
+
minLength: number;
|
|
4136
|
+
maxLength: number;
|
|
4137
|
+
pattern: string;
|
|
4138
|
+
};
|
|
4139
|
+
};
|
|
4140
|
+
required: string[];
|
|
4141
|
+
title: string;
|
|
4142
|
+
additionalProperties: false;
|
|
4143
|
+
};
|
|
4144
|
+
};
|
|
4145
|
+
response: {
|
|
4146
|
+
description: string;
|
|
4147
|
+
schema: {
|
|
4148
|
+
type: "object";
|
|
4149
|
+
properties: {
|
|
4150
|
+
available: {
|
|
4151
|
+
type: "boolean";
|
|
4152
|
+
};
|
|
4153
|
+
suggestions: {
|
|
4154
|
+
type: "array";
|
|
4155
|
+
items: {
|
|
4156
|
+
type: "string";
|
|
4157
|
+
};
|
|
4158
|
+
};
|
|
4159
|
+
usedBy: {
|
|
4160
|
+
type: "string";
|
|
4161
|
+
};
|
|
3684
4162
|
};
|
|
3685
4163
|
required: string[];
|
|
3686
4164
|
title: string;
|
|
3687
4165
|
additionalProperties: false;
|
|
3688
4166
|
};
|
|
3689
4167
|
};
|
|
4168
|
+
parameters: {};
|
|
3690
4169
|
};
|
|
3691
4170
|
listWorkspaces: {
|
|
3692
4171
|
name: string;
|
|
@@ -3744,11 +4223,41 @@ export declare const state: {
|
|
|
3744
4223
|
type: "string";
|
|
3745
4224
|
enum: string[];
|
|
3746
4225
|
};
|
|
3747
|
-
blocked: {
|
|
4226
|
+
blocked: {
|
|
4227
|
+
type: "boolean";
|
|
4228
|
+
};
|
|
4229
|
+
spendingLimit: {
|
|
4230
|
+
type: "number";
|
|
4231
|
+
};
|
|
4232
|
+
about: {
|
|
4233
|
+
default: string;
|
|
4234
|
+
type: "string";
|
|
4235
|
+
};
|
|
4236
|
+
profilePicture: {
|
|
4237
|
+
default: string;
|
|
4238
|
+
type: "string";
|
|
4239
|
+
};
|
|
4240
|
+
contactEmail: {
|
|
4241
|
+
default: string;
|
|
4242
|
+
type: "string";
|
|
4243
|
+
};
|
|
4244
|
+
website: {
|
|
4245
|
+
default: string;
|
|
4246
|
+
type: "string";
|
|
4247
|
+
};
|
|
4248
|
+
socialAccounts: {
|
|
4249
|
+
default: never[];
|
|
4250
|
+
type: "array";
|
|
4251
|
+
items: {
|
|
4252
|
+
type: "string";
|
|
4253
|
+
};
|
|
4254
|
+
};
|
|
4255
|
+
isPublic: {
|
|
3748
4256
|
type: "boolean";
|
|
3749
4257
|
};
|
|
3750
|
-
|
|
3751
|
-
|
|
4258
|
+
handle: {
|
|
4259
|
+
default: string;
|
|
4260
|
+
type: "string";
|
|
3752
4261
|
};
|
|
3753
4262
|
};
|
|
3754
4263
|
required: string[];
|
|
@@ -3844,6 +4353,36 @@ export declare const state: {
|
|
|
3844
4353
|
spendingLimit: {
|
|
3845
4354
|
type: "number";
|
|
3846
4355
|
};
|
|
4356
|
+
about: {
|
|
4357
|
+
default: string;
|
|
4358
|
+
type: "string";
|
|
4359
|
+
};
|
|
4360
|
+
profilePicture: {
|
|
4361
|
+
default: string;
|
|
4362
|
+
type: "string";
|
|
4363
|
+
};
|
|
4364
|
+
contactEmail: {
|
|
4365
|
+
default: string;
|
|
4366
|
+
type: "string";
|
|
4367
|
+
};
|
|
4368
|
+
website: {
|
|
4369
|
+
default: string;
|
|
4370
|
+
type: "string";
|
|
4371
|
+
};
|
|
4372
|
+
socialAccounts: {
|
|
4373
|
+
default: never[];
|
|
4374
|
+
type: "array";
|
|
4375
|
+
items: {
|
|
4376
|
+
type: "string";
|
|
4377
|
+
};
|
|
4378
|
+
};
|
|
4379
|
+
isPublic: {
|
|
4380
|
+
type: "boolean";
|
|
4381
|
+
};
|
|
4382
|
+
handle: {
|
|
4383
|
+
default: string;
|
|
4384
|
+
type: "string";
|
|
4385
|
+
};
|
|
3847
4386
|
};
|
|
3848
4387
|
required: string[];
|
|
3849
4388
|
title: string;
|
|
@@ -3989,6 +4528,9 @@ export declare const state: {
|
|
|
3989
4528
|
email: {
|
|
3990
4529
|
type: "string";
|
|
3991
4530
|
};
|
|
4531
|
+
createdAt: {
|
|
4532
|
+
type: "string";
|
|
4533
|
+
};
|
|
3992
4534
|
role: {
|
|
3993
4535
|
type: "string";
|
|
3994
4536
|
enum: string[];
|
|
@@ -4076,6 +4618,9 @@ export declare const state: {
|
|
|
4076
4618
|
email: {
|
|
4077
4619
|
type: "string";
|
|
4078
4620
|
};
|
|
4621
|
+
createdAt: {
|
|
4622
|
+
type: "string";
|
|
4623
|
+
};
|
|
4079
4624
|
role: {
|
|
4080
4625
|
type: "string";
|
|
4081
4626
|
enum: string[];
|
|
@@ -4130,6 +4675,9 @@ export declare const state: {
|
|
|
4130
4675
|
email: {
|
|
4131
4676
|
type: "string";
|
|
4132
4677
|
};
|
|
4678
|
+
createdAt: {
|
|
4679
|
+
type: "string";
|
|
4680
|
+
};
|
|
4133
4681
|
role: {
|
|
4134
4682
|
type: "string";
|
|
4135
4683
|
enum: string[];
|
|
@@ -5507,6 +6055,8 @@ export declare const state: {
|
|
|
5507
6055
|
patchStateBody: true;
|
|
5508
6056
|
callActionBody: true;
|
|
5509
6057
|
configureIntegrationBody: true;
|
|
6058
|
+
createTaskBody: true;
|
|
6059
|
+
updateTaskBody: true;
|
|
5510
6060
|
runVrlBody: true;
|
|
5511
6061
|
createPersonalAccessTokenBody: true;
|
|
5512
6062
|
setAccountPreferenceBody: true;
|
|
@@ -5517,6 +6067,7 @@ export declare const state: {
|
|
|
5517
6067
|
chargeWorkspaceUnpaidInvoicesBody: true;
|
|
5518
6068
|
createWorkspaceBody: true;
|
|
5519
6069
|
updateWorkspaceBody: true;
|
|
6070
|
+
checkHandleAvailabilityBody: true;
|
|
5520
6071
|
changeWorkspacePlanBody: true;
|
|
5521
6072
|
createWorkspaceMemberBody: true;
|
|
5522
6073
|
updateWorkspaceMemberBody: true;
|
|
@@ -5557,6 +6108,11 @@ export declare const state: {
|
|
|
5557
6108
|
patchStateResponse: true;
|
|
5558
6109
|
callActionResponse: true;
|
|
5559
6110
|
configureIntegrationResponse: true;
|
|
6111
|
+
getTaskResponse: true;
|
|
6112
|
+
createTaskResponse: true;
|
|
6113
|
+
updateTaskResponse: true;
|
|
6114
|
+
deleteTaskResponse: true;
|
|
6115
|
+
listTasksResponse: true;
|
|
5560
6116
|
runVrlResponse: true;
|
|
5561
6117
|
getAccountResponse: true;
|
|
5562
6118
|
listPersonalAccessTokensResponse: true;
|
|
@@ -5591,6 +6147,7 @@ export declare const state: {
|
|
|
5591
6147
|
getWorkspaceQuotaResponse: true;
|
|
5592
6148
|
listWorkspaceQuotasResponse: true;
|
|
5593
6149
|
updateWorkspaceResponse: true;
|
|
6150
|
+
checkHandleAvailabilityResponse: true;
|
|
5594
6151
|
listWorkspacesResponse: true;
|
|
5595
6152
|
changeWorkspacePlanResponse: true;
|
|
5596
6153
|
deleteWorkspaceResponse: true;
|
|
@@ -5630,6 +6187,7 @@ export declare const state: {
|
|
|
5630
6187
|
Event: true;
|
|
5631
6188
|
Message: true;
|
|
5632
6189
|
State: true;
|
|
6190
|
+
Task: true;
|
|
5633
6191
|
File: true;
|
|
5634
6192
|
Table: true;
|
|
5635
6193
|
Column: true;
|
|
@@ -5927,12 +6485,41 @@ export declare const state: {
|
|
|
5927
6485
|
type: "object";
|
|
5928
6486
|
additionalProperties: true;
|
|
5929
6487
|
};
|
|
6488
|
+
failedAttempts: {
|
|
6489
|
+
type: "number";
|
|
6490
|
+
description: string;
|
|
6491
|
+
};
|
|
6492
|
+
lastFailureReason: {
|
|
6493
|
+
type: "string";
|
|
6494
|
+
maxLength: number;
|
|
6495
|
+
description: string;
|
|
6496
|
+
nullable: true;
|
|
6497
|
+
};
|
|
5930
6498
|
};
|
|
5931
6499
|
required: string[];
|
|
5932
6500
|
additionalProperties: false;
|
|
5933
6501
|
};
|
|
5934
6502
|
description: string;
|
|
5935
6503
|
};
|
|
6504
|
+
subscriptions: {
|
|
6505
|
+
type: "object";
|
|
6506
|
+
properties: {
|
|
6507
|
+
events: {
|
|
6508
|
+
type: "object";
|
|
6509
|
+
additionalProperties: {
|
|
6510
|
+
type: "object";
|
|
6511
|
+
additionalProperties: {
|
|
6512
|
+
readOnly: true;
|
|
6513
|
+
};
|
|
6514
|
+
};
|
|
6515
|
+
nullable: true;
|
|
6516
|
+
description: string;
|
|
6517
|
+
};
|
|
6518
|
+
};
|
|
6519
|
+
required: string[];
|
|
6520
|
+
description: string;
|
|
6521
|
+
additionalProperties: false;
|
|
6522
|
+
};
|
|
5936
6523
|
name: {
|
|
5937
6524
|
type: "string";
|
|
5938
6525
|
description: string;
|
|
@@ -6382,6 +6969,36 @@ export declare const state: {
|
|
|
6382
6969
|
spendingLimit: {
|
|
6383
6970
|
type: "number";
|
|
6384
6971
|
};
|
|
6972
|
+
about: {
|
|
6973
|
+
default: string;
|
|
6974
|
+
type: "string";
|
|
6975
|
+
};
|
|
6976
|
+
profilePicture: {
|
|
6977
|
+
default: string;
|
|
6978
|
+
type: "string";
|
|
6979
|
+
};
|
|
6980
|
+
contactEmail: {
|
|
6981
|
+
default: string;
|
|
6982
|
+
type: "string";
|
|
6983
|
+
};
|
|
6984
|
+
website: {
|
|
6985
|
+
default: string;
|
|
6986
|
+
type: "string";
|
|
6987
|
+
};
|
|
6988
|
+
socialAccounts: {
|
|
6989
|
+
default: never[];
|
|
6990
|
+
type: "array";
|
|
6991
|
+
items: {
|
|
6992
|
+
type: "string";
|
|
6993
|
+
};
|
|
6994
|
+
};
|
|
6995
|
+
isPublic: {
|
|
6996
|
+
type: "boolean";
|
|
6997
|
+
};
|
|
6998
|
+
handle: {
|
|
6999
|
+
default: string;
|
|
7000
|
+
type: "string";
|
|
7001
|
+
};
|
|
6385
7002
|
};
|
|
6386
7003
|
required: string[];
|
|
6387
7004
|
additionalProperties: false;
|
|
@@ -6402,6 +7019,9 @@ export declare const state: {
|
|
|
6402
7019
|
email: {
|
|
6403
7020
|
type: "string";
|
|
6404
7021
|
};
|
|
7022
|
+
createdAt: {
|
|
7023
|
+
type: "string";
|
|
7024
|
+
};
|
|
6405
7025
|
role: {
|
|
6406
7026
|
type: "string";
|
|
6407
7027
|
enum: string[];
|
|
@@ -6608,6 +7228,12 @@ export declare const state: {
|
|
|
6608
7228
|
maxLength: number;
|
|
6609
7229
|
description: string;
|
|
6610
7230
|
};
|
|
7231
|
+
currentTaskId: {
|
|
7232
|
+
type: "string";
|
|
7233
|
+
minLength: number;
|
|
7234
|
+
maxLength: number;
|
|
7235
|
+
description: string;
|
|
7236
|
+
};
|
|
6611
7237
|
createdAt: {
|
|
6612
7238
|
type: "string";
|
|
6613
7239
|
format: string;
|
|
@@ -6683,6 +7309,16 @@ export declare const state: {
|
|
|
6683
7309
|
maxLength: number;
|
|
6684
7310
|
description: string;
|
|
6685
7311
|
};
|
|
7312
|
+
status: {
|
|
7313
|
+
type: "string";
|
|
7314
|
+
enum: string[];
|
|
7315
|
+
};
|
|
7316
|
+
failureReason: {
|
|
7317
|
+
type: "string";
|
|
7318
|
+
maxLength: number;
|
|
7319
|
+
description: string;
|
|
7320
|
+
nullable: true;
|
|
7321
|
+
};
|
|
6686
7322
|
};
|
|
6687
7323
|
required: string[];
|
|
6688
7324
|
description: string;
|
|
@@ -6805,6 +7441,92 @@ export declare const state: {
|
|
|
6805
7441
|
additionalProperties: false;
|
|
6806
7442
|
};
|
|
6807
7443
|
};
|
|
7444
|
+
Task: {
|
|
7445
|
+
section: "task";
|
|
7446
|
+
schema: {
|
|
7447
|
+
type: "object";
|
|
7448
|
+
properties: {
|
|
7449
|
+
id: {
|
|
7450
|
+
type: "string";
|
|
7451
|
+
minLength: number;
|
|
7452
|
+
maxLength: number;
|
|
7453
|
+
description: string;
|
|
7454
|
+
};
|
|
7455
|
+
title: {
|
|
7456
|
+
type: "string";
|
|
7457
|
+
maxLength: number;
|
|
7458
|
+
description: string;
|
|
7459
|
+
};
|
|
7460
|
+
instruction: {
|
|
7461
|
+
type: "string";
|
|
7462
|
+
maxLength: number;
|
|
7463
|
+
description: string;
|
|
7464
|
+
};
|
|
7465
|
+
type: {
|
|
7466
|
+
type: "string";
|
|
7467
|
+
description: string;
|
|
7468
|
+
};
|
|
7469
|
+
data: {
|
|
7470
|
+
type: "object";
|
|
7471
|
+
additionalProperties: true;
|
|
7472
|
+
description: string;
|
|
7473
|
+
};
|
|
7474
|
+
status: {
|
|
7475
|
+
type: "string";
|
|
7476
|
+
enum: string[];
|
|
7477
|
+
description: string;
|
|
7478
|
+
};
|
|
7479
|
+
parentTaskId: {
|
|
7480
|
+
type: "string";
|
|
7481
|
+
minLength: number;
|
|
7482
|
+
maxLength: number;
|
|
7483
|
+
description: string;
|
|
7484
|
+
};
|
|
7485
|
+
conversationId: {
|
|
7486
|
+
type: "string";
|
|
7487
|
+
minLength: number;
|
|
7488
|
+
maxLength: number;
|
|
7489
|
+
description: string;
|
|
7490
|
+
};
|
|
7491
|
+
userId: {
|
|
7492
|
+
type: "string";
|
|
7493
|
+
minLength: number;
|
|
7494
|
+
maxLength: number;
|
|
7495
|
+
description: string;
|
|
7496
|
+
};
|
|
7497
|
+
timeoutAt: {
|
|
7498
|
+
type: "string";
|
|
7499
|
+
format: string;
|
|
7500
|
+
description: string;
|
|
7501
|
+
};
|
|
7502
|
+
createdAt: {
|
|
7503
|
+
type: "string";
|
|
7504
|
+
format: string;
|
|
7505
|
+
description: string;
|
|
7506
|
+
};
|
|
7507
|
+
updatedAt: {
|
|
7508
|
+
type: "string";
|
|
7509
|
+
format: string;
|
|
7510
|
+
description: string;
|
|
7511
|
+
};
|
|
7512
|
+
failureReason: {
|
|
7513
|
+
type: "string";
|
|
7514
|
+
maxLength: number;
|
|
7515
|
+
description: string;
|
|
7516
|
+
};
|
|
7517
|
+
tags: {
|
|
7518
|
+
type: "object";
|
|
7519
|
+
additionalProperties: {
|
|
7520
|
+
type: "string";
|
|
7521
|
+
};
|
|
7522
|
+
description: string;
|
|
7523
|
+
};
|
|
7524
|
+
};
|
|
7525
|
+
required: string[];
|
|
7526
|
+
description: string;
|
|
7527
|
+
additionalProperties: false;
|
|
7528
|
+
};
|
|
7529
|
+
};
|
|
6808
7530
|
File: {
|
|
6809
7531
|
section: "file";
|
|
6810
7532
|
schema: {
|
|
@@ -6865,53 +7587,74 @@ export declare const state: {
|
|
|
6865
7587
|
maximum: number;
|
|
6866
7588
|
description: string;
|
|
6867
7589
|
};
|
|
6868
|
-
|
|
6869
|
-
type: "
|
|
6870
|
-
|
|
6871
|
-
|
|
7590
|
+
schema: {
|
|
7591
|
+
type: "object";
|
|
7592
|
+
properties: {
|
|
7593
|
+
$schema: {
|
|
7594
|
+
type: "string";
|
|
7595
|
+
};
|
|
6872
7596
|
properties: {
|
|
6873
|
-
|
|
6874
|
-
|
|
6875
|
-
|
|
6876
|
-
|
|
6877
|
-
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
|
|
6883
|
-
|
|
6884
|
-
|
|
6885
|
-
|
|
6886
|
-
|
|
6887
|
-
|
|
6888
|
-
|
|
6889
|
-
|
|
6890
|
-
|
|
6891
|
-
|
|
6892
|
-
|
|
6893
|
-
|
|
6894
|
-
|
|
7597
|
+
type: "object";
|
|
7598
|
+
additionalProperties: {
|
|
7599
|
+
type: "object";
|
|
7600
|
+
properties: {
|
|
7601
|
+
type: {
|
|
7602
|
+
type: "string";
|
|
7603
|
+
enum: string[];
|
|
7604
|
+
};
|
|
7605
|
+
format: {
|
|
7606
|
+
type: "string";
|
|
7607
|
+
enum: string[];
|
|
7608
|
+
};
|
|
7609
|
+
description: {
|
|
7610
|
+
type: "string";
|
|
7611
|
+
};
|
|
7612
|
+
nullable: {
|
|
7613
|
+
default: boolean;
|
|
7614
|
+
type: "boolean";
|
|
7615
|
+
};
|
|
7616
|
+
"x-zui": {
|
|
7617
|
+
type: "object";
|
|
7618
|
+
properties: {
|
|
7619
|
+
index: {
|
|
7620
|
+
type: "integer";
|
|
7621
|
+
};
|
|
7622
|
+
searchable: {
|
|
7623
|
+
type: "boolean";
|
|
7624
|
+
description: string;
|
|
7625
|
+
};
|
|
7626
|
+
typings: {
|
|
7627
|
+
type: "string";
|
|
7628
|
+
description: string;
|
|
7629
|
+
};
|
|
7630
|
+
};
|
|
7631
|
+
required: string[];
|
|
7632
|
+
additionalProperties: false;
|
|
7633
|
+
};
|
|
7634
|
+
};
|
|
7635
|
+
required: string[];
|
|
7636
|
+
additionalProperties: false;
|
|
6895
7637
|
};
|
|
6896
|
-
|
|
7638
|
+
description: string;
|
|
7639
|
+
};
|
|
7640
|
+
additionalProperties: {
|
|
7641
|
+
type: "boolean";
|
|
7642
|
+
enum: boolean[];
|
|
7643
|
+
};
|
|
7644
|
+
required: {
|
|
7645
|
+
type: "array";
|
|
7646
|
+
items: {
|
|
6897
7647
|
type: "string";
|
|
6898
|
-
description: string;
|
|
6899
|
-
};
|
|
6900
|
-
schema: {
|
|
6901
|
-
type: "object";
|
|
6902
|
-
properties: {};
|
|
6903
|
-
additionalProperties: true;
|
|
6904
7648
|
};
|
|
7649
|
+
description: string;
|
|
7650
|
+
};
|
|
7651
|
+
type: {
|
|
7652
|
+
type: "string";
|
|
7653
|
+
enum: string[];
|
|
6905
7654
|
};
|
|
6906
|
-
required: string[];
|
|
6907
7655
|
};
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
};
|
|
6911
|
-
schema: {
|
|
6912
|
-
type: "object";
|
|
6913
|
-
additionalProperties: true;
|
|
6914
|
-
description: string;
|
|
7656
|
+
required: string[];
|
|
7657
|
+
additionalProperties: false;
|
|
6915
7658
|
};
|
|
6916
7659
|
tags: {
|
|
6917
7660
|
type: "object";
|
|
@@ -7049,6 +7792,12 @@ export declare const state: {
|
|
|
7049
7792
|
name: "action";
|
|
7050
7793
|
operations: string[];
|
|
7051
7794
|
schema?: undefined;
|
|
7795
|
+
} | {
|
|
7796
|
+
description: string;
|
|
7797
|
+
title: string;
|
|
7798
|
+
name: "task";
|
|
7799
|
+
operations: string[];
|
|
7800
|
+
schema: string;
|
|
7052
7801
|
} | {
|
|
7053
7802
|
title: string;
|
|
7054
7803
|
description: string;
|