@botpress/api 0.16.0 → 0.16.3
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 +728 -67
- package/dist/src/gen/state.d.ts +661 -72
- 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 +773 -98
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" | "Activity" | "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" | "activity" | "tables">;
|
|
3
3
|
export declare const state: {
|
|
4
4
|
operations: {
|
|
5
5
|
createConversation: {
|
|
@@ -1404,6 +1404,282 @@ 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
|
+
maxLength: number;
|
|
1448
|
+
description: string;
|
|
1449
|
+
};
|
|
1450
|
+
description: {
|
|
1451
|
+
type: "string";
|
|
1452
|
+
maxLength: number;
|
|
1453
|
+
description: string;
|
|
1454
|
+
};
|
|
1455
|
+
type: {
|
|
1456
|
+
type: "string";
|
|
1457
|
+
maxLength: number;
|
|
1458
|
+
description: string;
|
|
1459
|
+
};
|
|
1460
|
+
data: {
|
|
1461
|
+
type: "object";
|
|
1462
|
+
additionalProperties: true;
|
|
1463
|
+
description: string;
|
|
1464
|
+
};
|
|
1465
|
+
parentTaskId: {
|
|
1466
|
+
type: "string";
|
|
1467
|
+
description: string;
|
|
1468
|
+
};
|
|
1469
|
+
conversationId: {
|
|
1470
|
+
type: "string";
|
|
1471
|
+
description: string;
|
|
1472
|
+
};
|
|
1473
|
+
userId: {
|
|
1474
|
+
type: "string";
|
|
1475
|
+
description: string;
|
|
1476
|
+
};
|
|
1477
|
+
timeoutAt: {
|
|
1478
|
+
type: "string";
|
|
1479
|
+
format: string;
|
|
1480
|
+
description: string;
|
|
1481
|
+
};
|
|
1482
|
+
tags: {
|
|
1483
|
+
type: "object";
|
|
1484
|
+
additionalProperties: {
|
|
1485
|
+
type: "string";
|
|
1486
|
+
maxLength: number;
|
|
1487
|
+
};
|
|
1488
|
+
description: string;
|
|
1489
|
+
};
|
|
1490
|
+
};
|
|
1491
|
+
required: string[];
|
|
1492
|
+
title: string;
|
|
1493
|
+
additionalProperties: false;
|
|
1494
|
+
};
|
|
1495
|
+
};
|
|
1496
|
+
section: "task";
|
|
1497
|
+
response: {
|
|
1498
|
+
description: string;
|
|
1499
|
+
status: 201;
|
|
1500
|
+
schema: {
|
|
1501
|
+
type: "object";
|
|
1502
|
+
properties: {
|
|
1503
|
+
task: {
|
|
1504
|
+
$ref: string;
|
|
1505
|
+
};
|
|
1506
|
+
};
|
|
1507
|
+
required: string[];
|
|
1508
|
+
title: string;
|
|
1509
|
+
additionalProperties: false;
|
|
1510
|
+
};
|
|
1511
|
+
};
|
|
1512
|
+
parameters: {};
|
|
1513
|
+
};
|
|
1514
|
+
updateTask: {
|
|
1515
|
+
name: string;
|
|
1516
|
+
description: string;
|
|
1517
|
+
method: "put";
|
|
1518
|
+
path: string;
|
|
1519
|
+
parameters: {
|
|
1520
|
+
id: {
|
|
1521
|
+
in: "path";
|
|
1522
|
+
type: "string";
|
|
1523
|
+
description: string;
|
|
1524
|
+
};
|
|
1525
|
+
};
|
|
1526
|
+
requestBody: {
|
|
1527
|
+
description: string;
|
|
1528
|
+
schema: {
|
|
1529
|
+
type: "object";
|
|
1530
|
+
properties: {
|
|
1531
|
+
title: {
|
|
1532
|
+
type: "string";
|
|
1533
|
+
description: string;
|
|
1534
|
+
};
|
|
1535
|
+
description: {
|
|
1536
|
+
type: "string";
|
|
1537
|
+
description: string;
|
|
1538
|
+
};
|
|
1539
|
+
data: {
|
|
1540
|
+
type: "object";
|
|
1541
|
+
additionalProperties: true;
|
|
1542
|
+
description: string;
|
|
1543
|
+
};
|
|
1544
|
+
timeoutAt: {
|
|
1545
|
+
type: "string";
|
|
1546
|
+
format: string;
|
|
1547
|
+
description: string;
|
|
1548
|
+
};
|
|
1549
|
+
status: {
|
|
1550
|
+
type: "string";
|
|
1551
|
+
enum: string[];
|
|
1552
|
+
description: string;
|
|
1553
|
+
};
|
|
1554
|
+
tags: {
|
|
1555
|
+
type: "object";
|
|
1556
|
+
additionalProperties: {
|
|
1557
|
+
type: "string";
|
|
1558
|
+
maxLength: number;
|
|
1559
|
+
};
|
|
1560
|
+
description: string;
|
|
1561
|
+
};
|
|
1562
|
+
};
|
|
1563
|
+
title: string;
|
|
1564
|
+
additionalProperties: false;
|
|
1565
|
+
};
|
|
1566
|
+
};
|
|
1567
|
+
section: "task";
|
|
1568
|
+
response: {
|
|
1569
|
+
description: string;
|
|
1570
|
+
schema: {
|
|
1571
|
+
type: "object";
|
|
1572
|
+
properties: {
|
|
1573
|
+
task: {
|
|
1574
|
+
$ref: string;
|
|
1575
|
+
};
|
|
1576
|
+
};
|
|
1577
|
+
required: string[];
|
|
1578
|
+
title: string;
|
|
1579
|
+
additionalProperties: false;
|
|
1580
|
+
};
|
|
1581
|
+
};
|
|
1582
|
+
};
|
|
1583
|
+
deleteTask: {
|
|
1584
|
+
name: string;
|
|
1585
|
+
description: string;
|
|
1586
|
+
method: "delete";
|
|
1587
|
+
path: string;
|
|
1588
|
+
parameters: {
|
|
1589
|
+
id: {
|
|
1590
|
+
in: "path";
|
|
1591
|
+
type: "string";
|
|
1592
|
+
description: string;
|
|
1593
|
+
};
|
|
1594
|
+
};
|
|
1595
|
+
section: "task";
|
|
1596
|
+
response: {
|
|
1597
|
+
description: string;
|
|
1598
|
+
schema: {
|
|
1599
|
+
type: "object";
|
|
1600
|
+
title: string;
|
|
1601
|
+
additionalProperties: false;
|
|
1602
|
+
};
|
|
1603
|
+
};
|
|
1604
|
+
};
|
|
1605
|
+
listTasks: {
|
|
1606
|
+
name: string;
|
|
1607
|
+
description: string;
|
|
1608
|
+
method: "get";
|
|
1609
|
+
path: string;
|
|
1610
|
+
parameters: {
|
|
1611
|
+
nextToken: {
|
|
1612
|
+
in: "query";
|
|
1613
|
+
description: string;
|
|
1614
|
+
type: "string";
|
|
1615
|
+
};
|
|
1616
|
+
tags: {
|
|
1617
|
+
in: "query";
|
|
1618
|
+
type: "object";
|
|
1619
|
+
schema: {
|
|
1620
|
+
type: "object";
|
|
1621
|
+
additionalProperties: {
|
|
1622
|
+
type: "string";
|
|
1623
|
+
};
|
|
1624
|
+
};
|
|
1625
|
+
description: string;
|
|
1626
|
+
};
|
|
1627
|
+
conversationId: {
|
|
1628
|
+
in: "query";
|
|
1629
|
+
type: "string";
|
|
1630
|
+
description: string;
|
|
1631
|
+
};
|
|
1632
|
+
userId: {
|
|
1633
|
+
in: "query";
|
|
1634
|
+
type: "string";
|
|
1635
|
+
description: string;
|
|
1636
|
+
};
|
|
1637
|
+
parentTaskId: {
|
|
1638
|
+
in: "query";
|
|
1639
|
+
type: "string";
|
|
1640
|
+
description: string;
|
|
1641
|
+
};
|
|
1642
|
+
status: {
|
|
1643
|
+
in: "query";
|
|
1644
|
+
type: "string[]";
|
|
1645
|
+
description: string;
|
|
1646
|
+
enum: string[];
|
|
1647
|
+
};
|
|
1648
|
+
type: {
|
|
1649
|
+
in: "query";
|
|
1650
|
+
type: "string";
|
|
1651
|
+
description: string;
|
|
1652
|
+
};
|
|
1653
|
+
};
|
|
1654
|
+
section: "task";
|
|
1655
|
+
response: {
|
|
1656
|
+
description: string;
|
|
1657
|
+
schema: {
|
|
1658
|
+
type: "object";
|
|
1659
|
+
properties: {
|
|
1660
|
+
tasks: {
|
|
1661
|
+
type: "array";
|
|
1662
|
+
items: {
|
|
1663
|
+
$ref: string;
|
|
1664
|
+
};
|
|
1665
|
+
};
|
|
1666
|
+
meta: {
|
|
1667
|
+
type: "object";
|
|
1668
|
+
properties: {
|
|
1669
|
+
nextToken: {
|
|
1670
|
+
type: "string";
|
|
1671
|
+
description: string;
|
|
1672
|
+
};
|
|
1673
|
+
};
|
|
1674
|
+
additionalProperties: false;
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
required: string[];
|
|
1678
|
+
title: string;
|
|
1679
|
+
additionalProperties: false;
|
|
1680
|
+
};
|
|
1681
|
+
};
|
|
1682
|
+
};
|
|
1407
1683
|
runVrl: {
|
|
1408
1684
|
name: string;
|
|
1409
1685
|
description: string;
|
|
@@ -3343,6 +3619,10 @@ export declare const state: {
|
|
|
3343
3619
|
isPublic: {
|
|
3344
3620
|
type: "boolean";
|
|
3345
3621
|
};
|
|
3622
|
+
handle: {
|
|
3623
|
+
default: string;
|
|
3624
|
+
type: "string";
|
|
3625
|
+
};
|
|
3346
3626
|
};
|
|
3347
3627
|
required: string[];
|
|
3348
3628
|
title: string;
|
|
@@ -3434,6 +3714,10 @@ export declare const state: {
|
|
|
3434
3714
|
isPublic: {
|
|
3435
3715
|
type: "boolean";
|
|
3436
3716
|
};
|
|
3717
|
+
handle: {
|
|
3718
|
+
default: string;
|
|
3719
|
+
type: "string";
|
|
3720
|
+
};
|
|
3437
3721
|
};
|
|
3438
3722
|
required: string[];
|
|
3439
3723
|
title: string;
|
|
@@ -3746,6 +4030,12 @@ export declare const state: {
|
|
|
3746
4030
|
isPublic: {
|
|
3747
4031
|
type: "boolean";
|
|
3748
4032
|
};
|
|
4033
|
+
handle: {
|
|
4034
|
+
type: "string";
|
|
4035
|
+
minLength: number;
|
|
4036
|
+
maxLength: number;
|
|
4037
|
+
pattern: string;
|
|
4038
|
+
};
|
|
3749
4039
|
};
|
|
3750
4040
|
additionalProperties: false;
|
|
3751
4041
|
title: string;
|
|
@@ -3818,12 +4108,67 @@ export declare const state: {
|
|
|
3818
4108
|
isPublic: {
|
|
3819
4109
|
type: "boolean";
|
|
3820
4110
|
};
|
|
4111
|
+
handle: {
|
|
4112
|
+
default: string;
|
|
4113
|
+
type: "string";
|
|
4114
|
+
};
|
|
4115
|
+
};
|
|
4116
|
+
required: string[];
|
|
4117
|
+
title: string;
|
|
4118
|
+
additionalProperties: false;
|
|
4119
|
+
};
|
|
4120
|
+
};
|
|
4121
|
+
};
|
|
4122
|
+
checkHandleAvailability: {
|
|
4123
|
+
name: string;
|
|
4124
|
+
description: string;
|
|
4125
|
+
section: "workspace";
|
|
4126
|
+
method: "put";
|
|
4127
|
+
disableDefaultParameters: {
|
|
4128
|
+
"x-workspace-id": boolean;
|
|
4129
|
+
};
|
|
4130
|
+
path: string;
|
|
4131
|
+
requestBody: {
|
|
4132
|
+
description: string;
|
|
4133
|
+
schema: {
|
|
4134
|
+
type: "object";
|
|
4135
|
+
properties: {
|
|
4136
|
+
handle: {
|
|
4137
|
+
type: "string";
|
|
4138
|
+
minLength: number;
|
|
4139
|
+
maxLength: number;
|
|
4140
|
+
pattern: string;
|
|
4141
|
+
};
|
|
4142
|
+
};
|
|
4143
|
+
required: string[];
|
|
4144
|
+
title: string;
|
|
4145
|
+
additionalProperties: false;
|
|
4146
|
+
};
|
|
4147
|
+
};
|
|
4148
|
+
response: {
|
|
4149
|
+
description: string;
|
|
4150
|
+
schema: {
|
|
4151
|
+
type: "object";
|
|
4152
|
+
properties: {
|
|
4153
|
+
available: {
|
|
4154
|
+
type: "boolean";
|
|
4155
|
+
};
|
|
4156
|
+
suggestions: {
|
|
4157
|
+
type: "array";
|
|
4158
|
+
items: {
|
|
4159
|
+
type: "string";
|
|
4160
|
+
};
|
|
4161
|
+
};
|
|
4162
|
+
usedBy: {
|
|
4163
|
+
type: "string";
|
|
4164
|
+
};
|
|
3821
4165
|
};
|
|
3822
4166
|
required: string[];
|
|
3823
4167
|
title: string;
|
|
3824
4168
|
additionalProperties: false;
|
|
3825
4169
|
};
|
|
3826
4170
|
};
|
|
4171
|
+
parameters: {};
|
|
3827
4172
|
};
|
|
3828
4173
|
listWorkspaces: {
|
|
3829
4174
|
name: string;
|
|
@@ -3913,6 +4258,10 @@ export declare const state: {
|
|
|
3913
4258
|
isPublic: {
|
|
3914
4259
|
type: "boolean";
|
|
3915
4260
|
};
|
|
4261
|
+
handle: {
|
|
4262
|
+
default: string;
|
|
4263
|
+
type: "string";
|
|
4264
|
+
};
|
|
3916
4265
|
};
|
|
3917
4266
|
required: string[];
|
|
3918
4267
|
title: string;
|
|
@@ -4033,6 +4382,10 @@ export declare const state: {
|
|
|
4033
4382
|
isPublic: {
|
|
4034
4383
|
type: "boolean";
|
|
4035
4384
|
};
|
|
4385
|
+
handle: {
|
|
4386
|
+
default: string;
|
|
4387
|
+
type: "string";
|
|
4388
|
+
};
|
|
4036
4389
|
};
|
|
4037
4390
|
required: string[];
|
|
4038
4391
|
title: string;
|
|
@@ -5378,32 +5731,97 @@ export declare const state: {
|
|
|
5378
5731
|
schema: {
|
|
5379
5732
|
type: "object";
|
|
5380
5733
|
properties: {
|
|
5381
|
-
usages: {
|
|
5734
|
+
usages: {
|
|
5735
|
+
type: "array";
|
|
5736
|
+
items: {
|
|
5737
|
+
$ref: string;
|
|
5738
|
+
};
|
|
5739
|
+
};
|
|
5740
|
+
};
|
|
5741
|
+
required: string[];
|
|
5742
|
+
title: string;
|
|
5743
|
+
additionalProperties: false;
|
|
5744
|
+
};
|
|
5745
|
+
};
|
|
5746
|
+
};
|
|
5747
|
+
changeAISpendQuota: {
|
|
5748
|
+
name: string;
|
|
5749
|
+
path: string;
|
|
5750
|
+
description: string;
|
|
5751
|
+
method: "put";
|
|
5752
|
+
section: "quotas";
|
|
5753
|
+
requestBody: {
|
|
5754
|
+
description: string;
|
|
5755
|
+
schema: {
|
|
5756
|
+
type: "object";
|
|
5757
|
+
properties: {
|
|
5758
|
+
monthlySpendingLimit: {
|
|
5759
|
+
type: "number";
|
|
5760
|
+
};
|
|
5761
|
+
};
|
|
5762
|
+
required: string[];
|
|
5763
|
+
title: string;
|
|
5764
|
+
additionalProperties: false;
|
|
5765
|
+
};
|
|
5766
|
+
};
|
|
5767
|
+
response: {
|
|
5768
|
+
description: string;
|
|
5769
|
+
schema: {
|
|
5770
|
+
type: "object";
|
|
5771
|
+
title: string;
|
|
5772
|
+
additionalProperties: false;
|
|
5773
|
+
};
|
|
5774
|
+
};
|
|
5775
|
+
parameters: {};
|
|
5776
|
+
};
|
|
5777
|
+
listActivities: {
|
|
5778
|
+
name: string;
|
|
5779
|
+
description: string;
|
|
5780
|
+
method: "get";
|
|
5781
|
+
section: "activity";
|
|
5782
|
+
path: string;
|
|
5783
|
+
disableDefaultParameters: {
|
|
5784
|
+
"x-workspace-id": boolean;
|
|
5785
|
+
};
|
|
5786
|
+
parameters: {
|
|
5787
|
+
nextToken: {
|
|
5788
|
+
in: "query";
|
|
5789
|
+
description: string;
|
|
5790
|
+
type: "string";
|
|
5791
|
+
};
|
|
5792
|
+
taskId: {
|
|
5793
|
+
in: "query";
|
|
5794
|
+
description: string;
|
|
5795
|
+
type: "string";
|
|
5796
|
+
required: true;
|
|
5797
|
+
};
|
|
5798
|
+
botId: {
|
|
5799
|
+
in: "query";
|
|
5800
|
+
description: string;
|
|
5801
|
+
type: "string";
|
|
5802
|
+
required: true;
|
|
5803
|
+
};
|
|
5804
|
+
};
|
|
5805
|
+
response: {
|
|
5806
|
+
description: string;
|
|
5807
|
+
schema: {
|
|
5808
|
+
type: "object";
|
|
5809
|
+
properties: {
|
|
5810
|
+
activities: {
|
|
5382
5811
|
type: "array";
|
|
5383
5812
|
items: {
|
|
5384
5813
|
$ref: string;
|
|
5385
5814
|
};
|
|
5386
5815
|
};
|
|
5387
|
-
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
path: string;
|
|
5397
|
-
description: string;
|
|
5398
|
-
method: "put";
|
|
5399
|
-
section: "quotas";
|
|
5400
|
-
requestBody: {
|
|
5401
|
-
description: string;
|
|
5402
|
-
schema: {
|
|
5403
|
-
type: "object";
|
|
5404
|
-
properties: {
|
|
5405
|
-
monthlySpendingLimit: {
|
|
5406
|
-
type: "number";
|
|
5816
|
+
meta: {
|
|
5817
|
+
type: "object";
|
|
5818
|
+
properties: {
|
|
5819
|
+
nextToken: {
|
|
5820
|
+
type: "string";
|
|
5821
|
+
description: string;
|
|
5822
|
+
};
|
|
5823
|
+
};
|
|
5824
|
+
additionalProperties: false;
|
|
5407
5825
|
};
|
|
5408
5826
|
};
|
|
5409
5827
|
required: string[];
|
|
@@ -5411,15 +5829,6 @@ export declare const state: {
|
|
|
5411
5829
|
additionalProperties: false;
|
|
5412
5830
|
};
|
|
5413
5831
|
};
|
|
5414
|
-
response: {
|
|
5415
|
-
description: string;
|
|
5416
|
-
schema: {
|
|
5417
|
-
type: "object";
|
|
5418
|
-
title: string;
|
|
5419
|
-
additionalProperties: false;
|
|
5420
|
-
};
|
|
5421
|
-
};
|
|
5422
|
-
parameters: {};
|
|
5423
5832
|
};
|
|
5424
5833
|
introspect: {
|
|
5425
5834
|
name: string;
|
|
@@ -5705,6 +6114,8 @@ export declare const state: {
|
|
|
5705
6114
|
patchStateBody: true;
|
|
5706
6115
|
callActionBody: true;
|
|
5707
6116
|
configureIntegrationBody: true;
|
|
6117
|
+
createTaskBody: true;
|
|
6118
|
+
updateTaskBody: true;
|
|
5708
6119
|
runVrlBody: true;
|
|
5709
6120
|
createPersonalAccessTokenBody: true;
|
|
5710
6121
|
setAccountPreferenceBody: true;
|
|
@@ -5715,6 +6126,7 @@ export declare const state: {
|
|
|
5715
6126
|
chargeWorkspaceUnpaidInvoicesBody: true;
|
|
5716
6127
|
createWorkspaceBody: true;
|
|
5717
6128
|
updateWorkspaceBody: true;
|
|
6129
|
+
checkHandleAvailabilityBody: true;
|
|
5718
6130
|
changeWorkspacePlanBody: true;
|
|
5719
6131
|
createWorkspaceMemberBody: true;
|
|
5720
6132
|
updateWorkspaceMemberBody: true;
|
|
@@ -5755,6 +6167,11 @@ export declare const state: {
|
|
|
5755
6167
|
patchStateResponse: true;
|
|
5756
6168
|
callActionResponse: true;
|
|
5757
6169
|
configureIntegrationResponse: true;
|
|
6170
|
+
getTaskResponse: true;
|
|
6171
|
+
createTaskResponse: true;
|
|
6172
|
+
updateTaskResponse: true;
|
|
6173
|
+
deleteTaskResponse: true;
|
|
6174
|
+
listTasksResponse: true;
|
|
5758
6175
|
runVrlResponse: true;
|
|
5759
6176
|
getAccountResponse: true;
|
|
5760
6177
|
listPersonalAccessTokensResponse: true;
|
|
@@ -5789,6 +6206,7 @@ export declare const state: {
|
|
|
5789
6206
|
getWorkspaceQuotaResponse: true;
|
|
5790
6207
|
listWorkspaceQuotasResponse: true;
|
|
5791
6208
|
updateWorkspaceResponse: true;
|
|
6209
|
+
checkHandleAvailabilityResponse: true;
|
|
5792
6210
|
listWorkspacesResponse: true;
|
|
5793
6211
|
changeWorkspacePlanResponse: true;
|
|
5794
6212
|
deleteWorkspaceResponse: true;
|
|
@@ -5807,6 +6225,7 @@ export declare const state: {
|
|
|
5807
6225
|
getUsageResponse: true;
|
|
5808
6226
|
listUsageHistoryResponse: true;
|
|
5809
6227
|
changeAISpendQuotaResponse: true;
|
|
6228
|
+
listActivitiesResponse: true;
|
|
5810
6229
|
introspectResponse: true;
|
|
5811
6230
|
createFileResponse: true;
|
|
5812
6231
|
getFileResponse: true;
|
|
@@ -5823,11 +6242,13 @@ export declare const state: {
|
|
|
5823
6242
|
Usage: true;
|
|
5824
6243
|
Issue: true;
|
|
5825
6244
|
IssueEvent: true;
|
|
6245
|
+
Activity: true;
|
|
5826
6246
|
User: true;
|
|
5827
6247
|
Conversation: true;
|
|
5828
6248
|
Event: true;
|
|
5829
6249
|
Message: true;
|
|
5830
6250
|
State: true;
|
|
6251
|
+
Task: true;
|
|
5831
6252
|
File: true;
|
|
5832
6253
|
Table: true;
|
|
5833
6254
|
Column: true;
|
|
@@ -6635,6 +7056,10 @@ export declare const state: {
|
|
|
6635
7056
|
isPublic: {
|
|
6636
7057
|
type: "boolean";
|
|
6637
7058
|
};
|
|
7059
|
+
handle: {
|
|
7060
|
+
default: string;
|
|
7061
|
+
type: "string";
|
|
7062
|
+
};
|
|
6638
7063
|
};
|
|
6639
7064
|
required: string[];
|
|
6640
7065
|
additionalProperties: false;
|
|
@@ -6809,6 +7234,38 @@ export declare const state: {
|
|
|
6809
7234
|
additionalProperties: false;
|
|
6810
7235
|
};
|
|
6811
7236
|
};
|
|
7237
|
+
Activity: {
|
|
7238
|
+
section: "activity";
|
|
7239
|
+
schema: {
|
|
7240
|
+
type: "object";
|
|
7241
|
+
properties: {
|
|
7242
|
+
id: {
|
|
7243
|
+
type: "string";
|
|
7244
|
+
};
|
|
7245
|
+
description: {
|
|
7246
|
+
type: "string";
|
|
7247
|
+
};
|
|
7248
|
+
taskId: {
|
|
7249
|
+
type: "string";
|
|
7250
|
+
};
|
|
7251
|
+
category: {
|
|
7252
|
+
type: "string";
|
|
7253
|
+
enum: string[];
|
|
7254
|
+
};
|
|
7255
|
+
data: {
|
|
7256
|
+
type: "object";
|
|
7257
|
+
additionalProperties: true;
|
|
7258
|
+
};
|
|
7259
|
+
createdAt: {
|
|
7260
|
+
type: "string";
|
|
7261
|
+
format: string;
|
|
7262
|
+
description: string;
|
|
7263
|
+
};
|
|
7264
|
+
};
|
|
7265
|
+
required: string[];
|
|
7266
|
+
additionalProperties: false;
|
|
7267
|
+
};
|
|
7268
|
+
};
|
|
6812
7269
|
User: {
|
|
6813
7270
|
section: "user";
|
|
6814
7271
|
schema: {
|
|
@@ -6864,6 +7321,12 @@ export declare const state: {
|
|
|
6864
7321
|
maxLength: number;
|
|
6865
7322
|
description: string;
|
|
6866
7323
|
};
|
|
7324
|
+
currentTaskId: {
|
|
7325
|
+
type: "string";
|
|
7326
|
+
minLength: number;
|
|
7327
|
+
maxLength: number;
|
|
7328
|
+
description: string;
|
|
7329
|
+
};
|
|
6867
7330
|
createdAt: {
|
|
6868
7331
|
type: "string";
|
|
6869
7332
|
format: string;
|
|
@@ -6941,7 +7404,13 @@ export declare const state: {
|
|
|
6941
7404
|
};
|
|
6942
7405
|
status: {
|
|
6943
7406
|
type: "string";
|
|
7407
|
+
enum: string[];
|
|
7408
|
+
};
|
|
7409
|
+
failureReason: {
|
|
7410
|
+
type: "string";
|
|
7411
|
+
maxLength: number;
|
|
6944
7412
|
description: string;
|
|
7413
|
+
nullable: true;
|
|
6945
7414
|
};
|
|
6946
7415
|
};
|
|
6947
7416
|
required: string[];
|
|
@@ -7065,6 +7534,92 @@ export declare const state: {
|
|
|
7065
7534
|
additionalProperties: false;
|
|
7066
7535
|
};
|
|
7067
7536
|
};
|
|
7537
|
+
Task: {
|
|
7538
|
+
section: "task";
|
|
7539
|
+
schema: {
|
|
7540
|
+
type: "object";
|
|
7541
|
+
properties: {
|
|
7542
|
+
id: {
|
|
7543
|
+
type: "string";
|
|
7544
|
+
minLength: number;
|
|
7545
|
+
maxLength: number;
|
|
7546
|
+
description: string;
|
|
7547
|
+
};
|
|
7548
|
+
title: {
|
|
7549
|
+
type: "string";
|
|
7550
|
+
maxLength: number;
|
|
7551
|
+
description: string;
|
|
7552
|
+
};
|
|
7553
|
+
description: {
|
|
7554
|
+
type: "string";
|
|
7555
|
+
maxLength: number;
|
|
7556
|
+
description: string;
|
|
7557
|
+
};
|
|
7558
|
+
type: {
|
|
7559
|
+
type: "string";
|
|
7560
|
+
description: string;
|
|
7561
|
+
};
|
|
7562
|
+
data: {
|
|
7563
|
+
type: "object";
|
|
7564
|
+
additionalProperties: true;
|
|
7565
|
+
description: string;
|
|
7566
|
+
};
|
|
7567
|
+
status: {
|
|
7568
|
+
type: "string";
|
|
7569
|
+
enum: string[];
|
|
7570
|
+
description: string;
|
|
7571
|
+
};
|
|
7572
|
+
parentTaskId: {
|
|
7573
|
+
type: "string";
|
|
7574
|
+
minLength: number;
|
|
7575
|
+
maxLength: number;
|
|
7576
|
+
description: string;
|
|
7577
|
+
};
|
|
7578
|
+
conversationId: {
|
|
7579
|
+
type: "string";
|
|
7580
|
+
minLength: number;
|
|
7581
|
+
maxLength: number;
|
|
7582
|
+
description: string;
|
|
7583
|
+
};
|
|
7584
|
+
userId: {
|
|
7585
|
+
type: "string";
|
|
7586
|
+
minLength: number;
|
|
7587
|
+
maxLength: number;
|
|
7588
|
+
description: string;
|
|
7589
|
+
};
|
|
7590
|
+
timeoutAt: {
|
|
7591
|
+
type: "string";
|
|
7592
|
+
format: string;
|
|
7593
|
+
description: string;
|
|
7594
|
+
};
|
|
7595
|
+
createdAt: {
|
|
7596
|
+
type: "string";
|
|
7597
|
+
format: string;
|
|
7598
|
+
description: string;
|
|
7599
|
+
};
|
|
7600
|
+
updatedAt: {
|
|
7601
|
+
type: "string";
|
|
7602
|
+
format: string;
|
|
7603
|
+
description: string;
|
|
7604
|
+
};
|
|
7605
|
+
failureReason: {
|
|
7606
|
+
type: "string";
|
|
7607
|
+
maxLength: number;
|
|
7608
|
+
description: string;
|
|
7609
|
+
};
|
|
7610
|
+
tags: {
|
|
7611
|
+
type: "object";
|
|
7612
|
+
additionalProperties: {
|
|
7613
|
+
type: "string";
|
|
7614
|
+
};
|
|
7615
|
+
description: string;
|
|
7616
|
+
};
|
|
7617
|
+
};
|
|
7618
|
+
required: string[];
|
|
7619
|
+
description: string;
|
|
7620
|
+
additionalProperties: false;
|
|
7621
|
+
};
|
|
7622
|
+
};
|
|
7068
7623
|
File: {
|
|
7069
7624
|
section: "file";
|
|
7070
7625
|
schema: {
|
|
@@ -7125,53 +7680,75 @@ export declare const state: {
|
|
|
7125
7680
|
maximum: number;
|
|
7126
7681
|
description: string;
|
|
7127
7682
|
};
|
|
7128
|
-
|
|
7129
|
-
type: "
|
|
7130
|
-
|
|
7131
|
-
|
|
7683
|
+
schema: {
|
|
7684
|
+
type: "object";
|
|
7685
|
+
properties: {
|
|
7686
|
+
$schema: {
|
|
7687
|
+
type: "string";
|
|
7688
|
+
};
|
|
7132
7689
|
properties: {
|
|
7133
|
-
|
|
7134
|
-
|
|
7135
|
-
|
|
7136
|
-
|
|
7137
|
-
|
|
7138
|
-
|
|
7139
|
-
|
|
7140
|
-
|
|
7141
|
-
|
|
7142
|
-
|
|
7143
|
-
|
|
7144
|
-
|
|
7145
|
-
|
|
7146
|
-
|
|
7147
|
-
|
|
7148
|
-
|
|
7149
|
-
|
|
7150
|
-
|
|
7151
|
-
|
|
7152
|
-
|
|
7153
|
-
|
|
7154
|
-
|
|
7690
|
+
type: "object";
|
|
7691
|
+
additionalProperties: {
|
|
7692
|
+
type: "object";
|
|
7693
|
+
properties: {
|
|
7694
|
+
type: {
|
|
7695
|
+
type: "string";
|
|
7696
|
+
enum: string[];
|
|
7697
|
+
};
|
|
7698
|
+
format: {
|
|
7699
|
+
type: "string";
|
|
7700
|
+
enum: string[];
|
|
7701
|
+
};
|
|
7702
|
+
description: {
|
|
7703
|
+
type: "string";
|
|
7704
|
+
};
|
|
7705
|
+
nullable: {
|
|
7706
|
+
default: boolean;
|
|
7707
|
+
type: "boolean";
|
|
7708
|
+
};
|
|
7709
|
+
"x-zui": {
|
|
7710
|
+
type: "object";
|
|
7711
|
+
properties: {
|
|
7712
|
+
index: {
|
|
7713
|
+
type: "integer";
|
|
7714
|
+
};
|
|
7715
|
+
searchable: {
|
|
7716
|
+
type: "boolean";
|
|
7717
|
+
description: string;
|
|
7718
|
+
};
|
|
7719
|
+
typings: {
|
|
7720
|
+
type: "string";
|
|
7721
|
+
description: string;
|
|
7722
|
+
};
|
|
7723
|
+
};
|
|
7724
|
+
required: string[];
|
|
7725
|
+
additionalProperties: false;
|
|
7726
|
+
};
|
|
7727
|
+
};
|
|
7728
|
+
required: string[];
|
|
7729
|
+
additionalProperties: false;
|
|
7155
7730
|
};
|
|
7156
|
-
|
|
7731
|
+
description: string;
|
|
7732
|
+
};
|
|
7733
|
+
additionalProperties: {
|
|
7734
|
+
type: "boolean";
|
|
7735
|
+
enum: boolean[];
|
|
7736
|
+
description: string;
|
|
7737
|
+
};
|
|
7738
|
+
required: {
|
|
7739
|
+
type: "array";
|
|
7740
|
+
items: {
|
|
7157
7741
|
type: "string";
|
|
7158
|
-
description: string;
|
|
7159
|
-
};
|
|
7160
|
-
schema: {
|
|
7161
|
-
type: "object";
|
|
7162
|
-
properties: {};
|
|
7163
|
-
additionalProperties: true;
|
|
7164
7742
|
};
|
|
7743
|
+
description: string;
|
|
7744
|
+
};
|
|
7745
|
+
type: {
|
|
7746
|
+
type: "string";
|
|
7747
|
+
enum: string[];
|
|
7165
7748
|
};
|
|
7166
|
-
required: string[];
|
|
7167
7749
|
};
|
|
7168
|
-
|
|
7169
|
-
|
|
7170
|
-
};
|
|
7171
|
-
schema: {
|
|
7172
|
-
type: "object";
|
|
7173
|
-
additionalProperties: true;
|
|
7174
|
-
description: string;
|
|
7750
|
+
required: string[];
|
|
7751
|
+
additionalProperties: false;
|
|
7175
7752
|
};
|
|
7176
7753
|
tags: {
|
|
7177
7754
|
type: "object";
|
|
@@ -7309,6 +7886,12 @@ export declare const state: {
|
|
|
7309
7886
|
name: "action";
|
|
7310
7887
|
operations: string[];
|
|
7311
7888
|
schema?: undefined;
|
|
7889
|
+
} | {
|
|
7890
|
+
description: string;
|
|
7891
|
+
title: string;
|
|
7892
|
+
name: "task";
|
|
7893
|
+
operations: string[];
|
|
7894
|
+
schema: string;
|
|
7312
7895
|
} | {
|
|
7313
7896
|
title: string;
|
|
7314
7897
|
description: string;
|
|
@@ -7357,6 +7940,12 @@ export declare const state: {
|
|
|
7357
7940
|
name: "helper";
|
|
7358
7941
|
operations: string[];
|
|
7359
7942
|
schema?: undefined;
|
|
7943
|
+
} | {
|
|
7944
|
+
title: string;
|
|
7945
|
+
description: string;
|
|
7946
|
+
name: "activity";
|
|
7947
|
+
operations: string[];
|
|
7948
|
+
schema: string;
|
|
7360
7949
|
} | {
|
|
7361
7950
|
title: string;
|
|
7362
7951
|
description: string;
|