@botpress/api 1.10.0 → 1.12.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 +124 -586
- package/dist/src/gen/admin/state.d.ts +22 -0
- package/dist/src/gen/runtime/state.d.ts +1 -5
- package/dist/src/gen/state.d.ts +23 -5
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +31 -1
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +3 -7
- package/src/gen/state.ts +33 -7
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -35520,9 +35520,9 @@ var require_proxy_from_env = __commonJS({
|
|
|
35520
35520
|
}
|
|
35521
35521
|
});
|
|
35522
35522
|
|
|
35523
|
-
// ../../node_modules/.pnpm/debug@4.
|
|
35523
|
+
// ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js
|
|
35524
35524
|
var require_common2 = __commonJS({
|
|
35525
|
-
"../../node_modules/.pnpm/debug@4.
|
|
35525
|
+
"../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js"(exports, module2) {
|
|
35526
35526
|
function setup(env2) {
|
|
35527
35527
|
createDebug.debug = createDebug;
|
|
35528
35528
|
createDebug.default = createDebug;
|
|
@@ -35623,50 +35623,64 @@ var require_common2 = __commonJS({
|
|
|
35623
35623
|
createDebug.namespaces = namespaces;
|
|
35624
35624
|
createDebug.names = [];
|
|
35625
35625
|
createDebug.skips = [];
|
|
35626
|
-
|
|
35627
|
-
|
|
35628
|
-
|
|
35629
|
-
|
|
35630
|
-
|
|
35631
|
-
|
|
35626
|
+
const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(" ", ",").split(",").filter(Boolean);
|
|
35627
|
+
for (const ns of split) {
|
|
35628
|
+
if (ns[0] === "-") {
|
|
35629
|
+
createDebug.skips.push(ns.slice(1));
|
|
35630
|
+
} else {
|
|
35631
|
+
createDebug.names.push(ns);
|
|
35632
35632
|
}
|
|
35633
|
-
|
|
35634
|
-
|
|
35635
|
-
|
|
35633
|
+
}
|
|
35634
|
+
}
|
|
35635
|
+
function matchesTemplate(search, template2) {
|
|
35636
|
+
let searchIndex = 0;
|
|
35637
|
+
let templateIndex = 0;
|
|
35638
|
+
let starIndex = -1;
|
|
35639
|
+
let matchIndex = 0;
|
|
35640
|
+
while (searchIndex < search.length) {
|
|
35641
|
+
if (templateIndex < template2.length && (template2[templateIndex] === search[searchIndex] || template2[templateIndex] === "*")) {
|
|
35642
|
+
if (template2[templateIndex] === "*") {
|
|
35643
|
+
starIndex = templateIndex;
|
|
35644
|
+
matchIndex = searchIndex;
|
|
35645
|
+
templateIndex++;
|
|
35646
|
+
} else {
|
|
35647
|
+
searchIndex++;
|
|
35648
|
+
templateIndex++;
|
|
35649
|
+
}
|
|
35650
|
+
} else if (starIndex !== -1) {
|
|
35651
|
+
templateIndex = starIndex + 1;
|
|
35652
|
+
matchIndex++;
|
|
35653
|
+
searchIndex = matchIndex;
|
|
35636
35654
|
} else {
|
|
35637
|
-
|
|
35655
|
+
return false;
|
|
35638
35656
|
}
|
|
35639
35657
|
}
|
|
35658
|
+
while (templateIndex < template2.length && template2[templateIndex] === "*") {
|
|
35659
|
+
templateIndex++;
|
|
35660
|
+
}
|
|
35661
|
+
return templateIndex === template2.length;
|
|
35640
35662
|
}
|
|
35641
35663
|
function disable() {
|
|
35642
35664
|
const namespaces = [
|
|
35643
|
-
...createDebug.names
|
|
35644
|
-
...createDebug.skips.map(
|
|
35665
|
+
...createDebug.names,
|
|
35666
|
+
...createDebug.skips.map((namespace) => "-" + namespace)
|
|
35645
35667
|
].join(",");
|
|
35646
35668
|
createDebug.enable("");
|
|
35647
35669
|
return namespaces;
|
|
35648
35670
|
}
|
|
35649
35671
|
function enabled(name) {
|
|
35650
|
-
|
|
35651
|
-
|
|
35652
|
-
}
|
|
35653
|
-
let i;
|
|
35654
|
-
let len;
|
|
35655
|
-
for (i = 0, len = createDebug.skips.length; i < len; i++) {
|
|
35656
|
-
if (createDebug.skips[i].test(name)) {
|
|
35672
|
+
for (const skip of createDebug.skips) {
|
|
35673
|
+
if (matchesTemplate(name, skip)) {
|
|
35657
35674
|
return false;
|
|
35658
35675
|
}
|
|
35659
35676
|
}
|
|
35660
|
-
for (
|
|
35661
|
-
if (
|
|
35677
|
+
for (const ns of createDebug.names) {
|
|
35678
|
+
if (matchesTemplate(name, ns)) {
|
|
35662
35679
|
return true;
|
|
35663
35680
|
}
|
|
35664
35681
|
}
|
|
35665
35682
|
return false;
|
|
35666
35683
|
}
|
|
35667
|
-
function toNamespace(regexp) {
|
|
35668
|
-
return regexp.toString().substring(2, regexp.toString().length - 2).replace(/\.\*\?$/, "*");
|
|
35669
|
-
}
|
|
35670
35684
|
function coerce2(val) {
|
|
35671
35685
|
if (val instanceof Error) {
|
|
35672
35686
|
return val.stack || val.message;
|
|
@@ -35683,9 +35697,9 @@ var require_common2 = __commonJS({
|
|
|
35683
35697
|
}
|
|
35684
35698
|
});
|
|
35685
35699
|
|
|
35686
|
-
// ../../node_modules/.pnpm/debug@4.
|
|
35700
|
+
// ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js
|
|
35687
35701
|
var require_browser = __commonJS({
|
|
35688
|
-
"../../node_modules/.pnpm/debug@4.
|
|
35702
|
+
"../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js"(exports, module2) {
|
|
35689
35703
|
exports.formatArgs = formatArgs;
|
|
35690
35704
|
exports.save = save;
|
|
35691
35705
|
exports.load = load3;
|
|
@@ -35849,9 +35863,9 @@ var require_browser = __commonJS({
|
|
|
35849
35863
|
}
|
|
35850
35864
|
});
|
|
35851
35865
|
|
|
35852
|
-
// ../../node_modules/.pnpm/debug@4.
|
|
35866
|
+
// ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js
|
|
35853
35867
|
var require_node3 = __commonJS({
|
|
35854
|
-
"../../node_modules/.pnpm/debug@4.
|
|
35868
|
+
"../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js"(exports, module2) {
|
|
35855
35869
|
var tty2 = require("tty");
|
|
35856
35870
|
var util4 = require("util");
|
|
35857
35871
|
exports.init = init;
|
|
@@ -36023,9 +36037,9 @@ var require_node3 = __commonJS({
|
|
|
36023
36037
|
}
|
|
36024
36038
|
});
|
|
36025
36039
|
|
|
36026
|
-
// ../../node_modules/.pnpm/debug@4.
|
|
36040
|
+
// ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js
|
|
36027
36041
|
var require_src2 = __commonJS({
|
|
36028
|
-
"../../node_modules/.pnpm/debug@4.
|
|
36042
|
+
"../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js"(exports, module2) {
|
|
36029
36043
|
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
36030
36044
|
module2.exports = require_browser();
|
|
36031
36045
|
} else {
|
|
@@ -164274,7 +164288,7 @@ var require_prettier = __commonJS({
|
|
|
164274
164288
|
module22.exports.default = module22.exports;
|
|
164275
164289
|
}
|
|
164276
164290
|
});
|
|
164277
|
-
var
|
|
164291
|
+
var require_common4 = __commonJS22({
|
|
164278
164292
|
"node_modules/vnopts/lib/handlers/deprecated/common.js"(exports2) {
|
|
164279
164293
|
"use strict";
|
|
164280
164294
|
Object.defineProperty(exports2, "__esModule", {
|
|
@@ -164299,7 +164313,7 @@ var require_prettier = __commonJS({
|
|
|
164299
164313
|
value: true
|
|
164300
164314
|
});
|
|
164301
164315
|
var tslib_1 = (init_tslib_es6(), __toCommonJS2(tslib_es6_exports));
|
|
164302
|
-
tslib_1.__exportStar(
|
|
164316
|
+
tslib_1.__exportStar(require_common4(), exports2);
|
|
164303
164317
|
}
|
|
164304
164318
|
});
|
|
164305
164319
|
var require_common22 = __commonJS22({
|
|
@@ -164889,7 +164903,7 @@ var require_prettier = __commonJS({
|
|
|
164889
164903
|
value: true
|
|
164890
164904
|
});
|
|
164891
164905
|
var api_1 = require_api3();
|
|
164892
|
-
var common_1 =
|
|
164906
|
+
var common_1 = require_common4();
|
|
164893
164907
|
var invalid_1 = require_invalid();
|
|
164894
164908
|
var leven_1 = require_leven22();
|
|
164895
164909
|
exports2.defaultDescriptor = api_1.apiDescriptor;
|
|
@@ -173702,7 +173716,7 @@ ${error2.message}`;
|
|
|
173702
173716
|
module22.exports = Function.prototype.bind || implementation;
|
|
173703
173717
|
}
|
|
173704
173718
|
});
|
|
173705
|
-
var
|
|
173719
|
+
var require_src5 = __commonJS22({
|
|
173706
173720
|
"node_modules/has/src/index.js"(exports2, module22) {
|
|
173707
173721
|
"use strict";
|
|
173708
173722
|
var bind2 = require_function_bind2();
|
|
@@ -173871,7 +173885,7 @@ ${error2.message}`;
|
|
|
173871
173885
|
var require_is_core_module = __commonJS22({
|
|
173872
173886
|
"node_modules/is-core-module/index.js"(exports2, module22) {
|
|
173873
173887
|
"use strict";
|
|
173874
|
-
var has =
|
|
173888
|
+
var has = require_src5();
|
|
173875
173889
|
function specifierIncluded(current, specifier) {
|
|
173876
173890
|
var nodeParts = current.split(".");
|
|
173877
173891
|
var parts = specifier.split(" ");
|
|
@@ -261176,534 +261190,6 @@ var require_src4 = __commonJS({
|
|
|
261176
261190
|
}
|
|
261177
261191
|
});
|
|
261178
261192
|
|
|
261179
|
-
// ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js
|
|
261180
|
-
var require_common4 = __commonJS({
|
|
261181
|
-
"../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js"(exports, module2) {
|
|
261182
|
-
function setup(env2) {
|
|
261183
|
-
createDebug.debug = createDebug;
|
|
261184
|
-
createDebug.default = createDebug;
|
|
261185
|
-
createDebug.coerce = coerce2;
|
|
261186
|
-
createDebug.disable = disable;
|
|
261187
|
-
createDebug.enable = enable;
|
|
261188
|
-
createDebug.enabled = enabled;
|
|
261189
|
-
createDebug.humanize = require_ms();
|
|
261190
|
-
createDebug.destroy = destroy;
|
|
261191
|
-
Object.keys(env2).forEach((key) => {
|
|
261192
|
-
createDebug[key] = env2[key];
|
|
261193
|
-
});
|
|
261194
|
-
createDebug.names = [];
|
|
261195
|
-
createDebug.skips = [];
|
|
261196
|
-
createDebug.formatters = {};
|
|
261197
|
-
function selectColor(namespace) {
|
|
261198
|
-
let hash = 0;
|
|
261199
|
-
for (let i = 0; i < namespace.length; i++) {
|
|
261200
|
-
hash = (hash << 5) - hash + namespace.charCodeAt(i);
|
|
261201
|
-
hash |= 0;
|
|
261202
|
-
}
|
|
261203
|
-
return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
|
|
261204
|
-
}
|
|
261205
|
-
createDebug.selectColor = selectColor;
|
|
261206
|
-
function createDebug(namespace) {
|
|
261207
|
-
let prevTime;
|
|
261208
|
-
let enableOverride = null;
|
|
261209
|
-
let namespacesCache;
|
|
261210
|
-
let enabledCache;
|
|
261211
|
-
function debug(...args) {
|
|
261212
|
-
if (!debug.enabled) {
|
|
261213
|
-
return;
|
|
261214
|
-
}
|
|
261215
|
-
const self2 = debug;
|
|
261216
|
-
const curr = Number(new Date());
|
|
261217
|
-
const ms = curr - (prevTime || curr);
|
|
261218
|
-
self2.diff = ms;
|
|
261219
|
-
self2.prev = prevTime;
|
|
261220
|
-
self2.curr = curr;
|
|
261221
|
-
prevTime = curr;
|
|
261222
|
-
args[0] = createDebug.coerce(args[0]);
|
|
261223
|
-
if (typeof args[0] !== "string") {
|
|
261224
|
-
args.unshift("%O");
|
|
261225
|
-
}
|
|
261226
|
-
let index = 0;
|
|
261227
|
-
args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
|
|
261228
|
-
if (match === "%%") {
|
|
261229
|
-
return "%";
|
|
261230
|
-
}
|
|
261231
|
-
index++;
|
|
261232
|
-
const formatter = createDebug.formatters[format];
|
|
261233
|
-
if (typeof formatter === "function") {
|
|
261234
|
-
const val = args[index];
|
|
261235
|
-
match = formatter.call(self2, val);
|
|
261236
|
-
args.splice(index, 1);
|
|
261237
|
-
index--;
|
|
261238
|
-
}
|
|
261239
|
-
return match;
|
|
261240
|
-
});
|
|
261241
|
-
createDebug.formatArgs.call(self2, args);
|
|
261242
|
-
const logFn = self2.log || createDebug.log;
|
|
261243
|
-
logFn.apply(self2, args);
|
|
261244
|
-
}
|
|
261245
|
-
debug.namespace = namespace;
|
|
261246
|
-
debug.useColors = createDebug.useColors();
|
|
261247
|
-
debug.color = createDebug.selectColor(namespace);
|
|
261248
|
-
debug.extend = extend4;
|
|
261249
|
-
debug.destroy = createDebug.destroy;
|
|
261250
|
-
Object.defineProperty(debug, "enabled", {
|
|
261251
|
-
enumerable: true,
|
|
261252
|
-
configurable: false,
|
|
261253
|
-
get: () => {
|
|
261254
|
-
if (enableOverride !== null) {
|
|
261255
|
-
return enableOverride;
|
|
261256
|
-
}
|
|
261257
|
-
if (namespacesCache !== createDebug.namespaces) {
|
|
261258
|
-
namespacesCache = createDebug.namespaces;
|
|
261259
|
-
enabledCache = createDebug.enabled(namespace);
|
|
261260
|
-
}
|
|
261261
|
-
return enabledCache;
|
|
261262
|
-
},
|
|
261263
|
-
set: (v) => {
|
|
261264
|
-
enableOverride = v;
|
|
261265
|
-
}
|
|
261266
|
-
});
|
|
261267
|
-
if (typeof createDebug.init === "function") {
|
|
261268
|
-
createDebug.init(debug);
|
|
261269
|
-
}
|
|
261270
|
-
return debug;
|
|
261271
|
-
}
|
|
261272
|
-
function extend4(namespace, delimiter) {
|
|
261273
|
-
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
261274
|
-
newDebug.log = this.log;
|
|
261275
|
-
return newDebug;
|
|
261276
|
-
}
|
|
261277
|
-
function enable(namespaces) {
|
|
261278
|
-
createDebug.save(namespaces);
|
|
261279
|
-
createDebug.namespaces = namespaces;
|
|
261280
|
-
createDebug.names = [];
|
|
261281
|
-
createDebug.skips = [];
|
|
261282
|
-
const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(" ", ",").split(",").filter(Boolean);
|
|
261283
|
-
for (const ns of split) {
|
|
261284
|
-
if (ns[0] === "-") {
|
|
261285
|
-
createDebug.skips.push(ns.slice(1));
|
|
261286
|
-
} else {
|
|
261287
|
-
createDebug.names.push(ns);
|
|
261288
|
-
}
|
|
261289
|
-
}
|
|
261290
|
-
}
|
|
261291
|
-
function matchesTemplate(search, template2) {
|
|
261292
|
-
let searchIndex = 0;
|
|
261293
|
-
let templateIndex = 0;
|
|
261294
|
-
let starIndex = -1;
|
|
261295
|
-
let matchIndex = 0;
|
|
261296
|
-
while (searchIndex < search.length) {
|
|
261297
|
-
if (templateIndex < template2.length && (template2[templateIndex] === search[searchIndex] || template2[templateIndex] === "*")) {
|
|
261298
|
-
if (template2[templateIndex] === "*") {
|
|
261299
|
-
starIndex = templateIndex;
|
|
261300
|
-
matchIndex = searchIndex;
|
|
261301
|
-
templateIndex++;
|
|
261302
|
-
} else {
|
|
261303
|
-
searchIndex++;
|
|
261304
|
-
templateIndex++;
|
|
261305
|
-
}
|
|
261306
|
-
} else if (starIndex !== -1) {
|
|
261307
|
-
templateIndex = starIndex + 1;
|
|
261308
|
-
matchIndex++;
|
|
261309
|
-
searchIndex = matchIndex;
|
|
261310
|
-
} else {
|
|
261311
|
-
return false;
|
|
261312
|
-
}
|
|
261313
|
-
}
|
|
261314
|
-
while (templateIndex < template2.length && template2[templateIndex] === "*") {
|
|
261315
|
-
templateIndex++;
|
|
261316
|
-
}
|
|
261317
|
-
return templateIndex === template2.length;
|
|
261318
|
-
}
|
|
261319
|
-
function disable() {
|
|
261320
|
-
const namespaces = [
|
|
261321
|
-
...createDebug.names,
|
|
261322
|
-
...createDebug.skips.map((namespace) => "-" + namespace)
|
|
261323
|
-
].join(",");
|
|
261324
|
-
createDebug.enable("");
|
|
261325
|
-
return namespaces;
|
|
261326
|
-
}
|
|
261327
|
-
function enabled(name) {
|
|
261328
|
-
for (const skip of createDebug.skips) {
|
|
261329
|
-
if (matchesTemplate(name, skip)) {
|
|
261330
|
-
return false;
|
|
261331
|
-
}
|
|
261332
|
-
}
|
|
261333
|
-
for (const ns of createDebug.names) {
|
|
261334
|
-
if (matchesTemplate(name, ns)) {
|
|
261335
|
-
return true;
|
|
261336
|
-
}
|
|
261337
|
-
}
|
|
261338
|
-
return false;
|
|
261339
|
-
}
|
|
261340
|
-
function coerce2(val) {
|
|
261341
|
-
if (val instanceof Error) {
|
|
261342
|
-
return val.stack || val.message;
|
|
261343
|
-
}
|
|
261344
|
-
return val;
|
|
261345
|
-
}
|
|
261346
|
-
function destroy() {
|
|
261347
|
-
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
261348
|
-
}
|
|
261349
|
-
createDebug.enable(createDebug.load());
|
|
261350
|
-
return createDebug;
|
|
261351
|
-
}
|
|
261352
|
-
module2.exports = setup;
|
|
261353
|
-
}
|
|
261354
|
-
});
|
|
261355
|
-
|
|
261356
|
-
// ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js
|
|
261357
|
-
var require_browser2 = __commonJS({
|
|
261358
|
-
"../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js"(exports, module2) {
|
|
261359
|
-
exports.formatArgs = formatArgs;
|
|
261360
|
-
exports.save = save;
|
|
261361
|
-
exports.load = load3;
|
|
261362
|
-
exports.useColors = useColors;
|
|
261363
|
-
exports.storage = localstorage();
|
|
261364
|
-
exports.destroy = (() => {
|
|
261365
|
-
let warned = false;
|
|
261366
|
-
return () => {
|
|
261367
|
-
if (!warned) {
|
|
261368
|
-
warned = true;
|
|
261369
|
-
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
261370
|
-
}
|
|
261371
|
-
};
|
|
261372
|
-
})();
|
|
261373
|
-
exports.colors = [
|
|
261374
|
-
"#0000CC",
|
|
261375
|
-
"#0000FF",
|
|
261376
|
-
"#0033CC",
|
|
261377
|
-
"#0033FF",
|
|
261378
|
-
"#0066CC",
|
|
261379
|
-
"#0066FF",
|
|
261380
|
-
"#0099CC",
|
|
261381
|
-
"#0099FF",
|
|
261382
|
-
"#00CC00",
|
|
261383
|
-
"#00CC33",
|
|
261384
|
-
"#00CC66",
|
|
261385
|
-
"#00CC99",
|
|
261386
|
-
"#00CCCC",
|
|
261387
|
-
"#00CCFF",
|
|
261388
|
-
"#3300CC",
|
|
261389
|
-
"#3300FF",
|
|
261390
|
-
"#3333CC",
|
|
261391
|
-
"#3333FF",
|
|
261392
|
-
"#3366CC",
|
|
261393
|
-
"#3366FF",
|
|
261394
|
-
"#3399CC",
|
|
261395
|
-
"#3399FF",
|
|
261396
|
-
"#33CC00",
|
|
261397
|
-
"#33CC33",
|
|
261398
|
-
"#33CC66",
|
|
261399
|
-
"#33CC99",
|
|
261400
|
-
"#33CCCC",
|
|
261401
|
-
"#33CCFF",
|
|
261402
|
-
"#6600CC",
|
|
261403
|
-
"#6600FF",
|
|
261404
|
-
"#6633CC",
|
|
261405
|
-
"#6633FF",
|
|
261406
|
-
"#66CC00",
|
|
261407
|
-
"#66CC33",
|
|
261408
|
-
"#9900CC",
|
|
261409
|
-
"#9900FF",
|
|
261410
|
-
"#9933CC",
|
|
261411
|
-
"#9933FF",
|
|
261412
|
-
"#99CC00",
|
|
261413
|
-
"#99CC33",
|
|
261414
|
-
"#CC0000",
|
|
261415
|
-
"#CC0033",
|
|
261416
|
-
"#CC0066",
|
|
261417
|
-
"#CC0099",
|
|
261418
|
-
"#CC00CC",
|
|
261419
|
-
"#CC00FF",
|
|
261420
|
-
"#CC3300",
|
|
261421
|
-
"#CC3333",
|
|
261422
|
-
"#CC3366",
|
|
261423
|
-
"#CC3399",
|
|
261424
|
-
"#CC33CC",
|
|
261425
|
-
"#CC33FF",
|
|
261426
|
-
"#CC6600",
|
|
261427
|
-
"#CC6633",
|
|
261428
|
-
"#CC9900",
|
|
261429
|
-
"#CC9933",
|
|
261430
|
-
"#CCCC00",
|
|
261431
|
-
"#CCCC33",
|
|
261432
|
-
"#FF0000",
|
|
261433
|
-
"#FF0033",
|
|
261434
|
-
"#FF0066",
|
|
261435
|
-
"#FF0099",
|
|
261436
|
-
"#FF00CC",
|
|
261437
|
-
"#FF00FF",
|
|
261438
|
-
"#FF3300",
|
|
261439
|
-
"#FF3333",
|
|
261440
|
-
"#FF3366",
|
|
261441
|
-
"#FF3399",
|
|
261442
|
-
"#FF33CC",
|
|
261443
|
-
"#FF33FF",
|
|
261444
|
-
"#FF6600",
|
|
261445
|
-
"#FF6633",
|
|
261446
|
-
"#FF9900",
|
|
261447
|
-
"#FF9933",
|
|
261448
|
-
"#FFCC00",
|
|
261449
|
-
"#FFCC33"
|
|
261450
|
-
];
|
|
261451
|
-
function useColors() {
|
|
261452
|
-
if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
|
|
261453
|
-
return true;
|
|
261454
|
-
}
|
|
261455
|
-
if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
|
261456
|
-
return false;
|
|
261457
|
-
}
|
|
261458
|
-
let m;
|
|
261459
|
-
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
261460
|
-
}
|
|
261461
|
-
function formatArgs(args) {
|
|
261462
|
-
args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
|
|
261463
|
-
if (!this.useColors) {
|
|
261464
|
-
return;
|
|
261465
|
-
}
|
|
261466
|
-
const c2 = "color: " + this.color;
|
|
261467
|
-
args.splice(1, 0, c2, "color: inherit");
|
|
261468
|
-
let index = 0;
|
|
261469
|
-
let lastC = 0;
|
|
261470
|
-
args[0].replace(/%[a-zA-Z%]/g, (match) => {
|
|
261471
|
-
if (match === "%%") {
|
|
261472
|
-
return;
|
|
261473
|
-
}
|
|
261474
|
-
index++;
|
|
261475
|
-
if (match === "%c") {
|
|
261476
|
-
lastC = index;
|
|
261477
|
-
}
|
|
261478
|
-
});
|
|
261479
|
-
args.splice(lastC, 0, c2);
|
|
261480
|
-
}
|
|
261481
|
-
exports.log = console.debug || console.log || (() => {
|
|
261482
|
-
});
|
|
261483
|
-
function save(namespaces) {
|
|
261484
|
-
try {
|
|
261485
|
-
if (namespaces) {
|
|
261486
|
-
exports.storage.setItem("debug", namespaces);
|
|
261487
|
-
} else {
|
|
261488
|
-
exports.storage.removeItem("debug");
|
|
261489
|
-
}
|
|
261490
|
-
} catch (error2) {
|
|
261491
|
-
}
|
|
261492
|
-
}
|
|
261493
|
-
function load3() {
|
|
261494
|
-
let r;
|
|
261495
|
-
try {
|
|
261496
|
-
r = exports.storage.getItem("debug");
|
|
261497
|
-
} catch (error2) {
|
|
261498
|
-
}
|
|
261499
|
-
if (!r && typeof process !== "undefined" && "env" in process) {
|
|
261500
|
-
r = process.env.DEBUG;
|
|
261501
|
-
}
|
|
261502
|
-
return r;
|
|
261503
|
-
}
|
|
261504
|
-
function localstorage() {
|
|
261505
|
-
try {
|
|
261506
|
-
return localStorage;
|
|
261507
|
-
} catch (error2) {
|
|
261508
|
-
}
|
|
261509
|
-
}
|
|
261510
|
-
module2.exports = require_common4()(exports);
|
|
261511
|
-
var { formatters } = module2.exports;
|
|
261512
|
-
formatters.j = function(v) {
|
|
261513
|
-
try {
|
|
261514
|
-
return JSON.stringify(v);
|
|
261515
|
-
} catch (error2) {
|
|
261516
|
-
return "[UnexpectedJSONParseError]: " + error2.message;
|
|
261517
|
-
}
|
|
261518
|
-
};
|
|
261519
|
-
}
|
|
261520
|
-
});
|
|
261521
|
-
|
|
261522
|
-
// ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js
|
|
261523
|
-
var require_node4 = __commonJS({
|
|
261524
|
-
"../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js"(exports, module2) {
|
|
261525
|
-
var tty2 = require("tty");
|
|
261526
|
-
var util4 = require("util");
|
|
261527
|
-
exports.init = init;
|
|
261528
|
-
exports.log = log;
|
|
261529
|
-
exports.formatArgs = formatArgs;
|
|
261530
|
-
exports.save = save;
|
|
261531
|
-
exports.load = load3;
|
|
261532
|
-
exports.useColors = useColors;
|
|
261533
|
-
exports.destroy = util4.deprecate(
|
|
261534
|
-
() => {
|
|
261535
|
-
},
|
|
261536
|
-
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
|
261537
|
-
);
|
|
261538
|
-
exports.colors = [6, 2, 3, 4, 5, 1];
|
|
261539
|
-
try {
|
|
261540
|
-
const supportsColor2 = require_supports_color();
|
|
261541
|
-
if (supportsColor2 && (supportsColor2.stderr || supportsColor2).level >= 2) {
|
|
261542
|
-
exports.colors = [
|
|
261543
|
-
20,
|
|
261544
|
-
21,
|
|
261545
|
-
26,
|
|
261546
|
-
27,
|
|
261547
|
-
32,
|
|
261548
|
-
33,
|
|
261549
|
-
38,
|
|
261550
|
-
39,
|
|
261551
|
-
40,
|
|
261552
|
-
41,
|
|
261553
|
-
42,
|
|
261554
|
-
43,
|
|
261555
|
-
44,
|
|
261556
|
-
45,
|
|
261557
|
-
56,
|
|
261558
|
-
57,
|
|
261559
|
-
62,
|
|
261560
|
-
63,
|
|
261561
|
-
68,
|
|
261562
|
-
69,
|
|
261563
|
-
74,
|
|
261564
|
-
75,
|
|
261565
|
-
76,
|
|
261566
|
-
77,
|
|
261567
|
-
78,
|
|
261568
|
-
79,
|
|
261569
|
-
80,
|
|
261570
|
-
81,
|
|
261571
|
-
92,
|
|
261572
|
-
93,
|
|
261573
|
-
98,
|
|
261574
|
-
99,
|
|
261575
|
-
112,
|
|
261576
|
-
113,
|
|
261577
|
-
128,
|
|
261578
|
-
129,
|
|
261579
|
-
134,
|
|
261580
|
-
135,
|
|
261581
|
-
148,
|
|
261582
|
-
149,
|
|
261583
|
-
160,
|
|
261584
|
-
161,
|
|
261585
|
-
162,
|
|
261586
|
-
163,
|
|
261587
|
-
164,
|
|
261588
|
-
165,
|
|
261589
|
-
166,
|
|
261590
|
-
167,
|
|
261591
|
-
168,
|
|
261592
|
-
169,
|
|
261593
|
-
170,
|
|
261594
|
-
171,
|
|
261595
|
-
172,
|
|
261596
|
-
173,
|
|
261597
|
-
178,
|
|
261598
|
-
179,
|
|
261599
|
-
184,
|
|
261600
|
-
185,
|
|
261601
|
-
196,
|
|
261602
|
-
197,
|
|
261603
|
-
198,
|
|
261604
|
-
199,
|
|
261605
|
-
200,
|
|
261606
|
-
201,
|
|
261607
|
-
202,
|
|
261608
|
-
203,
|
|
261609
|
-
204,
|
|
261610
|
-
205,
|
|
261611
|
-
206,
|
|
261612
|
-
207,
|
|
261613
|
-
208,
|
|
261614
|
-
209,
|
|
261615
|
-
214,
|
|
261616
|
-
215,
|
|
261617
|
-
220,
|
|
261618
|
-
221
|
|
261619
|
-
];
|
|
261620
|
-
}
|
|
261621
|
-
} catch (error2) {
|
|
261622
|
-
}
|
|
261623
|
-
exports.inspectOpts = Object.keys(process.env).filter((key) => {
|
|
261624
|
-
return /^debug_/i.test(key);
|
|
261625
|
-
}).reduce((obj, key) => {
|
|
261626
|
-
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_8, k) => {
|
|
261627
|
-
return k.toUpperCase();
|
|
261628
|
-
});
|
|
261629
|
-
let val = process.env[key];
|
|
261630
|
-
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
|
261631
|
-
val = true;
|
|
261632
|
-
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
|
261633
|
-
val = false;
|
|
261634
|
-
} else if (val === "null") {
|
|
261635
|
-
val = null;
|
|
261636
|
-
} else {
|
|
261637
|
-
val = Number(val);
|
|
261638
|
-
}
|
|
261639
|
-
obj[prop] = val;
|
|
261640
|
-
return obj;
|
|
261641
|
-
}, {});
|
|
261642
|
-
function useColors() {
|
|
261643
|
-
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty2.isatty(process.stderr.fd);
|
|
261644
|
-
}
|
|
261645
|
-
function formatArgs(args) {
|
|
261646
|
-
const { namespace: name, useColors: useColors2 } = this;
|
|
261647
|
-
if (useColors2) {
|
|
261648
|
-
const c2 = this.color;
|
|
261649
|
-
const colorCode = "\x1B[3" + (c2 < 8 ? c2 : "8;5;" + c2);
|
|
261650
|
-
const prefix = ` ${colorCode};1m${name} \x1B[0m`;
|
|
261651
|
-
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
261652
|
-
args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
|
|
261653
|
-
} else {
|
|
261654
|
-
args[0] = getDate() + name + " " + args[0];
|
|
261655
|
-
}
|
|
261656
|
-
}
|
|
261657
|
-
function getDate() {
|
|
261658
|
-
if (exports.inspectOpts.hideDate) {
|
|
261659
|
-
return "";
|
|
261660
|
-
}
|
|
261661
|
-
return new Date().toISOString() + " ";
|
|
261662
|
-
}
|
|
261663
|
-
function log(...args) {
|
|
261664
|
-
return process.stderr.write(util4.formatWithOptions(exports.inspectOpts, ...args) + "\n");
|
|
261665
|
-
}
|
|
261666
|
-
function save(namespaces) {
|
|
261667
|
-
if (namespaces) {
|
|
261668
|
-
process.env.DEBUG = namespaces;
|
|
261669
|
-
} else {
|
|
261670
|
-
delete process.env.DEBUG;
|
|
261671
|
-
}
|
|
261672
|
-
}
|
|
261673
|
-
function load3() {
|
|
261674
|
-
return process.env.DEBUG;
|
|
261675
|
-
}
|
|
261676
|
-
function init(debug) {
|
|
261677
|
-
debug.inspectOpts = {};
|
|
261678
|
-
const keys = Object.keys(exports.inspectOpts);
|
|
261679
|
-
for (let i = 0; i < keys.length; i++) {
|
|
261680
|
-
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
261681
|
-
}
|
|
261682
|
-
}
|
|
261683
|
-
module2.exports = require_common4()(exports);
|
|
261684
|
-
var { formatters } = module2.exports;
|
|
261685
|
-
formatters.o = function(v) {
|
|
261686
|
-
this.inspectOpts.colors = this.useColors;
|
|
261687
|
-
return util4.inspect(v, this.inspectOpts).split("\n").map((str2) => str2.trim()).join(" ");
|
|
261688
|
-
};
|
|
261689
|
-
formatters.O = function(v) {
|
|
261690
|
-
this.inspectOpts.colors = this.useColors;
|
|
261691
|
-
return util4.inspect(v, this.inspectOpts);
|
|
261692
|
-
};
|
|
261693
|
-
}
|
|
261694
|
-
});
|
|
261695
|
-
|
|
261696
|
-
// ../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js
|
|
261697
|
-
var require_src5 = __commonJS({
|
|
261698
|
-
"../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js"(exports, module2) {
|
|
261699
|
-
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
261700
|
-
module2.exports = require_browser2();
|
|
261701
|
-
} else {
|
|
261702
|
-
module2.exports = require_node4();
|
|
261703
|
-
}
|
|
261704
|
-
}
|
|
261705
|
-
});
|
|
261706
|
-
|
|
261707
261193
|
// ../../node_modules/.pnpm/cookiejar@2.1.4/node_modules/cookiejar/cookiejar.js
|
|
261708
261194
|
var require_cookiejar = __commonJS({
|
|
261709
261195
|
"../../node_modules/.pnpm/cookiejar@2.1.4/node_modules/cookiejar/cookiejar.js"(exports) {
|
|
@@ -265075,7 +264561,7 @@ var require_agent2 = __commonJS({
|
|
|
265075
264561
|
var _require3 = require_cookiejar();
|
|
265076
264562
|
var CookieAccessInfo = _require3.CookieAccessInfo;
|
|
265077
264563
|
var methods = require_methods3();
|
|
265078
|
-
var request =
|
|
264564
|
+
var request = require_node4();
|
|
265079
264565
|
var AgentBase = require_agent_base();
|
|
265080
264566
|
module2.exports = Agent;
|
|
265081
264567
|
function Agent(options) {
|
|
@@ -265242,7 +264728,7 @@ var require_parsers2 = __commonJS({
|
|
|
265242
264728
|
});
|
|
265243
264729
|
|
|
265244
264730
|
// ../../node_modules/.pnpm/superagent@7.1.6/node_modules/superagent/lib/node/index.js
|
|
265245
|
-
var
|
|
264731
|
+
var require_node4 = __commonJS({
|
|
265246
264732
|
"../../node_modules/.pnpm/superagent@7.1.6/node_modules/superagent/lib/node/index.js"(exports, module2) {
|
|
265247
264733
|
"use strict";
|
|
265248
264734
|
function _slicedToArray(arr, i) {
|
|
@@ -265380,7 +264866,7 @@ var require_node5 = __commonJS({
|
|
|
265380
264866
|
var methods = require_methods3();
|
|
265381
264867
|
var FormData3 = require_form_data();
|
|
265382
264868
|
var formidable = require_src4();
|
|
265383
|
-
var debug =
|
|
264869
|
+
var debug = require_src2()("superagent");
|
|
265384
264870
|
var CookieJar = require_cookiejar();
|
|
265385
264871
|
var semverGte = require_gte();
|
|
265386
264872
|
var safeStringify = require_fast_safe_stringify();
|
|
@@ -266147,7 +265633,7 @@ var require_node5 = __commonJS({
|
|
|
266147
265633
|
var require_http4 = __commonJS({
|
|
266148
265634
|
"../../node_modules/.pnpm/path-loader@1.0.12/node_modules/path-loader/lib/loaders/http.js"(exports, module2) {
|
|
266149
265635
|
"use strict";
|
|
266150
|
-
var request =
|
|
265636
|
+
var request = require_node4();
|
|
266151
265637
|
var supportedHttpMethods = ["delete", "get", "head", "patch", "post", "put"];
|
|
266152
265638
|
module2.exports.load = function(location2, options, callback) {
|
|
266153
265639
|
var realMethod = options.method ? options.method.toLowerCase() : "get";
|
|
@@ -283808,13 +283294,9 @@ var state = {
|
|
|
283808
283294
|
},
|
|
283809
283295
|
"sandboxIdentifiers": {
|
|
283810
283296
|
"type": "object",
|
|
283811
|
-
"additionalProperties": {
|
|
283812
|
-
"type": "object",
|
|
283813
|
-
"nullable": true,
|
|
283814
|
-
"additionalProperties": false
|
|
283815
|
-
},
|
|
283816
283297
|
"nullable": true,
|
|
283817
|
-
"description": "**EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers.
|
|
283298
|
+
"description": "**EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. This is an experimental feature meant to be used by specific integrations.",
|
|
283299
|
+
"additionalProperties": false
|
|
283818
283300
|
}
|
|
283819
283301
|
},
|
|
283820
283302
|
"title": "configureIntegrationBody",
|
|
@@ -284644,7 +284126,7 @@ var state = {
|
|
|
284644
284126
|
"title": "Botpress API",
|
|
284645
284127
|
"description": "API for Botpress Cloud",
|
|
284646
284128
|
"server": "https://api.botpress.cloud",
|
|
284647
|
-
"version": "1.
|
|
284129
|
+
"version": "1.12.0",
|
|
284648
284130
|
"prefix": "v1"
|
|
284649
284131
|
},
|
|
284650
284132
|
"errors": [
|
|
@@ -300285,14 +299767,44 @@ var state2 = {
|
|
|
300285
299767
|
"items": {
|
|
300286
299768
|
"type": "object",
|
|
300287
299769
|
"properties": {
|
|
299770
|
+
"key": {
|
|
299771
|
+
"type": "string"
|
|
299772
|
+
},
|
|
300288
299773
|
"date": {
|
|
300289
299774
|
"type": "string"
|
|
300290
299775
|
},
|
|
300291
299776
|
"value": {
|
|
300292
299777
|
"type": "number"
|
|
299778
|
+
},
|
|
299779
|
+
"metadata": {
|
|
299780
|
+
"type": "object",
|
|
299781
|
+
"properties": {
|
|
299782
|
+
"botId": {
|
|
299783
|
+
"type": "string"
|
|
299784
|
+
},
|
|
299785
|
+
"type": {
|
|
299786
|
+
"type": "string",
|
|
299787
|
+
"enum": [
|
|
299788
|
+
"IntegrationAction",
|
|
299789
|
+
"FileIndexing"
|
|
299790
|
+
]
|
|
299791
|
+
},
|
|
299792
|
+
"subtype": {
|
|
299793
|
+
"type": "string"
|
|
299794
|
+
},
|
|
299795
|
+
"source": {
|
|
299796
|
+
"type": "string"
|
|
299797
|
+
}
|
|
299798
|
+
},
|
|
299799
|
+
"required": [
|
|
299800
|
+
"botId",
|
|
299801
|
+
"type",
|
|
299802
|
+
"subtype"
|
|
299803
|
+
]
|
|
300293
299804
|
}
|
|
300294
299805
|
},
|
|
300295
299806
|
"required": [
|
|
299807
|
+
"key",
|
|
300296
299808
|
"date",
|
|
300297
299809
|
"value"
|
|
300298
299810
|
]
|
|
@@ -300463,7 +299975,7 @@ var state2 = {
|
|
|
300463
299975
|
"title": "Botpress API",
|
|
300464
299976
|
"description": "API for Botpress Cloud",
|
|
300465
299977
|
"server": "https://api.botpress.cloud",
|
|
300466
|
-
"version": "1.
|
|
299978
|
+
"version": "1.12.0",
|
|
300467
299979
|
"prefix": "v1"
|
|
300468
299980
|
},
|
|
300469
299981
|
"errors": [
|
|
@@ -305903,7 +305415,7 @@ var state3 = {
|
|
|
305903
305415
|
"title": "Botpress API",
|
|
305904
305416
|
"description": "API for Botpress Cloud",
|
|
305905
305417
|
"server": "https://api.botpress.cloud",
|
|
305906
|
-
"version": "1.
|
|
305418
|
+
"version": "1.12.0",
|
|
305907
305419
|
"prefix": "v1"
|
|
305908
305420
|
},
|
|
305909
305421
|
"errors": [
|
|
@@ -310790,7 +310302,7 @@ var state4 = {
|
|
|
310790
310302
|
"title": "Botpress API",
|
|
310791
310303
|
"description": "API for Botpress Cloud",
|
|
310792
310304
|
"server": "https://api.botpress.cloud",
|
|
310793
|
-
"version": "1.
|
|
310305
|
+
"version": "1.12.0",
|
|
310794
310306
|
"prefix": "v1"
|
|
310795
310307
|
},
|
|
310796
310308
|
"errors": [
|
|
@@ -316241,13 +315753,9 @@ var state5 = {
|
|
|
316241
315753
|
},
|
|
316242
315754
|
"sandboxIdentifiers": {
|
|
316243
315755
|
"type": "object",
|
|
316244
|
-
"additionalProperties": {
|
|
316245
|
-
"type": "object",
|
|
316246
|
-
"nullable": true,
|
|
316247
|
-
"additionalProperties": false
|
|
316248
|
-
},
|
|
316249
315756
|
"nullable": true,
|
|
316250
|
-
"description": "**EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers.
|
|
315757
|
+
"description": "**EXPERIMENTAL** Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. This is an experimental feature meant to be used by specific integrations.",
|
|
315758
|
+
"additionalProperties": false
|
|
316251
315759
|
}
|
|
316252
315760
|
},
|
|
316253
315761
|
"title": "configureIntegrationBody",
|
|
@@ -328954,14 +328462,44 @@ var state5 = {
|
|
|
328954
328462
|
"items": {
|
|
328955
328463
|
"type": "object",
|
|
328956
328464
|
"properties": {
|
|
328465
|
+
"key": {
|
|
328466
|
+
"type": "string"
|
|
328467
|
+
},
|
|
328957
328468
|
"date": {
|
|
328958
328469
|
"type": "string"
|
|
328959
328470
|
},
|
|
328960
328471
|
"value": {
|
|
328961
328472
|
"type": "number"
|
|
328473
|
+
},
|
|
328474
|
+
"metadata": {
|
|
328475
|
+
"type": "object",
|
|
328476
|
+
"properties": {
|
|
328477
|
+
"botId": {
|
|
328478
|
+
"type": "string"
|
|
328479
|
+
},
|
|
328480
|
+
"type": {
|
|
328481
|
+
"type": "string",
|
|
328482
|
+
"enum": [
|
|
328483
|
+
"IntegrationAction",
|
|
328484
|
+
"FileIndexing"
|
|
328485
|
+
]
|
|
328486
|
+
},
|
|
328487
|
+
"subtype": {
|
|
328488
|
+
"type": "string"
|
|
328489
|
+
},
|
|
328490
|
+
"source": {
|
|
328491
|
+
"type": "string"
|
|
328492
|
+
}
|
|
328493
|
+
},
|
|
328494
|
+
"required": [
|
|
328495
|
+
"botId",
|
|
328496
|
+
"type",
|
|
328497
|
+
"subtype"
|
|
328498
|
+
]
|
|
328962
328499
|
}
|
|
328963
328500
|
},
|
|
328964
328501
|
"required": [
|
|
328502
|
+
"key",
|
|
328965
328503
|
"date",
|
|
328966
328504
|
"value"
|
|
328967
328505
|
]
|
|
@@ -331907,7 +331445,7 @@ var state5 = {
|
|
|
331907
331445
|
"title": "Botpress API",
|
|
331908
331446
|
"description": "API for Botpress Cloud",
|
|
331909
331447
|
"server": "https://api.botpress.cloud",
|
|
331910
|
-
"version": "1.
|
|
331448
|
+
"version": "1.12.0",
|
|
331911
331449
|
"prefix": "v1"
|
|
331912
331450
|
},
|
|
331913
331451
|
"errors": [
|