@gammarers/aws-sns-slack-message-lambda-subscription 0.2.10 → 0.2.12

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.
@@ -9134,6 +9134,852 @@ var require_asynckit = __commonJS({
9134
9134
  }
9135
9135
  });
9136
9136
 
9137
+ // node_modules/es-object-atoms/index.js
9138
+ var require_es_object_atoms = __commonJS({
9139
+ "node_modules/es-object-atoms/index.js"(exports2, module2) {
9140
+ "use strict";
9141
+ module2.exports = Object;
9142
+ }
9143
+ });
9144
+
9145
+ // node_modules/es-errors/index.js
9146
+ var require_es_errors = __commonJS({
9147
+ "node_modules/es-errors/index.js"(exports2, module2) {
9148
+ "use strict";
9149
+ module2.exports = Error;
9150
+ }
9151
+ });
9152
+
9153
+ // node_modules/es-errors/eval.js
9154
+ var require_eval = __commonJS({
9155
+ "node_modules/es-errors/eval.js"(exports2, module2) {
9156
+ "use strict";
9157
+ module2.exports = EvalError;
9158
+ }
9159
+ });
9160
+
9161
+ // node_modules/es-errors/range.js
9162
+ var require_range = __commonJS({
9163
+ "node_modules/es-errors/range.js"(exports2, module2) {
9164
+ "use strict";
9165
+ module2.exports = RangeError;
9166
+ }
9167
+ });
9168
+
9169
+ // node_modules/es-errors/ref.js
9170
+ var require_ref = __commonJS({
9171
+ "node_modules/es-errors/ref.js"(exports2, module2) {
9172
+ "use strict";
9173
+ module2.exports = ReferenceError;
9174
+ }
9175
+ });
9176
+
9177
+ // node_modules/es-errors/syntax.js
9178
+ var require_syntax = __commonJS({
9179
+ "node_modules/es-errors/syntax.js"(exports2, module2) {
9180
+ "use strict";
9181
+ module2.exports = SyntaxError;
9182
+ }
9183
+ });
9184
+
9185
+ // node_modules/es-errors/type.js
9186
+ var require_type = __commonJS({
9187
+ "node_modules/es-errors/type.js"(exports2, module2) {
9188
+ "use strict";
9189
+ module2.exports = TypeError;
9190
+ }
9191
+ });
9192
+
9193
+ // node_modules/es-errors/uri.js
9194
+ var require_uri = __commonJS({
9195
+ "node_modules/es-errors/uri.js"(exports2, module2) {
9196
+ "use strict";
9197
+ module2.exports = URIError;
9198
+ }
9199
+ });
9200
+
9201
+ // node_modules/math-intrinsics/abs.js
9202
+ var require_abs = __commonJS({
9203
+ "node_modules/math-intrinsics/abs.js"(exports2, module2) {
9204
+ "use strict";
9205
+ module2.exports = Math.abs;
9206
+ }
9207
+ });
9208
+
9209
+ // node_modules/math-intrinsics/floor.js
9210
+ var require_floor = __commonJS({
9211
+ "node_modules/math-intrinsics/floor.js"(exports2, module2) {
9212
+ "use strict";
9213
+ module2.exports = Math.floor;
9214
+ }
9215
+ });
9216
+
9217
+ // node_modules/math-intrinsics/max.js
9218
+ var require_max = __commonJS({
9219
+ "node_modules/math-intrinsics/max.js"(exports2, module2) {
9220
+ "use strict";
9221
+ module2.exports = Math.max;
9222
+ }
9223
+ });
9224
+
9225
+ // node_modules/math-intrinsics/min.js
9226
+ var require_min = __commonJS({
9227
+ "node_modules/math-intrinsics/min.js"(exports2, module2) {
9228
+ "use strict";
9229
+ module2.exports = Math.min;
9230
+ }
9231
+ });
9232
+
9233
+ // node_modules/math-intrinsics/pow.js
9234
+ var require_pow = __commonJS({
9235
+ "node_modules/math-intrinsics/pow.js"(exports2, module2) {
9236
+ "use strict";
9237
+ module2.exports = Math.pow;
9238
+ }
9239
+ });
9240
+
9241
+ // node_modules/math-intrinsics/round.js
9242
+ var require_round = __commonJS({
9243
+ "node_modules/math-intrinsics/round.js"(exports2, module2) {
9244
+ "use strict";
9245
+ module2.exports = Math.round;
9246
+ }
9247
+ });
9248
+
9249
+ // node_modules/math-intrinsics/isNaN.js
9250
+ var require_isNaN = __commonJS({
9251
+ "node_modules/math-intrinsics/isNaN.js"(exports2, module2) {
9252
+ "use strict";
9253
+ module2.exports = Number.isNaN || function isNaN2(a) {
9254
+ return a !== a;
9255
+ };
9256
+ }
9257
+ });
9258
+
9259
+ // node_modules/math-intrinsics/sign.js
9260
+ var require_sign = __commonJS({
9261
+ "node_modules/math-intrinsics/sign.js"(exports2, module2) {
9262
+ "use strict";
9263
+ var $isNaN = require_isNaN();
9264
+ module2.exports = function sign(number) {
9265
+ if ($isNaN(number) || number === 0) {
9266
+ return number;
9267
+ }
9268
+ return number < 0 ? -1 : 1;
9269
+ };
9270
+ }
9271
+ });
9272
+
9273
+ // node_modules/gopd/gOPD.js
9274
+ var require_gOPD = __commonJS({
9275
+ "node_modules/gopd/gOPD.js"(exports2, module2) {
9276
+ "use strict";
9277
+ module2.exports = Object.getOwnPropertyDescriptor;
9278
+ }
9279
+ });
9280
+
9281
+ // node_modules/gopd/index.js
9282
+ var require_gopd = __commonJS({
9283
+ "node_modules/gopd/index.js"(exports2, module2) {
9284
+ "use strict";
9285
+ var $gOPD = require_gOPD();
9286
+ if ($gOPD) {
9287
+ try {
9288
+ $gOPD([], "length");
9289
+ } catch (e) {
9290
+ $gOPD = null;
9291
+ }
9292
+ }
9293
+ module2.exports = $gOPD;
9294
+ }
9295
+ });
9296
+
9297
+ // node_modules/es-define-property/index.js
9298
+ var require_es_define_property = __commonJS({
9299
+ "node_modules/es-define-property/index.js"(exports2, module2) {
9300
+ "use strict";
9301
+ var $defineProperty = Object.defineProperty || false;
9302
+ if ($defineProperty) {
9303
+ try {
9304
+ $defineProperty({}, "a", { value: 1 });
9305
+ } catch (e) {
9306
+ $defineProperty = false;
9307
+ }
9308
+ }
9309
+ module2.exports = $defineProperty;
9310
+ }
9311
+ });
9312
+
9313
+ // node_modules/has-symbols/shams.js
9314
+ var require_shams = __commonJS({
9315
+ "node_modules/has-symbols/shams.js"(exports2, module2) {
9316
+ "use strict";
9317
+ module2.exports = function hasSymbols() {
9318
+ if (typeof Symbol !== "function" || typeof Object.getOwnPropertySymbols !== "function") {
9319
+ return false;
9320
+ }
9321
+ if (typeof Symbol.iterator === "symbol") {
9322
+ return true;
9323
+ }
9324
+ var obj = {};
9325
+ var sym = Symbol("test");
9326
+ var symObj = Object(sym);
9327
+ if (typeof sym === "string") {
9328
+ return false;
9329
+ }
9330
+ if (Object.prototype.toString.call(sym) !== "[object Symbol]") {
9331
+ return false;
9332
+ }
9333
+ if (Object.prototype.toString.call(symObj) !== "[object Symbol]") {
9334
+ return false;
9335
+ }
9336
+ var symVal = 42;
9337
+ obj[sym] = symVal;
9338
+ for (var _ in obj) {
9339
+ return false;
9340
+ }
9341
+ if (typeof Object.keys === "function" && Object.keys(obj).length !== 0) {
9342
+ return false;
9343
+ }
9344
+ if (typeof Object.getOwnPropertyNames === "function" && Object.getOwnPropertyNames(obj).length !== 0) {
9345
+ return false;
9346
+ }
9347
+ var syms = Object.getOwnPropertySymbols(obj);
9348
+ if (syms.length !== 1 || syms[0] !== sym) {
9349
+ return false;
9350
+ }
9351
+ if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) {
9352
+ return false;
9353
+ }
9354
+ if (typeof Object.getOwnPropertyDescriptor === "function") {
9355
+ var descriptor = (
9356
+ /** @type {PropertyDescriptor} */
9357
+ Object.getOwnPropertyDescriptor(obj, sym)
9358
+ );
9359
+ if (descriptor.value !== symVal || descriptor.enumerable !== true) {
9360
+ return false;
9361
+ }
9362
+ }
9363
+ return true;
9364
+ };
9365
+ }
9366
+ });
9367
+
9368
+ // node_modules/has-symbols/index.js
9369
+ var require_has_symbols = __commonJS({
9370
+ "node_modules/has-symbols/index.js"(exports2, module2) {
9371
+ "use strict";
9372
+ var origSymbol = typeof Symbol !== "undefined" && Symbol;
9373
+ var hasSymbolSham = require_shams();
9374
+ module2.exports = function hasNativeSymbols() {
9375
+ if (typeof origSymbol !== "function") {
9376
+ return false;
9377
+ }
9378
+ if (typeof Symbol !== "function") {
9379
+ return false;
9380
+ }
9381
+ if (typeof origSymbol("foo") !== "symbol") {
9382
+ return false;
9383
+ }
9384
+ if (typeof Symbol("bar") !== "symbol") {
9385
+ return false;
9386
+ }
9387
+ return hasSymbolSham();
9388
+ };
9389
+ }
9390
+ });
9391
+
9392
+ // node_modules/get-proto/Reflect.getPrototypeOf.js
9393
+ var require_Reflect_getPrototypeOf = __commonJS({
9394
+ "node_modules/get-proto/Reflect.getPrototypeOf.js"(exports2, module2) {
9395
+ "use strict";
9396
+ module2.exports = typeof Reflect !== "undefined" && Reflect.getPrototypeOf || null;
9397
+ }
9398
+ });
9399
+
9400
+ // node_modules/get-proto/Object.getPrototypeOf.js
9401
+ var require_Object_getPrototypeOf = __commonJS({
9402
+ "node_modules/get-proto/Object.getPrototypeOf.js"(exports2, module2) {
9403
+ "use strict";
9404
+ var $Object = require_es_object_atoms();
9405
+ module2.exports = $Object.getPrototypeOf || null;
9406
+ }
9407
+ });
9408
+
9409
+ // node_modules/function-bind/implementation.js
9410
+ var require_implementation = __commonJS({
9411
+ "node_modules/function-bind/implementation.js"(exports2, module2) {
9412
+ "use strict";
9413
+ var ERROR_MESSAGE = "Function.prototype.bind called on incompatible ";
9414
+ var toStr = Object.prototype.toString;
9415
+ var max = Math.max;
9416
+ var funcType = "[object Function]";
9417
+ var concatty = function concatty2(a, b) {
9418
+ var arr = [];
9419
+ for (var i = 0; i < a.length; i += 1) {
9420
+ arr[i] = a[i];
9421
+ }
9422
+ for (var j = 0; j < b.length; j += 1) {
9423
+ arr[j + a.length] = b[j];
9424
+ }
9425
+ return arr;
9426
+ };
9427
+ var slicy = function slicy2(arrLike, offset) {
9428
+ var arr = [];
9429
+ for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) {
9430
+ arr[j] = arrLike[i];
9431
+ }
9432
+ return arr;
9433
+ };
9434
+ var joiny = function(arr, joiner) {
9435
+ var str = "";
9436
+ for (var i = 0; i < arr.length; i += 1) {
9437
+ str += arr[i];
9438
+ if (i + 1 < arr.length) {
9439
+ str += joiner;
9440
+ }
9441
+ }
9442
+ return str;
9443
+ };
9444
+ module2.exports = function bind2(that) {
9445
+ var target = this;
9446
+ if (typeof target !== "function" || toStr.apply(target) !== funcType) {
9447
+ throw new TypeError(ERROR_MESSAGE + target);
9448
+ }
9449
+ var args = slicy(arguments, 1);
9450
+ var bound;
9451
+ var binder = function() {
9452
+ if (this instanceof bound) {
9453
+ var result = target.apply(
9454
+ this,
9455
+ concatty(args, arguments)
9456
+ );
9457
+ if (Object(result) === result) {
9458
+ return result;
9459
+ }
9460
+ return this;
9461
+ }
9462
+ return target.apply(
9463
+ that,
9464
+ concatty(args, arguments)
9465
+ );
9466
+ };
9467
+ var boundLength = max(0, target.length - args.length);
9468
+ var boundArgs = [];
9469
+ for (var i = 0; i < boundLength; i++) {
9470
+ boundArgs[i] = "$" + i;
9471
+ }
9472
+ bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
9473
+ if (target.prototype) {
9474
+ var Empty = function Empty2() {
9475
+ };
9476
+ Empty.prototype = target.prototype;
9477
+ bound.prototype = new Empty();
9478
+ Empty.prototype = null;
9479
+ }
9480
+ return bound;
9481
+ };
9482
+ }
9483
+ });
9484
+
9485
+ // node_modules/function-bind/index.js
9486
+ var require_function_bind = __commonJS({
9487
+ "node_modules/function-bind/index.js"(exports2, module2) {
9488
+ "use strict";
9489
+ var implementation = require_implementation();
9490
+ module2.exports = Function.prototype.bind || implementation;
9491
+ }
9492
+ });
9493
+
9494
+ // node_modules/call-bind-apply-helpers/functionCall.js
9495
+ var require_functionCall = __commonJS({
9496
+ "node_modules/call-bind-apply-helpers/functionCall.js"(exports2, module2) {
9497
+ "use strict";
9498
+ module2.exports = Function.prototype.call;
9499
+ }
9500
+ });
9501
+
9502
+ // node_modules/call-bind-apply-helpers/functionApply.js
9503
+ var require_functionApply = __commonJS({
9504
+ "node_modules/call-bind-apply-helpers/functionApply.js"(exports2, module2) {
9505
+ "use strict";
9506
+ module2.exports = Function.prototype.apply;
9507
+ }
9508
+ });
9509
+
9510
+ // node_modules/call-bind-apply-helpers/reflectApply.js
9511
+ var require_reflectApply = __commonJS({
9512
+ "node_modules/call-bind-apply-helpers/reflectApply.js"(exports2, module2) {
9513
+ "use strict";
9514
+ module2.exports = typeof Reflect !== "undefined" && Reflect && Reflect.apply;
9515
+ }
9516
+ });
9517
+
9518
+ // node_modules/call-bind-apply-helpers/actualApply.js
9519
+ var require_actualApply = __commonJS({
9520
+ "node_modules/call-bind-apply-helpers/actualApply.js"(exports2, module2) {
9521
+ "use strict";
9522
+ var bind2 = require_function_bind();
9523
+ var $apply = require_functionApply();
9524
+ var $call = require_functionCall();
9525
+ var $reflectApply = require_reflectApply();
9526
+ module2.exports = $reflectApply || bind2.call($call, $apply);
9527
+ }
9528
+ });
9529
+
9530
+ // node_modules/call-bind-apply-helpers/index.js
9531
+ var require_call_bind_apply_helpers = __commonJS({
9532
+ "node_modules/call-bind-apply-helpers/index.js"(exports2, module2) {
9533
+ "use strict";
9534
+ var bind2 = require_function_bind();
9535
+ var $TypeError = require_type();
9536
+ var $call = require_functionCall();
9537
+ var $actualApply = require_actualApply();
9538
+ module2.exports = function callBindBasic(args) {
9539
+ if (args.length < 1 || typeof args[0] !== "function") {
9540
+ throw new $TypeError("a function is required");
9541
+ }
9542
+ return $actualApply(bind2, $call, args);
9543
+ };
9544
+ }
9545
+ });
9546
+
9547
+ // node_modules/dunder-proto/get.js
9548
+ var require_get = __commonJS({
9549
+ "node_modules/dunder-proto/get.js"(exports2, module2) {
9550
+ "use strict";
9551
+ var callBind = require_call_bind_apply_helpers();
9552
+ var gOPD = require_gopd();
9553
+ var hasProtoAccessor;
9554
+ try {
9555
+ hasProtoAccessor = /** @type {{ __proto__?: typeof Array.prototype }} */
9556
+ [].__proto__ === Array.prototype;
9557
+ } catch (e) {
9558
+ if (!e || typeof e !== "object" || !("code" in e) || e.code !== "ERR_PROTO_ACCESS") {
9559
+ throw e;
9560
+ }
9561
+ }
9562
+ var desc = !!hasProtoAccessor && gOPD && gOPD(
9563
+ Object.prototype,
9564
+ /** @type {keyof typeof Object.prototype} */
9565
+ "__proto__"
9566
+ );
9567
+ var $Object = Object;
9568
+ var $getPrototypeOf = $Object.getPrototypeOf;
9569
+ module2.exports = desc && typeof desc.get === "function" ? callBind([desc.get]) : typeof $getPrototypeOf === "function" ? (
9570
+ /** @type {import('./get')} */
9571
+ function getDunder(value) {
9572
+ return $getPrototypeOf(value == null ? value : $Object(value));
9573
+ }
9574
+ ) : false;
9575
+ }
9576
+ });
9577
+
9578
+ // node_modules/get-proto/index.js
9579
+ var require_get_proto = __commonJS({
9580
+ "node_modules/get-proto/index.js"(exports2, module2) {
9581
+ "use strict";
9582
+ var reflectGetProto = require_Reflect_getPrototypeOf();
9583
+ var originalGetProto = require_Object_getPrototypeOf();
9584
+ var getDunderProto = require_get();
9585
+ module2.exports = reflectGetProto ? function getProto(O) {
9586
+ return reflectGetProto(O);
9587
+ } : originalGetProto ? function getProto(O) {
9588
+ if (!O || typeof O !== "object" && typeof O !== "function") {
9589
+ throw new TypeError("getProto: not an object");
9590
+ }
9591
+ return originalGetProto(O);
9592
+ } : getDunderProto ? function getProto(O) {
9593
+ return getDunderProto(O);
9594
+ } : null;
9595
+ }
9596
+ });
9597
+
9598
+ // node_modules/hasown/index.js
9599
+ var require_hasown = __commonJS({
9600
+ "node_modules/hasown/index.js"(exports2, module2) {
9601
+ "use strict";
9602
+ var call = Function.prototype.call;
9603
+ var $hasOwn = Object.prototype.hasOwnProperty;
9604
+ var bind2 = require_function_bind();
9605
+ module2.exports = bind2.call(call, $hasOwn);
9606
+ }
9607
+ });
9608
+
9609
+ // node_modules/get-intrinsic/index.js
9610
+ var require_get_intrinsic = __commonJS({
9611
+ "node_modules/get-intrinsic/index.js"(exports2, module2) {
9612
+ "use strict";
9613
+ var undefined2;
9614
+ var $Object = require_es_object_atoms();
9615
+ var $Error = require_es_errors();
9616
+ var $EvalError = require_eval();
9617
+ var $RangeError = require_range();
9618
+ var $ReferenceError = require_ref();
9619
+ var $SyntaxError = require_syntax();
9620
+ var $TypeError = require_type();
9621
+ var $URIError = require_uri();
9622
+ var abs = require_abs();
9623
+ var floor = require_floor();
9624
+ var max = require_max();
9625
+ var min = require_min();
9626
+ var pow = require_pow();
9627
+ var round = require_round();
9628
+ var sign = require_sign();
9629
+ var $Function = Function;
9630
+ var getEvalledConstructor = function(expressionSyntax) {
9631
+ try {
9632
+ return $Function('"use strict"; return (' + expressionSyntax + ").constructor;")();
9633
+ } catch (e) {
9634
+ }
9635
+ };
9636
+ var $gOPD = require_gopd();
9637
+ var $defineProperty = require_es_define_property();
9638
+ var throwTypeError = function() {
9639
+ throw new $TypeError();
9640
+ };
9641
+ var ThrowTypeError = $gOPD ? function() {
9642
+ try {
9643
+ arguments.callee;
9644
+ return throwTypeError;
9645
+ } catch (calleeThrows) {
9646
+ try {
9647
+ return $gOPD(arguments, "callee").get;
9648
+ } catch (gOPDthrows) {
9649
+ return throwTypeError;
9650
+ }
9651
+ }
9652
+ }() : throwTypeError;
9653
+ var hasSymbols = require_has_symbols()();
9654
+ var getProto = require_get_proto();
9655
+ var $ObjectGPO = require_Object_getPrototypeOf();
9656
+ var $ReflectGPO = require_Reflect_getPrototypeOf();
9657
+ var $apply = require_functionApply();
9658
+ var $call = require_functionCall();
9659
+ var needsEval = {};
9660
+ var TypedArray = typeof Uint8Array === "undefined" || !getProto ? undefined2 : getProto(Uint8Array);
9661
+ var INTRINSICS = {
9662
+ __proto__: null,
9663
+ "%AggregateError%": typeof AggregateError === "undefined" ? undefined2 : AggregateError,
9664
+ "%Array%": Array,
9665
+ "%ArrayBuffer%": typeof ArrayBuffer === "undefined" ? undefined2 : ArrayBuffer,
9666
+ "%ArrayIteratorPrototype%": hasSymbols && getProto ? getProto([][Symbol.iterator]()) : undefined2,
9667
+ "%AsyncFromSyncIteratorPrototype%": undefined2,
9668
+ "%AsyncFunction%": needsEval,
9669
+ "%AsyncGenerator%": needsEval,
9670
+ "%AsyncGeneratorFunction%": needsEval,
9671
+ "%AsyncIteratorPrototype%": needsEval,
9672
+ "%Atomics%": typeof Atomics === "undefined" ? undefined2 : Atomics,
9673
+ "%BigInt%": typeof BigInt === "undefined" ? undefined2 : BigInt,
9674
+ "%BigInt64Array%": typeof BigInt64Array === "undefined" ? undefined2 : BigInt64Array,
9675
+ "%BigUint64Array%": typeof BigUint64Array === "undefined" ? undefined2 : BigUint64Array,
9676
+ "%Boolean%": Boolean,
9677
+ "%DataView%": typeof DataView === "undefined" ? undefined2 : DataView,
9678
+ "%Date%": Date,
9679
+ "%decodeURI%": decodeURI,
9680
+ "%decodeURIComponent%": decodeURIComponent,
9681
+ "%encodeURI%": encodeURI,
9682
+ "%encodeURIComponent%": encodeURIComponent,
9683
+ "%Error%": $Error,
9684
+ "%eval%": eval,
9685
+ // eslint-disable-line no-eval
9686
+ "%EvalError%": $EvalError,
9687
+ "%Float16Array%": typeof Float16Array === "undefined" ? undefined2 : Float16Array,
9688
+ "%Float32Array%": typeof Float32Array === "undefined" ? undefined2 : Float32Array,
9689
+ "%Float64Array%": typeof Float64Array === "undefined" ? undefined2 : Float64Array,
9690
+ "%FinalizationRegistry%": typeof FinalizationRegistry === "undefined" ? undefined2 : FinalizationRegistry,
9691
+ "%Function%": $Function,
9692
+ "%GeneratorFunction%": needsEval,
9693
+ "%Int8Array%": typeof Int8Array === "undefined" ? undefined2 : Int8Array,
9694
+ "%Int16Array%": typeof Int16Array === "undefined" ? undefined2 : Int16Array,
9695
+ "%Int32Array%": typeof Int32Array === "undefined" ? undefined2 : Int32Array,
9696
+ "%isFinite%": isFinite,
9697
+ "%isNaN%": isNaN,
9698
+ "%IteratorPrototype%": hasSymbols && getProto ? getProto(getProto([][Symbol.iterator]())) : undefined2,
9699
+ "%JSON%": typeof JSON === "object" ? JSON : undefined2,
9700
+ "%Map%": typeof Map === "undefined" ? undefined2 : Map,
9701
+ "%MapIteratorPrototype%": typeof Map === "undefined" || !hasSymbols || !getProto ? undefined2 : getProto((/* @__PURE__ */ new Map())[Symbol.iterator]()),
9702
+ "%Math%": Math,
9703
+ "%Number%": Number,
9704
+ "%Object%": $Object,
9705
+ "%Object.getOwnPropertyDescriptor%": $gOPD,
9706
+ "%parseFloat%": parseFloat,
9707
+ "%parseInt%": parseInt,
9708
+ "%Promise%": typeof Promise === "undefined" ? undefined2 : Promise,
9709
+ "%Proxy%": typeof Proxy === "undefined" ? undefined2 : Proxy,
9710
+ "%RangeError%": $RangeError,
9711
+ "%ReferenceError%": $ReferenceError,
9712
+ "%Reflect%": typeof Reflect === "undefined" ? undefined2 : Reflect,
9713
+ "%RegExp%": RegExp,
9714
+ "%Set%": typeof Set === "undefined" ? undefined2 : Set,
9715
+ "%SetIteratorPrototype%": typeof Set === "undefined" || !hasSymbols || !getProto ? undefined2 : getProto((/* @__PURE__ */ new Set())[Symbol.iterator]()),
9716
+ "%SharedArrayBuffer%": typeof SharedArrayBuffer === "undefined" ? undefined2 : SharedArrayBuffer,
9717
+ "%String%": String,
9718
+ "%StringIteratorPrototype%": hasSymbols && getProto ? getProto(""[Symbol.iterator]()) : undefined2,
9719
+ "%Symbol%": hasSymbols ? Symbol : undefined2,
9720
+ "%SyntaxError%": $SyntaxError,
9721
+ "%ThrowTypeError%": ThrowTypeError,
9722
+ "%TypedArray%": TypedArray,
9723
+ "%TypeError%": $TypeError,
9724
+ "%Uint8Array%": typeof Uint8Array === "undefined" ? undefined2 : Uint8Array,
9725
+ "%Uint8ClampedArray%": typeof Uint8ClampedArray === "undefined" ? undefined2 : Uint8ClampedArray,
9726
+ "%Uint16Array%": typeof Uint16Array === "undefined" ? undefined2 : Uint16Array,
9727
+ "%Uint32Array%": typeof Uint32Array === "undefined" ? undefined2 : Uint32Array,
9728
+ "%URIError%": $URIError,
9729
+ "%WeakMap%": typeof WeakMap === "undefined" ? undefined2 : WeakMap,
9730
+ "%WeakRef%": typeof WeakRef === "undefined" ? undefined2 : WeakRef,
9731
+ "%WeakSet%": typeof WeakSet === "undefined" ? undefined2 : WeakSet,
9732
+ "%Function.prototype.call%": $call,
9733
+ "%Function.prototype.apply%": $apply,
9734
+ "%Object.defineProperty%": $defineProperty,
9735
+ "%Object.getPrototypeOf%": $ObjectGPO,
9736
+ "%Math.abs%": abs,
9737
+ "%Math.floor%": floor,
9738
+ "%Math.max%": max,
9739
+ "%Math.min%": min,
9740
+ "%Math.pow%": pow,
9741
+ "%Math.round%": round,
9742
+ "%Math.sign%": sign,
9743
+ "%Reflect.getPrototypeOf%": $ReflectGPO
9744
+ };
9745
+ if (getProto) {
9746
+ try {
9747
+ null.error;
9748
+ } catch (e) {
9749
+ errorProto = getProto(getProto(e));
9750
+ INTRINSICS["%Error.prototype%"] = errorProto;
9751
+ }
9752
+ }
9753
+ var errorProto;
9754
+ var doEval = function doEval2(name) {
9755
+ var value;
9756
+ if (name === "%AsyncFunction%") {
9757
+ value = getEvalledConstructor("async function () {}");
9758
+ } else if (name === "%GeneratorFunction%") {
9759
+ value = getEvalledConstructor("function* () {}");
9760
+ } else if (name === "%AsyncGeneratorFunction%") {
9761
+ value = getEvalledConstructor("async function* () {}");
9762
+ } else if (name === "%AsyncGenerator%") {
9763
+ var fn = doEval2("%AsyncGeneratorFunction%");
9764
+ if (fn) {
9765
+ value = fn.prototype;
9766
+ }
9767
+ } else if (name === "%AsyncIteratorPrototype%") {
9768
+ var gen = doEval2("%AsyncGenerator%");
9769
+ if (gen && getProto) {
9770
+ value = getProto(gen.prototype);
9771
+ }
9772
+ }
9773
+ INTRINSICS[name] = value;
9774
+ return value;
9775
+ };
9776
+ var LEGACY_ALIASES = {
9777
+ __proto__: null,
9778
+ "%ArrayBufferPrototype%": ["ArrayBuffer", "prototype"],
9779
+ "%ArrayPrototype%": ["Array", "prototype"],
9780
+ "%ArrayProto_entries%": ["Array", "prototype", "entries"],
9781
+ "%ArrayProto_forEach%": ["Array", "prototype", "forEach"],
9782
+ "%ArrayProto_keys%": ["Array", "prototype", "keys"],
9783
+ "%ArrayProto_values%": ["Array", "prototype", "values"],
9784
+ "%AsyncFunctionPrototype%": ["AsyncFunction", "prototype"],
9785
+ "%AsyncGenerator%": ["AsyncGeneratorFunction", "prototype"],
9786
+ "%AsyncGeneratorPrototype%": ["AsyncGeneratorFunction", "prototype", "prototype"],
9787
+ "%BooleanPrototype%": ["Boolean", "prototype"],
9788
+ "%DataViewPrototype%": ["DataView", "prototype"],
9789
+ "%DatePrototype%": ["Date", "prototype"],
9790
+ "%ErrorPrototype%": ["Error", "prototype"],
9791
+ "%EvalErrorPrototype%": ["EvalError", "prototype"],
9792
+ "%Float32ArrayPrototype%": ["Float32Array", "prototype"],
9793
+ "%Float64ArrayPrototype%": ["Float64Array", "prototype"],
9794
+ "%FunctionPrototype%": ["Function", "prototype"],
9795
+ "%Generator%": ["GeneratorFunction", "prototype"],
9796
+ "%GeneratorPrototype%": ["GeneratorFunction", "prototype", "prototype"],
9797
+ "%Int8ArrayPrototype%": ["Int8Array", "prototype"],
9798
+ "%Int16ArrayPrototype%": ["Int16Array", "prototype"],
9799
+ "%Int32ArrayPrototype%": ["Int32Array", "prototype"],
9800
+ "%JSONParse%": ["JSON", "parse"],
9801
+ "%JSONStringify%": ["JSON", "stringify"],
9802
+ "%MapPrototype%": ["Map", "prototype"],
9803
+ "%NumberPrototype%": ["Number", "prototype"],
9804
+ "%ObjectPrototype%": ["Object", "prototype"],
9805
+ "%ObjProto_toString%": ["Object", "prototype", "toString"],
9806
+ "%ObjProto_valueOf%": ["Object", "prototype", "valueOf"],
9807
+ "%PromisePrototype%": ["Promise", "prototype"],
9808
+ "%PromiseProto_then%": ["Promise", "prototype", "then"],
9809
+ "%Promise_all%": ["Promise", "all"],
9810
+ "%Promise_reject%": ["Promise", "reject"],
9811
+ "%Promise_resolve%": ["Promise", "resolve"],
9812
+ "%RangeErrorPrototype%": ["RangeError", "prototype"],
9813
+ "%ReferenceErrorPrototype%": ["ReferenceError", "prototype"],
9814
+ "%RegExpPrototype%": ["RegExp", "prototype"],
9815
+ "%SetPrototype%": ["Set", "prototype"],
9816
+ "%SharedArrayBufferPrototype%": ["SharedArrayBuffer", "prototype"],
9817
+ "%StringPrototype%": ["String", "prototype"],
9818
+ "%SymbolPrototype%": ["Symbol", "prototype"],
9819
+ "%SyntaxErrorPrototype%": ["SyntaxError", "prototype"],
9820
+ "%TypedArrayPrototype%": ["TypedArray", "prototype"],
9821
+ "%TypeErrorPrototype%": ["TypeError", "prototype"],
9822
+ "%Uint8ArrayPrototype%": ["Uint8Array", "prototype"],
9823
+ "%Uint8ClampedArrayPrototype%": ["Uint8ClampedArray", "prototype"],
9824
+ "%Uint16ArrayPrototype%": ["Uint16Array", "prototype"],
9825
+ "%Uint32ArrayPrototype%": ["Uint32Array", "prototype"],
9826
+ "%URIErrorPrototype%": ["URIError", "prototype"],
9827
+ "%WeakMapPrototype%": ["WeakMap", "prototype"],
9828
+ "%WeakSetPrototype%": ["WeakSet", "prototype"]
9829
+ };
9830
+ var bind2 = require_function_bind();
9831
+ var hasOwn = require_hasown();
9832
+ var $concat = bind2.call($call, Array.prototype.concat);
9833
+ var $spliceApply = bind2.call($apply, Array.prototype.splice);
9834
+ var $replace = bind2.call($call, String.prototype.replace);
9835
+ var $strSlice = bind2.call($call, String.prototype.slice);
9836
+ var $exec = bind2.call($call, RegExp.prototype.exec);
9837
+ var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
9838
+ var reEscapeChar = /\\(\\)?/g;
9839
+ var stringToPath = function stringToPath2(string) {
9840
+ var first = $strSlice(string, 0, 1);
9841
+ var last = $strSlice(string, -1);
9842
+ if (first === "%" && last !== "%") {
9843
+ throw new $SyntaxError("invalid intrinsic syntax, expected closing `%`");
9844
+ } else if (last === "%" && first !== "%") {
9845
+ throw new $SyntaxError("invalid intrinsic syntax, expected opening `%`");
9846
+ }
9847
+ var result = [];
9848
+ $replace(string, rePropName, function(match, number, quote, subString) {
9849
+ result[result.length] = quote ? $replace(subString, reEscapeChar, "$1") : number || match;
9850
+ });
9851
+ return result;
9852
+ };
9853
+ var getBaseIntrinsic = function getBaseIntrinsic2(name, allowMissing) {
9854
+ var intrinsicName = name;
9855
+ var alias;
9856
+ if (hasOwn(LEGACY_ALIASES, intrinsicName)) {
9857
+ alias = LEGACY_ALIASES[intrinsicName];
9858
+ intrinsicName = "%" + alias[0] + "%";
9859
+ }
9860
+ if (hasOwn(INTRINSICS, intrinsicName)) {
9861
+ var value = INTRINSICS[intrinsicName];
9862
+ if (value === needsEval) {
9863
+ value = doEval(intrinsicName);
9864
+ }
9865
+ if (typeof value === "undefined" && !allowMissing) {
9866
+ throw new $TypeError("intrinsic " + name + " exists, but is not available. Please file an issue!");
9867
+ }
9868
+ return {
9869
+ alias,
9870
+ name: intrinsicName,
9871
+ value
9872
+ };
9873
+ }
9874
+ throw new $SyntaxError("intrinsic " + name + " does not exist!");
9875
+ };
9876
+ module2.exports = function GetIntrinsic(name, allowMissing) {
9877
+ if (typeof name !== "string" || name.length === 0) {
9878
+ throw new $TypeError("intrinsic name must be a non-empty string");
9879
+ }
9880
+ if (arguments.length > 1 && typeof allowMissing !== "boolean") {
9881
+ throw new $TypeError('"allowMissing" argument must be a boolean');
9882
+ }
9883
+ if ($exec(/^%?[^%]*%?$/, name) === null) {
9884
+ throw new $SyntaxError("`%` may not be present anywhere but at the beginning and end of the intrinsic name");
9885
+ }
9886
+ var parts = stringToPath(name);
9887
+ var intrinsicBaseName = parts.length > 0 ? parts[0] : "";
9888
+ var intrinsic = getBaseIntrinsic("%" + intrinsicBaseName + "%", allowMissing);
9889
+ var intrinsicRealName = intrinsic.name;
9890
+ var value = intrinsic.value;
9891
+ var skipFurtherCaching = false;
9892
+ var alias = intrinsic.alias;
9893
+ if (alias) {
9894
+ intrinsicBaseName = alias[0];
9895
+ $spliceApply(parts, $concat([0, 1], alias));
9896
+ }
9897
+ for (var i = 1, isOwn = true; i < parts.length; i += 1) {
9898
+ var part = parts[i];
9899
+ var first = $strSlice(part, 0, 1);
9900
+ var last = $strSlice(part, -1);
9901
+ if ((first === '"' || first === "'" || first === "`" || (last === '"' || last === "'" || last === "`")) && first !== last) {
9902
+ throw new $SyntaxError("property names with quotes must have matching quotes");
9903
+ }
9904
+ if (part === "constructor" || !isOwn) {
9905
+ skipFurtherCaching = true;
9906
+ }
9907
+ intrinsicBaseName += "." + part;
9908
+ intrinsicRealName = "%" + intrinsicBaseName + "%";
9909
+ if (hasOwn(INTRINSICS, intrinsicRealName)) {
9910
+ value = INTRINSICS[intrinsicRealName];
9911
+ } else if (value != null) {
9912
+ if (!(part in value)) {
9913
+ if (!allowMissing) {
9914
+ throw new $TypeError("base intrinsic for " + name + " exists, but the property is not available.");
9915
+ }
9916
+ return void undefined2;
9917
+ }
9918
+ if ($gOPD && i + 1 >= parts.length) {
9919
+ var desc = $gOPD(value, part);
9920
+ isOwn = !!desc;
9921
+ if (isOwn && "get" in desc && !("originalValue" in desc.get)) {
9922
+ value = desc.get;
9923
+ } else {
9924
+ value = value[part];
9925
+ }
9926
+ } else {
9927
+ isOwn = hasOwn(value, part);
9928
+ value = value[part];
9929
+ }
9930
+ if (isOwn && !skipFurtherCaching) {
9931
+ INTRINSICS[intrinsicRealName] = value;
9932
+ }
9933
+ }
9934
+ }
9935
+ return value;
9936
+ };
9937
+ }
9938
+ });
9939
+
9940
+ // node_modules/has-tostringtag/shams.js
9941
+ var require_shams2 = __commonJS({
9942
+ "node_modules/has-tostringtag/shams.js"(exports2, module2) {
9943
+ "use strict";
9944
+ var hasSymbols = require_shams();
9945
+ module2.exports = function hasToStringTagShams() {
9946
+ return hasSymbols() && !!Symbol.toStringTag;
9947
+ };
9948
+ }
9949
+ });
9950
+
9951
+ // node_modules/es-set-tostringtag/index.js
9952
+ var require_es_set_tostringtag = __commonJS({
9953
+ "node_modules/es-set-tostringtag/index.js"(exports2, module2) {
9954
+ "use strict";
9955
+ var GetIntrinsic = require_get_intrinsic();
9956
+ var $defineProperty = GetIntrinsic("%Object.defineProperty%", true);
9957
+ var hasToStringTag = require_shams2()();
9958
+ var hasOwn = require_hasown();
9959
+ var $TypeError = require_type();
9960
+ var toStringTag = hasToStringTag ? Symbol.toStringTag : null;
9961
+ module2.exports = function setToStringTag(object, value) {
9962
+ var overrideIfSet = arguments.length > 2 && !!arguments[2] && arguments[2].force;
9963
+ var nonConfigurable = arguments.length > 2 && !!arguments[2] && arguments[2].nonConfigurable;
9964
+ if (typeof overrideIfSet !== "undefined" && typeof overrideIfSet !== "boolean" || typeof nonConfigurable !== "undefined" && typeof nonConfigurable !== "boolean") {
9965
+ throw new $TypeError("if provided, the `overrideIfSet` and `nonConfigurable` options must be booleans");
9966
+ }
9967
+ if (toStringTag && (overrideIfSet || !hasOwn(object, toStringTag))) {
9968
+ if ($defineProperty) {
9969
+ $defineProperty(object, toStringTag, {
9970
+ configurable: !nonConfigurable,
9971
+ enumerable: false,
9972
+ value,
9973
+ writable: false
9974
+ });
9975
+ } else {
9976
+ object[toStringTag] = value;
9977
+ }
9978
+ }
9979
+ };
9980
+ }
9981
+ });
9982
+
9137
9983
  // node_modules/form-data/lib/populate.js
