@botpress/api 0.59.0 → 0.60.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 +168 -25
- package/dist/src/gen/state.d.ts +119 -0
- package/package.json +1 -1
- package/src/gen/openapi.json +1 -1
- package/src/gen/state.ts +140 -1
package/dist/index.js
CHANGED
|
@@ -258740,9 +258740,9 @@ var require_side_channel = __commonJS({
|
|
|
258740
258740
|
}
|
|
258741
258741
|
});
|
|
258742
258742
|
|
|
258743
|
-
// ../../node_modules/.pnpm/qs@6.13.
|
|
258743
|
+
// ../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/formats.js
|
|
258744
258744
|
var require_formats = __commonJS({
|
|
258745
|
-
"../../node_modules/.pnpm/qs@6.13.
|
|
258745
|
+
"../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/formats.js"(exports, module2) {
|
|
258746
258746
|
"use strict";
|
|
258747
258747
|
var replace2 = String.prototype.replace;
|
|
258748
258748
|
var percentTwenties = /%20/g;
|
|
@@ -258766,9 +258766,9 @@ var require_formats = __commonJS({
|
|
|
258766
258766
|
}
|
|
258767
258767
|
});
|
|
258768
258768
|
|
|
258769
|
-
// ../../node_modules/.pnpm/qs@6.13.
|
|
258769
|
+
// ../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/utils.js
|
|
258770
258770
|
var require_utils5 = __commonJS({
|
|
258771
|
-
"../../node_modules/.pnpm/qs@6.13.
|
|
258771
|
+
"../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/utils.js"(exports, module2) {
|
|
258772
258772
|
"use strict";
|
|
258773
258773
|
var formats = require_formats();
|
|
258774
258774
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -258796,7 +258796,7 @@ var require_utils5 = __commonJS({
|
|
|
258796
258796
|
}
|
|
258797
258797
|
};
|
|
258798
258798
|
var arrayToObject2 = function arrayToObject3(source, options) {
|
|
258799
|
-
var obj = options && options.plainObjects ?
|
|
258799
|
+
var obj = options && options.plainObjects ? { __proto__: null } : {};
|
|
258800
258800
|
for (var i = 0; i < source.length; ++i) {
|
|
258801
258801
|
if (typeof source[i] !== "undefined") {
|
|
258802
258802
|
obj[i] = source[i];
|
|
@@ -258808,7 +258808,7 @@ var require_utils5 = __commonJS({
|
|
|
258808
258808
|
if (!source) {
|
|
258809
258809
|
return target;
|
|
258810
258810
|
}
|
|
258811
|
-
if (typeof source !== "object") {
|
|
258811
|
+
if (typeof source !== "object" && typeof source !== "function") {
|
|
258812
258812
|
if (isArray2(target)) {
|
|
258813
258813
|
target.push(source);
|
|
258814
258814
|
} else if (target && typeof target === "object") {
|
|
@@ -258858,7 +258858,7 @@ var require_utils5 = __commonJS({
|
|
|
258858
258858
|
return acc;
|
|
258859
258859
|
}, target);
|
|
258860
258860
|
};
|
|
258861
|
-
var decode = function(str2,
|
|
258861
|
+
var decode = function(str2, defaultDecoder, charset) {
|
|
258862
258862
|
var strWithoutPlus = str2.replace(/\+/g, " ");
|
|
258863
258863
|
if (charset === "iso-8859-1") {
|
|
258864
258864
|
return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape);
|
|
@@ -258971,9 +258971,9 @@ var require_utils5 = __commonJS({
|
|
|
258971
258971
|
}
|
|
258972
258972
|
});
|
|
258973
258973
|
|
|
258974
|
-
// ../../node_modules/.pnpm/qs@6.13.
|
|
258974
|
+
// ../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/stringify.js
|
|
258975
258975
|
var require_stringify = __commonJS({
|
|
258976
|
-
"../../node_modules/.pnpm/qs@6.13.
|
|
258976
|
+
"../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/stringify.js"(exports, module2) {
|
|
258977
258977
|
"use strict";
|
|
258978
258978
|
var getSideChannel = require_side_channel();
|
|
258979
258979
|
var utils = require_utils5();
|
|
@@ -259005,11 +259005,13 @@ var require_stringify = __commonJS({
|
|
|
259005
259005
|
arrayFormat: "indices",
|
|
259006
259006
|
charset: "utf-8",
|
|
259007
259007
|
charsetSentinel: false,
|
|
259008
|
+
commaRoundTrip: false,
|
|
259008
259009
|
delimiter: "&",
|
|
259009
259010
|
encode: true,
|
|
259010
259011
|
encodeDotInKeys: false,
|
|
259011
259012
|
encoder: utils.encode,
|
|
259012
259013
|
encodeValuesOnly: false,
|
|
259014
|
+
filter: void 0,
|
|
259013
259015
|
format: defaultFormat,
|
|
259014
259016
|
formatter: formats.formatters[defaultFormat],
|
|
259015
259017
|
indices: false,
|
|
@@ -259083,18 +259085,18 @@ var require_stringify = __commonJS({
|
|
|
259083
259085
|
var keys = Object.keys(obj);
|
|
259084
259086
|
objKeys = sort2 ? keys.sort(sort2) : keys;
|
|
259085
259087
|
}
|
|
259086
|
-
var encodedPrefix = encodeDotInKeys ? prefix.replace(/\./g, "%2E") : prefix;
|
|
259088
|
+
var encodedPrefix = encodeDotInKeys ? String(prefix).replace(/\./g, "%2E") : String(prefix);
|
|
259087
259089
|
var adjustedPrefix = commaRoundTrip && isArray2(obj) && obj.length === 1 ? encodedPrefix + "[]" : encodedPrefix;
|
|
259088
259090
|
if (allowEmptyArrays && isArray2(obj) && obj.length === 0) {
|
|
259089
259091
|
return adjustedPrefix + "[]";
|
|
259090
259092
|
}
|
|
259091
259093
|
for (var j = 0; j < objKeys.length; ++j) {
|
|
259092
259094
|
var key = objKeys[j];
|
|
259093
|
-
var value = typeof key === "object" && typeof key.value !== "undefined" ? key.value : obj[key];
|
|
259095
|
+
var value = typeof key === "object" && key && typeof key.value !== "undefined" ? key.value : obj[key];
|
|
259094
259096
|
if (skipNulls && value === null) {
|
|
259095
259097
|
continue;
|
|
259096
259098
|
}
|
|
259097
|
-
var encodedKey = allowDots && encodeDotInKeys ? key.replace(/\./g, "%2E") : key;
|
|
259099
|
+
var encodedKey = allowDots && encodeDotInKeys ? String(key).replace(/\./g, "%2E") : String(key);
|
|
259098
259100
|
var keyPrefix = isArray2(obj) ? typeof generateArrayPrefix === "function" ? generateArrayPrefix(adjustedPrefix, encodedKey) : adjustedPrefix : adjustedPrefix + (allowDots ? "." + encodedKey : "[" + encodedKey + "]");
|
|
259099
259101
|
sideChannel.set(object, step);
|
|
259100
259102
|
var valueSideChannel = getSideChannel();
|
|
@@ -259170,7 +259172,7 @@ var require_stringify = __commonJS({
|
|
|
259170
259172
|
arrayFormat,
|
|
259171
259173
|
charset,
|
|
259172
259174
|
charsetSentinel: typeof opts.charsetSentinel === "boolean" ? opts.charsetSentinel : defaults2.charsetSentinel,
|
|
259173
|
-
commaRoundTrip: opts.commaRoundTrip,
|
|
259175
|
+
commaRoundTrip: !!opts.commaRoundTrip,
|
|
259174
259176
|
delimiter: typeof opts.delimiter === "undefined" ? defaults2.delimiter : opts.delimiter,
|
|
259175
259177
|
encode: typeof opts.encode === "boolean" ? opts.encode : defaults2.encode,
|
|
259176
259178
|
encodeDotInKeys: typeof opts.encodeDotInKeys === "boolean" ? opts.encodeDotInKeys : defaults2.encodeDotInKeys,
|
|
@@ -259212,11 +259214,12 @@ var require_stringify = __commonJS({
|
|
|
259212
259214
|
var sideChannel = getSideChannel();
|
|
259213
259215
|
for (var i = 0; i < objKeys.length; ++i) {
|
|
259214
259216
|
var key = objKeys[i];
|
|
259215
|
-
|
|
259217
|
+
var value = obj[key];
|
|
259218
|
+
if (options.skipNulls && value === null) {
|
|
259216
259219
|
continue;
|
|
259217
259220
|
}
|
|
259218
259221
|
pushToArray(keys, stringify(
|
|
259219
|
-
|
|
259222
|
+
value,
|
|
259220
259223
|
key,
|
|
259221
259224
|
generateArrayPrefix,
|
|
259222
259225
|
commaRoundTrip,
|
|
@@ -259250,9 +259253,9 @@ var require_stringify = __commonJS({
|
|
|
259250
259253
|
}
|
|
259251
259254
|
});
|
|
259252
259255
|
|
|
259253
|
-
// ../../node_modules/.pnpm/qs@6.13.
|
|
259256
|
+
// ../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/parse.js
|
|
259254
259257
|
var require_parse4 = __commonJS({
|
|
259255
|
-
"../../node_modules/.pnpm/qs@6.13.
|
|
259258
|
+
"../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/parse.js"(exports, module2) {
|
|
259256
259259
|
"use strict";
|
|
259257
259260
|
var utils = require_utils5();
|
|
259258
259261
|
var has = Object.prototype.hasOwnProperty;
|
|
@@ -259321,7 +259324,8 @@ var require_parse4 = __commonJS({
|
|
|
259321
259324
|
var part = parts[i];
|
|
259322
259325
|
var bracketEqualsPos = part.indexOf("]=");
|
|
259323
259326
|
var pos = bracketEqualsPos === -1 ? part.indexOf("=") : bracketEqualsPos + 1;
|
|
259324
|
-
var key
|
|
259327
|
+
var key;
|
|
259328
|
+
var val;
|
|
259325
259329
|
if (pos === -1) {
|
|
259326
259330
|
key = options.decoder(part, defaults2.decoder, charset, "key");
|
|
259327
259331
|
val = options.strictNullHandling ? null : "";
|
|
@@ -259335,7 +259339,7 @@ var require_parse4 = __commonJS({
|
|
|
259335
259339
|
);
|
|
259336
259340
|
}
|
|
259337
259341
|
if (val && options.interpretNumericEntities && charset === "iso-8859-1") {
|
|
259338
|
-
val = interpretNumericEntities(val);
|
|
259342
|
+
val = interpretNumericEntities(String(val));
|
|
259339
259343
|
}
|
|
259340
259344
|
if (part.indexOf("[]=") > -1) {
|
|
259341
259345
|
val = isArray2(val) ? [val] : val;
|
|
@@ -259357,7 +259361,7 @@ var require_parse4 = __commonJS({
|
|
|
259357
259361
|
if (root === "[]" && options.parseArrays) {
|
|
259358
259362
|
obj = options.allowEmptyArrays && (leaf === "" || options.strictNullHandling && leaf === null) ? [] : [].concat(leaf);
|
|
259359
259363
|
} else {
|
|
259360
|
-
obj = options.plainObjects ?
|
|
259364
|
+
obj = options.plainObjects ? { __proto__: null } : {};
|
|
259361
259365
|
var cleanRoot = root.charAt(0) === "[" && root.charAt(root.length - 1) === "]" ? root.slice(1, -1) : root;
|
|
259362
259366
|
var decodedRoot = options.decodeDotInKeys ? cleanRoot.replace(/%2E/g, ".") : cleanRoot;
|
|
259363
259367
|
var index = parseInt(decodedRoot, 10);
|
|
@@ -259458,10 +259462,10 @@ var require_parse4 = __commonJS({
|
|
|
259458
259462
|
module2.exports = function(str2, opts) {
|
|
259459
259463
|
var options = normalizeParseOptions(opts);
|
|
259460
259464
|
if (str2 === "" || str2 === null || typeof str2 === "undefined") {
|
|
259461
|
-
return options.plainObjects ?
|
|
259465
|
+
return options.plainObjects ? { __proto__: null } : {};
|
|
259462
259466
|
}
|
|
259463
259467
|
var tempObj = typeof str2 === "string" ? parseValues(str2, options) : str2;
|
|
259464
|
-
var obj = options.plainObjects ?
|
|
259468
|
+
var obj = options.plainObjects ? { __proto__: null } : {};
|
|
259465
259469
|
var keys = Object.keys(tempObj);
|
|
259466
259470
|
for (var i = 0; i < keys.length; ++i) {
|
|
259467
259471
|
var key = keys[i];
|
|
@@ -259476,9 +259480,9 @@ var require_parse4 = __commonJS({
|
|
|
259476
259480
|
}
|
|
259477
259481
|
});
|
|
259478
259482
|
|
|
259479
|
-
// ../../node_modules/.pnpm/qs@6.13.
|
|
259483
|
+
// ../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/index.js
|
|
259480
259484
|
var require_lib11 = __commonJS({
|
|
259481
|
-
"../../node_modules/.pnpm/qs@6.13.
|
|
259485
|
+
"../../node_modules/.pnpm/qs@6.13.1/node_modules/qs/lib/index.js"(exports, module2) {
|
|
259482
259486
|
"use strict";
|
|
259483
259487
|
var stringify = require_stringify();
|
|
259484
259488
|
var parse = require_parse4();
|
|
@@ -291882,6 +291886,42 @@ var state = {
|
|
|
291882
291886
|
},
|
|
291883
291887
|
"code": {
|
|
291884
291888
|
"type": "string"
|
|
291889
|
+
},
|
|
291890
|
+
"dependencies": {
|
|
291891
|
+
"type": "object",
|
|
291892
|
+
"properties": {
|
|
291893
|
+
"interfaces": {
|
|
291894
|
+
"type": "object",
|
|
291895
|
+
"additionalProperties": {
|
|
291896
|
+
"type": "object",
|
|
291897
|
+
"properties": {
|
|
291898
|
+
"id": {
|
|
291899
|
+
"type": "string"
|
|
291900
|
+
}
|
|
291901
|
+
},
|
|
291902
|
+
"required": [
|
|
291903
|
+
"id"
|
|
291904
|
+
],
|
|
291905
|
+
"additionalProperties": false
|
|
291906
|
+
}
|
|
291907
|
+
},
|
|
291908
|
+
"integrations": {
|
|
291909
|
+
"type": "object",
|
|
291910
|
+
"additionalProperties": {
|
|
291911
|
+
"type": "object",
|
|
291912
|
+
"properties": {
|
|
291913
|
+
"id": {
|
|
291914
|
+
"type": "string"
|
|
291915
|
+
}
|
|
291916
|
+
},
|
|
291917
|
+
"required": [
|
|
291918
|
+
"id"
|
|
291919
|
+
],
|
|
291920
|
+
"additionalProperties": false
|
|
291921
|
+
}
|
|
291922
|
+
}
|
|
291923
|
+
},
|
|
291924
|
+
"additionalProperties": false
|
|
291885
291925
|
}
|
|
291886
291926
|
},
|
|
291887
291927
|
"required": [
|
|
@@ -292171,6 +292211,44 @@ var state = {
|
|
|
292171
292211
|
},
|
|
292172
292212
|
"code": {
|
|
292173
292213
|
"type": "string"
|
|
292214
|
+
},
|
|
292215
|
+
"dependencies": {
|
|
292216
|
+
"type": "object",
|
|
292217
|
+
"properties": {
|
|
292218
|
+
"interfaces": {
|
|
292219
|
+
"type": "object",
|
|
292220
|
+
"additionalProperties": {
|
|
292221
|
+
"type": "object",
|
|
292222
|
+
"properties": {
|
|
292223
|
+
"id": {
|
|
292224
|
+
"type": "string"
|
|
292225
|
+
}
|
|
292226
|
+
},
|
|
292227
|
+
"required": [
|
|
292228
|
+
"id"
|
|
292229
|
+
],
|
|
292230
|
+
"nullable": true,
|
|
292231
|
+
"additionalProperties": false
|
|
292232
|
+
}
|
|
292233
|
+
},
|
|
292234
|
+
"integrations": {
|
|
292235
|
+
"type": "object",
|
|
292236
|
+
"additionalProperties": {
|
|
292237
|
+
"type": "object",
|
|
292238
|
+
"properties": {
|
|
292239
|
+
"id": {
|
|
292240
|
+
"type": "string"
|
|
292241
|
+
}
|
|
292242
|
+
},
|
|
292243
|
+
"required": [
|
|
292244
|
+
"id"
|
|
292245
|
+
],
|
|
292246
|
+
"nullable": true,
|
|
292247
|
+
"additionalProperties": false
|
|
292248
|
+
}
|
|
292249
|
+
}
|
|
292250
|
+
},
|
|
292251
|
+
"additionalProperties": false
|
|
292174
292252
|
}
|
|
292175
292253
|
},
|
|
292176
292254
|
"title": "updatePluginBody",
|
|
@@ -294956,7 +295034,7 @@ var state = {
|
|
|
294956
295034
|
"title": "Botpress API",
|
|
294957
295035
|
"description": "API for Botpress Cloud",
|
|
294958
295036
|
"server": "https://api.botpress.cloud",
|
|
294959
|
-
"version": "0.
|
|
295037
|
+
"version": "0.60.0",
|
|
294960
295038
|
"prefix": "v1"
|
|
294961
295039
|
},
|
|
294962
295040
|
"errors": [
|
|
@@ -296869,6 +296947,70 @@ var state = {
|
|
|
296869
296947
|
"additionalProperties": false
|
|
296870
296948
|
}
|
|
296871
296949
|
},
|
|
296950
|
+
"dependencies": {
|
|
296951
|
+
"type": "object",
|
|
296952
|
+
"properties": {
|
|
296953
|
+
"interfaces": {
|
|
296954
|
+
"type": "object",
|
|
296955
|
+
"additionalProperties": {
|
|
296956
|
+
"type": "object",
|
|
296957
|
+
"properties": {
|
|
296958
|
+
"id": {
|
|
296959
|
+
"type": "string",
|
|
296960
|
+
"minLength": 28,
|
|
296961
|
+
"maxLength": 36
|
|
296962
|
+
},
|
|
296963
|
+
"name": {
|
|
296964
|
+
"type": "string",
|
|
296965
|
+
"maxLength": 200
|
|
296966
|
+
},
|
|
296967
|
+
"version": {
|
|
296968
|
+
"type": "string",
|
|
296969
|
+
"maxLength": 200
|
|
296970
|
+
}
|
|
296971
|
+
},
|
|
296972
|
+
"required": [
|
|
296973
|
+
"id",
|
|
296974
|
+
"name",
|
|
296975
|
+
"version"
|
|
296976
|
+
],
|
|
296977
|
+
"additionalProperties": false
|
|
296978
|
+
}
|
|
296979
|
+
},
|
|
296980
|
+
"integrations": {
|
|
296981
|
+
"type": "object",
|
|
296982
|
+
"additionalProperties": {
|
|
296983
|
+
"type": "object",
|
|
296984
|
+
"properties": {
|
|
296985
|
+
"id": {
|
|
296986
|
+
"type": "string",
|
|
296987
|
+
"minLength": 28,
|
|
296988
|
+
"maxLength": 36
|
|
296989
|
+
},
|
|
296990
|
+
"name": {
|
|
296991
|
+
"type": "string",
|
|
296992
|
+
"maxLength": 200
|
|
296993
|
+
},
|
|
296994
|
+
"version": {
|
|
296995
|
+
"type": "string",
|
|
296996
|
+
"maxLength": 200
|
|
296997
|
+
}
|
|
296998
|
+
},
|
|
296999
|
+
"required": [
|
|
297000
|
+
"id",
|
|
297001
|
+
"name",
|
|
297002
|
+
"version"
|
|
297003
|
+
],
|
|
297004
|
+
"additionalProperties": false
|
|
297005
|
+
}
|
|
297006
|
+
}
|
|
297007
|
+
},
|
|
297008
|
+
"required": [
|
|
297009
|
+
"interfaces",
|
|
297010
|
+
"integrations"
|
|
297011
|
+
],
|
|
297012
|
+
"additionalProperties": false
|
|
297013
|
+
},
|
|
296872
297014
|
"user": {
|
|
296873
297015
|
"type": "object",
|
|
296874
297016
|
"properties": {
|
|
@@ -296913,6 +297055,7 @@ var state = {
|
|
|
296913
297055
|
"states",
|
|
296914
297056
|
"events",
|
|
296915
297057
|
"actions",
|
|
297058
|
+
"dependencies",
|
|
296916
297059
|
"user",
|
|
296917
297060
|
"code"
|
|
296918
297061
|
],
|
package/dist/src/gen/state.d.ts
CHANGED
|
@@ -9167,6 +9167,38 @@ export declare const state: {
|
|
|
9167
9167
|
code: {
|
|
9168
9168
|
type: "string";
|
|
9169
9169
|
};
|
|
9170
|
+
dependencies: {
|
|
9171
|
+
type: "object";
|
|
9172
|
+
properties: {
|
|
9173
|
+
interfaces: {
|
|
9174
|
+
type: "object";
|
|
9175
|
+
additionalProperties: {
|
|
9176
|
+
type: "object";
|
|
9177
|
+
properties: {
|
|
9178
|
+
id: {
|
|
9179
|
+
type: "string";
|
|
9180
|
+
};
|
|
9181
|
+
};
|
|
9182
|
+
required: string[];
|
|
9183
|
+
additionalProperties: false;
|
|
9184
|
+
};
|
|
9185
|
+
};
|
|
9186
|
+
integrations: {
|
|
9187
|
+
type: "object";
|
|
9188
|
+
additionalProperties: {
|
|
9189
|
+
type: "object";
|
|
9190
|
+
properties: {
|
|
9191
|
+
id: {
|
|
9192
|
+
type: "string";
|
|
9193
|
+
};
|
|
9194
|
+
};
|
|
9195
|
+
required: string[];
|
|
9196
|
+
additionalProperties: false;
|
|
9197
|
+
};
|
|
9198
|
+
};
|
|
9199
|
+
};
|
|
9200
|
+
additionalProperties: false;
|
|
9201
|
+
};
|
|
9170
9202
|
};
|
|
9171
9203
|
required: string[];
|
|
9172
9204
|
title: string;
|
|
@@ -9425,6 +9457,40 @@ export declare const state: {
|
|
|
9425
9457
|
code: {
|
|
9426
9458
|
type: "string";
|
|
9427
9459
|
};
|
|
9460
|
+
dependencies: {
|
|
9461
|
+
type: "object";
|
|
9462
|
+
properties: {
|
|
9463
|
+
interfaces: {
|
|
9464
|
+
type: "object";
|
|
9465
|
+
additionalProperties: {
|
|
9466
|
+
type: "object";
|
|
9467
|
+
properties: {
|
|
9468
|
+
id: {
|
|
9469
|
+
type: "string";
|
|
9470
|
+
};
|
|
9471
|
+
};
|
|
9472
|
+
required: string[];
|
|
9473
|
+
nullable: true;
|
|
9474
|
+
additionalProperties: false;
|
|
9475
|
+
};
|
|
9476
|
+
};
|
|
9477
|
+
integrations: {
|
|
9478
|
+
type: "object";
|
|
9479
|
+
additionalProperties: {
|
|
9480
|
+
type: "object";
|
|
9481
|
+
properties: {
|
|
9482
|
+
id: {
|
|
9483
|
+
type: "string";
|
|
9484
|
+
};
|
|
9485
|
+
};
|
|
9486
|
+
required: string[];
|
|
9487
|
+
nullable: true;
|
|
9488
|
+
additionalProperties: false;
|
|
9489
|
+
};
|
|
9490
|
+
};
|
|
9491
|
+
};
|
|
9492
|
+
additionalProperties: false;
|
|
9493
|
+
};
|
|
9428
9494
|
};
|
|
9429
9495
|
title: string;
|
|
9430
9496
|
additionalProperties: false;
|
|
@@ -13438,6 +13504,59 @@ export declare const state: {
|
|
|
13438
13504
|
additionalProperties: false;
|
|
13439
13505
|
};
|
|
13440
13506
|
};
|
|
13507
|
+
dependencies: {
|
|
13508
|
+
type: "object";
|
|
13509
|
+
properties: {
|
|
13510
|
+
interfaces: {
|
|
13511
|
+
type: "object";
|
|
13512
|
+
additionalProperties: {
|
|
13513
|
+
type: "object";
|
|
13514
|
+
properties: {
|
|
13515
|
+
id: {
|
|
13516
|
+
type: "string";
|
|
13517
|
+
minLength: number;
|
|
13518
|
+
maxLength: number;
|
|
13519
|
+
};
|
|
13520
|
+
name: {
|
|
13521
|
+
type: "string";
|
|
13522
|
+
maxLength: number;
|
|
13523
|
+
};
|
|
13524
|
+
version: {
|
|
13525
|
+
type: "string";
|
|
13526
|
+
maxLength: number;
|
|
13527
|
+
};
|
|
13528
|
+
};
|
|
13529
|
+
required: string[];
|
|
13530
|
+
additionalProperties: false;
|
|
13531
|
+
};
|
|
13532
|
+
};
|
|
13533
|
+
integrations: {
|
|
13534
|
+
type: "object";
|
|
13535
|
+
additionalProperties: {
|
|
13536
|
+
type: "object";
|
|
13537
|
+
properties: {
|
|
13538
|
+
id: {
|
|
13539
|
+
type: "string";
|
|
13540
|
+
minLength: number;
|
|
13541
|
+
maxLength: number;
|
|
13542
|
+
};
|
|
13543
|
+
name: {
|
|
13544
|
+
type: "string";
|
|
13545
|
+
maxLength: number;
|
|
13546
|
+
};
|
|
13547
|
+
version: {
|
|
13548
|
+
type: "string";
|
|
13549
|
+
maxLength: number;
|
|
13550
|
+
};
|
|
13551
|
+
};
|
|
13552
|
+
required: string[];
|
|
13553
|
+
additionalProperties: false;
|
|
13554
|
+
};
|
|
13555
|
+
};
|
|
13556
|
+
};
|
|
13557
|
+
required: string[];
|
|
13558
|
+
additionalProperties: false;
|
|
13559
|
+
};
|
|
13441
13560
|
user: {
|
|
13442
13561
|
type: "object";
|
|
13443
13562
|
properties: {
|