@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
|
@@ -769,6 +769,11 @@ export declare const state: {
|
|
|
769
769
|
maxLength: number;
|
|
770
770
|
description: string;
|
|
771
771
|
};
|
|
772
|
+
signingSecret: {
|
|
773
|
+
type: "string";
|
|
774
|
+
maxLength: number;
|
|
775
|
+
description: string;
|
|
776
|
+
};
|
|
772
777
|
name: {
|
|
773
778
|
type: "string";
|
|
774
779
|
maxLength: number;
|
|
@@ -1427,6 +1432,11 @@ export declare const state: {
|
|
|
1427
1432
|
maxLength: number;
|
|
1428
1433
|
description: string;
|
|
1429
1434
|
};
|
|
1435
|
+
signingSecret: {
|
|
1436
|
+
type: "string";
|
|
1437
|
+
maxLength: number;
|
|
1438
|
+
description: string;
|
|
1439
|
+
};
|
|
1430
1440
|
name: {
|
|
1431
1441
|
type: "string";
|
|
1432
1442
|
maxLength: number;
|
|
@@ -4716,6 +4726,56 @@ export declare const state: {
|
|
|
4716
4726
|
};
|
|
4717
4727
|
tags: string[];
|
|
4718
4728
|
};
|
|
4729
|
+
rotateBotSigningSecrets: {
|
|
4730
|
+
name: string;
|
|
4731
|
+
description: string;
|
|
4732
|
+
method: "post";
|
|
4733
|
+
section: "bot";
|
|
4734
|
+
path: string;
|
|
4735
|
+
parameters: {
|
|
4736
|
+
id: {
|
|
4737
|
+
type: "string";
|
|
4738
|
+
description: string;
|
|
4739
|
+
in: "path";
|
|
4740
|
+
};
|
|
4741
|
+
"x-workspace-id": {
|
|
4742
|
+
in: "header";
|
|
4743
|
+
type: "string";
|
|
4744
|
+
description: string;
|
|
4745
|
+
required: true;
|
|
4746
|
+
};
|
|
4747
|
+
"x-multiple-integrations": {
|
|
4748
|
+
in: "header";
|
|
4749
|
+
type: "string";
|
|
4750
|
+
description: string;
|
|
4751
|
+
required: false;
|
|
4752
|
+
};
|
|
4753
|
+
};
|
|
4754
|
+
requestBody: {
|
|
4755
|
+
description: string;
|
|
4756
|
+
schema: {
|
|
4757
|
+
type: "object";
|
|
4758
|
+
title: string;
|
|
4759
|
+
additionalProperties: false;
|
|
4760
|
+
};
|
|
4761
|
+
};
|
|
4762
|
+
response: {
|
|
4763
|
+
description: string;
|
|
4764
|
+
schema: {
|
|
4765
|
+
type: "object";
|
|
4766
|
+
properties: {
|
|
4767
|
+
newSigningSecret: {
|
|
4768
|
+
type: "string";
|
|
4769
|
+
description: string;
|
|
4770
|
+
};
|
|
4771
|
+
};
|
|
4772
|
+
required: string[];
|
|
4773
|
+
title: string;
|
|
4774
|
+
additionalProperties: false;
|
|
4775
|
+
};
|
|
4776
|
+
};
|
|
4777
|
+
tags: string[];
|
|
4778
|
+
};
|
|
4719
4779
|
transferBot: {
|
|
4720
4780
|
name: string;
|
|
4721
4781
|
description: string;
|
|
@@ -10233,6 +10293,56 @@ export declare const state: {
|
|
|
10233
10293
|
};
|
|
10234
10294
|
tags: string[];
|
|
10235
10295
|
};
|
|
10296
|
+
rotateIntegrationSigningSecrets: {
|
|
10297
|
+
name: string;
|
|
10298
|
+
description: string;
|
|
10299
|
+
method: "post";
|
|
10300
|
+
section: "integration";
|
|
10301
|
+
path: string;
|
|
10302
|
+
parameters: {
|
|
10303
|
+
id: {
|
|
10304
|
+
type: "string";
|
|
10305
|
+
description: string;
|
|
10306
|
+
in: "path";
|
|
10307
|
+
};
|
|
10308
|
+
"x-workspace-id": {
|
|
10309
|
+
in: "header";
|
|
10310
|
+
type: "string";
|
|
10311
|
+
description: string;
|
|
10312
|
+
required: true;
|
|
10313
|
+
};
|
|
10314
|
+
"x-multiple-integrations": {
|
|
10315
|
+
in: "header";
|
|
10316
|
+
type: "string";
|
|
10317
|
+
description: string;
|
|
10318
|
+
required: false;
|
|
10319
|
+
};
|
|
10320
|
+
};
|
|
10321
|
+
requestBody: {
|
|
10322
|
+
description: string;
|
|
10323
|
+
schema: {
|
|
10324
|
+
type: "object";
|
|
10325
|
+
title: string;
|
|
10326
|
+
additionalProperties: false;
|
|
10327
|
+
};
|
|
10328
|
+
};
|
|
10329
|
+
response: {
|
|
10330
|
+
description: string;
|
|
10331
|
+
schema: {
|
|
10332
|
+
type: "object";
|
|
10333
|
+
properties: {
|
|
10334
|
+
newSigningSecret: {
|
|
10335
|
+
type: "string";
|
|
10336
|
+
description: string;
|
|
10337
|
+
};
|
|
10338
|
+
};
|
|
10339
|
+
required: string[];
|
|
10340
|
+
title: string;
|
|
10341
|
+
additionalProperties: false;
|
|
10342
|
+
};
|
|
10343
|
+
};
|
|
10344
|
+
tags: string[];
|
|
10345
|
+
};
|
|
10236
10346
|
validateIntegrationUpdate: {
|
|
10237
10347
|
name: string;
|
|
10238
10348
|
description: string;
|
|
@@ -13727,6 +13837,7 @@ export declare const state: {
|
|
|
13727
13837
|
setAccountPreferenceBody: true;
|
|
13728
13838
|
createBotBody: true;
|
|
13729
13839
|
updateBotBody: true;
|
|
13840
|
+
rotateBotSigningSecretsBody: true;
|
|
13730
13841
|
transferBotBody: true;
|
|
13731
13842
|
publishFromBotJsonBody: true;
|
|
13732
13843
|
createBotVersionBody: true;
|
|
@@ -13745,6 +13856,7 @@ export declare const state: {
|
|
|
13745
13856
|
createIntegrationBody: true;
|
|
13746
13857
|
validateIntegrationCreationBody: true;
|
|
13747
13858
|
updateIntegrationBody: true;
|
|
13859
|
+
rotateIntegrationSigningSecretsBody: true;
|
|
13748
13860
|
validateIntegrationUpdateBody: true;
|
|
13749
13861
|
requestIntegrationVerificationBody: true;
|
|
13750
13862
|
createInterfaceBody: true;
|
|
@@ -13777,6 +13889,7 @@ export declare const state: {
|
|
|
13777
13889
|
getPublicInterfaceResponse: true;
|
|
13778
13890
|
createBotResponse: true;
|
|
13779
13891
|
updateBotResponse: true;
|
|
13892
|
+
rotateBotSigningSecretsResponse: true;
|
|
13780
13893
|
transferBotResponse: true;
|
|
13781
13894
|
listBotsResponse: true;
|
|
13782
13895
|
getBotResponse: true;
|
|
@@ -13834,6 +13947,7 @@ export declare const state: {
|
|
|
13834
13947
|
createIntegrationResponse: true;
|
|
13835
13948
|
validateIntegrationCreationResponse: true;
|
|
13836
13949
|
updateIntegrationResponse: true;
|
|
13950
|
+
rotateIntegrationSigningSecretsResponse: true;
|
|
13837
13951
|
validateIntegrationUpdateResponse: true;
|
|
13838
13952
|
listIntegrationsResponse: true;
|
|
13839
13953
|
getIntegrationResponse: true;
|
|
@@ -14550,6 +14664,11 @@ export declare const state: {
|
|
|
14550
14664
|
maxLength: number;
|
|
14551
14665
|
description: string;
|
|
14552
14666
|
};
|
|
14667
|
+
signingSecret: {
|
|
14668
|
+
type: "string";
|
|
14669
|
+
maxLength: number;
|
|
14670
|
+
description: string;
|
|
14671
|
+
};
|
|
14553
14672
|
name: {
|
|
14554
14673
|
type: "string";
|
|
14555
14674
|
maxLength: number;
|