@botpress/api 0.38.1 → 0.38.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 +37 -2
- package/dist/src/gen/state.d.ts +32 -0
- package/package.json +1 -1
- package/src/gen/metadata.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +37 -2
package/src/gen/state.ts
CHANGED
|
@@ -8621,6 +8621,38 @@ export const state = {
|
|
|
8621
8621
|
}
|
|
8622
8622
|
}
|
|
8623
8623
|
},
|
|
8624
|
+
"requestIntegrationVerification": {
|
|
8625
|
+
"name": "requestIntegrationVerification",
|
|
8626
|
+
"description": "Request Integration Verification",
|
|
8627
|
+
"method": "post",
|
|
8628
|
+
"section": "integration",
|
|
8629
|
+
"path": "/v1/admin/integrations/request-verification",
|
|
8630
|
+
"requestBody": {
|
|
8631
|
+
"description": "Integration",
|
|
8632
|
+
"schema": {
|
|
8633
|
+
"type": "object",
|
|
8634
|
+
"properties": {
|
|
8635
|
+
"integrationId": {
|
|
8636
|
+
"type": "string"
|
|
8637
|
+
}
|
|
8638
|
+
},
|
|
8639
|
+
"required": [
|
|
8640
|
+
"integrationId"
|
|
8641
|
+
],
|
|
8642
|
+
"title": "requestIntegrationVerificationBody",
|
|
8643
|
+
"additionalProperties": false
|
|
8644
|
+
}
|
|
8645
|
+
},
|
|
8646
|
+
"response": {
|
|
8647
|
+
"description": "Success",
|
|
8648
|
+
"schema": {
|
|
8649
|
+
"type": "object",
|
|
8650
|
+
"title": "requestIntegrationVerificationResponse",
|
|
8651
|
+
"additionalProperties": false
|
|
8652
|
+
}
|
|
8653
|
+
},
|
|
8654
|
+
"parameters": {}
|
|
8655
|
+
},
|
|
8624
8656
|
"createInterface": {
|
|
8625
8657
|
"name": "createInterface",
|
|
8626
8658
|
"description": "Create Interface",
|
|
@@ -11168,7 +11200,7 @@ export const state = {
|
|
|
11168
11200
|
"title": "Botpress API",
|
|
11169
11201
|
"description": "API for Botpress Cloud",
|
|
11170
11202
|
"server": "https://api.botpress.cloud",
|
|
11171
|
-
"version": "0.38.
|
|
11203
|
+
"version": "0.38.2",
|
|
11172
11204
|
"prefix": "v1"
|
|
11173
11205
|
},
|
|
11174
11206
|
"errors": [
|
|
@@ -11334,6 +11366,7 @@ export const state = {
|
|
|
11334
11366
|
"createIntegrationApiKeyBody": true,
|
|
11335
11367
|
"createIntegrationBody": true,
|
|
11336
11368
|
"updateIntegrationBody": true,
|
|
11369
|
+
"requestIntegrationVerificationBody": true,
|
|
11337
11370
|
"createInterfaceBody": true,
|
|
11338
11371
|
"updateInterfaceBody": true,
|
|
11339
11372
|
"changeAISpendQuotaBody": true,
|
|
@@ -11450,6 +11483,7 @@ export const state = {
|
|
|
11450
11483
|
"getIntegrationLogsResponse": true,
|
|
11451
11484
|
"getIntegrationByNameResponse": true,
|
|
11452
11485
|
"deleteIntegrationResponse": true,
|
|
11486
|
+
"requestIntegrationVerificationResponse": true,
|
|
11453
11487
|
"createInterfaceResponse": true,
|
|
11454
11488
|
"getInterfaceResponse": true,
|
|
11455
11489
|
"getInterfaceByNameResponse": true,
|
|
@@ -14134,7 +14168,8 @@ export const state = {
|
|
|
14134
14168
|
"getIntegration",
|
|
14135
14169
|
"getIntegrationLogs",
|
|
14136
14170
|
"getIntegrationByName",
|
|
14137
|
-
"deleteIntegration"
|
|
14171
|
+
"deleteIntegration",
|
|
14172
|
+
"requestIntegrationVerification"
|
|
14138
14173
|
],
|
|
14139
14174
|
"schema": "Integration"
|
|
14140
14175
|
},
|