9138
9984
  var require_populate = __commonJS({
9139
9985
  "node_modules/form-data/lib/populate.js"(exports2, module2) {
@@ -9161,6 +10007,7 @@ var require_form_data = __commonJS({
9161
10007
  var Stream = require("stream").Stream;
9162
10008
  var mime = require_mime_types();
9163
10009
  var asynckit = require_asynckit();
10010
+ var setToStringTag = require_es_set_tostringtag();
9164
10011
  var populate = require_populate();
9165
10012
  module2.exports = FormData3;
9166
10013
  util3.inherits(FormData3, CombinedStream);
@@ -9210,7 +10057,7 @@ var require_form_data = __commonJS({
9210
10057
  }
9211
10058
  this._valueLength += valueLength;
9212
10059
  this._overheadLength += Buffer.byteLength(header) + FormData3.LINE_BREAK.length;
9213
- if (!value || !value.path && !(value.readable && value.hasOwnProperty("httpVersion")) && !(value instanceof Stream)) {
10060
+ if (!value || !value.path && !(value.readable && Object.prototype.hasOwnProperty.call(value, "httpVersion")) && !(value instanceof Stream)) {
9214
10061
  return;
9215
10062
  }
9216
10063
  if (!options.knownLength) {
@@ -9218,7 +10065,7 @@ var require_form_data = __commonJS({
9218
10065
  }
9219
10066
  };
9220
10067
  FormData3.prototype._lengthRetriever = function(value, callback) {
9221
- if (value.hasOwnProperty("fd")) {
10068
+ if (Object.prototype.hasOwnProperty.call(value, "fd")) {
9222
10069
  if (value.end != void 0 && value.end != Infinity && value.start != void 0) {
9223
10070
  callback(null, value.end + 1 - (value.start ? value.start : 0));
9224
10071
  } else {
@@ -9232,9 +10079,9 @@ var require_form_data = __commonJS({
9232
10079
  callback(null, fileSize);
9233
10080
  });
9234
10081
  }
9235
- } else if (value.hasOwnProperty("httpVersion")) {
10082
+ } else if (Object.prototype.hasOwnProperty.call(value, "httpVersion")) {
9236
10083
  callback(null, +value.headers["content-length"]);
9237
- } else if (value.hasOwnProperty("httpModule")) {
10084
+ } else if (Object.prototype.hasOwnProperty.call(value, "httpModule")) {
9238
10085
  value.on("response", function(response) {
9239
10086
  value.pause();
9240
10087
  callback(null, +response.headers["content-length"]);
@@ -9262,16 +10109,17 @@ var require_form_data = __commonJS({
9262
10109
  }
9263
10110
  var header;
9264
10111
  for (var prop in headers) {
9265
- if (!headers.hasOwnProperty(prop)) continue;
9266
- header = headers[prop];
9267
- if (header == null) {
9268
- continue;
9269
- }
9270
- if (!Array.isArray(header)) {
9271
- header = [header];
9272
- }
9273
- if (header.length) {
9274
- contents += prop + ": " + header.join("; ") + FormData3.LINE_BREAK;
10112
+ if (Object.prototype.hasOwnProperty.call(headers, prop)) {
10113
+ header = headers[prop];
10114
+ if (header == null) {
10115
+ continue;
10116
+ }
10117
+ if (!Array.isArray(header)) {
10118
+ header = [header];
10119
+ }
10120
+ if (header.length) {
10121
+ contents += prop + ": " + header.join("; ") + FormData3.LINE_BREAK;
10122
+ }
9275
10123
  }
9276
10124
  }
9277
10125
  return "--" + this.getBoundary() + FormData3.LINE_BREAK + contents + FormData3.LINE_BREAK;
@@ -9282,7 +10130,7 @@ var require_form_data = __commonJS({
9282
10130
  filename = path.normalize(options.filepath).replace(/\\/g, "/");
9283
10131
  } else if (options.filename || value.name || value.path) {
9284
10132
  filename = path.basename(options.filename || value.name || value.path);
9285
- } else if (value.readable && value.hasOwnProperty("httpVersion")) {
10133
+ } else if (value.readable && Object.prototype.hasOwnProperty.call(value, "httpVersion")) {
9286
10134
  filename = path.basename(value.client._httpMessage.path || "");
9287
10135
  }
9288
10136
  if (filename) {
@@ -9298,7 +10146,7 @@ var require_form_data = __commonJS({
9298
10146
  if (!contentType && value.path) {
9299
10147
  contentType = mime.lookup(value.path);
9300
10148
  }
9301
- if (!contentType && value.readable && value.hasOwnProperty("httpVersion")) {
10149
+ if (!contentType && value.readable && Object.prototype.hasOwnProperty.call(value, "httpVersion")) {
9302
10150
  contentType = value.headers["content-type"];
9303
10151
  }
9304
10152
  if (!contentType && (options.filepath || options.filename)) {
@@ -9328,7 +10176,7 @@ var require_form_data = __commonJS({
9328
10176
  "content-type": "multipart/form-data; boundary=" + this.getBoundary()
9329
10177
  };
9330
10178
  for (header in userHeaders) {
9331
- if (userHeaders.hasOwnProperty(header)) {
10179
+ if (Object.prototype.hasOwnProperty.call(userHeaders, header)) {
9332
10180
  formHeaders[header.toLowerCase()] = userHeaders[header];
9333
10181
  }
9334
10182
  }
@@ -9459,6 +10307,7 @@ var require_form_data = __commonJS({
9459
10307
  FormData3.prototype.toString = function() {
9460
10308
  return "[object FormData]";
9461
10309
  };
10310
+ setToStringTag(FormData3, "FormData");
9462
10311
  }
9463
10312
  });
9464
10313
 
@@ -10823,6 +11672,7 @@ var require_axios = __commonJS({
10823
11672
  "node_modules/axios/dist/node/axios.cjs"(exports2, module2) {
10824
11673
  "use strict";
10825
11674
  var FormData$1 = require_form_data();
11675
+ var crypto2 = require("crypto");
10826
11676
  var url2 = require("url");
10827
11677
  var proxyFromEnv2 = require_proxy_from_env();
10828
11678
  var http2 = require("http");
@@ -10836,6 +11686,7 @@ var require_axios = __commonJS({
10836
11686
  return e && typeof e === "object" && "default" in e ? e : { "default": e };
10837
11687
  }
10838
11688
  var FormData__default = /* @__PURE__ */ _interopDefaultLegacy(FormData$1);
11689
+ var crypto__default = /* @__PURE__ */ _interopDefaultLegacy(crypto2);
10839
11690
  var url__default = /* @__PURE__ */ _interopDefaultLegacy(url2);
10840
11691
  var proxyFromEnv__default = /* @__PURE__ */ _interopDefaultLegacy(proxyFromEnv2);
10841
11692
  var http__default = /* @__PURE__ */ _interopDefaultLegacy(http2);
@@ -11104,21 +11955,6 @@ var require_axios = __commonJS({
11104
11955
  var toFiniteNumber2 = (value, defaultValue) => {
11105
11956
  return value != null && Number.isFinite(value = +value) ? value : defaultValue;
11106
11957
  };
11107
- var ALPHA2 = "abcdefghijklmnopqrstuvwxyz";
11108
- var DIGIT2 = "0123456789";
11109
- var ALPHABET2 = {
11110
- DIGIT: DIGIT2,
11111
- ALPHA: ALPHA2,
11112
- ALPHA_DIGIT: ALPHA2 + ALPHA2.toUpperCase() + DIGIT2
11113
- };
11114
- var generateString2 = (size = 16, alphabet = ALPHABET2.ALPHA_DIGIT) => {
11115
- let str = "";
11116
- const { length } = alphabet;
11117
- while (size--) {
11118
- str += alphabet[Math.random() * length | 0];
11119
- }
11120
- return str;
11121
- };
11122
11958
  function isSpecCompliantForm2(thing) {
11123
11959
  return !!(thing && isFunction2(thing.append) && thing[Symbol.toStringTag] === "FormData" && thing[Symbol.iterator]);
11124
11960
  }
@@ -11217,8 +12053,6 @@ var require_axios = __commonJS({
11217
12053
  findKey: findKey2,
11218
12054
  global: _global2,
11219
12055
  isContextDefined: isContextDefined2,
11220
- ALPHABET: ALPHABET2,
11221
- generateString: generateString2,
11222
12056
  isSpecCompliantForm: isSpecCompliantForm2,
11223
12057
  toJSONObject: toJSONObject2,
11224
12058
  isAsyncFn: isAsyncFn2,
@@ -11534,6 +12368,23 @@ var require_axios = __commonJS({
11534
12368
  clarifyTimeoutError: false
11535
12369
  };
11536
12370
  var URLSearchParams = url__default["default"].URLSearchParams;
12371
+ var ALPHA2 = "abcdefghijklmnopqrstuvwxyz";
12372
+ var DIGIT2 = "0123456789";
12373
+ var ALPHABET2 = {
12374
+ DIGIT: DIGIT2,
12375
+ ALPHA: ALPHA2,
12376
+ ALPHA_DIGIT: ALPHA2 + ALPHA2.toUpperCase() + DIGIT2
12377
+ };
12378
+ var generateString2 = (size = 16, alphabet = ALPHABET2.ALPHA_DIGIT) => {
12379
+ let str = "";
12380
+ const { length } = alphabet;
12381
+ const randomValues = new Uint32Array(size);
12382
+ crypto__default["default"].randomFillSync(randomValues);
12383
+ for (let i = 0; i < size; i++) {
12384
+ str += alphabet[randomValues[i] % length];
12385
+ }
12386
+ return str;
12387
+ };
11537
12388
  var platform$1 = {
11538
12389
  isNode: true,
11539
12390
  classes: {
@@ -11541,6 +12392,8 @@ var require_axios = __commonJS({
11541
12392
  FormData: FormData__default["default"],
11542
12393
  Blob: typeof Blob !== "undefined" && Blob || null
11543
12394
  },
12395
+ ALPHABET: ALPHABET2,
12396
+ generateString: generateString2,
11544
12397
  protocols: ["http", "https", "file", "data"]
11545
12398
  };
11546
12399
  var hasBrowserEnv2 = typeof window !== "undefined" && typeof document !== "undefined";
@@ -12034,13 +12887,14 @@ var require_axios = __commonJS({
12034
12887
  function combineURLs2(baseURL, relativeURL) {
12035
12888
  return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
12036
12889
  }
12037
- function buildFullPath2(baseURL, requestedURL) {
12038
- if (baseURL && !isAbsoluteURL2(requestedURL)) {
12890
+ function buildFullPath2(baseURL, requestedURL, allowAbsoluteUrls) {
12891
+ let isRelativeUrl = !isAbsoluteURL2(requestedURL);
12892
+ if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
12039
12893
  return combineURLs2(baseURL, requestedURL);
12040
12894
  }
12041
12895
  return requestedURL;
12042
12896
  }
12043
- var VERSION3 = "1.7.9";
12897
+ var VERSION3 = "1.8.1";
12044
12898
  function parseProtocol2(url3) {
12045
12899
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url3);
12046
12900
  return match && match[1] || "";
@@ -12197,7 +13051,7 @@ var require_axios = __commonJS({
12197
13051
  }
12198
13052
  };
12199
13053
  var readBlob$1 = readBlob2;
12200
- var BOUNDARY_ALPHABET2 = utils$1.ALPHABET.ALPHA_DIGIT + "-_";
13054
+ var BOUNDARY_ALPHABET2 = platform.ALPHABET.ALPHA_DIGIT + "-_";
12201
13055
  var textEncoder2 = typeof TextEncoder === "function" ? new TextEncoder() : new util__default["default"].TextEncoder();
12202
13056
  var CRLF2 = "\r\n";
12203
13057
  var CRLF_BYTES2 = textEncoder2.encode(CRLF2);
@@ -12240,7 +13094,7 @@ var require_axios = __commonJS({
12240
13094
  const {
12241
13095
  tag = "form-data-boundary",
12242
13096
  size = 25,
12243
- boundary = tag + "-" + utils$1.generateString(size, BOUNDARY_ALPHABET2)
13097
+ boundary = tag + "-" + platform.generateString(size, BOUNDARY_ALPHABET2)
12244
13098
  } = options || {};
12245
13099
  if (!utils$1.isFormData(form)) {
12246
13100
  throw TypeError("FormData instance required");
@@ -13668,6 +14522,12 @@ var require_axios = __commonJS({
13668
14522
  }, true);
13669
14523
  }
13670
14524
  }
14525
+ if (config.allowAbsoluteUrls !== void 0) ;
14526
+ else if (this.defaults.allowAbsoluteUrls !== void 0) {
14527
+ config.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls;
14528
+ } else {
14529
+ config.allowAbsoluteUrls = true;
14530
+ }
13671
14531
  validator.assertOptions(config, {
13672
14532
  baseUrl: validators3.spelling("baseURL"),
13673
14533
  withXsrfToken: validators3.spelling("withXSRFToken")
@@ -13738,7 +14598,7 @@ var require_axios = __commonJS({
13738
14598
  }
13739
14599
  getUri(config) {
13740
14600
  config = mergeConfig3(this.defaults, config);
13741
- const fullPath = buildFullPath2(config.baseURL, config.url);
14601
+ const fullPath = buildFullPath2(config.baseURL, config.url, config.allowAbsoluteUrls);
13742
14602
  return buildURL2(fullPath, config.params, config.paramsSerializer);
13743
14603
  }
13744
14604
  };
@@ -14474,21 +15334,6 @@ var noop = () => {
14474
15334
  var toFiniteNumber = (value, defaultValue) => {
14475
15335
  return value != null && Number.isFinite(value = +value) ? value : defaultValue;
14476
15336
  };
14477
- var ALPHA = "abcdefghijklmnopqrstuvwxyz";
14478
- var DIGIT = "0123456789";
14479
- var ALPHABET = {
14480
- DIGIT,
14481
- ALPHA,
14482
- ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
14483
- };
14484
- var generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
14485
- let str = "";
14486
- const { length } = alphabet;
14487
- while (size--) {
14488
- str += alphabet[Math.random() * length | 0];
14489
- }
14490
- return str;
14491
- };
14492
15337
  function isSpecCompliantForm(thing) {
14493
15338
  return !!(thing && isFunction(thing.append) && thing[Symbol.toStringTag] === "FormData" && thing[Symbol.iterator]);
14494
15339
  }
@@ -14587,8 +15432,6 @@ var utils_default = {
14587
15432
  findKey,
14588
15433
  global: _global,
14589
15434
  isContextDefined,
14590
- ALPHABET,
14591
- generateString,
14592
15435
  isSpecCompliantForm,
14593
15436
  toJSONObject,
14594
15437
  isAsyncFn,
@@ -14923,11 +15766,31 @@ var transitional_default = {
14923
15766
  clarifyTimeoutError: false
14924
15767
  };
14925
15768
 
15769
+ // node_modules/axios/lib/platform/node/index.js
15770
+ var import_crypto = __toESM(require("crypto"), 1);
15771
+
14926
15772
  // node_modules/axios/lib/platform/node/classes/URLSearchParams.js
14927
15773
  var import_url = __toESM(require("url"), 1);
14928
15774
  var URLSearchParams_default = import_url.default.URLSearchParams;
14929
15775
 
14930
15776
  // node_modules/axios/lib/platform/node/index.js
15777
+ var ALPHA = "abcdefghijklmnopqrstuvwxyz";
15778
+ var DIGIT = "0123456789";
15779
+ var ALPHABET = {
15780
+ DIGIT,
15781
+ ALPHA,
15782
+ ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
15783
+ };
15784
+ var generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
15785
+ let str = "";
15786
+ const { length } = alphabet;
15787
+ const randomValues = new Uint32Array(size);
15788
+ import_crypto.default.randomFillSync(randomValues);
15789
+ for (let i = 0; i < size; i++) {
15790
+ str += alphabet[randomValues[i] % length];
15791
+ }
15792
+ return str;
15793
+ };
14931
15794
  var node_default = {
14932
15795
  isNode: true,
14933
15796
  classes: {
@@ -14935,6 +15798,8 @@ var node_default = {
14935
15798
  FormData: FormData_default,
14936
15799
  Blob: typeof Blob !== "undefined" && Blob || null
14937
15800
  },
15801
+ ALPHABET,
15802
+ generateString,
14938
15803
  protocols: ["http", "https", "file", "data"]
14939
15804
  };
14940
15805
 
@@ -15458,8 +16323,9 @@ function combineURLs(baseURL, relativeURL) {
15458
16323
  }
15459
16324
 
15460
16325
  // node_modules/axios/lib/core/buildFullPath.js
15461
- function buildFullPath(baseURL, requestedURL) {
15462
- if (baseURL && !isAbsoluteURL(requestedURL)) {
16326
+ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
16327
+ let isRelativeUrl = !isAbsoluteURL(requestedURL);
16328
+ if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
15463
16329
  return combineURLs(baseURL, requestedURL);
15464
16330
  }
15465
16331
  return requestedURL;
@@ -15474,7 +16340,7 @@ var import_follow_redirects = __toESM(require_follow_redirects(), 1);
15474
16340
  var import_zlib = __toESM(require("zlib"), 1);
15475
16341
 
15476
16342
  // node_modules/axios/lib/env/data.js
15477
- var VERSION = "1.7.9";
16343
+ var VERSION = "1.8.1";
15478
16344
 
15479
16345
  // node_modules/axios/lib/helpers/parseProtocol.js
15480
16346
  function parseProtocol(url2) {
@@ -15652,7 +16518,7 @@ var readBlob = async function* (blob) {
15652
16518
  var readBlob_default = readBlob;
15653
16519
 
15654
16520
  // node_modules/axios/lib/helpers/formDataToStream.js
15655
- var BOUNDARY_ALPHABET = utils_default.ALPHABET.ALPHA_DIGIT + "-_";
16521
+ var BOUNDARY_ALPHABET = platform_default.ALPHABET.ALPHA_DIGIT + "-_";
15656
16522
  var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
15657
16523
  var CRLF = "\r\n";
15658
16524
  var CRLF_BYTES = textEncoder.encode(CRLF);
@@ -15695,7 +16561,7 @@ var formDataToStream = (form, headersHandler, options) => {
15695
16561
  const {
15696
16562
  tag = "form-data-boundary",
15697
16563
  size = 25,
15698
- boundary = tag + "-" + utils_default.generateString(size, BOUNDARY_ALPHABET)
16564
+ boundary = tag + "-" + platform_default.generateString(size, BOUNDARY_ALPHABET)
15699
16565
  } = options || {};
15700
16566
  if (!utils_default.isFormData(form)) {
15701
16567
  throw TypeError("FormData instance required");
@@ -17162,6 +18028,12 @@ var Axios = class {
17162
18028
  }, true);
17163
18029
  }
17164
18030
  }
18031
+ if (config.allowAbsoluteUrls !== void 0) {
18032
+ } else if (this.defaults.allowAbsoluteUrls !== void 0) {
18033
+ config.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls;
18034
+ } else {
18035
+ config.allowAbsoluteUrls = true;
18036
+ }
17165
18037
  validator_default.assertOptions(config, {
17166
18038
  baseUrl: validators2.spelling("baseURL"),
17167
18039
  withXsrfToken: validators2.spelling("withXSRFToken")
@@ -17232,7 +18104,7 @@ var Axios = class {
17232
18104
  }
17233
18105
  getUri(config) {
17234
18106
  config = mergeConfig(this.defaults, config);
17235
- const fullPath = buildFullPath(config.baseURL, config.url);
18107
+ const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
17236
18108
  return buildURL(fullPath, config.params, config.paramsSerializer);
17237
18109
  }
17238
18110
  };
@@ -17560,5 +18432,8 @@ mime-types/index.js:
17560
18432
  * Copyright(c) 2015 Douglas Christopher Wilson
17561
18433
  * MIT Licensed
17562
18434
  *)
18435
+
18436
+ axios/dist/node/axios.cjs:
18437
+ (*! Axios v1.8.1 Copyright (c) 2025 Matt Zabriskie and contributors *)
17563
18438
  */
17564
18439
  //# sourceMappingURL=index.js.map