@botpress/api 0.47.0 → 0.48.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 +6 -4
- package/dist/src/gen/state.d.ts +5 -1
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +6 -4
package/dist/index.js
CHANGED
|
@@ -283462,11 +283462,13 @@ var state = {
|
|
|
283462
283462
|
"type": "string",
|
|
283463
283463
|
"maxLength": 200,
|
|
283464
283464
|
"description": "Unique identifier of the integration that was installed on the bot"
|
|
283465
|
+
},
|
|
283466
|
+
"configuration": {
|
|
283467
|
+
"type": "object",
|
|
283468
|
+
"additionalProperties": true,
|
|
283469
|
+
"description": "Configuration fields to update for the integration"
|
|
283465
283470
|
}
|
|
283466
283471
|
},
|
|
283467
|
-
"required": [
|
|
283468
|
-
"identifier"
|
|
283469
|
-
],
|
|
283470
283472
|
"title": "configureIntegrationBody",
|
|
283471
283473
|
"additionalProperties": false
|
|
283472
283474
|
}
|
|
@@ -294039,7 +294041,7 @@ var state = {
|
|
|
294039
294041
|
"title": "Botpress API",
|
|
294040
294042
|
"description": "API for Botpress Cloud",
|
|
294041
294043
|
"server": "https://api.botpress.cloud",
|
|
294042
|
-
"version": "0.
|
|
294044
|
+
"version": "0.48.0",
|
|
294043
294045
|
"prefix": "v1"
|
|
294044
294046
|
},
|
|
294045
294047
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -1568,8 +1568,12 @@ export declare const state: {
|
|
|
1568
1568
|
maxLength: number;
|
|
1569
1569
|
description: string;
|
|
1570
1570
|
};
|
|
1571
|
+
configuration: {
|
|
1572
|
+
type: "object";
|
|
1573
|
+
additionalProperties: true;
|
|
1574
|
+
description: string;
|
|
1575
|
+
};
|
|
1571
1576
|
};
|
|
1572
|
-
required: string[];
|
|
1573
1577
|
title: string;
|
|
1574
1578
|
additionalProperties: false;
|
|
1575
1579
|
};
|