@botpress/api 1.42.0 → 1.44.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/.turbo/turbo-openapi.log +6 -6
- package/dist/index.js +579 -351
- package/dist/src/gen/admin/state.d.ts +73 -0
- package/dist/src/gen/files/state.d.ts +32 -0
- package/dist/src/gen/runtime/state.d.ts +32 -0
- package/dist/src/gen/state.d.ts +73 -0
- package/dist/src/gen/tables/state.d.ts +32 -0
- package/package.json +1 -1
- package/src/gen/admin/openapi.json +1 -1
- package/src/gen/admin/state.ts +91 -6
- package/src/gen/files/openapi.json +1 -1
- package/src/gen/files/state.ts +39 -2
- package/src/gen/openapi.json +1 -1
- package/src/gen/runtime/openapi.json +1 -1
- package/src/gen/runtime/state.ts +39 -2
- package/src/gen/state.ts +91 -6
- package/src/gen/tables/openapi.json +1 -1
- package/src/gen/tables/state.ts +39 -2
package/dist/index.js
CHANGED
|
@@ -18300,9 +18300,9 @@ var require_isarray = __commonJS({
|
|
|
18300
18300
|
}
|
|
18301
18301
|
});
|
|
18302
18302
|
|
|
18303
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
18303
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/internal/streams/stream.js
|
|
18304
18304
|
var require_stream3 = __commonJS({
|
|
18305
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
18305
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/internal/streams/stream.js"(exports, module2) {
|
|
18306
18306
|
module2.exports = require("stream");
|
|
18307
18307
|
}
|
|
18308
18308
|
});
|
|
@@ -18433,9 +18433,9 @@ var require_util4 = __commonJS({
|
|
|
18433
18433
|
}
|
|
18434
18434
|
});
|
|
18435
18435
|
|
|
18436
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
18436
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/internal/streams/BufferList.js
|
|
18437
18437
|
var require_BufferList = __commonJS({
|
|
18438
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
18438
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/internal/streams/BufferList.js"(exports, module2) {
|
|
18439
18439
|
"use strict";
|
|
18440
18440
|
function _classCallCheck(instance, Constructor) {
|
|
18441
18441
|
if (!(instance instanceof Constructor)) {
|
|
@@ -18498,8 +18498,6 @@ var require_BufferList = __commonJS({
|
|
|
18498
18498
|
BufferList.prototype.concat = function concat(n) {
|
|
18499
18499
|
if (this.length === 0)
|
|
18500
18500
|
return Buffer2.alloc(0);
|
|
18501
|
-
if (this.length === 1)
|
|
18502
|
-
return this.head.data;
|
|
18503
18501
|
var ret = Buffer2.allocUnsafe(n >>> 0);
|
|
18504
18502
|
var p = this.head;
|
|
18505
18503
|
var i = 0;
|
|
@@ -18521,9 +18519,9 @@ var require_BufferList = __commonJS({
|
|
|
18521
18519
|
}
|
|
18522
18520
|
});
|
|
18523
18521
|
|
|
18524
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
18522
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/internal/streams/destroy.js
|
|
18525
18523
|
var require_destroy2 = __commonJS({
|
|
18526
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
18524
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/internal/streams/destroy.js"(exports, module2) {
|
|
18527
18525
|
"use strict";
|
|
18528
18526
|
var pna = require_process_nextick_args();
|
|
18529
18527
|
function destroy(err, cb) {
|
|
@@ -18533,8 +18531,13 @@ var require_destroy2 = __commonJS({
|
|
|
18533
18531
|
if (readableDestroyed || writableDestroyed) {
|
|
18534
18532
|
if (cb) {
|
|
18535
18533
|
cb(err);
|
|
18536
|
-
} else if (err
|
|
18537
|
-
|
|
18534
|
+
} else if (err) {
|
|
18535
|
+
if (!this._writableState) {
|
|
18536
|
+
pna.nextTick(emitErrorNT, this, err);
|
|
18537
|
+
} else if (!this._writableState.errorEmitted) {
|
|
18538
|
+
this._writableState.errorEmitted = true;
|
|
18539
|
+
pna.nextTick(emitErrorNT, this, err);
|
|
18540
|
+
}
|
|
18538
18541
|
}
|
|
18539
18542
|
return this;
|
|
18540
18543
|
}
|
|
@@ -18546,9 +18549,11 @@ var require_destroy2 = __commonJS({
|
|
|
18546
18549
|
}
|
|
18547
18550
|
this._destroy(err || null, function(err2) {
|
|
18548
18551
|
if (!cb && err2) {
|
|
18549
|
-
|
|
18550
|
-
|
|
18552
|
+
if (!_this._writableState) {
|
|
18553
|
+
pna.nextTick(emitErrorNT, _this, err2);
|
|
18554
|
+
} else if (!_this._writableState.errorEmitted) {
|
|
18551
18555
|
_this._writableState.errorEmitted = true;
|
|
18556
|
+
pna.nextTick(emitErrorNT, _this, err2);
|
|
18552
18557
|
}
|
|
18553
18558
|
} else if (cb) {
|
|
18554
18559
|
cb(err2);
|
|
@@ -18567,6 +18572,8 @@ var require_destroy2 = __commonJS({
|
|
|
18567
18572
|
this._writableState.destroyed = false;
|
|
18568
18573
|
this._writableState.ended = false;
|
|
18569
18574
|
this._writableState.ending = false;
|
|
18575
|
+
this._writableState.finalCalled = false;
|
|
18576
|
+
this._writableState.prefinished = false;
|
|
18570
18577
|
this._writableState.finished = false;
|
|
18571
18578
|
this._writableState.errorEmitted = false;
|
|
18572
18579
|
}
|
|
@@ -18581,9 +18588,9 @@ var require_destroy2 = __commonJS({
|
|
|
18581
18588
|
}
|
|
18582
18589
|
});
|
|
18583
18590
|
|
|
18584
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
18591
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_writable.js
|
|
18585
18592
|
var require_stream_writable2 = __commonJS({
|
|
18586
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
18593
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_writable.js"(exports, module2) {
|
|
18587
18594
|
"use strict";
|
|
18588
18595
|
var pna = require_process_nextick_args();
|
|
18589
18596
|
module2.exports = Writable;
|
|
@@ -18605,7 +18612,7 @@ var require_stream_writable2 = __commonJS({
|
|
|
18605
18612
|
};
|
|
18606
18613
|
var Stream = require_stream3();
|
|
18607
18614
|
var Buffer2 = require_safe_buffer2().Buffer;
|
|
18608
|
-
var OurUint8Array = global.Uint8Array || function() {
|
|
18615
|
+
var OurUint8Array = (typeof global !== "undefined" ? global : typeof window !== "undefined" ? window : typeof self !== "undefined" ? self : {}).Uint8Array || function() {
|
|
18609
18616
|
};
|
|
18610
18617
|
function _uint8ArrayToBuffer(chunk) {
|
|
18611
18618
|
return Buffer2.from(chunk);
|
|
@@ -18772,7 +18779,7 @@ var require_stream_writable2 = __commonJS({
|
|
|
18772
18779
|
var state6 = this._writableState;
|
|
18773
18780
|
if (state6.corked) {
|
|
18774
18781
|
state6.corked--;
|
|
18775
|
-
if (!state6.writing && !state6.corked && !state6.
|
|
18782
|
+
if (!state6.writing && !state6.corked && !state6.bufferProcessing && state6.bufferedRequest)
|
|
18776
18783
|
clearBuffer(this, state6);
|
|
18777
18784
|
}
|
|
18778
18785
|
};
|
|
@@ -18960,7 +18967,7 @@ var require_stream_writable2 = __commonJS({
|
|
|
18960
18967
|
state6.corked = 1;
|
|
18961
18968
|
this.uncork();
|
|
18962
18969
|
}
|
|
18963
|
-
if (!state6.ending
|
|
18970
|
+
if (!state6.ending)
|
|
18964
18971
|
endWritable(this, state6, cb);
|
|
18965
18972
|
};
|
|
18966
18973
|
function needFinish(state6) {
|
|
@@ -19021,11 +19028,7 @@ var require_stream_writable2 = __commonJS({
|
|
|
19021
19028
|
cb(err);
|
|
19022
19029
|
entry = entry.next;
|
|
19023
19030
|
}
|
|
19024
|
-
|
|
19025
|
-
state6.corkedRequestsFree.next = corkReq;
|
|
19026
|
-
} else {
|
|
19027
|
-
state6.corkedRequestsFree = corkReq;
|
|
19028
|
-
}
|
|
19031
|
+
state6.corkedRequestsFree.next = corkReq;
|
|
19029
19032
|
}
|
|
19030
19033
|
Object.defineProperty(Writable.prototype, "destroyed", {
|
|
19031
19034
|
get: function() {
|
|
@@ -19050,9 +19053,9 @@ var require_stream_writable2 = __commonJS({
|
|
|
19050
19053
|
}
|
|
19051
19054
|
});
|
|
19052
19055
|
|
|
19053
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
19056
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_duplex.js
|
|
19054
19057
|
var require_stream_duplex2 = __commonJS({
|
|
19055
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
19058
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_duplex.js"(exports, module2) {
|
|
19056
19059
|
"use strict";
|
|
19057
19060
|
var pna = require_process_nextick_args();
|
|
19058
19061
|
var objectKeys = Object.keys || function(obj) {
|
|
@@ -19390,9 +19393,9 @@ var require_string_decoder2 = __commonJS({
|
|
|
19390
19393
|
}
|
|
19391
19394
|
});
|
|
19392
19395
|
|
|
19393
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
19396
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_readable.js
|
|
19394
19397
|
var require_stream_readable2 = __commonJS({
|
|
19395
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
19398
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_readable.js"(exports, module2) {
|
|
19396
19399
|
"use strict";
|
|
19397
19400
|
var pna = require_process_nextick_args();
|
|
19398
19401
|
module2.exports = Readable3;
|
|
@@ -19405,7 +19408,7 @@ var require_stream_readable2 = __commonJS({
|
|
|
19405
19408
|
};
|
|
19406
19409
|
var Stream = require_stream3();
|
|
19407
19410
|
var Buffer2 = require_safe_buffer2().Buffer;
|
|
19408
|
-
var OurUint8Array = global.Uint8Array || function() {
|
|
19411
|
+
var OurUint8Array = (typeof global !== "undefined" ? global : typeof window !== "undefined" ? window : typeof self !== "undefined" ? self : {}).Uint8Array || function() {
|
|
19409
19412
|
};
|
|
19410
19413
|
function _uint8ArrayToBuffer(chunk) {
|
|
19411
19414
|
return Buffer2.from(chunk);
|
|
@@ -19820,8 +19823,8 @@ var require_stream_readable2 = __commonJS({
|
|
|
19820
19823
|
var ret = dest.write(chunk);
|
|
19821
19824
|
if (false === ret && !increasedAwaitDrain) {
|
|
19822
19825
|
if ((state6.pipesCount === 1 && state6.pipes === dest || state6.pipesCount > 1 && indexOf(state6.pipes, dest) !== -1) && !cleanedUp) {
|
|
19823
|
-
debug("false write response, pause",
|
|
19824
|
-
|
|
19826
|
+
debug("false write response, pause", state6.awaitDrain);
|
|
19827
|
+
state6.awaitDrain++;
|
|
19825
19828
|
increasedAwaitDrain = true;
|
|
19826
19829
|
}
|
|
19827
19830
|
src.pause();
|
|
@@ -19893,7 +19896,7 @@ var require_stream_readable2 = __commonJS({
|
|
|
19893
19896
|
state6.pipesCount = 0;
|
|
19894
19897
|
state6.flowing = false;
|
|
19895
19898
|
for (var i = 0; i < len; i++) {
|
|
19896
|
-
dests[i].emit("unpipe", this,
|
|
19899
|
+
dests[i].emit("unpipe", this, { hasUnpiped: false });
|
|
19897
19900
|
}
|
|
19898
19901
|
return this;
|
|
19899
19902
|
}
|
|
@@ -20145,9 +20148,9 @@ var require_stream_readable2 = __commonJS({
|
|
|
20145
20148
|
}
|
|
20146
20149
|
});
|
|
20147
20150
|
|
|
20148
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
20151
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_transform.js
|
|
20149
20152
|
var require_stream_transform2 = __commonJS({
|
|
20150
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
20153
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_transform.js"(exports, module2) {
|
|
20151
20154
|
"use strict";
|
|
20152
20155
|
module2.exports = Transform;
|
|
20153
20156
|
var Duplex = require_stream_duplex2();
|
|
@@ -20252,9 +20255,9 @@ var require_stream_transform2 = __commonJS({
|
|
|
20252
20255
|
}
|
|
20253
20256
|
});
|
|
20254
20257
|
|
|
20255
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
20258
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_passthrough.js
|
|
20256
20259
|
var require_stream_passthrough2 = __commonJS({
|
|
20257
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
20260
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/lib/_stream_passthrough.js"(exports, module2) {
|
|
20258
20261
|
"use strict";
|
|
20259
20262
|
module2.exports = PassThrough;
|
|
20260
20263
|
var Transform = require_stream_transform2();
|
|
@@ -20272,9 +20275,9 @@ var require_stream_passthrough2 = __commonJS({
|
|
|
20272
20275
|
}
|
|
20273
20276
|
});
|
|
20274
20277
|
|
|
20275
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
20278
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/readable.js
|
|
20276
20279
|
var require_readable2 = __commonJS({
|
|
20277
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
20280
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/readable.js"(exports, module2) {
|
|
20278
20281
|
var Stream = require("stream");
|
|
20279
20282
|
if (process.env.READABLE_STREAM === "disable" && Stream) {
|
|
20280
20283
|
module2.exports = Stream;
|
|
@@ -20297,9 +20300,9 @@ var require_readable2 = __commonJS({
|
|
|
20297
20300
|
}
|
|
20298
20301
|
});
|
|
20299
20302
|
|
|
20300
|
-
// ../../node_modules/.pnpm/readable-stream@2.3.
|
|
20303
|
+
// ../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/duplex.js
|
|
20301
20304
|
var require_duplex = __commonJS({
|
|
20302
|
-
"../../node_modules/.pnpm/readable-stream@2.3.
|
|
20305
|
+
"../../node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream/duplex.js"(exports, module2) {
|
|
20303
20306
|
module2.exports = require_readable2().Duplex;
|
|
20304
20307
|
}
|
|
20305
20308
|
});
|
|
@@ -21289,12 +21292,13 @@ var require_once2 = __commonJS({
|
|
|
21289
21292
|
}
|
|
21290
21293
|
});
|
|
21291
21294
|
|
|
21292
|
-
// ../../node_modules/.pnpm/end-of-stream@1.4.
|
|
21295
|
+
// ../../node_modules/.pnpm/end-of-stream@1.4.5/node_modules/end-of-stream/index.js
|
|
21293
21296
|
var require_end_of_stream2 = __commonJS({
|
|
21294
|
-
"../../node_modules/.pnpm/end-of-stream@1.4.
|
|
21297
|
+
"../../node_modules/.pnpm/end-of-stream@1.4.5/node_modules/end-of-stream/index.js"(exports, module2) {
|
|
21295
21298
|
var once = require_once2();
|
|
21296
21299
|
var noop2 = function() {
|
|
21297
21300
|
};
|
|
21301
|
+
var qnt = global.Bare ? queueMicrotask : process.nextTick.bind(process);
|
|
21298
21302
|
var isRequest2 = function(stream4) {
|
|
21299
21303
|
return stream4.setHeader && typeof stream4.abort === "function";
|
|
21300
21304
|
};
|
|
@@ -21333,7 +21337,7 @@ var require_end_of_stream2 = __commonJS({
|
|
|
21333
21337
|
callback.call(stream4, err);
|
|
21334
21338
|
};
|
|
21335
21339
|
var onclose = function() {
|
|
21336
|
-
|
|
21340
|
+
qnt(onclosenexttick);
|
|
21337
21341
|
};
|
|
21338
21342
|
var onclosenexttick = function() {
|
|
21339
21343
|
if (cancelled)
|
|
@@ -199044,7 +199048,7 @@ var require_configure_map = __commonJS({
|
|
|
199044
199048
|
"use strict";
|
|
199045
199049
|
var customError = require_custom();
|
|
199046
199050
|
var defineLength = require_define_length();
|
|
199047
|
-
var d =
|
|
199051
|
+
var d = require_d2();
|
|
199048
199052
|
var ee = require_event_emitter().methods;
|
|
199049
199053
|
var resolveResolve = require_resolve_resolve();
|
|
199050
199054
|
var resolveNormalize = require_resolve_normalize();
|
|
@@ -200274,7 +200278,7 @@ var require_max = __commonJS({
|
|
|
200274
200278
|
var require_ref_counter = __commonJS({
|
|
200275
200279
|
"../../node_modules/.pnpm/memoizee@0.4.15/node_modules/memoizee/ext/ref-counter.js"() {
|
|
200276
200280
|
"use strict";
|
|
200277
|
-
var d =
|
|
200281
|
+
var d = require_d2();
|
|
200278
200282
|
var extensions = require_registered_extensions();
|
|
200279
200283
|
var create = Object.create;
|
|
200280
200284
|
var defineProperties = Object.defineProperties;
|
|
@@ -200363,12 +200367,12 @@ var require_memoizee = __commonJS({
|
|
|
200363
200367
|
}
|
|
200364
200368
|
});
|
|
200365
200369
|
|
|
200366
|
-
// ../../node_modules/.pnpm/type@
|
|
200370
|
+
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/string/coerce.js
|
|
200367
200371
|
var require_coerce = __commonJS({
|
|
200368
|
-
"../../node_modules/.pnpm/type@
|
|
200372
|
+
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/string/coerce.js"(exports, module2) {
|
|
200369
200373
|
"use strict";
|
|
200370
|
-
var isValue =
|
|
200371
|
-
var isObject3 =
|
|
200374
|
+
var isValue = require_is6();
|
|
200375
|
+
var isObject3 = require_is7();
|
|
200372
200376
|
var objectToString = Object.prototype.toString;
|
|
200373
200377
|
module2.exports = function(value) {
|
|
200374
200378
|
if (!isValue(value))
|
|
@@ -200389,9 +200393,9 @@ var require_coerce = __commonJS({
|
|
|
200389
200393
|
}
|
|
200390
200394
|
});
|
|
200391
200395
|
|
|
200392
|
-
// ../../node_modules/.pnpm/type@
|
|
200396
|
+
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/safe-to-string.js
|
|
200393
200397
|
var require_safe_to_string2 = __commonJS({
|
|
200394
|
-
"../../node_modules/.pnpm/type@
|
|
200398
|
+
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/safe-to-string.js"(exports, module2) {
|
|
200395
200399
|
"use strict";
|
|
200396
200400
|
module2.exports = function(value) {
|
|
200397
200401
|
try {
|
|
@@ -200407,9 +200411,9 @@ var require_safe_to_string2 = __commonJS({
|
|
|
200407
200411
|
}
|
|
200408
200412
|
});
|
|
200409
200413
|
|
|
200410
|
-
// ../../node_modules/.pnpm/type@
|
|
200414
|
+
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/to-short-string.js
|
|
200411
200415
|
var require_to_short_string = __commonJS({
|
|
200412
|
-
"../../node_modules/.pnpm/type@
|
|
200416
|
+
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/to-short-string.js"(exports, module2) {
|
|
200413
200417
|
"use strict";
|
|
200414
200418
|
var safeToString = require_safe_to_string2();
|
|
200415
200419
|
var reNewLine = /[\n\r\u2028\u2029]/g;
|
|
@@ -200438,55 +200442,92 @@ var require_to_short_string = __commonJS({
|
|
|
200438
200442
|
}
|
|
200439
200443
|
});
|
|
200440
200444
|
|
|
200441
|
-
// ../../node_modules/.pnpm/type@
|
|
200442
|
-
var
|
|
200443
|
-
"../../node_modules/.pnpm/type@
|
|
200445
|
+
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/resolve-error-message.js
|
|
200446
|
+
var require_resolve_error_message = __commonJS({
|
|
200447
|
+
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/resolve-error-message.js"(exports, module2) {
|
|
200444
200448
|
"use strict";
|
|
200445
|
-
var isValue = require_is();
|
|
200446
|
-
var isObject3 = require_is2();
|
|
200447
200449
|
var stringCoerce = require_coerce();
|
|
200448
200450
|
var toShortString = require_to_short_string();
|
|
200449
|
-
|
|
200450
|
-
|
|
200451
|
+
module2.exports = function(errorMessage, value, inputOptions) {
|
|
200452
|
+
if (inputOptions && inputOptions.errorMessage) {
|
|
200453
|
+
errorMessage = stringCoerce(inputOptions.errorMessage);
|
|
200454
|
+
}
|
|
200455
|
+
var valueInsertIndex = errorMessage.indexOf("%v");
|
|
200456
|
+
var valueToken = valueInsertIndex > -1 ? toShortString(value) : null;
|
|
200457
|
+
if (inputOptions && inputOptions.name) {
|
|
200458
|
+
var nameInsertIndex = errorMessage.indexOf("%n");
|
|
200459
|
+
if (nameInsertIndex > -1) {
|
|
200460
|
+
if (valueInsertIndex > -1) {
|
|
200461
|
+
var firstToken, secondToken, firstInsertIndex, secondInsertIndex;
|
|
200462
|
+
if (nameInsertIndex > valueInsertIndex) {
|
|
200463
|
+
firstToken = valueToken;
|
|
200464
|
+
firstInsertIndex = valueInsertIndex;
|
|
200465
|
+
secondToken = inputOptions.name;
|
|
200466
|
+
secondInsertIndex = nameInsertIndex;
|
|
200467
|
+
} else {
|
|
200468
|
+
firstToken = inputOptions.name;
|
|
200469
|
+
firstInsertIndex = nameInsertIndex;
|
|
200470
|
+
secondToken = valueToken;
|
|
200471
|
+
secondInsertIndex = valueInsertIndex;
|
|
200472
|
+
}
|
|
200473
|
+
return errorMessage.slice(0, firstInsertIndex) + firstToken + errorMessage.slice(firstInsertIndex + 2, secondInsertIndex) + secondToken + errorMessage.slice(secondInsertIndex + 2);
|
|
200474
|
+
}
|
|
200475
|
+
return errorMessage.slice(0, nameInsertIndex) + inputOptions.name + errorMessage.slice(nameInsertIndex + 2);
|
|
200476
|
+
}
|
|
200477
|
+
}
|
|
200478
|
+
if (valueInsertIndex > -1) {
|
|
200479
|
+
return errorMessage.slice(0, valueInsertIndex) + valueToken + errorMessage.slice(valueInsertIndex + 2);
|
|
200480
|
+
}
|
|
200481
|
+
return errorMessage;
|
|
200451
200482
|
};
|
|
200483
|
+
}
|
|
200484
|
+
});
|
|
200485
|
+
|
|
200486
|
+
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/resolve-exception.js
|
|
200487
|
+
var require_resolve_exception = __commonJS({
|
|
200488
|
+
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/resolve-exception.js"(exports, module2) {
|
|
200489
|
+
"use strict";
|
|
200490
|
+
var isValue = require_is6();
|
|
200491
|
+
var resolveErrorMessage = require_resolve_error_message();
|
|
200452
200492
|
module2.exports = function(value, defaultMessage, inputOptions) {
|
|
200453
|
-
if (!
|
|
200454
|
-
throw new TypeError(resolveMessage(defaultMessage, value));
|
|
200455
|
-
if (!isValue(value)) {
|
|
200493
|
+
if (inputOptions && !isValue(value)) {
|
|
200456
200494
|
if ("default" in inputOptions)
|
|
200457
200495
|
return inputOptions["default"];
|
|
200458
200496
|
if (inputOptions.isOptional)
|
|
200459
200497
|
return null;
|
|
200460
200498
|
}
|
|
200461
|
-
var
|
|
200462
|
-
|
|
200463
|
-
|
|
200464
|
-
|
|
200499
|
+
var ErrorConstructor = inputOptions && inputOptions.Error || TypeError;
|
|
200500
|
+
var error2 = new ErrorConstructor(resolveErrorMessage(defaultMessage, value, inputOptions));
|
|
200501
|
+
if (inputOptions && inputOptions.errorCode)
|
|
200502
|
+
error2.code = inputOptions.errorCode;
|
|
200503
|
+
throw error2;
|
|
200465
200504
|
};
|
|
200466
200505
|
}
|
|
200467
200506
|
});
|
|
200468
200507
|
|
|
200469
|
-
// ../../node_modules/.pnpm/type@
|
|
200508
|
+
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/value/ensure.js
|
|
200470
200509
|
var require_ensure = __commonJS({
|
|
200471
|
-
"../../node_modules/.pnpm/type@
|
|
200510
|
+
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/value/ensure.js"(exports, module2) {
|
|
200472
200511
|
"use strict";
|
|
200473
200512
|
var resolveException = require_resolve_exception();
|
|
200474
|
-
var is =
|
|
200513
|
+
var is = require_is6();
|
|
200475
200514
|
module2.exports = function(value) {
|
|
200476
200515
|
if (is(value))
|
|
200477
200516
|
return value;
|
|
200478
|
-
|
|
200517
|
+
var options = arguments[1];
|
|
200518
|
+
var errorMessage = options && options.name ? "Expected a value for %n, received %v" : "Cannot use %v";
|
|
200519
|
+
return resolveException(value, errorMessage, options);
|
|
200479
200520
|
};
|
|
200480
200521
|
}
|
|
200481
200522
|
});
|
|
200482
200523
|
|
|
200483
|
-
// ../../node_modules/.pnpm/d@1.0.
|
|
200524
|
+
// ../../node_modules/.pnpm/d@1.0.2/node_modules/d/lazy.js
|
|
200484
200525
|
var require_lazy = __commonJS({
|
|
200485
|
-
"../../node_modules/.pnpm/d@1.0.
|
|
200526
|
+
"../../node_modules/.pnpm/d@1.0.2/node_modules/d/lazy.js"(exports, module2) {
|
|
200486
200527
|
"use strict";
|
|
200487
|
-
var isPlainFunction =
|
|
200528
|
+
var isPlainFunction = require_is10();
|
|
200488
200529
|
var ensureValue = require_ensure();
|
|
200489
|
-
var isValue =
|
|
200530
|
+
var isValue = require_is6();
|
|
200490
200531
|
var map2 = require_map();
|
|
200491
200532
|
var contains = require_contains();
|
|
200492
200533
|
var call = Function.prototype.call;
|
|
@@ -201785,165 +201826,11 @@ var require_clear = __commonJS({
|
|
|
201785
201826
|
}
|
|
201786
201827
|
});
|
|
201787
201828
|
|
|
201788
|
-
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/string/coerce.js
|
|
201789
|
-
var require_coerce2 = __commonJS({
|
|
201790
|
-
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/string/coerce.js"(exports, module2) {
|
|
201791
|
-
"use strict";
|
|
201792
|
-
var isValue = require_is6();
|
|
201793
|
-
var isObject3 = require_is7();
|
|
201794
|
-
var objectToString = Object.prototype.toString;
|
|
201795
|
-
module2.exports = function(value) {
|
|
201796
|
-
if (!isValue(value))
|
|
201797
|
-
return null;
|
|
201798
|
-
if (isObject3(value)) {
|
|
201799
|
-
var valueToString = value.toString;
|
|
201800
|
-
if (typeof valueToString !== "function")
|
|
201801
|
-
return null;
|
|
201802
|
-
if (valueToString === objectToString)
|
|
201803
|
-
return null;
|
|
201804
|
-
}
|
|
201805
|
-
try {
|
|
201806
|
-
return "" + value;
|
|
201807
|
-
} catch (error2) {
|
|
201808
|
-
return null;
|
|
201809
|
-
}
|
|
201810
|
-
};
|
|
201811
|
-
}
|
|
201812
|
-
});
|
|
201813
|
-
|
|
201814
|
-
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/safe-to-string.js
|
|
201815
|
-
var require_safe_to_string3 = __commonJS({
|
|
201816
|
-
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/safe-to-string.js"(exports, module2) {
|
|
201817
|
-
"use strict";
|
|
201818
|
-
module2.exports = function(value) {
|
|
201819
|
-
try {
|
|
201820
|
-
return value.toString();
|
|
201821
|
-
} catch (error2) {
|
|
201822
|
-
try {
|
|
201823
|
-
return String(value);
|
|
201824
|
-
} catch (error22) {
|
|
201825
|
-
return null;
|
|
201826
|
-
}
|
|
201827
|
-
}
|
|
201828
|
-
};
|
|
201829
|
-
}
|
|
201830
|
-
});
|
|
201831
|
-
|
|
201832
|
-
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/to-short-string.js
|
|
201833
|
-
var require_to_short_string2 = __commonJS({
|
|
201834
|
-
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/to-short-string.js"(exports, module2) {
|
|
201835
|
-
"use strict";
|
|
201836
|
-
var safeToString = require_safe_to_string3();
|
|
201837
|
-
var reNewLine = /[\n\r\u2028\u2029]/g;
|
|
201838
|
-
module2.exports = function(value) {
|
|
201839
|
-
var string = safeToString(value);
|
|
201840
|
-
if (string === null)
|
|
201841
|
-
return "<Non-coercible to string value>";
|
|
201842
|
-
if (string.length > 100)
|
|
201843
|
-
string = string.slice(0, 99) + "\u2026";
|
|
201844
|
-
string = string.replace(reNewLine, function(char) {
|
|
201845
|
-
switch (char) {
|
|
201846
|
-
case "\n":
|
|
201847
|
-
return "\\n";
|
|
201848
|
-
case "\r":
|
|
201849
|
-
return "\\r";
|
|
201850
|
-
case "\u2028":
|
|
201851
|
-
return "\\u2028";
|
|
201852
|
-
case "\u2029":
|
|
201853
|
-
return "\\u2029";
|
|
201854
|
-
default:
|
|
201855
|
-
throw new Error("Unexpected character");
|
|
201856
|
-
}
|
|
201857
|
-
});
|
|
201858
|
-
return string;
|
|
201859
|
-
};
|
|
201860
|
-
}
|
|
201861
|
-
});
|
|
201862
|
-
|
|
201863
|
-
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/resolve-error-message.js
|
|
201864
|
-
var require_resolve_error_message = __commonJS({
|
|
201865
|
-
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/resolve-error-message.js"(exports, module2) {
|
|
201866
|
-
"use strict";
|
|
201867
|
-
var stringCoerce = require_coerce2();
|
|
201868
|
-
var toShortString = require_to_short_string2();
|
|
201869
|
-
module2.exports = function(errorMessage, value, inputOptions) {
|
|
201870
|
-
if (inputOptions && inputOptions.errorMessage) {
|
|
201871
|
-
errorMessage = stringCoerce(inputOptions.errorMessage);
|
|
201872
|
-
}
|
|
201873
|
-
var valueInsertIndex = errorMessage.indexOf("%v");
|
|
201874
|
-
var valueToken = valueInsertIndex > -1 ? toShortString(value) : null;
|
|
201875
|
-
if (inputOptions && inputOptions.name) {
|
|
201876
|
-
var nameInsertIndex = errorMessage.indexOf("%n");
|
|
201877
|
-
if (nameInsertIndex > -1) {
|
|
201878
|
-
if (valueInsertIndex > -1) {
|
|
201879
|
-
var firstToken, secondToken, firstInsertIndex, secondInsertIndex;
|
|
201880
|
-
if (nameInsertIndex > valueInsertIndex) {
|
|
201881
|
-
firstToken = valueToken;
|
|
201882
|
-
firstInsertIndex = valueInsertIndex;
|
|
201883
|
-
secondToken = inputOptions.name;
|
|
201884
|
-
secondInsertIndex = nameInsertIndex;
|
|
201885
|
-
} else {
|
|
201886
|
-
firstToken = inputOptions.name;
|
|
201887
|
-
firstInsertIndex = nameInsertIndex;
|
|
201888
|
-
secondToken = valueToken;
|
|
201889
|
-
secondInsertIndex = valueInsertIndex;
|
|
201890
|
-
}
|
|
201891
|
-
return errorMessage.slice(0, firstInsertIndex) + firstToken + errorMessage.slice(firstInsertIndex + 2, secondInsertIndex) + secondToken + errorMessage.slice(secondInsertIndex + 2);
|
|
201892
|
-
}
|
|
201893
|
-
return errorMessage.slice(0, nameInsertIndex) + inputOptions.name + errorMessage.slice(nameInsertIndex + 2);
|
|
201894
|
-
}
|
|
201895
|
-
}
|
|
201896
|
-
if (valueInsertIndex > -1) {
|
|
201897
|
-
return errorMessage.slice(0, valueInsertIndex) + valueToken + errorMessage.slice(valueInsertIndex + 2);
|
|
201898
|
-
}
|
|
201899
|
-
return errorMessage;
|
|
201900
|
-
};
|
|
201901
|
-
}
|
|
201902
|
-
});
|
|
201903
|
-
|
|
201904
|
-
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/resolve-exception.js
|
|
201905
|
-
var require_resolve_exception2 = __commonJS({
|
|
201906
|
-
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/lib/resolve-exception.js"(exports, module2) {
|
|
201907
|
-
"use strict";
|
|
201908
|
-
var isValue = require_is6();
|
|
201909
|
-
var resolveErrorMessage = require_resolve_error_message();
|
|
201910
|
-
module2.exports = function(value, defaultMessage, inputOptions) {
|
|
201911
|
-
if (inputOptions && !isValue(value)) {
|
|
201912
|
-
if ("default" in inputOptions)
|
|
201913
|
-
return inputOptions["default"];
|
|
201914
|
-
if (inputOptions.isOptional)
|
|
201915
|
-
return null;
|
|
201916
|
-
}
|
|
201917
|
-
var ErrorConstructor = inputOptions && inputOptions.Error || TypeError;
|
|
201918
|
-
var error2 = new ErrorConstructor(resolveErrorMessage(defaultMessage, value, inputOptions));
|
|
201919
|
-
if (inputOptions && inputOptions.errorCode)
|
|
201920
|
-
error2.code = inputOptions.errorCode;
|
|
201921
|
-
throw error2;
|
|
201922
|
-
};
|
|
201923
|
-
}
|
|
201924
|
-
});
|
|
201925
|
-
|
|
201926
|
-
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/value/ensure.js
|
|
201927
|
-
var require_ensure2 = __commonJS({
|
|
201928
|
-
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/value/ensure.js"(exports, module2) {
|
|
201929
|
-
"use strict";
|
|
201930
|
-
var resolveException = require_resolve_exception2();
|
|
201931
|
-
var is = require_is6();
|
|
201932
|
-
module2.exports = function(value) {
|
|
201933
|
-
if (is(value))
|
|
201934
|
-
return value;
|
|
201935
|
-
var options = arguments[1];
|
|
201936
|
-
var errorMessage = options && options.name ? "Expected a value for %n, received %v" : "Cannot use %v";
|
|
201937
|
-
return resolveException(value, errorMessage, options);
|
|
201938
|
-
};
|
|
201939
|
-
}
|
|
201940
|
-
});
|
|
201941
|
-
|
|
201942
201829
|
// ../../node_modules/.pnpm/type@2.7.2/node_modules/type/plain-function/ensure.js
|
|
201943
|
-
var
|
|
201830
|
+
var require_ensure2 = __commonJS({
|
|
201944
201831
|
"../../node_modules/.pnpm/type@2.7.2/node_modules/type/plain-function/ensure.js"(exports, module2) {
|
|
201945
201832
|
"use strict";
|
|
201946
|
-
var resolveException =
|
|
201833
|
+
var resolveException = require_resolve_exception();
|
|
201947
201834
|
var is = require_is10();
|
|
201948
201835
|
module2.exports = function(value) {
|
|
201949
201836
|
if (is(value))
|
|
@@ -201985,8 +201872,8 @@ var require_auto_bind = __commonJS({
|
|
|
201985
201872
|
"../../node_modules/.pnpm/d@1.0.2/node_modules/d/auto-bind.js"(exports, module2) {
|
|
201986
201873
|
"use strict";
|
|
201987
201874
|
var isValue = require_is6();
|
|
201988
|
-
var ensureValue =
|
|
201989
|
-
var ensurePlainFunction =
|
|
201875
|
+
var ensureValue = require_ensure();
|
|
201876
|
+
var ensurePlainFunction = require_ensure2();
|
|
201990
201877
|
var copy = require_copy();
|
|
201991
201878
|
var normalizeOptions = require_normalize_options();
|
|
201992
201879
|
var map2 = require_map();
|
|
@@ -263620,18 +263507,20 @@ var require_cookiejar = __commonJS({
|
|
|
263620
263507
|
}
|
|
263621
263508
|
});
|
|
263622
263509
|
|
|
263623
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
263510
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/debug.js
|
|
263624
263511
|
var require_debug2 = __commonJS({
|
|
263625
|
-
"../../node_modules/.pnpm/semver@7.
|
|
263512
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/debug.js"(exports, module2) {
|
|
263513
|
+
"use strict";
|
|
263626
263514
|
var debug = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {
|
|
263627
263515
|
};
|
|
263628
263516
|
module2.exports = debug;
|
|
263629
263517
|
}
|
|
263630
263518
|
});
|
|
263631
263519
|
|
|
263632
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
263520
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/constants.js
|
|
263633
263521
|
var require_constants6 = __commonJS({
|
|
263634
|
-
"../../node_modules/.pnpm/semver@7.
|
|
263522
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/constants.js"(exports, module2) {
|
|
263523
|
+
"use strict";
|
|
263635
263524
|
var SEMVER_SPEC_VERSION = "2.0.0";
|
|
263636
263525
|
var MAX_LENGTH = 256;
|
|
263637
263526
|
var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || 9007199254740991;
|
|
@@ -263659,9 +263548,10 @@ var require_constants6 = __commonJS({
|
|
|
263659
263548
|
}
|
|
263660
263549
|
});
|
|
263661
263550
|
|
|
263662
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
263551
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/re.js
|
|
263663
263552
|
var require_re = __commonJS({
|
|
263664
|
-
"../../node_modules/.pnpm/semver@7.
|
|
263553
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/re.js"(exports, module2) {
|
|
263554
|
+
"use strict";
|
|
263665
263555
|
var {
|
|
263666
263556
|
MAX_SAFE_COMPONENT_LENGTH,
|
|
263667
263557
|
MAX_SAFE_BUILD_LENGTH,
|
|
@@ -263672,6 +263562,7 @@ var require_re = __commonJS({
|
|
|
263672
263562
|
var re = exports.re = [];
|
|
263673
263563
|
var safeRe = exports.safeRe = [];
|
|
263674
263564
|
var src = exports.src = [];
|
|
263565
|
+
var safeSrc = exports.safeSrc = [];
|
|
263675
263566
|
var t = exports.t = {};
|
|
263676
263567
|
var R = 0;
|
|
263677
263568
|
var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
|
|
@@ -263692,6 +263583,7 @@ var require_re = __commonJS({
|
|
|
263692
263583
|
debug(name, index, value);
|
|
263693
263584
|
t[name] = index;
|
|
263694
263585
|
src[index] = value;
|
|
263586
|
+
safeSrc[index] = safe;
|
|
263695
263587
|
re[index] = new RegExp(value, isGlobal ? "g" : void 0);
|
|
263696
263588
|
safeRe[index] = new RegExp(safe, isGlobal ? "g" : void 0);
|
|
263697
263589
|
};
|
|
@@ -263700,8 +263592,8 @@ var require_re = __commonJS({
|
|
|
263700
263592
|
createToken("NONNUMERICIDENTIFIER", `\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`);
|
|
263701
263593
|
createToken("MAINVERSION", `(${src[t.NUMERICIDENTIFIER]})\\.(${src[t.NUMERICIDENTIFIER]})\\.(${src[t.NUMERICIDENTIFIER]})`);
|
|
263702
263594
|
createToken("MAINVERSIONLOOSE", `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.(${src[t.NUMERICIDENTIFIERLOOSE]})\\.(${src[t.NUMERICIDENTIFIERLOOSE]})`);
|
|
263703
|
-
createToken("PRERELEASEIDENTIFIER", `(?:${src[t.
|
|
263704
|
-
createToken("PRERELEASEIDENTIFIERLOOSE", `(?:${src[t.
|
|
263595
|
+
createToken("PRERELEASEIDENTIFIER", `(?:${src[t.NONNUMERICIDENTIFIER]}|${src[t.NUMERICIDENTIFIER]})`);
|
|
263596
|
+
createToken("PRERELEASEIDENTIFIERLOOSE", `(?:${src[t.NONNUMERICIDENTIFIER]}|${src[t.NUMERICIDENTIFIERLOOSE]})`);
|
|
263705
263597
|
createToken("PRERELEASE", `(?:-(${src[t.PRERELEASEIDENTIFIER]}(?:\\.${src[t.PRERELEASEIDENTIFIER]})*))`);
|
|
263706
263598
|
createToken("PRERELEASELOOSE", `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`);
|
|
263707
263599
|
createToken("BUILDIDENTIFIER", `${LETTERDASHNUMBER}+`);
|
|
@@ -263744,9 +263636,10 @@ var require_re = __commonJS({
|
|
|
263744
263636
|
}
|
|
263745
263637
|
});
|
|
263746
263638
|
|
|
263747
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
263639
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/parse-options.js
|
|
263748
263640
|
var require_parse_options = __commonJS({
|
|
263749
|
-
"../../node_modules/.pnpm/semver@7.
|
|
263641
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/parse-options.js"(exports, module2) {
|
|
263642
|
+
"use strict";
|
|
263750
263643
|
var looseOption = Object.freeze({ loose: true });
|
|
263751
263644
|
var emptyOpts = Object.freeze({});
|
|
263752
263645
|
var parseOptions = (options) => {
|
|
@@ -263762,9 +263655,10 @@ var require_parse_options = __commonJS({
|
|
|
263762
263655
|
}
|
|
263763
263656
|
});
|
|
263764
263657
|
|
|
263765
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
263658
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/identifiers.js
|
|
263766
263659
|
var require_identifiers = __commonJS({
|
|
263767
|
-
"../../node_modules/.pnpm/semver@7.
|
|
263660
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/identifiers.js"(exports, module2) {
|
|
263661
|
+
"use strict";
|
|
263768
263662
|
var numeric = /^[0-9]+$/;
|
|
263769
263663
|
var compareIdentifiers = (a, b) => {
|
|
263770
263664
|
const anum = numeric.test(a);
|
|
@@ -263783,9 +263677,10 @@ var require_identifiers = __commonJS({
|
|
|
263783
263677
|
}
|
|
263784
263678
|
});
|
|
263785
263679
|
|
|
263786
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
263680
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/semver.js
|
|
263787
263681
|
var require_semver = __commonJS({
|
|
263788
|
-
"../../node_modules/.pnpm/semver@7.
|
|
263682
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/semver.js"(exports, module2) {
|
|
263683
|
+
"use strict";
|
|
263789
263684
|
var debug = require_debug2();
|
|
263790
263685
|
var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants6();
|
|
263791
263686
|
var { safeRe: re, t } = require_re();
|
|
@@ -263926,6 +263821,17 @@ var require_semver = __commonJS({
|
|
|
263926
263821
|
} while (++i);
|
|
263927
263822
|
}
|
|
263928
263823
|
inc(release, identifier, identifierBase) {
|
|
263824
|
+
if (release.startsWith("pre")) {
|
|
263825
|
+
if (!identifier && identifierBase === false) {
|
|
263826
|
+
throw new Error("invalid increment argument: identifier is empty");
|
|
263827
|
+
}
|
|
263828
|
+
if (identifier) {
|
|
263829
|
+
const match = `-${identifier}`.match(this.options.loose ? re[t.PRERELEASELOOSE] : re[t.PRERELEASE]);
|
|
263830
|
+
if (!match || match[1] !== identifier) {
|
|
263831
|
+
throw new Error(`invalid identifier: ${identifier}`);
|
|
263832
|
+
}
|
|
263833
|
+
}
|
|
263834
|
+
}
|
|
263929
263835
|
switch (release) {
|
|
263930
263836
|
case "premajor":
|
|
263931
263837
|
this.prerelease.length = 0;
|
|
@@ -263951,6 +263857,12 @@ var require_semver = __commonJS({
|
|
|
263951
263857
|
}
|
|
263952
263858
|
this.inc("pre", identifier, identifierBase);
|
|
263953
263859
|
break;
|
|
263860
|
+
case "release":
|
|
263861
|
+
if (this.prerelease.length === 0) {
|
|
263862
|
+
throw new Error(`version ${this.raw} is not a prerelease`);
|
|
263863
|
+
}
|
|
263864
|
+
this.prerelease.length = 0;
|
|
263865
|
+
break;
|
|
263954
263866
|
case "major":
|
|
263955
263867
|
if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) {
|
|
263956
263868
|
this.major++;
|
|
@@ -263974,9 +263886,6 @@ var require_semver = __commonJS({
|
|
|
263974
263886
|
break;
|
|
263975
263887
|
case "pre": {
|
|
263976
263888
|
const base = Number(identifierBase) ? 1 : 0;
|
|
263977
|
-
if (!identifier && identifierBase === false) {
|
|
263978
|
-
throw new Error("invalid increment argument: identifier is empty");
|
|
263979
|
-
}
|
|
263980
263889
|
if (this.prerelease.length === 0) {
|
|
263981
263890
|
this.prerelease = [base];
|
|
263982
263891
|
} else {
|
|
@@ -264023,18 +263932,20 @@ var require_semver = __commonJS({
|
|
|
264023
263932
|
}
|
|
264024
263933
|
});
|
|
264025
263934
|
|
|
264026
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
263935
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare.js
|
|
264027
263936
|
var require_compare = __commonJS({
|
|
264028
|
-
"../../node_modules/.pnpm/semver@7.
|
|
263937
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare.js"(exports, module2) {
|
|
263938
|
+
"use strict";
|
|
264029
263939
|
var SemVer = require_semver();
|
|
264030
263940
|
var compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
|
|
264031
263941
|
module2.exports = compare;
|
|
264032
263942
|
}
|
|
264033
263943
|
});
|
|
264034
263944
|
|
|
264035
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
263945
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gte.js
|
|
264036
263946
|
var require_gte = __commonJS({
|
|
264037
|
-
"../../node_modules/.pnpm/semver@7.
|
|
263947
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gte.js"(exports, module2) {
|
|
263948
|
+
"use strict";
|
|
264038
263949
|
var compare = require_compare();
|
|
264039
263950
|
var gte = (a, b, loose) => compare(a, b, loose) >= 0;
|
|
264040
263951
|
module2.exports = gte;
|
|
@@ -264377,9 +264288,10 @@ var require_utils6 = __commonJS({
|
|
|
264377
264288
|
}
|
|
264378
264289
|
});
|
|
264379
264290
|
|
|
264380
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264291
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/parse.js
|
|
264381
264292
|
var require_parse5 = __commonJS({
|
|
264382
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264293
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/parse.js"(exports, module2) {
|
|
264294
|
+
"use strict";
|
|
264383
264295
|
var SemVer = require_semver();
|
|
264384
264296
|
var parse = (version, options, throwErrors = false) => {
|
|
264385
264297
|
if (version instanceof SemVer) {
|
|
@@ -264398,9 +264310,10 @@ var require_parse5 = __commonJS({
|
|
|
264398
264310
|
}
|
|
264399
264311
|
});
|
|
264400
264312
|
|
|
264401
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264313
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/valid.js
|
|
264402
264314
|
var require_valid = __commonJS({
|
|
264403
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264315
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/valid.js"(exports, module2) {
|
|
264316
|
+
"use strict";
|
|
264404
264317
|
var parse = require_parse5();
|
|
264405
264318
|
var valid = (version, options) => {
|
|
264406
264319
|
const v = parse(version, options);
|
|
@@ -264410,9 +264323,10 @@ var require_valid = __commonJS({
|
|
|
264410
264323
|
}
|
|
264411
264324
|
});
|
|
264412
264325
|
|
|
264413
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264326
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/clean.js
|
|
264414
264327
|
var require_clean = __commonJS({
|
|
264415
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264328
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/clean.js"(exports, module2) {
|
|
264329
|
+
"use strict";
|
|
264416
264330
|
var parse = require_parse5();
|
|
264417
264331
|
var clean = (version, options) => {
|
|
264418
264332
|
const s2 = parse(version.trim().replace(/^[=v]+/, ""), options);
|
|
@@ -264422,9 +264336,10 @@ var require_clean = __commonJS({
|
|
|
264422
264336
|
}
|
|
264423
264337
|
});
|
|
264424
264338
|
|
|
264425
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264339
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/inc.js
|
|
264426
264340
|
var require_inc = __commonJS({
|
|
264427
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264341
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/inc.js"(exports, module2) {
|
|
264342
|
+
"use strict";
|
|
264428
264343
|
var SemVer = require_semver();
|
|
264429
264344
|
var inc = (version, release, options, identifier, identifierBase) => {
|
|
264430
264345
|
if (typeof options === "string") {
|
|
@@ -264445,9 +264360,10 @@ var require_inc = __commonJS({
|
|
|
264445
264360
|
}
|
|
264446
264361
|
});
|
|
264447
264362
|
|
|
264448
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264363
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/diff.js
|
|
264449
264364
|
var require_diff = __commonJS({
|
|
264450
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264365
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/diff.js"(exports, module2) {
|
|
264366
|
+
"use strict";
|
|
264451
264367
|
var parse = require_parse5();
|
|
264452
264368
|
var diff2 = (version1, version2) => {
|
|
264453
264369
|
const v1 = parse(version1, null, true);
|
|
@@ -264465,13 +264381,12 @@ var require_diff = __commonJS({
|
|
|
264465
264381
|
if (!lowVersion.patch && !lowVersion.minor) {
|
|
264466
264382
|
return "major";
|
|
264467
264383
|
}
|
|
264468
|
-
if (highVersion
|
|
264384
|
+
if (lowVersion.compareMain(highVersion) === 0) {
|
|
264385
|
+
if (lowVersion.minor && !lowVersion.patch) {
|
|
264386
|
+
return "minor";
|
|
264387
|
+
}
|
|
264469
264388
|
return "patch";
|
|
264470
264389
|
}
|
|
264471
|
-
if (highVersion.minor) {
|
|
264472
|
-
return "minor";
|
|
264473
|
-
}
|
|
264474
|
-
return "major";
|
|
264475
264390
|
}
|
|
264476
264391
|
const prefix = highHasPre ? "pre" : "";
|
|
264477
264392
|
if (v1.major !== v2.major) {
|
|
@@ -264489,36 +264404,40 @@ var require_diff = __commonJS({
|
|
|
264489
264404
|
}
|
|
264490
264405
|
});
|
|
264491
264406
|
|
|
264492
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264407
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/major.js
|
|
264493
264408
|
var require_major = __commonJS({
|
|
264494
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264409
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/major.js"(exports, module2) {
|
|
264410
|
+
"use strict";
|
|
264495
264411
|
var SemVer = require_semver();
|
|
264496
264412
|
var major = (a, loose) => new SemVer(a, loose).major;
|
|
264497
264413
|
module2.exports = major;
|
|
264498
264414
|
}
|
|
264499
264415
|
});
|
|
264500
264416
|
|
|
264501
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264417
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/minor.js
|
|
264502
264418
|
var require_minor = __commonJS({
|
|
264503
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264419
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/minor.js"(exports, module2) {
|
|
264420
|
+
"use strict";
|
|
264504
264421
|
var SemVer = require_semver();
|
|
264505
264422
|
var minor = (a, loose) => new SemVer(a, loose).minor;
|
|
264506
264423
|
module2.exports = minor;
|
|
264507
264424
|
}
|
|
264508
264425
|
});
|
|
264509
264426
|
|
|
264510
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264427
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/patch.js
|
|
264511
264428
|
var require_patch = __commonJS({
|
|
264512
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264429
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/patch.js"(exports, module2) {
|
|
264430
|
+
"use strict";
|
|
264513
264431
|
var SemVer = require_semver();
|
|
264514
264432
|
var patch = (a, loose) => new SemVer(a, loose).patch;
|
|
264515
264433
|
module2.exports = patch;
|
|
264516
264434
|
}
|
|
264517
264435
|
});
|
|
264518
264436
|
|
|
264519
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264437
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/prerelease.js
|
|
264520
264438
|
var require_prerelease = __commonJS({
|
|
264521
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264439
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/prerelease.js"(exports, module2) {
|
|
264440
|
+
"use strict";
|
|
264522
264441
|
var parse = require_parse5();
|
|
264523
264442
|
var prerelease = (version, options) => {
|
|
264524
264443
|
const parsed = parse(version, options);
|
|
@@ -264528,27 +264447,30 @@ var require_prerelease = __commonJS({
|
|
|
264528
264447
|
}
|
|
264529
264448
|
});
|
|
264530
264449
|
|
|
264531
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264450
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/rcompare.js
|
|
264532
264451
|
var require_rcompare = __commonJS({
|
|
264533
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264452
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/rcompare.js"(exports, module2) {
|
|
264453
|
+
"use strict";
|
|
264534
264454
|
var compare = require_compare();
|
|
264535
264455
|
var rcompare = (a, b, loose) => compare(b, a, loose);
|
|
264536
264456
|
module2.exports = rcompare;
|
|
264537
264457
|
}
|
|
264538
264458
|
});
|
|
264539
264459
|
|
|
264540
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264460
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare-loose.js
|
|
264541
264461
|
var require_compare_loose = __commonJS({
|
|
264542
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264462
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare-loose.js"(exports, module2) {
|
|
264463
|
+
"use strict";
|
|
264543
264464
|
var compare = require_compare();
|
|
264544
264465
|
var compareLoose = (a, b) => compare(a, b, true);
|
|
264545
264466
|
module2.exports = compareLoose;
|
|
264546
264467
|
}
|
|
264547
264468
|
});
|
|
264548
264469
|
|
|
264549
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264470
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare-build.js
|
|
264550
264471
|
var require_compare_build = __commonJS({
|
|
264551
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264472
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare-build.js"(exports, module2) {
|
|
264473
|
+
"use strict";
|
|
264552
264474
|
var SemVer = require_semver();
|
|
264553
264475
|
var compareBuild = (a, b, loose) => {
|
|
264554
264476
|
const versionA = new SemVer(a, loose);
|
|
@@ -264559,72 +264481,80 @@ var require_compare_build = __commonJS({
|
|
|
264559
264481
|
}
|
|
264560
264482
|
});
|
|
264561
264483
|
|
|
264562
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264484
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/sort.js
|
|
264563
264485
|
var require_sort = __commonJS({
|
|
264564
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264486
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/sort.js"(exports, module2) {
|
|
264487
|
+
"use strict";
|
|
264565
264488
|
var compareBuild = require_compare_build();
|
|
264566
264489
|
var sort2 = (list2, loose) => list2.sort((a, b) => compareBuild(a, b, loose));
|
|
264567
264490
|
module2.exports = sort2;
|
|
264568
264491
|
}
|
|
264569
264492
|
});
|
|
264570
264493
|
|
|
264571
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264494
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/rsort.js
|
|
264572
264495
|
var require_rsort = __commonJS({
|
|
264573
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264496
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/rsort.js"(exports, module2) {
|
|
264497
|
+
"use strict";
|
|
264574
264498
|
var compareBuild = require_compare_build();
|
|
264575
264499
|
var rsort = (list2, loose) => list2.sort((a, b) => compareBuild(b, a, loose));
|
|
264576
264500
|
module2.exports = rsort;
|
|
264577
264501
|
}
|
|
264578
264502
|
});
|
|
264579
264503
|
|
|
264580
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264504
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gt.js
|
|
264581
264505
|
var require_gt = __commonJS({
|
|
264582
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264506
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gt.js"(exports, module2) {
|
|
264507
|
+
"use strict";
|
|
264583
264508
|
var compare = require_compare();
|
|
264584
264509
|
var gt = (a, b, loose) => compare(a, b, loose) > 0;
|
|
264585
264510
|
module2.exports = gt;
|
|
264586
264511
|
}
|
|
264587
264512
|
});
|
|
264588
264513
|
|
|
264589
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264514
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/lt.js
|
|
264590
264515
|
var require_lt = __commonJS({
|
|
264591
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264516
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/lt.js"(exports, module2) {
|
|
264517
|
+
"use strict";
|
|
264592
264518
|
var compare = require_compare();
|
|
264593
264519
|
var lt = (a, b, loose) => compare(a, b, loose) < 0;
|
|
264594
264520
|
module2.exports = lt;
|
|
264595
264521
|
}
|
|
264596
264522
|
});
|
|
264597
264523
|
|
|
264598
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264524
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/eq.js
|
|
264599
264525
|
var require_eq2 = __commonJS({
|
|
264600
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264526
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/eq.js"(exports, module2) {
|
|
264527
|
+
"use strict";
|
|
264601
264528
|
var compare = require_compare();
|
|
264602
264529
|
var eq = (a, b, loose) => compare(a, b, loose) === 0;
|
|
264603
264530
|
module2.exports = eq;
|
|
264604
264531
|
}
|
|
264605
264532
|
});
|
|
264606
264533
|
|
|
264607
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264534
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/neq.js
|
|
264608
264535
|
var require_neq = __commonJS({
|
|
264609
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264536
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/neq.js"(exports, module2) {
|
|
264537
|
+
"use strict";
|
|
264610
264538
|
var compare = require_compare();
|
|
264611
264539
|
var neq = (a, b, loose) => compare(a, b, loose) !== 0;
|
|
264612
264540
|
module2.exports = neq;
|
|
264613
264541
|
}
|
|
264614
264542
|
});
|
|
264615
264543
|
|
|
264616
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264544
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/lte.js
|
|
264617
264545
|
var require_lte = __commonJS({
|
|
264618
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264546
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/lte.js"(exports, module2) {
|
|
264547
|
+
"use strict";
|
|
264619
264548
|
var compare = require_compare();
|
|
264620
264549
|
var lte = (a, b, loose) => compare(a, b, loose) <= 0;
|
|
264621
264550
|
module2.exports = lte;
|
|
264622
264551
|
}
|
|
264623
264552
|
});
|
|
264624
264553
|
|
|
264625
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264554
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/cmp.js
|
|
264626
264555
|
var require_cmp = __commonJS({
|
|
264627
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264556
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/cmp.js"(exports, module2) {
|
|
264557
|
+
"use strict";
|
|
264628
264558
|
var eq = require_eq2();
|
|
264629
264559
|
var neq = require_neq();
|
|
264630
264560
|
var gt = require_gt();
|
|
@@ -264671,9 +264601,10 @@ var require_cmp = __commonJS({
|
|
|
264671
264601
|
}
|
|
264672
264602
|
});
|
|
264673
264603
|
|
|
264674
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264675
|
-
var
|
|
264676
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264604
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/coerce.js
|
|
264605
|
+
var require_coerce2 = __commonJS({
|
|
264606
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/coerce.js"(exports, module2) {
|
|
264607
|
+
"use strict";
|
|
264677
264608
|
var SemVer = require_semver();
|
|
264678
264609
|
var parse = require_parse5();
|
|
264679
264610
|
var { safeRe: re, t } = require_re();
|
|
@@ -264716,9 +264647,10 @@ var require_coerce3 = __commonJS({
|
|
|
264716
264647
|
}
|
|
264717
264648
|
});
|
|
264718
264649
|
|
|
264719
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264650
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/lrucache.js
|
|
264720
264651
|
var require_lrucache = __commonJS({
|
|
264721
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264652
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/lrucache.js"(exports, module2) {
|
|
264653
|
+
"use strict";
|
|
264722
264654
|
var LRUCache = class {
|
|
264723
264655
|
constructor() {
|
|
264724
264656
|
this.max = 1e3;
|
|
@@ -264753,9 +264685,10 @@ var require_lrucache = __commonJS({
|
|
|
264753
264685
|
}
|
|
264754
264686
|
});
|
|
264755
264687
|
|
|
264756
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
264688
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/range.js
|
|
264757
264689
|
var require_range2 = __commonJS({
|
|
264758
|
-
"../../node_modules/.pnpm/semver@7.
|
|
264690
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/range.js"(exports, module2) {
|
|
264691
|
+
"use strict";
|
|
264759
264692
|
var SPACE_CHARACTERS = /\s+/g;
|
|
264760
264693
|
var Range = class {
|
|
264761
264694
|
constructor(range2, options) {
|
|
@@ -265127,9 +265060,10 @@ var require_range2 = __commonJS({
|
|
|
265127
265060
|
}
|
|
265128
265061
|
});
|
|
265129
265062
|
|
|
265130
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265063
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/comparator.js
|
|
265131
265064
|
var require_comparator = __commonJS({
|
|
265132
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265065
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/comparator.js"(exports, module2) {
|
|
265066
|
+
"use strict";
|
|
265133
265067
|
var ANY = Symbol("SemVer ANY");
|
|
265134
265068
|
var Comparator = class {
|
|
265135
265069
|
static get ANY() {
|
|
@@ -265239,9 +265173,10 @@ var require_comparator = __commonJS({
|
|
|
265239
265173
|
}
|
|
265240
265174
|
});
|
|
265241
265175
|
|
|
265242
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265176
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/satisfies.js
|
|
265243
265177
|
var require_satisfies = __commonJS({
|
|
265244
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265178
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/satisfies.js"(exports, module2) {
|
|
265179
|
+
"use strict";
|
|
265245
265180
|
var Range = require_range2();
|
|
265246
265181
|
var satisfies = (version, range2, options) => {
|
|
265247
265182
|
try {
|
|
@@ -265255,18 +265190,20 @@ var require_satisfies = __commonJS({
|
|
|
265255
265190
|
}
|
|
265256
265191
|
});
|
|
265257
265192
|
|
|
265258
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265193
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/to-comparators.js
|
|
265259
265194
|
var require_to_comparators = __commonJS({
|
|
265260
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265195
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/to-comparators.js"(exports, module2) {
|
|
265196
|
+
"use strict";
|
|
265261
265197
|
var Range = require_range2();
|
|
265262
265198
|
var toComparators = (range2, options) => new Range(range2, options).set.map((comp) => comp.map((c2) => c2.value).join(" ").trim().split(" "));
|
|
265263
265199
|
module2.exports = toComparators;
|
|
265264
265200
|
}
|
|
265265
265201
|
});
|
|
265266
265202
|
|
|
265267
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265203
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/max-satisfying.js
|
|
265268
265204
|
var require_max_satisfying = __commonJS({
|
|
265269
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265205
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/max-satisfying.js"(exports, module2) {
|
|
265206
|
+
"use strict";
|
|
265270
265207
|
var SemVer = require_semver();
|
|
265271
265208
|
var Range = require_range2();
|
|
265272
265209
|
var maxSatisfying = (versions, range2, options) => {
|
|
@@ -265292,9 +265229,10 @@ var require_max_satisfying = __commonJS({
|
|
|
265292
265229
|
}
|
|
265293
265230
|
});
|
|
265294
265231
|
|
|
265295
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265232
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/min-satisfying.js
|
|
265296
265233
|
var require_min_satisfying = __commonJS({
|
|
265297
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265234
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/min-satisfying.js"(exports, module2) {
|
|
265235
|
+
"use strict";
|
|
265298
265236
|
var SemVer = require_semver();
|
|
265299
265237
|
var Range = require_range2();
|
|
265300
265238
|
var minSatisfying = (versions, range2, options) => {
|
|
@@ -265320,9 +265258,10 @@ var require_min_satisfying = __commonJS({
|
|
|
265320
265258
|
}
|
|
265321
265259
|
});
|
|
265322
265260
|
|
|
265323
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265261
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/min-version.js
|
|
265324
265262
|
var require_min_version = __commonJS({
|
|
265325
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265263
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/min-version.js"(exports, module2) {
|
|
265264
|
+
"use strict";
|
|
265326
265265
|
var SemVer = require_semver();
|
|
265327
265266
|
var Range = require_range2();
|
|
265328
265267
|
var gt = require_gt();
|
|
@@ -265376,9 +265315,10 @@ var require_min_version = __commonJS({
|
|
|
265376
265315
|
}
|
|
265377
265316
|
});
|
|
265378
265317
|
|
|
265379
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265318
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/valid.js
|
|
265380
265319
|
var require_valid2 = __commonJS({
|
|
265381
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265320
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/valid.js"(exports, module2) {
|
|
265321
|
+
"use strict";
|
|
265382
265322
|
var Range = require_range2();
|
|
265383
265323
|
var validRange = (range2, options) => {
|
|
265384
265324
|
try {
|
|
@@ -265391,9 +265331,10 @@ var require_valid2 = __commonJS({
|
|
|
265391
265331
|
}
|
|
265392
265332
|
});
|
|
265393
265333
|
|
|
265394
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265334
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/outside.js
|
|
265395
265335
|
var require_outside = __commonJS({
|
|
265396
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265336
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/outside.js"(exports, module2) {
|
|
265337
|
+
"use strict";
|
|
265397
265338
|
var SemVer = require_semver();
|
|
265398
265339
|
var Comparator = require_comparator();
|
|
265399
265340
|
var { ANY } = Comparator;
|
|
@@ -265459,27 +265400,30 @@ var require_outside = __commonJS({
|
|
|
265459
265400
|
}
|
|
265460
265401
|
});
|
|
265461
265402
|
|
|
265462
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265403
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/gtr.js
|
|
265463
265404
|
var require_gtr = __commonJS({
|
|
265464
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265405
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/gtr.js"(exports, module2) {
|
|
265406
|
+
"use strict";
|
|
265465
265407
|
var outside = require_outside();
|
|
265466
265408
|
var gtr = (version, range2, options) => outside(version, range2, ">", options);
|
|
265467
265409
|
module2.exports = gtr;
|
|
265468
265410
|
}
|
|
265469
265411
|
});
|
|
265470
265412
|
|
|
265471
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265413
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/ltr.js
|
|
265472
265414
|
var require_ltr = __commonJS({
|
|
265473
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265415
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/ltr.js"(exports, module2) {
|
|
265416
|
+
"use strict";
|
|
265474
265417
|
var outside = require_outside();
|
|
265475
265418
|
var ltr = (version, range2, options) => outside(version, range2, "<", options);
|
|
265476
265419
|
module2.exports = ltr;
|
|
265477
265420
|
}
|
|
265478
265421
|
});
|
|
265479
265422
|
|
|
265480
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265423
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/intersects.js
|
|
265481
265424
|
var require_intersects = __commonJS({
|
|
265482
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265425
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/intersects.js"(exports, module2) {
|
|
265426
|
+
"use strict";
|
|
265483
265427
|
var Range = require_range2();
|
|
265484
265428
|
var intersects2 = (r1, r2, options) => {
|
|
265485
265429
|
r1 = new Range(r1, options);
|
|
@@ -265490,9 +265434,10 @@ var require_intersects = __commonJS({
|
|
|
265490
265434
|
}
|
|
265491
265435
|
});
|
|
265492
265436
|
|
|
265493
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265437
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/simplify.js
|
|
265494
265438
|
var require_simplify = __commonJS({
|
|
265495
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265439
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/simplify.js"(exports, module2) {
|
|
265440
|
+
"use strict";
|
|
265496
265441
|
var satisfies = require_satisfies();
|
|
265497
265442
|
var compare = require_compare();
|
|
265498
265443
|
module2.exports = (versions, range2, options) => {
|
|
@@ -265539,9 +265484,10 @@ var require_simplify = __commonJS({
|
|
|
265539
265484
|
}
|
|
265540
265485
|
});
|
|
265541
265486
|
|
|
265542
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265487
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/subset.js
|
|
265543
265488
|
var require_subset = __commonJS({
|
|
265544
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265489
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/subset.js"(exports, module2) {
|
|
265490
|
+
"use strict";
|
|
265545
265491
|
var Range = require_range2();
|
|
265546
265492
|
var Comparator = require_comparator();
|
|
265547
265493
|
var { ANY } = Comparator;
|
|
@@ -265701,9 +265647,10 @@ var require_subset = __commonJS({
|
|
|
265701
265647
|
}
|
|
265702
265648
|
});
|
|
265703
265649
|
|
|
265704
|
-
// ../../node_modules/.pnpm/semver@7.
|
|
265650
|
+
// ../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/index.js
|
|
265705
265651
|
var require_semver2 = __commonJS({
|
|
265706
|
-
"../../node_modules/.pnpm/semver@7.
|
|
265652
|
+
"../../node_modules/.pnpm/semver@7.7.2/node_modules/semver/index.js"(exports, module2) {
|
|
265653
|
+
"use strict";
|
|
265707
265654
|
var internalRe = require_re();
|
|
265708
265655
|
var constants = require_constants6();
|
|
265709
265656
|
var SemVer = require_semver();
|
|
@@ -265730,7 +265677,7 @@ var require_semver2 = __commonJS({
|
|
|
265730
265677
|
var gte = require_gte();
|
|
265731
265678
|
var lte = require_lte();
|
|
265732
265679
|
var cmp = require_cmp();
|
|
265733
|
-
var coerce2 =
|
|
265680
|
+
var coerce2 = require_coerce2();
|
|
265734
265681
|
var Comparator = require_comparator();
|
|
265735
265682
|
var Range = require_range2();
|
|
265736
265683
|
var satisfies = require_satisfies();
|
|
@@ -286669,7 +286616,7 @@ var state = {
|
|
|
286669
286616
|
"title": "Botpress API",
|
|
286670
286617
|
"description": "API for Botpress Cloud",
|
|
286671
286618
|
"server": "https://api.botpress.cloud",
|
|
286672
|
-
"version": "1.
|
|
286619
|
+
"version": "1.44.0",
|
|
286673
286620
|
"prefix": "v1"
|
|
286674
286621
|
},
|
|
286675
286622
|
"errors": [
|
|
@@ -287097,6 +287044,14 @@ var state = {
|
|
|
287097
287044
|
"minLength": 28,
|
|
287098
287045
|
"maxLength": 36
|
|
287099
287046
|
},
|
|
287047
|
+
"integrationAlias": {
|
|
287048
|
+
"type": "string",
|
|
287049
|
+
"maxLength": 200
|
|
287050
|
+
},
|
|
287051
|
+
"integrationInterfaceAlias": {
|
|
287052
|
+
"type": "string",
|
|
287053
|
+
"maxLength": 200
|
|
287054
|
+
},
|
|
287100
287055
|
"interfaceId": {
|
|
287101
287056
|
"type": "string",
|
|
287102
287057
|
"minLength": 28,
|
|
@@ -287105,12 +287060,36 @@ var state = {
|
|
|
287105
287060
|
},
|
|
287106
287061
|
"required": [
|
|
287107
287062
|
"integrationId",
|
|
287063
|
+
"integrationAlias",
|
|
287108
287064
|
"interfaceId"
|
|
287109
287065
|
],
|
|
287110
287066
|
"additionalProperties": false
|
|
287111
287067
|
},
|
|
287112
287068
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
287113
287069
|
},
|
|
287070
|
+
"integrations": {
|
|
287071
|
+
"type": "object",
|
|
287072
|
+
"additionalProperties": {
|
|
287073
|
+
"type": "object",
|
|
287074
|
+
"properties": {
|
|
287075
|
+
"integrationId": {
|
|
287076
|
+
"type": "string",
|
|
287077
|
+
"minLength": 28,
|
|
287078
|
+
"maxLength": 36
|
|
287079
|
+
},
|
|
287080
|
+
"integrationAlias": {
|
|
287081
|
+
"type": "string",
|
|
287082
|
+
"maxLength": 200
|
|
287083
|
+
}
|
|
287084
|
+
},
|
|
287085
|
+
"required": [
|
|
287086
|
+
"integrationId",
|
|
287087
|
+
"integrationAlias"
|
|
287088
|
+
],
|
|
287089
|
+
"additionalProperties": false
|
|
287090
|
+
},
|
|
287091
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
287092
|
+
},
|
|
287114
287093
|
"id": {
|
|
287115
287094
|
"type": "string",
|
|
287116
287095
|
"minLength": 28,
|
|
@@ -288961,6 +288940,10 @@ var state = {
|
|
|
288961
288940
|
},
|
|
288962
288941
|
"handle": {
|
|
288963
288942
|
"type": "string"
|
|
288943
|
+
},
|
|
288944
|
+
"activeTrialId": {
|
|
288945
|
+
"type": "string",
|
|
288946
|
+
"nullable": true
|
|
288964
288947
|
}
|
|
288965
288948
|
},
|
|
288966
288949
|
"required": [
|
|
@@ -288973,7 +288956,8 @@ var state = {
|
|
|
288973
288956
|
"billingVersion",
|
|
288974
288957
|
"plan",
|
|
288975
288958
|
"blocked",
|
|
288976
|
-
"spendingLimit"
|
|
288959
|
+
"spendingLimit",
|
|
288960
|
+
"activeTrialId"
|
|
288977
288961
|
],
|
|
288978
288962
|
"additionalProperties": false
|
|
288979
288963
|
}
|
|
@@ -295629,6 +295613,14 @@ var state2 = {
|
|
|
295629
295613
|
"properties": {
|
|
295630
295614
|
"integrationId": {
|
|
295631
295615
|
"type": "string"
|
|
295616
|
+
},
|
|
295617
|
+
"integrationAlias": {
|
|
295618
|
+
"type": "string",
|
|
295619
|
+
"description": "When an alias is provided, the plugin will use the integration corresponding to this alias. If not provided, the first integration matching the integrationId will be used."
|
|
295620
|
+
},
|
|
295621
|
+
"integrationInterfaceAlias": {
|
|
295622
|
+
"type": "string",
|
|
295623
|
+
"description": "When an alias is provided, the plugin will use the integration interface corresponding to this alias."
|
|
295632
295624
|
}
|
|
295633
295625
|
},
|
|
295634
295626
|
"required": [
|
|
@@ -295637,6 +295629,26 @@ var state2 = {
|
|
|
295637
295629
|
"additionalProperties": false
|
|
295638
295630
|
},
|
|
295639
295631
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
295632
|
+
},
|
|
295633
|
+
"integrations": {
|
|
295634
|
+
"type": "object",
|
|
295635
|
+
"additionalProperties": {
|
|
295636
|
+
"type": "object",
|
|
295637
|
+
"properties": {
|
|
295638
|
+
"integrationId": {
|
|
295639
|
+
"type": "string"
|
|
295640
|
+
},
|
|
295641
|
+
"integrationAlias": {
|
|
295642
|
+
"type": "string"
|
|
295643
|
+
}
|
|
295644
|
+
},
|
|
295645
|
+
"required": [
|
|
295646
|
+
"integrationId",
|
|
295647
|
+
"integrationAlias"
|
|
295648
|
+
],
|
|
295649
|
+
"additionalProperties": false
|
|
295650
|
+
},
|
|
295651
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
295640
295652
|
}
|
|
295641
295653
|
},
|
|
295642
295654
|
"required": [
|
|
@@ -297742,6 +297754,10 @@ var state2 = {
|
|
|
297742
297754
|
},
|
|
297743
297755
|
"handle": {
|
|
297744
297756
|
"type": "string"
|
|
297757
|
+
},
|
|
297758
|
+
"activeTrialId": {
|
|
297759
|
+
"type": "string",
|
|
297760
|
+
"nullable": true
|
|
297745
297761
|
}
|
|
297746
297762
|
},
|
|
297747
297763
|
"required": [
|
|
@@ -297754,7 +297770,8 @@ var state2 = {
|
|
|
297754
297770
|
"billingVersion",
|
|
297755
297771
|
"plan",
|
|
297756
297772
|
"blocked",
|
|
297757
|
-
"spendingLimit"
|
|
297773
|
+
"spendingLimit",
|
|
297774
|
+
"activeTrialId"
|
|
297758
297775
|
],
|
|
297759
297776
|
"title": "createWorkspaceResponse",
|
|
297760
297777
|
"additionalProperties": false
|
|
@@ -297924,6 +297941,10 @@ var state2 = {
|
|
|
297924
297941
|
},
|
|
297925
297942
|
"handle": {
|
|
297926
297943
|
"type": "string"
|
|
297944
|
+
},
|
|
297945
|
+
"activeTrialId": {
|
|
297946
|
+
"type": "string",
|
|
297947
|
+
"nullable": true
|
|
297927
297948
|
}
|
|
297928
297949
|
},
|
|
297929
297950
|
"required": [
|
|
@@ -297936,7 +297957,8 @@ var state2 = {
|
|
|
297936
297957
|
"billingVersion",
|
|
297937
297958
|
"plan",
|
|
297938
297959
|
"blocked",
|
|
297939
|
-
"spendingLimit"
|
|
297960
|
+
"spendingLimit",
|
|
297961
|
+
"activeTrialId"
|
|
297940
297962
|
],
|
|
297941
297963
|
"title": "getWorkspaceResponse",
|
|
297942
297964
|
"additionalProperties": false
|
|
@@ -298439,6 +298461,10 @@ var state2 = {
|
|
|
298439
298461
|
},
|
|
298440
298462
|
"handle": {
|
|
298441
298463
|
"type": "string"
|
|
298464
|
+
},
|
|
298465
|
+
"activeTrialId": {
|
|
298466
|
+
"type": "string",
|
|
298467
|
+
"nullable": true
|
|
298442
298468
|
}
|
|
298443
298469
|
},
|
|
298444
298470
|
"required": [
|
|
@@ -298451,7 +298477,8 @@ var state2 = {
|
|
|
298451
298477
|
"billingVersion",
|
|
298452
298478
|
"plan",
|
|
298453
298479
|
"blocked",
|
|
298454
|
-
"spendingLimit"
|
|
298480
|
+
"spendingLimit",
|
|
298481
|
+
"activeTrialId"
|
|
298455
298482
|
],
|
|
298456
298483
|
"title": "updateWorkspaceResponse",
|
|
298457
298484
|
"additionalProperties": false
|
|
@@ -298615,6 +298642,10 @@ var state2 = {
|
|
|
298615
298642
|
},
|
|
298616
298643
|
"handle": {
|
|
298617
298644
|
"type": "string"
|
|
298645
|
+
},
|
|
298646
|
+
"activeTrialId": {
|
|
298647
|
+
"type": "string",
|
|
298648
|
+
"nullable": true
|
|
298618
298649
|
}
|
|
298619
298650
|
},
|
|
298620
298651
|
"required": [
|
|
@@ -298627,7 +298658,8 @@ var state2 = {
|
|
|
298627
298658
|
"billingVersion",
|
|
298628
298659
|
"plan",
|
|
298629
298660
|
"blocked",
|
|
298630
|
-
"spendingLimit"
|
|
298661
|
+
"spendingLimit",
|
|
298662
|
+
"activeTrialId"
|
|
298631
298663
|
],
|
|
298632
298664
|
"title": "updateWorkspaceResponse"
|
|
298633
298665
|
}
|
|
@@ -304626,7 +304658,7 @@ var state2 = {
|
|
|
304626
304658
|
"title": "Botpress API",
|
|
304627
304659
|
"description": "API for Botpress Cloud",
|
|
304628
304660
|
"server": "https://api.botpress.cloud",
|
|
304629
|
-
"version": "1.
|
|
304661
|
+
"version": "1.44.0",
|
|
304630
304662
|
"prefix": "v1"
|
|
304631
304663
|
},
|
|
304632
304664
|
"errors": [
|
|
@@ -305127,6 +305159,14 @@ var state2 = {
|
|
|
305127
305159
|
"minLength": 28,
|
|
305128
305160
|
"maxLength": 36
|
|
305129
305161
|
},
|
|
305162
|
+
"integrationAlias": {
|
|
305163
|
+
"type": "string",
|
|
305164
|
+
"maxLength": 200
|
|
305165
|
+
},
|
|
305166
|
+
"integrationInterfaceAlias": {
|
|
305167
|
+
"type": "string",
|
|
305168
|
+
"maxLength": 200
|
|
305169
|
+
},
|
|
305130
305170
|
"interfaceId": {
|
|
305131
305171
|
"type": "string",
|
|
305132
305172
|
"minLength": 28,
|
|
@@ -305135,12 +305175,36 @@ var state2 = {
|
|
|
305135
305175
|
},
|
|
305136
305176
|
"required": [
|
|
305137
305177
|
"integrationId",
|
|
305178
|
+
"integrationAlias",
|
|
305138
305179
|
"interfaceId"
|
|
305139
305180
|
],
|
|
305140
305181
|
"additionalProperties": false
|
|
305141
305182
|
},
|
|
305142
305183
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
305143
305184
|
},
|
|
305185
|
+
"integrations": {
|
|
305186
|
+
"type": "object",
|
|
305187
|
+
"additionalProperties": {
|
|
305188
|
+
"type": "object",
|
|
305189
|
+
"properties": {
|
|
305190
|
+
"integrationId": {
|
|
305191
|
+
"type": "string",
|
|
305192
|
+
"minLength": 28,
|
|
305193
|
+
"maxLength": 36
|
|
305194
|
+
},
|
|
305195
|
+
"integrationAlias": {
|
|
305196
|
+
"type": "string",
|
|
305197
|
+
"maxLength": 200
|
|
305198
|
+
}
|
|
305199
|
+
},
|
|
305200
|
+
"required": [
|
|
305201
|
+
"integrationId",
|
|
305202
|
+
"integrationAlias"
|
|
305203
|
+
],
|
|
305204
|
+
"additionalProperties": false
|
|
305205
|
+
},
|
|
305206
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
305207
|
+
},
|
|
305144
305208
|
"id": {
|
|
305145
305209
|
"type": "string",
|
|
305146
305210
|
"minLength": 28,
|
|
@@ -306991,6 +307055,10 @@ var state2 = {
|
|
|
306991
307055
|
},
|
|
306992
307056
|
"handle": {
|
|
306993
307057
|
"type": "string"
|
|
307058
|
+
},
|
|
307059
|
+
"activeTrialId": {
|
|
307060
|
+
"type": "string",
|
|
307061
|
+
"nullable": true
|
|
306994
307062
|
}
|
|
306995
307063
|
},
|
|
306996
307064
|
"required": [
|
|
@@ -307003,7 +307071,8 @@ var state2 = {
|
|
|
307003
307071
|
"billingVersion",
|
|
307004
307072
|
"plan",
|
|
307005
307073
|
"blocked",
|
|
307006
|
-
"spendingLimit"
|
|
307074
|
+
"spendingLimit",
|
|
307075
|
+
"activeTrialId"
|
|
307007
307076
|
],
|
|
307008
307077
|
"additionalProperties": false
|
|
307009
307078
|
}
|
|
@@ -310596,7 +310665,7 @@ var state3 = {
|
|
|
310596
310665
|
"title": "Botpress API",
|
|
310597
310666
|
"description": "API for Botpress Cloud",
|
|
310598
310667
|
"server": "https://api.botpress.cloud",
|
|
310599
|
-
"version": "1.
|
|
310668
|
+
"version": "1.44.0",
|
|
310600
310669
|
"prefix": "v1"
|
|
310601
310670
|
},
|
|
310602
310671
|
"errors": [
|
|
@@ -310977,6 +311046,14 @@ var state3 = {
|
|
|
310977
311046
|
"minLength": 28,
|
|
310978
311047
|
"maxLength": 36
|
|
310979
311048
|
},
|
|
311049
|
+
"integrationAlias": {
|
|
311050
|
+
"type": "string",
|
|
311051
|
+
"maxLength": 200
|
|
311052
|
+
},
|
|
311053
|
+
"integrationInterfaceAlias": {
|
|
311054
|
+
"type": "string",
|
|
311055
|
+
"maxLength": 200
|
|
311056
|
+
},
|
|
310980
311057
|
"interfaceId": {
|
|
310981
311058
|
"type": "string",
|
|
310982
311059
|
"minLength": 28,
|
|
@@ -310985,12 +311062,36 @@ var state3 = {
|
|
|
310985
311062
|
},
|
|
310986
311063
|
"required": [
|
|
310987
311064
|
"integrationId",
|
|
311065
|
+
"integrationAlias",
|
|
310988
311066
|
"interfaceId"
|
|
310989
311067
|
],
|
|
310990
311068
|
"additionalProperties": false
|
|
310991
311069
|
},
|
|
310992
311070
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
310993
311071
|
},
|
|
311072
|
+
"integrations": {
|
|
311073
|
+
"type": "object",
|
|
311074
|
+
"additionalProperties": {
|
|
311075
|
+
"type": "object",
|
|
311076
|
+
"properties": {
|
|
311077
|
+
"integrationId": {
|
|
311078
|
+
"type": "string",
|
|
311079
|
+
"minLength": 28,
|
|
311080
|
+
"maxLength": 36
|
|
311081
|
+
},
|
|
311082
|
+
"integrationAlias": {
|
|
311083
|
+
"type": "string",
|
|
311084
|
+
"maxLength": 200
|
|
311085
|
+
}
|
|
311086
|
+
},
|
|
311087
|
+
"required": [
|
|
311088
|
+
"integrationId",
|
|
311089
|
+
"integrationAlias"
|
|
311090
|
+
],
|
|
311091
|
+
"additionalProperties": false
|
|
311092
|
+
},
|
|
311093
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
311094
|
+
},
|
|
310994
311095
|
"id": {
|
|
310995
311096
|
"type": "string",
|
|
310996
311097
|
"minLength": 28,
|
|
@@ -312841,6 +312942,10 @@ var state3 = {
|
|
|
312841
312942
|
},
|
|
312842
312943
|
"handle": {
|
|
312843
312944
|
"type": "string"
|
|
312945
|
+
},
|
|
312946
|
+
"activeTrialId": {
|
|
312947
|
+
"type": "string",
|
|
312948
|
+
"nullable": true
|
|
312844
312949
|
}
|
|
312845
312950
|
},
|
|
312846
312951
|
"required": [
|
|
@@ -312853,7 +312958,8 @@ var state3 = {
|
|
|
312853
312958
|
"billingVersion",
|
|
312854
312959
|
"plan",
|
|
312855
312960
|
"blocked",
|
|
312856
|
-
"spendingLimit"
|
|
312961
|
+
"spendingLimit",
|
|
312962
|
+
"activeTrialId"
|
|
312857
312963
|
],
|
|
312858
312964
|
"title": "updateWorkspaceResponse",
|
|
312859
312965
|
"additionalProperties": false
|
|
@@ -315695,7 +315801,7 @@ var state4 = {
|
|
|
315695
315801
|
"title": "Botpress API",
|
|
315696
315802
|
"description": "API for Botpress Cloud",
|
|
315697
315803
|
"server": "https://api.botpress.cloud",
|
|
315698
|
-
"version": "1.
|
|
315804
|
+
"version": "1.44.0",
|
|
315699
315805
|
"prefix": "v1"
|
|
315700
315806
|
},
|
|
315701
315807
|
"errors": [
|
|
@@ -316083,6 +316189,14 @@ var state4 = {
|
|
|
316083
316189
|
"minLength": 28,
|
|
316084
316190
|
"maxLength": 36
|
|
316085
316191
|
},
|
|
316192
|
+
"integrationAlias": {
|
|
316193
|
+
"type": "string",
|
|
316194
|
+
"maxLength": 200
|
|
316195
|
+
},
|
|
316196
|
+
"integrationInterfaceAlias": {
|
|
316197
|
+
"type": "string",
|
|
316198
|
+
"maxLength": 200
|
|
316199
|
+
},
|
|
316086
316200
|
"interfaceId": {
|
|
316087
316201
|
"type": "string",
|
|
316088
316202
|
"minLength": 28,
|
|
@@ -316091,12 +316205,36 @@ var state4 = {
|
|
|
316091
316205
|
},
|
|
316092
316206
|
"required": [
|
|
316093
316207
|
"integrationId",
|
|
316208
|
+
"integrationAlias",
|
|
316094
316209
|
"interfaceId"
|
|
316095
316210
|
],
|
|
316096
316211
|
"additionalProperties": false
|
|
316097
316212
|
},
|
|
316098
316213
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
316099
316214
|
},
|
|
316215
|
+
"integrations": {
|
|
316216
|
+
"type": "object",
|
|
316217
|
+
"additionalProperties": {
|
|
316218
|
+
"type": "object",
|
|
316219
|
+
"properties": {
|
|
316220
|
+
"integrationId": {
|
|
316221
|
+
"type": "string",
|
|
316222
|
+
"minLength": 28,
|
|
316223
|
+
"maxLength": 36
|
|
316224
|
+
},
|
|
316225
|
+
"integrationAlias": {
|
|
316226
|
+
"type": "string",
|
|
316227
|
+
"maxLength": 200
|
|
316228
|
+
}
|
|
316229
|
+
},
|
|
316230
|
+
"required": [
|
|
316231
|
+
"integrationId",
|
|
316232
|
+
"integrationAlias"
|
|
316233
|
+
],
|
|
316234
|
+
"additionalProperties": false
|
|
316235
|
+
},
|
|
316236
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
316237
|
+
},
|
|
316100
316238
|
"id": {
|
|
316101
316239
|
"type": "string",
|
|
316102
316240
|
"minLength": 28,
|
|
@@ -317947,6 +318085,10 @@ var state4 = {
|
|
|
317947
318085
|
},
|
|
317948
318086
|
"handle": {
|
|
317949
318087
|
"type": "string"
|
|
318088
|
+
},
|
|
318089
|
+
"activeTrialId": {
|
|
318090
|
+
"type": "string",
|
|
318091
|
+
"nullable": true
|
|
317950
318092
|
}
|
|
317951
318093
|
},
|
|
317952
318094
|
"required": [
|
|
@@ -317959,7 +318101,8 @@ var state4 = {
|
|
|
317959
318101
|
"billingVersion",
|
|
317960
318102
|
"plan",
|
|
317961
318103
|
"blocked",
|
|
317962
|
-
"spendingLimit"
|
|
318104
|
+
"spendingLimit",
|
|
318105
|
+
"activeTrialId"
|
|
317963
318106
|
],
|
|
317964
318107
|
"title": "updateWorkspaceResponse",
|
|
317965
318108
|
"additionalProperties": false
|
|
@@ -327204,6 +327347,14 @@ var state5 = {
|
|
|
327204
327347
|
"properties": {
|
|
327205
327348
|
"integrationId": {
|
|
327206
327349
|
"type": "string"
|
|
327350
|
+
},
|
|
327351
|
+
"integrationAlias": {
|
|
327352
|
+
"type": "string",
|
|
327353
|
+
"description": "When an alias is provided, the plugin will use the integration corresponding to this alias. If not provided, the first integration matching the integrationId will be used."
|
|
327354
|
+
},
|
|
327355
|
+
"integrationInterfaceAlias": {
|
|
327356
|
+
"type": "string",
|
|
327357
|
+
"description": "When an alias is provided, the plugin will use the integration interface corresponding to this alias."
|
|
327207
327358
|
}
|
|
327208
327359
|
},
|
|
327209
327360
|
"required": [
|
|
@@ -327212,6 +327363,26 @@ var state5 = {
|
|
|
327212
327363
|
"additionalProperties": false
|
|
327213
327364
|
},
|
|
327214
327365
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
327366
|
+
},
|
|
327367
|
+
"integrations": {
|
|
327368
|
+
"type": "object",
|
|
327369
|
+
"additionalProperties": {
|
|
327370
|
+
"type": "object",
|
|
327371
|
+
"properties": {
|
|
327372
|
+
"integrationId": {
|
|
327373
|
+
"type": "string"
|
|
327374
|
+
},
|
|
327375
|
+
"integrationAlias": {
|
|
327376
|
+
"type": "string"
|
|
327377
|
+
}
|
|
327378
|
+
},
|
|
327379
|
+
"required": [
|
|
327380
|
+
"integrationId",
|
|
327381
|
+
"integrationAlias"
|
|
327382
|
+
],
|
|
327383
|
+
"additionalProperties": false
|
|
327384
|
+
},
|
|
327385
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
327215
327386
|
}
|
|
327216
327387
|
},
|
|
327217
327388
|
"required": [
|
|
@@ -329317,6 +329488,10 @@ var state5 = {
|
|
|
329317
329488
|
},
|
|
329318
329489
|
"handle": {
|
|
329319
329490
|
"type": "string"
|
|
329491
|
+
},
|
|
329492
|
+
"activeTrialId": {
|
|
329493
|
+
"type": "string",
|
|
329494
|
+
"nullable": true
|
|
329320
329495
|
}
|
|
329321
329496
|
},
|
|
329322
329497
|
"required": [
|
|
@@ -329329,7 +329504,8 @@ var state5 = {
|
|
|
329329
329504
|
"billingVersion",
|
|
329330
329505
|
"plan",
|
|
329331
329506
|
"blocked",
|
|
329332
|
-
"spendingLimit"
|
|
329507
|
+
"spendingLimit",
|
|
329508
|
+
"activeTrialId"
|
|
329333
329509
|
],
|
|
329334
329510
|
"title": "createWorkspaceResponse",
|
|
329335
329511
|
"additionalProperties": false
|
|
@@ -329499,6 +329675,10 @@ var state5 = {
|
|
|
329499
329675
|
},
|
|
329500
329676
|
"handle": {
|
|
329501
329677
|
"type": "string"
|
|
329678
|
+
},
|
|
329679
|
+
"activeTrialId": {
|
|
329680
|
+
"type": "string",
|
|
329681
|
+
"nullable": true
|
|
329502
329682
|
}
|
|
329503
329683
|
},
|
|
329504
329684
|
"required": [
|
|
@@ -329511,7 +329691,8 @@ var state5 = {
|
|
|
329511
329691
|
"billingVersion",
|
|
329512
329692
|
"plan",
|
|
329513
329693
|
"blocked",
|
|
329514
|
-
"spendingLimit"
|
|
329694
|
+
"spendingLimit",
|
|
329695
|
+
"activeTrialId"
|
|
329515
329696
|
],
|
|
329516
329697
|
"title": "getWorkspaceResponse",
|
|
329517
329698
|
"additionalProperties": false
|
|
@@ -330014,6 +330195,10 @@ var state5 = {
|
|
|
330014
330195
|
},
|
|
330015
330196
|
"handle": {
|
|
330016
330197
|
"type": "string"
|
|
330198
|
+
},
|
|
330199
|
+
"activeTrialId": {
|
|
330200
|
+
"type": "string",
|
|
330201
|
+
"nullable": true
|
|
330017
330202
|
}
|
|
330018
330203
|
},
|
|
330019
330204
|
"required": [
|
|
@@ -330026,7 +330211,8 @@ var state5 = {
|
|
|
330026
330211
|
"billingVersion",
|
|
330027
330212
|
"plan",
|
|
330028
330213
|
"blocked",
|
|
330029
|
-
"spendingLimit"
|
|
330214
|
+
"spendingLimit",
|
|
330215
|
+
"activeTrialId"
|
|
330030
330216
|
],
|
|
330031
330217
|
"title": "updateWorkspaceResponse",
|
|
330032
330218
|
"additionalProperties": false
|
|
@@ -330190,6 +330376,10 @@ var state5 = {
|
|
|
330190
330376
|
},
|
|
330191
330377
|
"handle": {
|
|
330192
330378
|
"type": "string"
|
|
330379
|
+
},
|
|
330380
|
+
"activeTrialId": {
|
|
330381
|
+
"type": "string",
|
|
330382
|
+
"nullable": true
|
|
330193
330383
|
}
|
|
330194
330384
|
},
|
|
330195
330385
|
"required": [
|
|
@@ -330202,7 +330392,8 @@ var state5 = {
|
|
|
330202
330392
|
"billingVersion",
|
|
330203
330393
|
"plan",
|
|
330204
330394
|
"blocked",
|
|
330205
|
-
"spendingLimit"
|
|
330395
|
+
"spendingLimit",
|
|
330396
|
+
"activeTrialId"
|
|
330206
330397
|
],
|
|
330207
330398
|
"title": "updateWorkspaceResponse"
|
|
330208
330399
|
}
|
|
@@ -339266,7 +339457,7 @@ var state5 = {
|
|
|
339266
339457
|
"title": "Botpress API",
|
|
339267
339458
|
"description": "API for Botpress Cloud",
|
|
339268
339459
|
"server": "https://api.botpress.cloud",
|
|
339269
|
-
"version": "1.
|
|
339460
|
+
"version": "1.44.0",
|
|
339270
339461
|
"prefix": "v1"
|
|
339271
339462
|
},
|
|
339272
339463
|
"errors": [
|
|
@@ -339884,6 +340075,14 @@ var state5 = {
|
|
|
339884
340075
|
"minLength": 28,
|
|
339885
340076
|
"maxLength": 36
|
|
339886
340077
|
},
|
|
340078
|
+
"integrationAlias": {
|
|
340079
|
+
"type": "string",
|
|
340080
|
+
"maxLength": 200
|
|
340081
|
+
},
|
|
340082
|
+
"integrationInterfaceAlias": {
|
|
340083
|
+
"type": "string",
|
|
340084
|
+
"maxLength": 200
|
|
340085
|
+
},
|
|
339887
340086
|
"interfaceId": {
|
|
339888
340087
|
"type": "string",
|
|
339889
340088
|
"minLength": 28,
|
|
@@ -339892,12 +340091,36 @@ var state5 = {
|
|
|
339892
340091
|
},
|
|
339893
340092
|
"required": [
|
|
339894
340093
|
"integrationId",
|
|
340094
|
+
"integrationAlias",
|
|
339895
340095
|
"interfaceId"
|
|
339896
340096
|
],
|
|
339897
340097
|
"additionalProperties": false
|
|
339898
340098
|
},
|
|
339899
340099
|
"description": "A mapping of plugin interface aliases to their backing integrations"
|
|
339900
340100
|
},
|
|
340101
|
+
"integrations": {
|
|
340102
|
+
"type": "object",
|
|
340103
|
+
"additionalProperties": {
|
|
340104
|
+
"type": "object",
|
|
340105
|
+
"properties": {
|
|
340106
|
+
"integrationId": {
|
|
340107
|
+
"type": "string",
|
|
340108
|
+
"minLength": 28,
|
|
340109
|
+
"maxLength": 36
|
|
340110
|
+
},
|
|
340111
|
+
"integrationAlias": {
|
|
340112
|
+
"type": "string",
|
|
340113
|
+
"maxLength": 200
|
|
340114
|
+
}
|
|
340115
|
+
},
|
|
340116
|
+
"required": [
|
|
340117
|
+
"integrationId",
|
|
340118
|
+
"integrationAlias"
|
|
340119
|
+
],
|
|
340120
|
+
"additionalProperties": false
|
|
340121
|
+
},
|
|
340122
|
+
"description": "A mapping of plugin integration aliases to their backing integrations"
|
|
340123
|
+
},
|
|
339901
340124
|
"id": {
|
|
339902
340125
|
"type": "string",
|
|
339903
340126
|
"minLength": 28,
|
|
@@ -341748,6 +341971,10 @@ var state5 = {
|
|
|
341748
341971
|
},
|
|
341749
341972
|
"handle": {
|
|
341750
341973
|
"type": "string"
|
|
341974
|
+
},
|
|
341975
|
+
"activeTrialId": {
|
|
341976
|
+
"type": "string",
|
|
341977
|
+
"nullable": true
|
|
341751
341978
|
}
|
|
341752
341979
|
},
|
|
341753
341980
|
"required": [
|
|
@@ -341760,7 +341987,8 @@ var state5 = {
|
|
|
341760
341987
|
"billingVersion",
|
|
341761
341988
|
"plan",
|
|
341762
341989
|
"blocked",
|
|
341763
|
-
"spendingLimit"
|
|
341990
|
+
"spendingLimit",
|
|
341991
|
+
"activeTrialId"
|
|
341764
341992
|
],
|
|
341765
341993
|
"title": "updateWorkspaceResponse",
|
|
341766
341994
|
"additionalProperties": false
|