@botpress/api 1.71.0 → 1.72.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1947 -191
- package/dist/src/gen/admin/state.d.ts +119 -0
- package/dist/src/gen/billing/state.d.ts +1502 -331
- package/dist/src/gen/state.d.ts +95 -0
- package/package.json +4 -4
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -3481,6 +3481,11 @@ export declare const state: {
|
|
|
3481
3481
|
maxLength: number;
|
|
3482
3482
|
description: string;
|
|
3483
3483
|
};
|
|
3484
|
+
signingSecret: {
|
|
3485
|
+
type: "string";
|
|
3486
|
+
maxLength: number;
|
|
3487
|
+
description: string;
|
|
3488
|
+
};
|
|
3484
3489
|
name: {
|
|
3485
3490
|
type: "string";
|
|
3486
3491
|
maxLength: number;
|
|
@@ -4133,6 +4138,11 @@ export declare const state: {
|
|
|
4133
4138
|
maxLength: number;
|
|
4134
4139
|
description: string;
|
|
4135
4140
|
};
|
|
4141
|
+
signingSecret: {
|
|
4142
|
+
type: "string";
|
|
4143
|
+
maxLength: number;
|
|
4144
|
+
description: string;
|
|
4145
|
+
};
|
|
4136
4146
|
name: {
|
|
4137
4147
|
type: "string";
|
|
4138
4148
|
maxLength: number;
|
|
@@ -7349,6 +7359,44 @@ export declare const state: {
|
|
|
7349
7359
|
};
|
|
7350
7360
|
tags: string[];
|
|
7351
7361
|
};
|
|
7362
|
+
rotateBotSigningSecrets: {
|
|
7363
|
+
name: string;
|
|
7364
|
+
description: string;
|
|
7365
|
+
method: "post";
|
|
7366
|
+
section: "bot";
|
|
7367
|
+
path: string;
|
|
7368
|
+
parameters: {
|
|
7369
|
+
id: {
|
|
7370
|
+
type: "string";
|
|
7371
|
+
description: string;
|
|
7372
|
+
in: "path";
|
|
7373
|
+
};
|
|
7374
|
+
};
|
|
7375
|
+
requestBody: {
|
|
7376
|
+
description: string;
|
|
7377
|
+
schema: {
|
|
7378
|
+
type: "object";
|
|
7379
|
+
title: string;
|
|
7380
|
+
additionalProperties: false;
|
|
7381
|
+
};
|
|
7382
|
+
};
|
|
7383
|
+
response: {
|
|
7384
|
+
description: string;
|
|
7385
|
+
schema: {
|
|
7386
|
+
type: "object";
|
|
7387
|
+
properties: {
|
|
7388
|
+
newSigningSecret: {
|
|
7389
|
+
type: "string";
|
|
7390
|
+
description: string;
|
|
7391
|
+
};
|
|
7392
|
+
};
|
|
7393
|
+
required: string[];
|
|
7394
|
+
title: string;
|
|
7395
|
+
additionalProperties: false;
|
|
7396
|
+
};
|
|
7397
|
+
};
|
|
7398
|
+
tags: string[];
|
|
7399
|
+
};
|
|
7352
7400
|
transferBot: {
|
|
7353
7401
|
name: string;
|
|
7354
7402
|
description: string;
|
|
@@ -12288,6 +12336,44 @@ export declare const state: {
|
|
|
12288
12336
|
};
|
|
12289
12337
|
tags: string[];
|
|
12290
12338
|
};
|
|
12339
|
+
rotateIntegrationSigningSecrets: {
|
|
12340
|
+
name: string;
|
|
12341
|
+
description: string;
|
|
12342
|
+
method: "post";
|
|
12343
|
+
section: "integration";
|
|
12344
|
+
path: string;
|
|
12345
|
+
parameters: {
|
|
12346
|
+
id: {
|
|
12347
|
+
type: "string";
|
|
12348
|
+
description: string;
|
|
12349
|
+
in: "path";
|
|
12350
|
+
};
|
|
12351
|
+
};
|
|
12352
|
+
requestBody: {
|
|
12353
|
+
description: string;
|
|
12354
|
+
schema: {
|
|
12355
|
+
type: "object";
|
|
12356
|
+
title: string;
|
|
12357
|
+
additionalProperties: false;
|
|
12358
|
+
};
|
|
12359
|
+
};
|
|
12360
|
+
response: {
|
|
12361
|
+
description: string;
|
|
12362
|
+
schema: {
|
|
12363
|
+
type: "object";
|
|
12364
|
+
properties: {
|
|
12365
|
+
newSigningSecret: {
|
|
12366
|
+
type: "string";
|
|
12367
|
+
description: string;
|
|
12368
|
+
};
|
|
12369
|
+
};
|
|
12370
|
+
required: string[];
|
|
12371
|
+
title: string;
|
|
12372
|
+
additionalProperties: false;
|
|
12373
|
+
};
|
|
12374
|
+
};
|
|
12375
|
+
tags: string[];
|
|
12376
|
+
};
|
|
12291
12377
|
validateIntegrationUpdate: {
|
|
12292
12378
|
name: string;
|
|
12293
12379
|
description: string;
|
|
@@ -18181,6 +18267,7 @@ export declare const state: {
|
|
|
18181
18267
|
setAccountPreferenceBody: true;
|
|
18182
18268
|
createBotBody: true;
|
|
18183
18269
|
updateBotBody: true;
|
|
18270
|
+
rotateBotSigningSecretsBody: true;
|
|
18184
18271
|
transferBotBody: true;
|
|
18185
18272
|
publishFromBotJsonBody: true;
|
|
18186
18273
|
createBotVersionBody: true;
|
|
@@ -18199,6 +18286,7 @@ export declare const state: {
|
|
|
18199
18286
|
createIntegrationBody: true;
|
|
18200
18287
|
validateIntegrationCreationBody: true;
|
|
18201
18288
|
updateIntegrationBody: true;
|
|
18289
|
+
rotateIntegrationSigningSecretsBody: true;
|
|
18202
18290
|
validateIntegrationUpdateBody: true;
|
|
18203
18291
|
requestIntegrationVerificationBody: true;
|
|
18204
18292
|
createInterfaceBody: true;
|
|
@@ -18297,6 +18385,7 @@ export declare const state: {
|
|
|
18297
18385
|
getPublicInterfaceResponse: true;
|
|
18298
18386
|
createBotResponse: true;
|
|
18299
18387
|
updateBotResponse: true;
|
|
18388
|
+
rotateBotSigningSecretsResponse: true;
|
|
18300
18389
|
transferBotResponse: true;
|
|
18301
18390
|
listBotsResponse: true;
|
|
18302
18391
|
getBotResponse: true;
|
|
@@ -18354,6 +18443,7 @@ export declare const state: {
|
|
|
18354
18443
|
createIntegrationResponse: true;
|
|
18355
18444
|
validateIntegrationCreationResponse: true;
|
|
18356
18445
|
updateIntegrationResponse: true;
|
|
18446
|
+
rotateIntegrationSigningSecretsResponse: true;
|
|
18357
18447
|
validateIntegrationUpdateResponse: true;
|
|
18358
18448
|
listIntegrationsResponse: true;
|
|
18359
18449
|
getIntegrationResponse: true;
|
|
@@ -19113,6 +19203,11 @@ export declare const state: {
|
|
|
19113
19203
|
maxLength: number;
|
|
19114
19204
|
description: string;
|
|
19115
19205
|
};
|
|
19206
|
+
signingSecret: {
|
|
19207
|
+
type: "string";
|
|
19208
|
+
maxLength: number;
|
|
19209
|
+
description: string;
|
|
19210
|
+
};
|
|
19116
19211
|
name: {
|
|
19117
19212
|
type: "string";
|
|
19118
19213
|
maxLength: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botpress/api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.72.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/src/index.d.ts",
|
|
6
6
|
"devDependencies": {
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
"esbuild": "0.27.1",
|
|
9
9
|
"zod": "^3.24.4",
|
|
10
10
|
"typescript": "5.9.3",
|
|
11
|
-
"@botpress/common": "0.5.0",
|
|
12
11
|
"@botpress/bridge": "1.8.0",
|
|
12
|
+
"@botpress/cloud-manager": "0.2.0",
|
|
13
|
+
"@botpress/common": "0.5.0",
|
|
13
14
|
"@botpress/files-api": "0.18.0",
|
|
14
15
|
"@bpinternal/const": "0.4.2",
|
|
15
|
-
"@botpress/cloud-manager": "0.2.0",
|
|
16
16
|
"@bpinternal/tables-api": "0.17.2",
|
|
17
|
-
"@botpress/smaug": "1.0.
|
|
17
|
+
"@botpress/smaug": "1.0.1"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@bpinternal/opapi": "1.0.0"
|