@botpress/api 0.46.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 +11 -4
- package/dist/src/gen/state.d.ts +10 -1
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +11 -4
package/dist/index.js
CHANGED
|
@@ -281879,6 +281879,11 @@ var state = {
|
|
|
281879
281879
|
"in": "query",
|
|
281880
281880
|
"type": "string",
|
|
281881
281881
|
"description": "Filter by integration name"
|
|
281882
|
+
},
|
|
281883
|
+
"channel": {
|
|
281884
|
+
"in": "query",
|
|
281885
|
+
"type": "string",
|
|
281886
|
+
"description": "Filter by integration channel name"
|
|
281882
281887
|
}
|
|
281883
281888
|
},
|
|
281884
281889
|
"section": "conversation",
|
|
@@ -283457,11 +283462,13 @@ var state = {
|
|
|
283457
283462
|
"type": "string",
|
|
283458
283463
|
"maxLength": 200,
|
|
283459
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"
|
|
283460
283470
|
}
|
|
283461
283471
|
},
|
|
283462
|
-
"required": [
|
|
283463
|
-
"identifier"
|
|
283464
|
-
],
|
|
283465
283472
|
"title": "configureIntegrationBody",
|
|
283466
283473
|
"additionalProperties": false
|
|
283467
283474
|
}
|
|
@@ -294034,7 +294041,7 @@ var state = {
|
|
|
294034
294041
|
"title": "Botpress API",
|
|
294035
294042
|
"description": "API for Botpress Cloud",
|
|
294036
294043
|
"server": "https://api.botpress.cloud",
|
|
294037
|
-
"version": "0.
|
|
294044
|
+
"version": "0.48.0",
|
|
294038
294045
|
"prefix": "v1"
|
|
294039
294046
|
},
|
|
294040
294047
|
"errors": [
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -127,6 +127,11 @@ export declare const state: {
|
|
|
127
127
|
type: "string";
|
|
128
128
|
description: string;
|
|
129
129
|
};
|
|
130
|
+
channel: {
|
|
131
|
+
in: "query";
|
|
132
|
+
type: "string";
|
|
133
|
+
description: string;
|
|
134
|
+
};
|
|
130
135
|
};
|
|
131
136
|
section: "conversation";
|
|
132
137
|
response: {
|
|
@@ -1563,8 +1568,12 @@ export declare const state: {
|
|
|
1563
1568
|
maxLength: number;
|
|
1564
1569
|
description: string;
|
|
1565
1570
|
};
|
|
1571
|
+
configuration: {
|
|
1572
|
+
type: "object";
|
|
1573
|
+
additionalProperties: true;
|
|
1574
|
+
description: string;
|
|
1575
|
+
};
|
|
1566
1576
|
};
|
|
1567
|
-
required: string[];
|
|
1568
1577
|
title: string;
|
|
1569
1578
|
additionalProperties: false;
|
|
1570
1579
|
};
|