koishi-plugin-echo-cave 1.29.4 → 1.29.6
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/lib/index.cjs +945 -809
- package/package.json +5 -5
package/lib/index.cjs
CHANGED
|
@@ -32,9 +32,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
32
32
|
));
|
|
33
33
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
34
34
|
|
|
35
|
-
// node_modules/.pnpm/@smithy+types@4.
|
|
35
|
+
// node_modules/.pnpm/@smithy+types@4.14.0/node_modules/@smithy/types/dist-cjs/index.js
|
|
36
36
|
var require_dist_cjs = __commonJS({
|
|
37
|
-
"node_modules/.pnpm/@smithy+types@4.
|
|
37
|
+
"node_modules/.pnpm/@smithy+types@4.14.0/node_modules/@smithy/types/dist-cjs/index.js"(exports2) {
|
|
38
38
|
"use strict";
|
|
39
39
|
exports2.HttpAuthLocation = void 0;
|
|
40
40
|
(function(HttpAuthLocation) {
|
|
@@ -119,9 +119,9 @@ var require_dist_cjs = __commonJS({
|
|
|
119
119
|
}
|
|
120
120
|
});
|
|
121
121
|
|
|
122
|
-
// node_modules/.pnpm/@smithy+protocol-http@5.3.
|
|
122
|
+
// node_modules/.pnpm/@smithy+protocol-http@5.3.13/node_modules/@smithy/protocol-http/dist-cjs/index.js
|
|
123
123
|
var require_dist_cjs2 = __commonJS({
|
|
124
|
-
"node_modules/.pnpm/@smithy+protocol-http@5.3.
|
|
124
|
+
"node_modules/.pnpm/@smithy+protocol-http@5.3.13/node_modules/@smithy/protocol-http/dist-cjs/index.js"(exports2) {
|
|
125
125
|
"use strict";
|
|
126
126
|
var types = require_dist_cjs();
|
|
127
127
|
var getHttpHandlerExtensionConfiguration5 = (runtimeConfig) => {
|
|
@@ -277,9 +277,9 @@ var require_dist_cjs2 = __commonJS({
|
|
|
277
277
|
}
|
|
278
278
|
});
|
|
279
279
|
|
|
280
|
-
// node_modules/.pnpm/@aws-sdk+middleware-expect-continue@3.972.
|
|
280
|
+
// node_modules/.pnpm/@aws-sdk+middleware-expect-continue@3.972.9/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js
|
|
281
281
|
var require_dist_cjs3 = __commonJS({
|
|
282
|
-
"node_modules/.pnpm/@aws-sdk+middleware-expect-continue@3.972.
|
|
282
|
+
"node_modules/.pnpm/@aws-sdk+middleware-expect-continue@3.972.9/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js"(exports2) {
|
|
283
283
|
"use strict";
|
|
284
284
|
var protocolHttp = require_dist_cjs2();
|
|
285
285
|
function addExpectContinueMiddleware(options) {
|
|
@@ -323,10 +323,10 @@ var require_dist_cjs3 = __commonJS({
|
|
|
323
323
|
}
|
|
324
324
|
});
|
|
325
325
|
|
|
326
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
326
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js
|
|
327
327
|
var state, emitWarningIfUnsupportedVersion;
|
|
328
328
|
var init_emitWarningIfUnsupportedVersion = __esm({
|
|
329
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
329
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js"() {
|
|
330
330
|
state = {
|
|
331
331
|
warningEmitted: false
|
|
332
332
|
};
|
|
@@ -345,7 +345,29 @@ More information can be found at: https://a.co/c895JFp`);
|
|
|
345
345
|
}
|
|
346
346
|
});
|
|
347
347
|
|
|
348
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
348
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/longPollMiddleware.js
|
|
349
|
+
var longPollMiddleware, longPollMiddlewareOptions, getLongPollPlugin;
|
|
350
|
+
var init_longPollMiddleware = __esm({
|
|
351
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/longPollMiddleware.js"() {
|
|
352
|
+
longPollMiddleware = () => (next, context) => async (args) => {
|
|
353
|
+
context.__retryLongPoll = true;
|
|
354
|
+
return next(args);
|
|
355
|
+
};
|
|
356
|
+
longPollMiddlewareOptions = {
|
|
357
|
+
name: "longPollMiddleware",
|
|
358
|
+
tags: ["RETRY"],
|
|
359
|
+
step: "initialize",
|
|
360
|
+
override: true
|
|
361
|
+
};
|
|
362
|
+
getLongPollPlugin = (options) => ({
|
|
363
|
+
applyToStack: (clientStack) => {
|
|
364
|
+
clientStack.add(longPollMiddleware(), longPollMiddlewareOptions);
|
|
365
|
+
}
|
|
366
|
+
});
|
|
367
|
+
}
|
|
368
|
+
});
|
|
369
|
+
|
|
370
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js
|
|
349
371
|
function setCredentialFeature(credentials, feature, value) {
|
|
350
372
|
if (!credentials.$source) {
|
|
351
373
|
credentials.$source = {};
|
|
@@ -354,11 +376,11 @@ function setCredentialFeature(credentials, feature, value) {
|
|
|
354
376
|
return credentials;
|
|
355
377
|
}
|
|
356
378
|
var init_setCredentialFeature = __esm({
|
|
357
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
379
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js"() {
|
|
358
380
|
}
|
|
359
381
|
});
|
|
360
382
|
|
|
361
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
383
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js
|
|
362
384
|
function setFeature(context, feature, value) {
|
|
363
385
|
if (!context.__aws_sdk_context) {
|
|
364
386
|
context.__aws_sdk_context = {
|
|
@@ -370,11 +392,11 @@ function setFeature(context, feature, value) {
|
|
|
370
392
|
context.__aws_sdk_context.features[feature] = value;
|
|
371
393
|
}
|
|
372
394
|
var init_setFeature = __esm({
|
|
373
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
395
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js"() {
|
|
374
396
|
}
|
|
375
397
|
});
|
|
376
398
|
|
|
377
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
399
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js
|
|
378
400
|
function setTokenFeature(token, feature, value) {
|
|
379
401
|
if (!token.$source) {
|
|
380
402
|
token.$source = {};
|
|
@@ -383,22 +405,24 @@ function setTokenFeature(token, feature, value) {
|
|
|
383
405
|
return token;
|
|
384
406
|
}
|
|
385
407
|
var init_setTokenFeature = __esm({
|
|
386
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
408
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js"() {
|
|
387
409
|
}
|
|
388
410
|
});
|
|
389
411
|
|
|
390
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
412
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js
|
|
391
413
|
var client_exports = {};
|
|
392
414
|
__export(client_exports, {
|
|
393
415
|
emitWarningIfUnsupportedVersion: () => emitWarningIfUnsupportedVersion,
|
|
416
|
+
getLongPollPlugin: () => getLongPollPlugin,
|
|
394
417
|
setCredentialFeature: () => setCredentialFeature,
|
|
395
418
|
setFeature: () => setFeature,
|
|
396
419
|
setTokenFeature: () => setTokenFeature,
|
|
397
420
|
state: () => state
|
|
398
421
|
});
|
|
399
422
|
var init_client = __esm({
|
|
400
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
423
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js"() {
|
|
401
424
|
init_emitWarningIfUnsupportedVersion();
|
|
425
|
+
init_longPollMiddleware();
|
|
402
426
|
init_setCredentialFeature();
|
|
403
427
|
init_setFeature();
|
|
404
428
|
init_setTokenFeature();
|
|
@@ -539,9 +563,9 @@ var require_dist_cjs7 = __commonJS({
|
|
|
539
563
|
}
|
|
540
564
|
});
|
|
541
565
|
|
|
542
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
566
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js
|
|
543
567
|
var require_ChecksumStream = __commonJS({
|
|
544
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
568
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js"(exports2) {
|
|
545
569
|
"use strict";
|
|
546
570
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
547
571
|
exports2.ChecksumStream = void 0;
|
|
@@ -605,9 +629,9 @@ var require_ChecksumStream = __commonJS({
|
|
|
605
629
|
}
|
|
606
630
|
});
|
|
607
631
|
|
|
608
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
632
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js
|
|
609
633
|
var require_stream_type_check = __commonJS({
|
|
610
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
634
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js"(exports2) {
|
|
611
635
|
"use strict";
|
|
612
636
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
613
637
|
exports2.isBlob = exports2.isReadableStream = void 0;
|
|
@@ -620,9 +644,9 @@ var require_stream_type_check = __commonJS({
|
|
|
620
644
|
}
|
|
621
645
|
});
|
|
622
646
|
|
|
623
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
647
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js
|
|
624
648
|
var require_ChecksumStream_browser = __commonJS({
|
|
625
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
649
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js"(exports2) {
|
|
626
650
|
"use strict";
|
|
627
651
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
628
652
|
exports2.ChecksumStream = void 0;
|
|
@@ -634,9 +658,9 @@ var require_ChecksumStream_browser = __commonJS({
|
|
|
634
658
|
}
|
|
635
659
|
});
|
|
636
660
|
|
|
637
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
661
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js
|
|
638
662
|
var require_createChecksumStream_browser = __commonJS({
|
|
639
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
663
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js"(exports2) {
|
|
640
664
|
"use strict";
|
|
641
665
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
642
666
|
exports2.createChecksumStream = void 0;
|
|
@@ -678,9 +702,9 @@ var require_createChecksumStream_browser = __commonJS({
|
|
|
678
702
|
}
|
|
679
703
|
});
|
|
680
704
|
|
|
681
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
705
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js
|
|
682
706
|
var require_createChecksumStream = __commonJS({
|
|
683
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
707
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js"(exports2) {
|
|
684
708
|
"use strict";
|
|
685
709
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
686
710
|
exports2.createChecksumStream = createChecksumStream;
|
|
@@ -696,9 +720,9 @@ var require_createChecksumStream = __commonJS({
|
|
|
696
720
|
}
|
|
697
721
|
});
|
|
698
722
|
|
|
699
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
723
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js
|
|
700
724
|
var require_ByteArrayCollector = __commonJS({
|
|
701
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
725
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js"(exports2) {
|
|
702
726
|
"use strict";
|
|
703
727
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
704
728
|
exports2.ByteArrayCollector = void 0;
|
|
@@ -738,9 +762,9 @@ var require_ByteArrayCollector = __commonJS({
|
|
|
738
762
|
}
|
|
739
763
|
});
|
|
740
764
|
|
|
741
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
765
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js
|
|
742
766
|
var require_createBufferedReadableStream = __commonJS({
|
|
743
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
767
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js"(exports2) {
|
|
744
768
|
"use strict";
|
|
745
769
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
746
770
|
exports2.createBufferedReadable = void 0;
|
|
@@ -844,9 +868,9 @@ var require_createBufferedReadableStream = __commonJS({
|
|
|
844
868
|
}
|
|
845
869
|
});
|
|
846
870
|
|
|
847
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
871
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js
|
|
848
872
|
var require_createBufferedReadable = __commonJS({
|
|
849
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
873
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js"(exports2) {
|
|
850
874
|
"use strict";
|
|
851
875
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
852
876
|
exports2.createBufferedReadable = createBufferedReadable;
|
|
@@ -910,9 +934,9 @@ var require_createBufferedReadable = __commonJS({
|
|
|
910
934
|
}
|
|
911
935
|
});
|
|
912
936
|
|
|
913
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
937
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js
|
|
914
938
|
var require_getAwsChunkedEncodingStream_browser = __commonJS({
|
|
915
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
939
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js"(exports2) {
|
|
916
940
|
"use strict";
|
|
917
941
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
918
942
|
exports2.getAwsChunkedEncodingStream = void 0;
|
|
@@ -947,9 +971,9 @@ ${value}\r
|
|
|
947
971
|
}
|
|
948
972
|
});
|
|
949
973
|
|
|
950
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
974
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js
|
|
951
975
|
var require_getAwsChunkedEncodingStream = __commonJS({
|
|
952
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
976
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js"(exports2) {
|
|
953
977
|
"use strict";
|
|
954
978
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
955
979
|
exports2.getAwsChunkedEncodingStream = getAwsChunkedEncodingStream;
|
|
@@ -996,9 +1020,9 @@ var require_getAwsChunkedEncodingStream = __commonJS({
|
|
|
996
1020
|
}
|
|
997
1021
|
});
|
|
998
1022
|
|
|
999
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
1023
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js
|
|
1000
1024
|
var require_headStream_browser = __commonJS({
|
|
1001
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
1025
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js"(exports2) {
|
|
1002
1026
|
"use strict";
|
|
1003
1027
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1004
1028
|
exports2.headStream = headStream;
|
|
@@ -1035,9 +1059,9 @@ var require_headStream_browser = __commonJS({
|
|
|
1035
1059
|
}
|
|
1036
1060
|
});
|
|
1037
1061
|
|
|
1038
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
1062
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/headStream.js
|
|
1039
1063
|
var require_headStream = __commonJS({
|
|
1040
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
1064
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/headStream.js"(exports2) {
|
|
1041
1065
|
"use strict";
|
|
1042
1066
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1043
1067
|
exports2.headStream = void 0;
|
|
@@ -1095,9 +1119,9 @@ var require_dist_cjs8 = __commonJS({
|
|
|
1095
1119
|
}
|
|
1096
1120
|
});
|
|
1097
1121
|
|
|
1098
|
-
// node_modules/.pnpm/@smithy+querystring-builder@4.2.
|
|
1122
|
+
// node_modules/.pnpm/@smithy+querystring-builder@4.2.13/node_modules/@smithy/querystring-builder/dist-cjs/index.js
|
|
1099
1123
|
var require_dist_cjs9 = __commonJS({
|
|
1100
|
-
"node_modules/.pnpm/@smithy+querystring-builder@4.2.
|
|
1124
|
+
"node_modules/.pnpm/@smithy+querystring-builder@4.2.13/node_modules/@smithy/querystring-builder/dist-cjs/index.js"(exports2) {
|
|
1101
1125
|
"use strict";
|
|
1102
1126
|
var utilUriEscape = require_dist_cjs8();
|
|
1103
1127
|
function buildQueryString(query) {
|
|
@@ -1123,9 +1147,9 @@ var require_dist_cjs9 = __commonJS({
|
|
|
1123
1147
|
}
|
|
1124
1148
|
});
|
|
1125
1149
|
|
|
1126
|
-
// node_modules/.pnpm/@smithy+node-http-handler@4.5.
|
|
1150
|
+
// node_modules/.pnpm/@smithy+node-http-handler@4.5.2/node_modules/@smithy/node-http-handler/dist-cjs/index.js
|
|
1127
1151
|
var require_dist_cjs10 = __commonJS({
|
|
1128
|
-
"node_modules/.pnpm/@smithy+node-http-handler@4.5.
|
|
1152
|
+
"node_modules/.pnpm/@smithy+node-http-handler@4.5.2/node_modules/@smithy/node-http-handler/dist-cjs/index.js"(exports2) {
|
|
1129
1153
|
"use strict";
|
|
1130
1154
|
var protocolHttp = require_dist_cjs2();
|
|
1131
1155
|
var querystringBuilder = require_dist_cjs9();
|
|
@@ -1850,9 +1874,9 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
|
|
|
1850
1874
|
}
|
|
1851
1875
|
});
|
|
1852
1876
|
|
|
1853
|
-
// node_modules/.pnpm/@smithy+fetch-http-handler@5.3.
|
|
1877
|
+
// node_modules/.pnpm/@smithy+fetch-http-handler@5.3.16/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js
|
|
1854
1878
|
var require_dist_cjs11 = __commonJS({
|
|
1855
|
-
"node_modules/.pnpm/@smithy+fetch-http-handler@5.3.
|
|
1879
|
+
"node_modules/.pnpm/@smithy+fetch-http-handler@5.3.16/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js"(exports2) {
|
|
1856
1880
|
"use strict";
|
|
1857
1881
|
var protocolHttp = require_dist_cjs2();
|
|
1858
1882
|
var querystringBuilder = require_dist_cjs9();
|
|
@@ -2121,9 +2145,9 @@ var require_dist_cjs12 = __commonJS({
|
|
|
2121
2145
|
}
|
|
2122
2146
|
});
|
|
2123
2147
|
|
|
2124
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2148
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js
|
|
2125
2149
|
var require_sdk_stream_mixin_browser = __commonJS({
|
|
2126
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2150
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js"(exports2) {
|
|
2127
2151
|
"use strict";
|
|
2128
2152
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2129
2153
|
exports2.sdkStreamMixin = void 0;
|
|
@@ -2188,9 +2212,9 @@ var require_sdk_stream_mixin_browser = __commonJS({
|
|
|
2188
2212
|
}
|
|
2189
2213
|
});
|
|
2190
2214
|
|
|
2191
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2215
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js
|
|
2192
2216
|
var require_sdk_stream_mixin = __commonJS({
|
|
2193
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2217
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js"(exports2) {
|
|
2194
2218
|
"use strict";
|
|
2195
2219
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2196
2220
|
exports2.sdkStreamMixin = void 0;
|
|
@@ -2246,9 +2270,9 @@ var require_sdk_stream_mixin = __commonJS({
|
|
|
2246
2270
|
}
|
|
2247
2271
|
});
|
|
2248
2272
|
|
|
2249
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2273
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js
|
|
2250
2274
|
var require_splitStream_browser = __commonJS({
|
|
2251
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2275
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js"(exports2) {
|
|
2252
2276
|
"use strict";
|
|
2253
2277
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2254
2278
|
exports2.splitStream = splitStream;
|
|
@@ -2262,9 +2286,9 @@ var require_splitStream_browser = __commonJS({
|
|
|
2262
2286
|
}
|
|
2263
2287
|
});
|
|
2264
2288
|
|
|
2265
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2289
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/splitStream.js
|
|
2266
2290
|
var require_splitStream = __commonJS({
|
|
2267
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2291
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/splitStream.js"(exports2) {
|
|
2268
2292
|
"use strict";
|
|
2269
2293
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2270
2294
|
exports2.splitStream = splitStream;
|
|
@@ -2284,9 +2308,9 @@ var require_splitStream = __commonJS({
|
|
|
2284
2308
|
}
|
|
2285
2309
|
});
|
|
2286
2310
|
|
|
2287
|
-
// node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2311
|
+
// node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/index.js
|
|
2288
2312
|
var require_dist_cjs13 = __commonJS({
|
|
2289
|
-
"node_modules/.pnpm/@smithy+util-stream@4.5.
|
|
2313
|
+
"node_modules/.pnpm/@smithy+util-stream@4.5.22/node_modules/@smithy/util-stream/dist-cjs/index.js"(exports2) {
|
|
2290
2314
|
"use strict";
|
|
2291
2315
|
var utilBase64 = require_dist_cjs7();
|
|
2292
2316
|
var utilUtf8 = require_dist_cjs6();
|
|
@@ -3479,9 +3503,9 @@ var require_main2 = __commonJS({
|
|
|
3479
3503
|
}
|
|
3480
3504
|
});
|
|
3481
3505
|
|
|
3482
|
-
// node_modules/.pnpm/@aws-sdk+crc64-nvme@3.972.
|
|
3506
|
+
// node_modules/.pnpm/@aws-sdk+crc64-nvme@3.972.6/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js
|
|
3483
3507
|
var require_dist_cjs17 = __commonJS({
|
|
3484
|
-
"node_modules/.pnpm/@aws-sdk+crc64-nvme@3.972.
|
|
3508
|
+
"node_modules/.pnpm/@aws-sdk+crc64-nvme@3.972.6/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js"(exports2) {
|
|
3485
3509
|
"use strict";
|
|
3486
3510
|
var generateCRC64NVMETable = () => {
|
|
3487
3511
|
const sliceLength = 8;
|
|
@@ -3926,9 +3950,9 @@ var require_main3 = __commonJS({
|
|
|
3926
3950
|
}
|
|
3927
3951
|
});
|
|
3928
3952
|
|
|
3929
|
-
// node_modules/.pnpm/@aws-sdk+middleware-flexible-checksums@3.974.
|
|
3953
|
+
// node_modules/.pnpm/@aws-sdk+middleware-flexible-checksums@3.974.7/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/getCrc32ChecksumAlgorithmFunction.js
|
|
3930
3954
|
var require_getCrc32ChecksumAlgorithmFunction = __commonJS({
|
|
3931
|
-
"node_modules/.pnpm/@aws-sdk+middleware-flexible-checksums@3.974.
|
|
3955
|
+
"node_modules/.pnpm/@aws-sdk+middleware-flexible-checksums@3.974.7/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/getCrc32ChecksumAlgorithmFunction.js"(exports2) {
|
|
3932
3956
|
"use strict";
|
|
3933
3957
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
3934
3958
|
exports2.getCrc32ChecksumAlgorithmFunction = void 0;
|
|
@@ -3958,9 +3982,9 @@ var require_getCrc32ChecksumAlgorithmFunction = __commonJS({
|
|
|
3958
3982
|
}
|
|
3959
3983
|
});
|
|
3960
3984
|
|
|
3961
|
-
// node_modules/.pnpm/@smithy+util-middleware@4.2.
|
|
3985
|
+
// node_modules/.pnpm/@smithy+util-middleware@4.2.13/node_modules/@smithy/util-middleware/dist-cjs/index.js
|
|
3962
3986
|
var require_dist_cjs18 = __commonJS({
|
|
3963
|
-
"node_modules/.pnpm/@smithy+util-middleware@4.2.
|
|
3987
|
+
"node_modules/.pnpm/@smithy+util-middleware@4.2.13/node_modules/@smithy/util-middleware/dist-cjs/index.js"(exports2) {
|
|
3964
3988
|
"use strict";
|
|
3965
3989
|
var types = require_dist_cjs();
|
|
3966
3990
|
var getSmithyContext11 = (context) => context[types.SMITHY_CONTEXT_KEY] || (context[types.SMITHY_CONTEXT_KEY] = {});
|
|
@@ -3975,9 +3999,9 @@ var require_dist_cjs18 = __commonJS({
|
|
|
3975
3999
|
}
|
|
3976
4000
|
});
|
|
3977
4001
|
|
|
3978
|
-
// node_modules/.pnpm/@aws-sdk+middleware-flexible-checksums@3.974.
|
|
4002
|
+
// node_modules/.pnpm/@aws-sdk+middleware-flexible-checksums@3.974.7/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js
|
|
3979
4003
|
var require_dist_cjs19 = __commonJS({
|
|
3980
|
-
"node_modules/.pnpm/@aws-sdk+middleware-flexible-checksums@3.974.
|
|
4004
|
+
"node_modules/.pnpm/@aws-sdk+middleware-flexible-checksums@3.974.7/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js"(exports2) {
|
|
3981
4005
|
"use strict";
|
|
3982
4006
|
var client = (init_client(), __toCommonJS(client_exports));
|
|
3983
4007
|
var protocolHttp = require_dist_cjs2();
|
|
@@ -4392,9 +4416,9 @@ var require_dist_cjs19 = __commonJS({
|
|
|
4392
4416
|
}
|
|
4393
4417
|
});
|
|
4394
4418
|
|
|
4395
|
-
// node_modules/.pnpm/@aws-sdk+middleware-host-header@3.972.
|
|
4419
|
+
// node_modules/.pnpm/@aws-sdk+middleware-host-header@3.972.9/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js
|
|
4396
4420
|
var require_dist_cjs20 = __commonJS({
|
|
4397
|
-
"node_modules/.pnpm/@aws-sdk+middleware-host-header@3.972.
|
|
4421
|
+
"node_modules/.pnpm/@aws-sdk+middleware-host-header@3.972.9/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js"(exports2) {
|
|
4398
4422
|
"use strict";
|
|
4399
4423
|
var protocolHttp = require_dist_cjs2();
|
|
4400
4424
|
function resolveHostHeaderConfig5(input) {
|
|
@@ -4435,9 +4459,9 @@ var require_dist_cjs20 = __commonJS({
|
|
|
4435
4459
|
}
|
|
4436
4460
|
});
|
|
4437
4461
|
|
|
4438
|
-
// node_modules/.pnpm/@aws-sdk+middleware-logger@3.972.
|
|
4462
|
+
// node_modules/.pnpm/@aws-sdk+middleware-logger@3.972.9/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js
|
|
4439
4463
|
var require_dist_cjs21 = __commonJS({
|
|
4440
|
-
"node_modules/.pnpm/@aws-sdk+middleware-logger@3.972.
|
|
4464
|
+
"node_modules/.pnpm/@aws-sdk+middleware-logger@3.972.9/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js"(exports2) {
|
|
4441
4465
|
"use strict";
|
|
4442
4466
|
var loggerMiddleware = () => (next, context) => async (args) => {
|
|
4443
4467
|
try {
|
|
@@ -4606,9 +4630,9 @@ var init_invoke_store = __esm({
|
|
|
4606
4630
|
}
|
|
4607
4631
|
});
|
|
4608
4632
|
|
|
4609
|
-
// node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.972.
|
|
4633
|
+
// node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.972.10/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js
|
|
4610
4634
|
var require_recursionDetectionMiddleware = __commonJS({
|
|
4611
|
-
"node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.972.
|
|
4635
|
+
"node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.972.10/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js"(exports2) {
|
|
4612
4636
|
"use strict";
|
|
4613
4637
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
4614
4638
|
exports2.recursionDetectionMiddleware = void 0;
|
|
@@ -4644,9 +4668,9 @@ var require_recursionDetectionMiddleware = __commonJS({
|
|
|
4644
4668
|
}
|
|
4645
4669
|
});
|
|
4646
4670
|
|
|
4647
|
-
// node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.972.
|
|
4671
|
+
// node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.972.10/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js
|
|
4648
4672
|
var require_dist_cjs22 = __commonJS({
|
|
4649
|
-
"node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.972.
|
|
4673
|
+
"node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.972.10/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js"(exports2) {
|
|
4650
4674
|
"use strict";
|
|
4651
4675
|
var recursionDetectionMiddleware = require_recursionDetectionMiddleware();
|
|
4652
4676
|
var recursionDetectionMiddlewareOptions = {
|
|
@@ -4672,9 +4696,9 @@ var require_dist_cjs22 = __commonJS({
|
|
|
4672
4696
|
}
|
|
4673
4697
|
});
|
|
4674
4698
|
|
|
4675
|
-
// node_modules/.pnpm/@smithy+middleware-stack@4.2.
|
|
4699
|
+
// node_modules/.pnpm/@smithy+middleware-stack@4.2.13/node_modules/@smithy/middleware-stack/dist-cjs/index.js
|
|
4676
4700
|
var require_dist_cjs23 = __commonJS({
|
|
4677
|
-
"node_modules/.pnpm/@smithy+middleware-stack@4.2.
|
|
4701
|
+
"node_modules/.pnpm/@smithy+middleware-stack@4.2.13/node_modules/@smithy/middleware-stack/dist-cjs/index.js"(exports2) {
|
|
4678
4702
|
"use strict";
|
|
4679
4703
|
var getAllAliases = (name2, aliases) => {
|
|
4680
4704
|
const _aliases = [];
|
|
@@ -4943,39 +4967,10 @@ var require_dist_cjs23 = __commonJS({
|
|
|
4943
4967
|
}
|
|
4944
4968
|
});
|
|
4945
4969
|
|
|
4946
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
4947
|
-
var import_util_stream, collectBody;
|
|
4948
|
-
var init_collect_stream_body = __esm({
|
|
4949
|
-
"node_modules/.pnpm/@smithy+core@3.23.13/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js"() {
|
|
4950
|
-
import_util_stream = __toESM(require_dist_cjs13());
|
|
4951
|
-
collectBody = async (streamBody = new Uint8Array(), context) => {
|
|
4952
|
-
if (streamBody instanceof Uint8Array) {
|
|
4953
|
-
return import_util_stream.Uint8ArrayBlobAdapter.mutate(streamBody);
|
|
4954
|
-
}
|
|
4955
|
-
if (!streamBody) {
|
|
4956
|
-
return import_util_stream.Uint8ArrayBlobAdapter.mutate(new Uint8Array());
|
|
4957
|
-
}
|
|
4958
|
-
const fromContext = context.streamCollector(streamBody);
|
|
4959
|
-
return import_util_stream.Uint8ArrayBlobAdapter.mutate(await fromContext);
|
|
4960
|
-
};
|
|
4961
|
-
}
|
|
4962
|
-
});
|
|
4963
|
-
|
|
4964
|
-
// node_modules/.pnpm/@smithy+core@3.23.13/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js
|
|
4965
|
-
function extendedEncodeURIComponent(str) {
|
|
4966
|
-
return encodeURIComponent(str).replace(/[!'()*]/g, function(c5) {
|
|
4967
|
-
return "%" + c5.charCodeAt(0).toString(16).toUpperCase();
|
|
4968
|
-
});
|
|
4969
|
-
}
|
|
4970
|
-
var init_extended_encode_uri_component = __esm({
|
|
4971
|
-
"node_modules/.pnpm/@smithy+core@3.23.13/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js"() {
|
|
4972
|
-
}
|
|
4973
|
-
});
|
|
4974
|
-
|
|
4975
|
-
// node_modules/.pnpm/@smithy+core@3.23.13/node_modules/@smithy/core/dist-es/submodules/schema/deref.js
|
|
4970
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/deref.js
|
|
4976
4971
|
var deref;
|
|
4977
4972
|
var init_deref = __esm({
|
|
4978
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
4973
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/deref.js"() {
|
|
4979
4974
|
deref = (schemaRef) => {
|
|
4980
4975
|
if (typeof schemaRef === "function") {
|
|
4981
4976
|
return schemaRef();
|
|
@@ -4985,10 +4980,10 @@ var init_deref = __esm({
|
|
|
4985
4980
|
}
|
|
4986
4981
|
});
|
|
4987
4982
|
|
|
4988
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
4983
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js
|
|
4989
4984
|
var operation;
|
|
4990
4985
|
var init_operation = __esm({
|
|
4991
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
4986
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js"() {
|
|
4992
4987
|
operation = (namespace, name2, traits, input, output) => ({
|
|
4993
4988
|
name: name2,
|
|
4994
4989
|
namespace,
|
|
@@ -4999,10 +4994,10 @@ var init_operation = __esm({
|
|
|
4999
4994
|
}
|
|
5000
4995
|
});
|
|
5001
4996
|
|
|
5002
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
4997
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js
|
|
5003
4998
|
var import_protocol_http, import_util_middleware, schemaDeserializationMiddleware, findHeader;
|
|
5004
4999
|
var init_schemaDeserializationMiddleware = __esm({
|
|
5005
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5000
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js"() {
|
|
5006
5001
|
import_protocol_http = __toESM(require_dist_cjs2());
|
|
5007
5002
|
import_util_middleware = __toESM(require_dist_cjs18());
|
|
5008
5003
|
init_operation();
|
|
@@ -5067,9 +5062,9 @@ var init_schemaDeserializationMiddleware = __esm({
|
|
|
5067
5062
|
}
|
|
5068
5063
|
});
|
|
5069
5064
|
|
|
5070
|
-
// node_modules/.pnpm/@smithy+querystring-parser@4.2.
|
|
5065
|
+
// node_modules/.pnpm/@smithy+querystring-parser@4.2.13/node_modules/@smithy/querystring-parser/dist-cjs/index.js
|
|
5071
5066
|
var require_dist_cjs24 = __commonJS({
|
|
5072
|
-
"node_modules/.pnpm/@smithy+querystring-parser@4.2.
|
|
5067
|
+
"node_modules/.pnpm/@smithy+querystring-parser@4.2.13/node_modules/@smithy/querystring-parser/dist-cjs/index.js"(exports2) {
|
|
5073
5068
|
"use strict";
|
|
5074
5069
|
function parseQueryString(querystring) {
|
|
5075
5070
|
const query = {};
|
|
@@ -5096,9 +5091,9 @@ var require_dist_cjs24 = __commonJS({
|
|
|
5096
5091
|
}
|
|
5097
5092
|
});
|
|
5098
5093
|
|
|
5099
|
-
// node_modules/.pnpm/@smithy+url-parser@4.2.
|
|
5094
|
+
// node_modules/.pnpm/@smithy+url-parser@4.2.13/node_modules/@smithy/url-parser/dist-cjs/index.js
|
|
5100
5095
|
var require_dist_cjs25 = __commonJS({
|
|
5101
|
-
"node_modules/.pnpm/@smithy+url-parser@4.2.
|
|
5096
|
+
"node_modules/.pnpm/@smithy+url-parser@4.2.13/node_modules/@smithy/url-parser/dist-cjs/index.js"(exports2) {
|
|
5102
5097
|
"use strict";
|
|
5103
5098
|
var querystringParser = require_dist_cjs24();
|
|
5104
5099
|
var parseUrl6 = (url) => {
|
|
@@ -5122,10 +5117,10 @@ var require_dist_cjs25 = __commonJS({
|
|
|
5122
5117
|
}
|
|
5123
5118
|
});
|
|
5124
5119
|
|
|
5125
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5120
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js
|
|
5126
5121
|
var import_url_parser, toEndpointV1;
|
|
5127
5122
|
var init_toEndpointV1 = __esm({
|
|
5128
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5123
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js"() {
|
|
5129
5124
|
import_url_parser = __toESM(require_dist_cjs25());
|
|
5130
5125
|
toEndpointV1 = (endpoint) => {
|
|
5131
5126
|
if (typeof endpoint === "object") {
|
|
@@ -5146,21 +5141,21 @@ var init_toEndpointV1 = __esm({
|
|
|
5146
5141
|
}
|
|
5147
5142
|
});
|
|
5148
5143
|
|
|
5149
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5144
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js
|
|
5150
5145
|
var endpoints_exports = {};
|
|
5151
5146
|
__export(endpoints_exports, {
|
|
5152
5147
|
toEndpointV1: () => toEndpointV1
|
|
5153
5148
|
});
|
|
5154
5149
|
var init_endpoints = __esm({
|
|
5155
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5150
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js"() {
|
|
5156
5151
|
init_toEndpointV1();
|
|
5157
5152
|
}
|
|
5158
5153
|
});
|
|
5159
5154
|
|
|
5160
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5155
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js
|
|
5161
5156
|
var import_util_middleware2, schemaSerializationMiddleware;
|
|
5162
5157
|
var init_schemaSerializationMiddleware = __esm({
|
|
5163
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5158
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js"() {
|
|
5164
5159
|
init_endpoints();
|
|
5165
5160
|
import_util_middleware2 = __toESM(require_dist_cjs18());
|
|
5166
5161
|
init_operation();
|
|
@@ -5181,7 +5176,7 @@ var init_schemaSerializationMiddleware = __esm({
|
|
|
5181
5176
|
}
|
|
5182
5177
|
});
|
|
5183
5178
|
|
|
5184
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5179
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js
|
|
5185
5180
|
function getSchemaSerdePlugin(config) {
|
|
5186
5181
|
return {
|
|
5187
5182
|
applyToStack: (commandStack) => {
|
|
@@ -5193,7 +5188,7 @@ function getSchemaSerdePlugin(config) {
|
|
|
5193
5188
|
}
|
|
5194
5189
|
var deserializerMiddlewareOption, serializerMiddlewareOption;
|
|
5195
5190
|
var init_getSchemaSerdePlugin = __esm({
|
|
5196
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5191
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js"() {
|
|
5197
5192
|
init_schemaDeserializationMiddleware();
|
|
5198
5193
|
init_schemaSerializationMiddleware();
|
|
5199
5194
|
deserializerMiddlewareOption = {
|
|
@@ -5211,10 +5206,10 @@ var init_getSchemaSerdePlugin = __esm({
|
|
|
5211
5206
|
}
|
|
5212
5207
|
});
|
|
5213
5208
|
|
|
5214
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5209
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js
|
|
5215
5210
|
var Schema;
|
|
5216
5211
|
var init_Schema = __esm({
|
|
5217
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5212
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js"() {
|
|
5218
5213
|
Schema = class {
|
|
5219
5214
|
name;
|
|
5220
5215
|
namespace;
|
|
@@ -5238,10 +5233,10 @@ var init_Schema = __esm({
|
|
|
5238
5233
|
}
|
|
5239
5234
|
});
|
|
5240
5235
|
|
|
5241
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5236
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js
|
|
5242
5237
|
var ListSchema, list;
|
|
5243
5238
|
var init_ListSchema = __esm({
|
|
5244
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5239
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js"() {
|
|
5245
5240
|
init_Schema();
|
|
5246
5241
|
ListSchema = class _ListSchema extends Schema {
|
|
5247
5242
|
static symbol = /* @__PURE__ */ Symbol.for("@smithy/lis");
|
|
@@ -5259,10 +5254,10 @@ var init_ListSchema = __esm({
|
|
|
5259
5254
|
}
|
|
5260
5255
|
});
|
|
5261
5256
|
|
|
5262
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5257
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js
|
|
5263
5258
|
var MapSchema, map;
|
|
5264
5259
|
var init_MapSchema = __esm({
|
|
5265
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5260
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js"() {
|
|
5266
5261
|
init_Schema();
|
|
5267
5262
|
MapSchema = class _MapSchema extends Schema {
|
|
5268
5263
|
static symbol = /* @__PURE__ */ Symbol.for("@smithy/map");
|
|
@@ -5282,10 +5277,10 @@ var init_MapSchema = __esm({
|
|
|
5282
5277
|
}
|
|
5283
5278
|
});
|
|
5284
5279
|
|
|
5285
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5280
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js
|
|
5286
5281
|
var OperationSchema, op;
|
|
5287
5282
|
var init_OperationSchema = __esm({
|
|
5288
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5283
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js"() {
|
|
5289
5284
|
init_Schema();
|
|
5290
5285
|
OperationSchema = class _OperationSchema extends Schema {
|
|
5291
5286
|
static symbol = /* @__PURE__ */ Symbol.for("@smithy/ope");
|
|
@@ -5305,10 +5300,10 @@ var init_OperationSchema = __esm({
|
|
|
5305
5300
|
}
|
|
5306
5301
|
});
|
|
5307
5302
|
|
|
5308
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5303
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js
|
|
5309
5304
|
var StructureSchema, struct;
|
|
5310
5305
|
var init_StructureSchema = __esm({
|
|
5311
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5306
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js"() {
|
|
5312
5307
|
init_Schema();
|
|
5313
5308
|
StructureSchema = class _StructureSchema extends Schema {
|
|
5314
5309
|
static symbol = /* @__PURE__ */ Symbol.for("@smithy/str");
|
|
@@ -5328,10 +5323,10 @@ var init_StructureSchema = __esm({
|
|
|
5328
5323
|
}
|
|
5329
5324
|
});
|
|
5330
5325
|
|
|
5331
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5326
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js
|
|
5332
5327
|
var ErrorSchema, error;
|
|
5333
5328
|
var init_ErrorSchema = __esm({
|
|
5334
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5329
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js"() {
|
|
5335
5330
|
init_Schema();
|
|
5336
5331
|
init_StructureSchema();
|
|
5337
5332
|
ErrorSchema = class _ErrorSchema extends StructureSchema {
|
|
@@ -5350,7 +5345,7 @@ var init_ErrorSchema = __esm({
|
|
|
5350
5345
|
}
|
|
5351
5346
|
});
|
|
5352
5347
|
|
|
5353
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5348
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js
|
|
5354
5349
|
function translateTraits(indicator) {
|
|
5355
5350
|
if (typeof indicator === "object") {
|
|
5356
5351
|
return indicator;
|
|
@@ -5378,12 +5373,12 @@ function translateTraits(indicator) {
|
|
|
5378
5373
|
}
|
|
5379
5374
|
var traitsCache;
|
|
5380
5375
|
var init_translateTraits = __esm({
|
|
5381
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5376
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js"() {
|
|
5382
5377
|
traitsCache = [];
|
|
5383
5378
|
}
|
|
5384
5379
|
});
|
|
5385
5380
|
|
|
5386
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5381
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js
|
|
5387
5382
|
function member(memberSchema, memberName) {
|
|
5388
5383
|
if (memberSchema instanceof NormalizedSchema) {
|
|
5389
5384
|
return Object.assign(memberSchema, {
|
|
@@ -5396,7 +5391,7 @@ function member(memberSchema, memberName) {
|
|
|
5396
5391
|
}
|
|
5397
5392
|
var anno, simpleSchemaCacheN, simpleSchemaCacheS, NormalizedSchema, isMemberSchema, isStaticSchema;
|
|
5398
5393
|
var init_NormalizedSchema = __esm({
|
|
5399
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5394
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js"() {
|
|
5400
5395
|
init_deref();
|
|
5401
5396
|
init_translateTraits();
|
|
5402
5397
|
anno = {
|
|
@@ -5672,10 +5667,10 @@ var init_NormalizedSchema = __esm({
|
|
|
5672
5667
|
}
|
|
5673
5668
|
});
|
|
5674
5669
|
|
|
5675
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5670
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js
|
|
5676
5671
|
var SimpleSchema, sim, simAdapter;
|
|
5677
5672
|
var init_SimpleSchema = __esm({
|
|
5678
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5673
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js"() {
|
|
5679
5674
|
init_Schema();
|
|
5680
5675
|
SimpleSchema = class _SimpleSchema extends Schema {
|
|
5681
5676
|
static symbol = /* @__PURE__ */ Symbol.for("@smithy/sim");
|
|
@@ -5699,10 +5694,10 @@ var init_SimpleSchema = __esm({
|
|
|
5699
5694
|
}
|
|
5700
5695
|
});
|
|
5701
5696
|
|
|
5702
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5697
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js
|
|
5703
5698
|
var SCHEMA;
|
|
5704
5699
|
var init_sentinels = __esm({
|
|
5705
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5700
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js"() {
|
|
5706
5701
|
SCHEMA = {
|
|
5707
5702
|
BLOB: 21,
|
|
5708
5703
|
STREAMING_BLOB: 42,
|
|
@@ -5722,10 +5717,10 @@ var init_sentinels = __esm({
|
|
|
5722
5717
|
}
|
|
5723
5718
|
});
|
|
5724
5719
|
|
|
5725
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5720
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js
|
|
5726
5721
|
var TypeRegistry;
|
|
5727
5722
|
var init_TypeRegistry = __esm({
|
|
5728
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5723
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js"() {
|
|
5729
5724
|
TypeRegistry = class _TypeRegistry {
|
|
5730
5725
|
namespace;
|
|
5731
5726
|
schemas;
|
|
@@ -5813,7 +5808,7 @@ var init_TypeRegistry = __esm({
|
|
|
5813
5808
|
}
|
|
5814
5809
|
});
|
|
5815
5810
|
|
|
5816
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5811
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/index.js
|
|
5817
5812
|
var schema_exports = {};
|
|
5818
5813
|
__export(schema_exports, {
|
|
5819
5814
|
ErrorSchema: () => ErrorSchema,
|
|
@@ -5845,7 +5840,7 @@ __export(schema_exports, {
|
|
|
5845
5840
|
translateTraits: () => translateTraits
|
|
5846
5841
|
});
|
|
5847
5842
|
var init_schema = __esm({
|
|
5848
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5843
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/schema/index.js"() {
|
|
5849
5844
|
init_deref();
|
|
5850
5845
|
init_getSchemaSerdePlugin();
|
|
5851
5846
|
init_ListSchema();
|
|
@@ -5863,18 +5858,18 @@ var init_schema = __esm({
|
|
|
5863
5858
|
}
|
|
5864
5859
|
});
|
|
5865
5860
|
|
|
5866
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5861
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js
|
|
5867
5862
|
var copyDocumentWithTransform;
|
|
5868
5863
|
var init_copyDocumentWithTransform = __esm({
|
|
5869
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5864
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js"() {
|
|
5870
5865
|
copyDocumentWithTransform = (source, schemaRef, transform = (_) => _) => source;
|
|
5871
5866
|
}
|
|
5872
5867
|
});
|
|
5873
5868
|
|
|
5874
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
5869
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js
|
|
5875
5870
|
var parseBoolean, expectBoolean, expectNumber, MAX_FLOAT, expectFloat32, expectLong, expectInt, expectInt32, expectShort, expectByte, expectSizedInt, castInt, expectNonNull, expectObject, expectString, expectUnion, strictParseDouble, strictParseFloat, strictParseFloat32, NUMBER_REGEX, parseNumber, limitedParseDouble, handleFloat, limitedParseFloat, limitedParseFloat32, parseFloatString, strictParseLong, strictParseInt, strictParseInt32, strictParseShort, strictParseByte, stackTraceWarning, logger;
|
|
5876
5871
|
var init_parse_utils = __esm({
|
|
5877
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
5872
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js"() {
|
|
5878
5873
|
parseBoolean = (value) => {
|
|
5879
5874
|
switch (value) {
|
|
5880
5875
|
case "true":
|
|
@@ -6102,7 +6097,7 @@ var init_parse_utils = __esm({
|
|
|
6102
6097
|
}
|
|
6103
6098
|
});
|
|
6104
6099
|
|
|
6105
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6100
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js
|
|
6106
6101
|
function dateToUtcString(date2) {
|
|
6107
6102
|
const year2 = date2.getUTCFullYear();
|
|
6108
6103
|
const month = date2.getUTCMonth();
|
|
@@ -6119,7 +6114,7 @@ function dateToUtcString(date2) {
|
|
|
6119
6114
|
}
|
|
6120
6115
|
var DAYS, MONTHS, RFC3339, parseRfc3339DateTime, RFC3339_WITH_OFFSET, parseRfc3339DateTimeWithOffset, IMF_FIXDATE, RFC_850_DATE, ASC_TIME, parseRfc7231DateTime, parseEpochTimestamp, buildDate, parseTwoDigitYear, FIFTY_YEARS_IN_MILLIS, adjustRfc850Year, parseMonthByShortName, DAYS_IN_MONTH, validateDayOfMonth, isLeapYear, parseDateValue, parseMilliseconds, parseOffsetToMilliseconds, stripLeadingZeroes;
|
|
6121
6116
|
var init_date_utils = __esm({
|
|
6122
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6117
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js"() {
|
|
6123
6118
|
init_parse_utils();
|
|
6124
6119
|
DAYS = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
|
|
6125
6120
|
MONTHS = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
|
|
@@ -6326,18 +6321,18 @@ var require_dist_cjs26 = __commonJS({
|
|
|
6326
6321
|
}
|
|
6327
6322
|
});
|
|
6328
6323
|
|
|
6329
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6324
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js
|
|
6330
6325
|
var import_uuid;
|
|
6331
6326
|
var init_generateIdempotencyToken = __esm({
|
|
6332
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6327
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js"() {
|
|
6333
6328
|
import_uuid = __toESM(require_dist_cjs26());
|
|
6334
6329
|
}
|
|
6335
6330
|
});
|
|
6336
6331
|
|
|
6337
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6332
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js
|
|
6338
6333
|
var LazyJsonString;
|
|
6339
6334
|
var init_lazy_json = __esm({
|
|
6340
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6335
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js"() {
|
|
6341
6336
|
LazyJsonString = function LazyJsonString2(val) {
|
|
6342
6337
|
const str = Object.assign(new String(val), {
|
|
6343
6338
|
deserializeJSON() {
|
|
@@ -6364,7 +6359,7 @@ var init_lazy_json = __esm({
|
|
|
6364
6359
|
}
|
|
6365
6360
|
});
|
|
6366
6361
|
|
|
6367
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6362
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js
|
|
6368
6363
|
function quoteHeader(part) {
|
|
6369
6364
|
if (part.includes(",") || part.includes('"')) {
|
|
6370
6365
|
part = `"${part.replace(/"/g, '\\"')}"`;
|
|
@@ -6372,11 +6367,11 @@ function quoteHeader(part) {
|
|
|
6372
6367
|
return part;
|
|
6373
6368
|
}
|
|
6374
6369
|
var init_quote_header = __esm({
|
|
6375
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6370
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js"() {
|
|
6376
6371
|
}
|
|
6377
6372
|
});
|
|
6378
6373
|
|
|
6379
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6374
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js
|
|
6380
6375
|
function range(v5, min, max) {
|
|
6381
6376
|
const _v = Number(v5);
|
|
6382
6377
|
if (_v < min || _v > max) {
|
|
@@ -6385,7 +6380,7 @@ function range(v5, min, max) {
|
|
|
6385
6380
|
}
|
|
6386
6381
|
var ddd, mmm, time, date, year, RFC3339_WITH_OFFSET2, IMF_FIXDATE2, RFC_850_DATE2, ASC_TIME2, months, _parseEpochTimestamp, _parseRfc3339DateTimeWithOffset, _parseRfc7231DateTime;
|
|
6387
6382
|
var init_schema_date_utils = __esm({
|
|
6388
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6383
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js"() {
|
|
6389
6384
|
ddd = `(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)(?:[ne|u?r]?s?day)?`;
|
|
6390
6385
|
mmm = `(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)`;
|
|
6391
6386
|
time = `(\\d?\\d):(\\d{2}):(\\d{2})(?:\\.(\\d+))?`;
|
|
@@ -6480,7 +6475,7 @@ var init_schema_date_utils = __esm({
|
|
|
6480
6475
|
}
|
|
6481
6476
|
});
|
|
6482
6477
|
|
|
6483
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6478
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js
|
|
6484
6479
|
function splitEvery(value, delimiter, numDelimiters) {
|
|
6485
6480
|
if (numDelimiters <= 0 || !Number.isInteger(numDelimiters)) {
|
|
6486
6481
|
throw new Error("Invalid number of delimiters (" + numDelimiters + ") for splitEvery.");
|
|
@@ -6508,14 +6503,14 @@ function splitEvery(value, delimiter, numDelimiters) {
|
|
|
6508
6503
|
return compoundSegments;
|
|
6509
6504
|
}
|
|
6510
6505
|
var init_split_every = __esm({
|
|
6511
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6506
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js"() {
|
|
6512
6507
|
}
|
|
6513
6508
|
});
|
|
6514
6509
|
|
|
6515
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6510
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js
|
|
6516
6511
|
var splitHeader;
|
|
6517
6512
|
var init_split_header = __esm({
|
|
6518
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6513
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js"() {
|
|
6519
6514
|
splitHeader = (value) => {
|
|
6520
6515
|
const z2 = value.length;
|
|
6521
6516
|
const values = [];
|
|
@@ -6556,13 +6551,13 @@ var init_split_header = __esm({
|
|
|
6556
6551
|
}
|
|
6557
6552
|
});
|
|
6558
6553
|
|
|
6559
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6554
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js
|
|
6560
6555
|
function nv(input) {
|
|
6561
6556
|
return new NumericValue(String(input), "bigDecimal");
|
|
6562
6557
|
}
|
|
6563
6558
|
var format, NumericValue;
|
|
6564
6559
|
var init_NumericValue = __esm({
|
|
6565
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6560
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js"() {
|
|
6566
6561
|
format = /^-?\d*(\.\d+)?$/;
|
|
6567
6562
|
NumericValue = class _NumericValue {
|
|
6568
6563
|
string;
|
|
@@ -6588,7 +6583,7 @@ var init_NumericValue = __esm({
|
|
|
6588
6583
|
}
|
|
6589
6584
|
});
|
|
6590
6585
|
|
|
6591
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6586
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/index.js
|
|
6592
6587
|
var serde_exports = {};
|
|
6593
6588
|
__export(serde_exports, {
|
|
6594
6589
|
LazyJsonString: () => LazyJsonString,
|
|
@@ -6635,7 +6630,7 @@ __export(serde_exports, {
|
|
|
6635
6630
|
strictParseShort: () => strictParseShort
|
|
6636
6631
|
});
|
|
6637
6632
|
var init_serde = __esm({
|
|
6638
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6633
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/serde/index.js"() {
|
|
6639
6634
|
init_copyDocumentWithTransform();
|
|
6640
6635
|
init_date_utils();
|
|
6641
6636
|
init_generateIdempotencyToken();
|
|
@@ -6649,10 +6644,39 @@ var init_serde = __esm({
|
|
|
6649
6644
|
}
|
|
6650
6645
|
});
|
|
6651
6646
|
|
|
6652
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6647
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js
|
|
6648
|
+
var import_util_stream, collectBody;
|
|
6649
|
+
var init_collect_stream_body = __esm({
|
|
6650
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js"() {
|
|
6651
|
+
import_util_stream = __toESM(require_dist_cjs13());
|
|
6652
|
+
collectBody = async (streamBody = new Uint8Array(), context) => {
|
|
6653
|
+
if (streamBody instanceof Uint8Array) {
|
|
6654
|
+
return import_util_stream.Uint8ArrayBlobAdapter.mutate(streamBody);
|
|
6655
|
+
}
|
|
6656
|
+
if (!streamBody) {
|
|
6657
|
+
return import_util_stream.Uint8ArrayBlobAdapter.mutate(new Uint8Array());
|
|
6658
|
+
}
|
|
6659
|
+
const fromContext = context.streamCollector(streamBody);
|
|
6660
|
+
return import_util_stream.Uint8ArrayBlobAdapter.mutate(await fromContext);
|
|
6661
|
+
};
|
|
6662
|
+
}
|
|
6663
|
+
});
|
|
6664
|
+
|
|
6665
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js
|
|
6666
|
+
function extendedEncodeURIComponent(str) {
|
|
6667
|
+
return encodeURIComponent(str).replace(/[!'()*]/g, function(c5) {
|
|
6668
|
+
return "%" + c5.charCodeAt(0).toString(16).toUpperCase();
|
|
6669
|
+
});
|
|
6670
|
+
}
|
|
6671
|
+
var init_extended_encode_uri_component = __esm({
|
|
6672
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js"() {
|
|
6673
|
+
}
|
|
6674
|
+
});
|
|
6675
|
+
|
|
6676
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js
|
|
6653
6677
|
var SerdeContext;
|
|
6654
6678
|
var init_SerdeContext = __esm({
|
|
6655
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6679
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js"() {
|
|
6656
6680
|
SerdeContext = class {
|
|
6657
6681
|
serdeContext;
|
|
6658
6682
|
setSerdeContext(serdeContext) {
|
|
@@ -6662,10 +6686,10 @@ var init_SerdeContext = __esm({
|
|
|
6662
6686
|
}
|
|
6663
6687
|
});
|
|
6664
6688
|
|
|
6665
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6689
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js
|
|
6666
6690
|
var import_util_utf8, EventStreamSerde;
|
|
6667
6691
|
var init_EventStreamSerde = __esm({
|
|
6668
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6692
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js"() {
|
|
6669
6693
|
import_util_utf8 = __toESM(require_dist_cjs6());
|
|
6670
6694
|
EventStreamSerde = class {
|
|
6671
6695
|
marshaller;
|
|
@@ -6904,21 +6928,21 @@ var init_EventStreamSerde = __esm({
|
|
|
6904
6928
|
}
|
|
6905
6929
|
});
|
|
6906
6930
|
|
|
6907
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6931
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js
|
|
6908
6932
|
var event_streams_exports = {};
|
|
6909
6933
|
__export(event_streams_exports, {
|
|
6910
6934
|
EventStreamSerde: () => EventStreamSerde
|
|
6911
6935
|
});
|
|
6912
6936
|
var init_event_streams = __esm({
|
|
6913
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6937
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js"() {
|
|
6914
6938
|
init_EventStreamSerde();
|
|
6915
6939
|
}
|
|
6916
6940
|
});
|
|
6917
6941
|
|
|
6918
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
6942
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js
|
|
6919
6943
|
var import_protocol_http2, HttpProtocol;
|
|
6920
6944
|
var init_HttpProtocol = __esm({
|
|
6921
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
6945
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js"() {
|
|
6922
6946
|
init_schema();
|
|
6923
6947
|
import_protocol_http2 = __toESM(require_dist_cjs2());
|
|
6924
6948
|
init_SerdeContext();
|
|
@@ -7061,10 +7085,10 @@ var init_HttpProtocol = __esm({
|
|
|
7061
7085
|
}
|
|
7062
7086
|
});
|
|
7063
7087
|
|
|
7064
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7088
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js
|
|
7065
7089
|
var import_protocol_http3, import_util_stream2, HttpBindingProtocol;
|
|
7066
7090
|
var init_HttpBindingProtocol = __esm({
|
|
7067
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7091
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js"() {
|
|
7068
7092
|
init_schema();
|
|
7069
7093
|
init_serde();
|
|
7070
7094
|
import_protocol_http3 = __toESM(require_dist_cjs2());
|
|
@@ -7332,10 +7356,10 @@ var init_HttpBindingProtocol = __esm({
|
|
|
7332
7356
|
}
|
|
7333
7357
|
});
|
|
7334
7358
|
|
|
7335
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7359
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js
|
|
7336
7360
|
var import_protocol_http4, RpcProtocol;
|
|
7337
7361
|
var init_RpcProtocol = __esm({
|
|
7338
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7362
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js"() {
|
|
7339
7363
|
init_schema();
|
|
7340
7364
|
import_protocol_http4 = __toESM(require_dist_cjs2());
|
|
7341
7365
|
init_collect_stream_body();
|
|
@@ -7429,10 +7453,10 @@ var init_RpcProtocol = __esm({
|
|
|
7429
7453
|
}
|
|
7430
7454
|
});
|
|
7431
7455
|
|
|
7432
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7456
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js
|
|
7433
7457
|
var resolvedPath;
|
|
7434
7458
|
var init_resolve_path = __esm({
|
|
7435
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7459
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js"() {
|
|
7436
7460
|
init_extended_encode_uri_component();
|
|
7437
7461
|
resolvedPath = (resolvedPath2, input, memberName, labelValueProvider, uriLabel, isGreedyLabel) => {
|
|
7438
7462
|
if (input != null && input[memberName] !== void 0) {
|
|
@@ -7449,13 +7473,13 @@ var init_resolve_path = __esm({
|
|
|
7449
7473
|
}
|
|
7450
7474
|
});
|
|
7451
7475
|
|
|
7452
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7476
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js
|
|
7453
7477
|
function requestBuilder(input, context) {
|
|
7454
7478
|
return new RequestBuilder(input, context);
|
|
7455
7479
|
}
|
|
7456
7480
|
var import_protocol_http5, RequestBuilder;
|
|
7457
7481
|
var init_requestBuilder = __esm({
|
|
7458
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7482
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js"() {
|
|
7459
7483
|
import_protocol_http5 = __toESM(require_dist_cjs2());
|
|
7460
7484
|
init_resolve_path();
|
|
7461
7485
|
RequestBuilder = class {
|
|
@@ -7525,7 +7549,7 @@ var init_requestBuilder = __esm({
|
|
|
7525
7549
|
}
|
|
7526
7550
|
});
|
|
7527
7551
|
|
|
7528
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7552
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js
|
|
7529
7553
|
function determineTimestampFormat(ns, settings) {
|
|
7530
7554
|
if (settings.timestampFormat.useTrait) {
|
|
7531
7555
|
if (ns.isTimestampSchema() && (ns.getSchema() === 5 || ns.getSchema() === 6 || ns.getSchema() === 7)) {
|
|
@@ -7537,14 +7561,14 @@ function determineTimestampFormat(ns, settings) {
|
|
|
7537
7561
|
return bindingFormat ?? settings.timestampFormat.default;
|
|
7538
7562
|
}
|
|
7539
7563
|
var init_determineTimestampFormat = __esm({
|
|
7540
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7564
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js"() {
|
|
7541
7565
|
}
|
|
7542
7566
|
});
|
|
7543
7567
|
|
|
7544
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7568
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js
|
|
7545
7569
|
var import_util_base64, import_util_utf82, FromStringShapeDeserializer;
|
|
7546
7570
|
var init_FromStringShapeDeserializer = __esm({
|
|
7547
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7571
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js"() {
|
|
7548
7572
|
init_schema();
|
|
7549
7573
|
init_serde();
|
|
7550
7574
|
import_util_base64 = __toESM(require_dist_cjs7());
|
|
@@ -7614,10 +7638,10 @@ var init_FromStringShapeDeserializer = __esm({
|
|
|
7614
7638
|
}
|
|
7615
7639
|
});
|
|
7616
7640
|
|
|
7617
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7641
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js
|
|
7618
7642
|
var import_util_utf83, HttpInterceptingShapeDeserializer;
|
|
7619
7643
|
var init_HttpInterceptingShapeDeserializer = __esm({
|
|
7620
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7644
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js"() {
|
|
7621
7645
|
init_schema();
|
|
7622
7646
|
import_util_utf83 = __toESM(require_dist_cjs6());
|
|
7623
7647
|
init_SerdeContext();
|
|
@@ -7662,10 +7686,10 @@ var init_HttpInterceptingShapeDeserializer = __esm({
|
|
|
7662
7686
|
}
|
|
7663
7687
|
});
|
|
7664
7688
|
|
|
7665
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7689
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js
|
|
7666
7690
|
var import_util_base642, ToStringShapeSerializer;
|
|
7667
7691
|
var init_ToStringShapeSerializer = __esm({
|
|
7668
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7692
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js"() {
|
|
7669
7693
|
init_schema();
|
|
7670
7694
|
init_serde();
|
|
7671
7695
|
import_util_base642 = __toESM(require_dist_cjs7());
|
|
@@ -7759,10 +7783,10 @@ var init_ToStringShapeSerializer = __esm({
|
|
|
7759
7783
|
}
|
|
7760
7784
|
});
|
|
7761
7785
|
|
|
7762
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7786
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js
|
|
7763
7787
|
var HttpInterceptingShapeSerializer;
|
|
7764
7788
|
var init_HttpInterceptingShapeSerializer = __esm({
|
|
7765
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7789
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js"() {
|
|
7766
7790
|
init_schema();
|
|
7767
7791
|
init_ToStringShapeSerializer();
|
|
7768
7792
|
HttpInterceptingShapeSerializer = class {
|
|
@@ -7799,7 +7823,7 @@ var init_HttpInterceptingShapeSerializer = __esm({
|
|
|
7799
7823
|
}
|
|
7800
7824
|
});
|
|
7801
7825
|
|
|
7802
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
7826
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/index.js
|
|
7803
7827
|
var protocols_exports = {};
|
|
7804
7828
|
__export(protocols_exports, {
|
|
7805
7829
|
FromStringShapeDeserializer: () => FromStringShapeDeserializer,
|
|
@@ -7818,7 +7842,7 @@ __export(protocols_exports, {
|
|
|
7818
7842
|
resolvedPath: () => resolvedPath
|
|
7819
7843
|
});
|
|
7820
7844
|
var init_protocols = __esm({
|
|
7821
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
7845
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/protocols/index.js"() {
|
|
7822
7846
|
init_collect_stream_body();
|
|
7823
7847
|
init_extended_encode_uri_component();
|
|
7824
7848
|
init_HttpBindingProtocol();
|
|
@@ -7835,15 +7859,15 @@ var init_protocols = __esm({
|
|
|
7835
7859
|
}
|
|
7836
7860
|
});
|
|
7837
7861
|
|
|
7838
|
-
// node_modules/.pnpm/@smithy+smithy-client@4.12.
|
|
7862
|
+
// node_modules/.pnpm/@smithy+smithy-client@4.12.9/node_modules/@smithy/smithy-client/dist-cjs/index.js
|
|
7839
7863
|
var require_dist_cjs27 = __commonJS({
|
|
7840
|
-
"node_modules/.pnpm/@smithy+smithy-client@4.12.
|
|
7864
|
+
"node_modules/.pnpm/@smithy+smithy-client@4.12.9/node_modules/@smithy/smithy-client/dist-cjs/index.js"(exports2) {
|
|
7841
7865
|
"use strict";
|
|
7842
7866
|
var middlewareStack = require_dist_cjs23();
|
|
7843
|
-
var protocols = (init_protocols(), __toCommonJS(protocols_exports));
|
|
7844
7867
|
var types = require_dist_cjs();
|
|
7845
7868
|
var schema = (init_schema(), __toCommonJS(schema_exports));
|
|
7846
7869
|
var serde = (init_serde(), __toCommonJS(serde_exports));
|
|
7870
|
+
var protocols = (init_protocols(), __toCommonJS(protocols_exports));
|
|
7847
7871
|
var Client = class {
|
|
7848
7872
|
config;
|
|
7849
7873
|
middlewareStack = middlewareStack.constructStack();
|
|
@@ -8468,7 +8492,7 @@ var require_dist_cjs28 = __commonJS({
|
|
|
8468
8492
|
}
|
|
8469
8493
|
});
|
|
8470
8494
|
|
|
8471
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
8495
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js
|
|
8472
8496
|
function alloc(size) {
|
|
8473
8497
|
return typeof Buffer !== "undefined" ? Buffer.alloc(size) : new Uint8Array(size);
|
|
8474
8498
|
}
|
|
@@ -8478,7 +8502,7 @@ function tag(data2) {
|
|
|
8478
8502
|
}
|
|
8479
8503
|
var majorUint64, majorNegativeInt64, majorUnstructuredByteString, majorUtf8String, majorList, majorMap, majorTag, majorSpecial, specialFalse, specialTrue, specialNull, specialUndefined, extendedOneByte, extendedFloat16, extendedFloat32, extendedFloat64, minorIndefinite, tagSymbol;
|
|
8480
8504
|
var init_cbor_types = __esm({
|
|
8481
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
8505
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js"() {
|
|
8482
8506
|
majorUint64 = 0;
|
|
8483
8507
|
majorNegativeInt64 = 1;
|
|
8484
8508
|
majorUnstructuredByteString = 2;
|
|
@@ -8500,7 +8524,7 @@ var init_cbor_types = __esm({
|
|
|
8500
8524
|
}
|
|
8501
8525
|
});
|
|
8502
8526
|
|
|
8503
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
8527
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js
|
|
8504
8528
|
function setPayload(bytes) {
|
|
8505
8529
|
payload = bytes;
|
|
8506
8530
|
dataView = new DataView(payload.buffer, payload.byteOffset, payload.byteLength);
|
|
@@ -8892,7 +8916,7 @@ function castBigInt(bigInt) {
|
|
|
8892
8916
|
}
|
|
8893
8917
|
var import_util_utf84, USE_TEXT_DECODER, USE_BUFFER, payload, dataView, textDecoder, _offset, minorValueToArgumentLength;
|
|
8894
8918
|
var init_cbor_decode = __esm({
|
|
8895
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
8919
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js"() {
|
|
8896
8920
|
init_serde();
|
|
8897
8921
|
import_util_utf84 = __toESM(require_dist_cjs6());
|
|
8898
8922
|
init_cbor_types();
|
|
@@ -8911,7 +8935,7 @@ var init_cbor_decode = __esm({
|
|
|
8911
8935
|
}
|
|
8912
8936
|
});
|
|
8913
8937
|
|
|
8914
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
8938
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js
|
|
8915
8939
|
function ensureSpace(bytes) {
|
|
8916
8940
|
const remaining = data.byteLength - cursor;
|
|
8917
8941
|
if (remaining < bytes) {
|
|
@@ -9101,7 +9125,7 @@ function encode(_input) {
|
|
|
9101
9125
|
}
|
|
9102
9126
|
var import_util_utf85, USE_BUFFER2, initialSize, data, dataView2, cursor;
|
|
9103
9127
|
var init_cbor_encode = __esm({
|
|
9104
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
9128
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js"() {
|
|
9105
9129
|
init_serde();
|
|
9106
9130
|
import_util_utf85 = __toESM(require_dist_cjs6());
|
|
9107
9131
|
init_cbor_types();
|
|
@@ -9113,10 +9137,10 @@ var init_cbor_encode = __esm({
|
|
|
9113
9137
|
}
|
|
9114
9138
|
});
|
|
9115
9139
|
|
|
9116
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
9140
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js
|
|
9117
9141
|
var cbor;
|
|
9118
9142
|
var init_cbor = __esm({
|
|
9119
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
9143
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js"() {
|
|
9120
9144
|
init_cbor_decode();
|
|
9121
9145
|
init_cbor_encode();
|
|
9122
9146
|
cbor = {
|
|
@@ -9140,10 +9164,10 @@ var init_cbor = __esm({
|
|
|
9140
9164
|
}
|
|
9141
9165
|
});
|
|
9142
9166
|
|
|
9143
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
9167
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js
|
|
9144
9168
|
var dateToTag, loadSmithyRpcV2CborErrorCode;
|
|
9145
9169
|
var init_parseCborBody = __esm({
|
|
9146
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
9170
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js"() {
|
|
9147
9171
|
init_cbor_types();
|
|
9148
9172
|
dateToTag = (date2) => {
|
|
9149
9173
|
return tag({
|
|
@@ -9179,10 +9203,10 @@ var init_parseCborBody = __esm({
|
|
|
9179
9203
|
}
|
|
9180
9204
|
});
|
|
9181
9205
|
|
|
9182
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
9206
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js
|
|
9183
9207
|
var import_util_base643, CborCodec, CborShapeSerializer, CborShapeDeserializer;
|
|
9184
9208
|
var init_CborCodec = __esm({
|
|
9185
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
9209
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js"() {
|
|
9186
9210
|
init_protocols();
|
|
9187
9211
|
init_schema();
|
|
9188
9212
|
init_serde();
|
|
@@ -9378,10 +9402,10 @@ var init_CborCodec = __esm({
|
|
|
9378
9402
|
}
|
|
9379
9403
|
});
|
|
9380
9404
|
|
|
9381
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
9405
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js
|
|
9382
9406
|
var import_util_middleware3, SmithyRpcV2CborProtocol;
|
|
9383
9407
|
var init_SmithyRpcV2CborProtocol = __esm({
|
|
9384
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
9408
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js"() {
|
|
9385
9409
|
init_protocols();
|
|
9386
9410
|
init_schema();
|
|
9387
9411
|
init_schema();
|
|
@@ -9482,19 +9506,19 @@ var init_SmithyRpcV2CborProtocol = __esm({
|
|
|
9482
9506
|
}
|
|
9483
9507
|
});
|
|
9484
9508
|
|
|
9485
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
9509
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/index.js
|
|
9486
9510
|
var init_cbor2 = __esm({
|
|
9487
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
9511
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/submodules/cbor/index.js"() {
|
|
9488
9512
|
init_parseCborBody();
|
|
9489
9513
|
init_SmithyRpcV2CborProtocol();
|
|
9490
9514
|
init_CborCodec();
|
|
9491
9515
|
}
|
|
9492
9516
|
});
|
|
9493
9517
|
|
|
9494
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9518
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js
|
|
9495
9519
|
var import_smithy_client, ProtocolLib;
|
|
9496
9520
|
var init_ProtocolLib = __esm({
|
|
9497
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9521
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js"() {
|
|
9498
9522
|
init_schema();
|
|
9499
9523
|
import_smithy_client = __toESM(require_dist_cjs27());
|
|
9500
9524
|
ProtocolLib = class {
|
|
@@ -9631,10 +9655,10 @@ var init_ProtocolLib = __esm({
|
|
|
9631
9655
|
}
|
|
9632
9656
|
});
|
|
9633
9657
|
|
|
9634
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9658
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js
|
|
9635
9659
|
var AwsSmithyRpcV2CborProtocol;
|
|
9636
9660
|
var init_AwsSmithyRpcV2CborProtocol = __esm({
|
|
9637
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9661
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js"() {
|
|
9638
9662
|
init_cbor2();
|
|
9639
9663
|
init_schema();
|
|
9640
9664
|
init_ProtocolLib();
|
|
@@ -9688,10 +9712,10 @@ var init_AwsSmithyRpcV2CborProtocol = __esm({
|
|
|
9688
9712
|
}
|
|
9689
9713
|
});
|
|
9690
9714
|
|
|
9691
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9715
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js
|
|
9692
9716
|
var _toStr, _toBool, _toNum;
|
|
9693
9717
|
var init_coercing_serializers = __esm({
|
|
9694
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9718
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js"() {
|
|
9695
9719
|
_toStr = (val) => {
|
|
9696
9720
|
if (val == null) {
|
|
9697
9721
|
return val;
|
|
@@ -9748,10 +9772,10 @@ var init_coercing_serializers = __esm({
|
|
|
9748
9772
|
}
|
|
9749
9773
|
});
|
|
9750
9774
|
|
|
9751
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9775
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js
|
|
9752
9776
|
var SerdeContextConfig;
|
|
9753
9777
|
var init_ConfigurableSerdeContext = __esm({
|
|
9754
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9778
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js"() {
|
|
9755
9779
|
SerdeContextConfig = class {
|
|
9756
9780
|
serdeContext;
|
|
9757
9781
|
setSerdeContext(serdeContext) {
|
|
@@ -9761,10 +9785,10 @@ var init_ConfigurableSerdeContext = __esm({
|
|
|
9761
9785
|
}
|
|
9762
9786
|
});
|
|
9763
9787
|
|
|
9764
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9788
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js
|
|
9765
9789
|
var UnionSerde;
|
|
9766
9790
|
var init_UnionSerde = __esm({
|
|
9767
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9791
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js"() {
|
|
9768
9792
|
UnionSerde = class {
|
|
9769
9793
|
from;
|
|
9770
9794
|
to;
|
|
@@ -9791,7 +9815,7 @@ var init_UnionSerde = __esm({
|
|
|
9791
9815
|
}
|
|
9792
9816
|
});
|
|
9793
9817
|
|
|
9794
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9818
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js
|
|
9795
9819
|
function jsonReviver(key, value, context) {
|
|
9796
9820
|
if (context?.source) {
|
|
9797
9821
|
const numericString = context.source;
|
|
@@ -9809,25 +9833,25 @@ function jsonReviver(key, value, context) {
|
|
|
9809
9833
|
return value;
|
|
9810
9834
|
}
|
|
9811
9835
|
var init_jsonReviver = __esm({
|
|
9812
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9836
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js"() {
|
|
9813
9837
|
init_serde();
|
|
9814
9838
|
}
|
|
9815
9839
|
});
|
|
9816
9840
|
|
|
9817
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9841
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js
|
|
9818
9842
|
var import_smithy_client2, import_util_utf86, collectBodyString;
|
|
9819
9843
|
var init_common = __esm({
|
|
9820
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9844
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js"() {
|
|
9821
9845
|
import_smithy_client2 = __toESM(require_dist_cjs27());
|
|
9822
9846
|
import_util_utf86 = __toESM(require_dist_cjs6());
|
|
9823
9847
|
collectBodyString = (streamBody, context) => (0, import_smithy_client2.collectBody)(streamBody, context).then((body) => (context?.utf8Encoder ?? import_util_utf86.toUtf8)(body));
|
|
9824
9848
|
}
|
|
9825
9849
|
});
|
|
9826
9850
|
|
|
9827
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9851
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js
|
|
9828
9852
|
var parseJsonBody, parseJsonErrorBody, loadRestJsonErrorCode;
|
|
9829
9853
|
var init_parseJsonBody = __esm({
|
|
9830
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9854
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js"() {
|
|
9831
9855
|
init_common();
|
|
9832
9856
|
parseJsonBody = (streamBody, context) => collectBodyString(streamBody, context).then((encoded) => {
|
|
9833
9857
|
if (encoded.length) {
|
|
@@ -9884,10 +9908,10 @@ var init_parseJsonBody = __esm({
|
|
|
9884
9908
|
}
|
|
9885
9909
|
});
|
|
9886
9910
|
|
|
9887
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9911
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js
|
|
9888
9912
|
var import_util_base644, JsonShapeDeserializer;
|
|
9889
9913
|
var init_JsonShapeDeserializer = __esm({
|
|
9890
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
9914
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js"() {
|
|
9891
9915
|
init_protocols();
|
|
9892
9916
|
init_schema();
|
|
9893
9917
|
init_serde();
|
|
@@ -10037,10 +10061,10 @@ var init_JsonShapeDeserializer = __esm({
|
|
|
10037
10061
|
}
|
|
10038
10062
|
});
|
|
10039
10063
|
|
|
10040
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10064
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js
|
|
10041
10065
|
var NUMERIC_CONTROL_CHAR, JsonReplacer;
|
|
10042
10066
|
var init_jsonReplacer = __esm({
|
|
10043
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10067
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js"() {
|
|
10044
10068
|
init_serde();
|
|
10045
10069
|
NUMERIC_CONTROL_CHAR = String.fromCharCode(925);
|
|
10046
10070
|
JsonReplacer = class {
|
|
@@ -10090,10 +10114,10 @@ var init_jsonReplacer = __esm({
|
|
|
10090
10114
|
}
|
|
10091
10115
|
});
|
|
10092
10116
|
|
|
10093
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10117
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js
|
|
10094
10118
|
var import_util_base645, JsonShapeSerializer;
|
|
10095
10119
|
var init_JsonShapeSerializer = __esm({
|
|
10096
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10120
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js"() {
|
|
10097
10121
|
init_protocols();
|
|
10098
10122
|
init_schema();
|
|
10099
10123
|
init_serde();
|
|
@@ -10270,10 +10294,10 @@ var init_JsonShapeSerializer = __esm({
|
|
|
10270
10294
|
}
|
|
10271
10295
|
});
|
|
10272
10296
|
|
|
10273
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10297
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js
|
|
10274
10298
|
var JsonCodec;
|
|
10275
10299
|
var init_JsonCodec = __esm({
|
|
10276
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10300
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js"() {
|
|
10277
10301
|
init_ConfigurableSerdeContext();
|
|
10278
10302
|
init_JsonShapeDeserializer();
|
|
10279
10303
|
init_JsonShapeSerializer();
|
|
@@ -10297,10 +10321,10 @@ var init_JsonCodec = __esm({
|
|
|
10297
10321
|
}
|
|
10298
10322
|
});
|
|
10299
10323
|
|
|
10300
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10324
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js
|
|
10301
10325
|
var AwsJsonRpcProtocol;
|
|
10302
10326
|
var init_AwsJsonRpcProtocol = __esm({
|
|
10303
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10327
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js"() {
|
|
10304
10328
|
init_protocols();
|
|
10305
10329
|
init_schema();
|
|
10306
10330
|
init_ProtocolLib();
|
|
@@ -10380,10 +10404,10 @@ var init_AwsJsonRpcProtocol = __esm({
|
|
|
10380
10404
|
}
|
|
10381
10405
|
});
|
|
10382
10406
|
|
|
10383
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10407
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js
|
|
10384
10408
|
var AwsJson1_0Protocol;
|
|
10385
10409
|
var init_AwsJson1_0Protocol = __esm({
|
|
10386
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10410
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js"() {
|
|
10387
10411
|
init_AwsJsonRpcProtocol();
|
|
10388
10412
|
AwsJson1_0Protocol = class extends AwsJsonRpcProtocol {
|
|
10389
10413
|
constructor({ defaultNamespace, errorTypeRegistries: errorTypeRegistries5, serviceTarget, awsQueryCompatible, jsonCodec }) {
|
|
@@ -10408,10 +10432,10 @@ var init_AwsJson1_0Protocol = __esm({
|
|
|
10408
10432
|
}
|
|
10409
10433
|
});
|
|
10410
10434
|
|
|
10411
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10435
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js
|
|
10412
10436
|
var AwsJson1_1Protocol;
|
|
10413
10437
|
var init_AwsJson1_1Protocol = __esm({
|
|
10414
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10438
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js"() {
|
|
10415
10439
|
init_AwsJsonRpcProtocol();
|
|
10416
10440
|
AwsJson1_1Protocol = class extends AwsJsonRpcProtocol {
|
|
10417
10441
|
constructor({ defaultNamespace, errorTypeRegistries: errorTypeRegistries5, serviceTarget, awsQueryCompatible, jsonCodec }) {
|
|
@@ -10436,10 +10460,10 @@ var init_AwsJson1_1Protocol = __esm({
|
|
|
10436
10460
|
}
|
|
10437
10461
|
});
|
|
10438
10462
|
|
|
10439
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10463
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js
|
|
10440
10464
|
var AwsRestJsonProtocol;
|
|
10441
10465
|
var init_AwsRestJsonProtocol = __esm({
|
|
10442
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10466
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js"() {
|
|
10443
10467
|
init_protocols();
|
|
10444
10468
|
init_schema();
|
|
10445
10469
|
init_ProtocolLib();
|
|
@@ -10527,10 +10551,10 @@ var init_AwsRestJsonProtocol = __esm({
|
|
|
10527
10551
|
}
|
|
10528
10552
|
});
|
|
10529
10553
|
|
|
10530
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10554
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js
|
|
10531
10555
|
var import_smithy_client3, awsExpectUnion;
|
|
10532
10556
|
var init_awsExpectUnion = __esm({
|
|
10533
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
10557
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js"() {
|
|
10534
10558
|
import_smithy_client3 = __toESM(require_dist_cjs27());
|
|
10535
10559
|
awsExpectUnion = (value) => {
|
|
10536
10560
|
if (value == null) {
|
|
@@ -11839,9 +11863,9 @@ var require_fxp = __commonJS({
|
|
|
11839
11863
|
}
|
|
11840
11864
|
});
|
|
11841
11865
|
|
|
11842
|
-
// node_modules/.pnpm/@aws-sdk+xml-builder@3.972.
|
|
11866
|
+
// node_modules/.pnpm/@aws-sdk+xml-builder@3.972.17/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js
|
|
11843
11867
|
var require_xml_parser = __commonJS({
|
|
11844
|
-
"node_modules/.pnpm/@aws-sdk+xml-builder@3.972.
|
|
11868
|
+
"node_modules/.pnpm/@aws-sdk+xml-builder@3.972.17/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js"(exports2) {
|
|
11845
11869
|
"use strict";
|
|
11846
11870
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
11847
11871
|
exports2.parseXML = parseXML3;
|
|
@@ -11868,9 +11892,9 @@ var require_xml_parser = __commonJS({
|
|
|
11868
11892
|
}
|
|
11869
11893
|
});
|
|
11870
11894
|
|
|
11871
|
-
// node_modules/.pnpm/@aws-sdk+xml-builder@3.972.
|
|
11895
|
+
// node_modules/.pnpm/@aws-sdk+xml-builder@3.972.17/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js
|
|
11872
11896
|
var require_dist_cjs29 = __commonJS({
|
|
11873
|
-
"node_modules/.pnpm/@aws-sdk+xml-builder@3.972.
|
|
11897
|
+
"node_modules/.pnpm/@aws-sdk+xml-builder@3.972.17/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js"(exports2) {
|
|
11874
11898
|
"use strict";
|
|
11875
11899
|
var xmlParser = require_xml_parser();
|
|
11876
11900
|
var ATTR_ESCAPE_RE = /[&<>"]/g;
|
|
@@ -11999,10 +12023,10 @@ var require_dist_cjs29 = __commonJS({
|
|
|
11999
12023
|
}
|
|
12000
12024
|
});
|
|
12001
12025
|
|
|
12002
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12026
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js
|
|
12003
12027
|
var import_xml_builder, import_smithy_client4, import_util_utf87, XmlShapeDeserializer;
|
|
12004
12028
|
var init_XmlShapeDeserializer = __esm({
|
|
12005
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12029
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js"() {
|
|
12006
12030
|
import_xml_builder = __toESM(require_dist_cjs29());
|
|
12007
12031
|
init_protocols();
|
|
12008
12032
|
init_schema();
|
|
@@ -12152,10 +12176,10 @@ var init_XmlShapeDeserializer = __esm({
|
|
|
12152
12176
|
}
|
|
12153
12177
|
});
|
|
12154
12178
|
|
|
12155
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12179
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js
|
|
12156
12180
|
var import_smithy_client5, import_util_base646, QueryShapeSerializer;
|
|
12157
12181
|
var init_QueryShapeSerializer = __esm({
|
|
12158
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12182
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js"() {
|
|
12159
12183
|
init_protocols();
|
|
12160
12184
|
init_schema();
|
|
12161
12185
|
init_serde();
|
|
@@ -12332,10 +12356,10 @@ var init_QueryShapeSerializer = __esm({
|
|
|
12332
12356
|
}
|
|
12333
12357
|
});
|
|
12334
12358
|
|
|
12335
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12359
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js
|
|
12336
12360
|
var AwsQueryProtocol;
|
|
12337
12361
|
var init_AwsQueryProtocol = __esm({
|
|
12338
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12362
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js"() {
|
|
12339
12363
|
init_protocols();
|
|
12340
12364
|
init_schema();
|
|
12341
12365
|
init_ProtocolLib();
|
|
@@ -12477,10 +12501,10 @@ var init_AwsQueryProtocol = __esm({
|
|
|
12477
12501
|
}
|
|
12478
12502
|
});
|
|
12479
12503
|
|
|
12480
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12504
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js
|
|
12481
12505
|
var AwsEc2QueryProtocol;
|
|
12482
12506
|
var init_AwsEc2QueryProtocol = __esm({
|
|
12483
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12507
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js"() {
|
|
12484
12508
|
init_AwsQueryProtocol();
|
|
12485
12509
|
AwsEc2QueryProtocol = class extends AwsQueryProtocol {
|
|
12486
12510
|
options;
|
|
@@ -12505,16 +12529,16 @@ var init_AwsEc2QueryProtocol = __esm({
|
|
|
12505
12529
|
}
|
|
12506
12530
|
});
|
|
12507
12531
|
|
|
12508
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12532
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js
|
|
12509
12533
|
var init_QuerySerializerSettings = __esm({
|
|
12510
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12534
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js"() {
|
|
12511
12535
|
}
|
|
12512
12536
|
});
|
|
12513
12537
|
|
|
12514
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12538
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js
|
|
12515
12539
|
var import_xml_builder2, import_smithy_client6, parseXmlBody, parseXmlErrorBody, loadRestXmlErrorCode;
|
|
12516
12540
|
var init_parseXmlBody = __esm({
|
|
12517
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12541
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js"() {
|
|
12518
12542
|
import_xml_builder2 = __toESM(require_dist_cjs29());
|
|
12519
12543
|
import_smithy_client6 = __toESM(require_dist_cjs27());
|
|
12520
12544
|
init_common();
|
|
@@ -12563,10 +12587,10 @@ var init_parseXmlBody = __esm({
|
|
|
12563
12587
|
}
|
|
12564
12588
|
});
|
|
12565
12589
|
|
|
12566
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12590
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js
|
|
12567
12591
|
var import_xml_builder3, import_smithy_client7, import_util_base647, XmlShapeSerializer;
|
|
12568
12592
|
var init_XmlShapeSerializer = __esm({
|
|
12569
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12593
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js"() {
|
|
12570
12594
|
import_xml_builder3 = __toESM(require_dist_cjs29());
|
|
12571
12595
|
init_protocols();
|
|
12572
12596
|
init_schema();
|
|
@@ -12840,10 +12864,10 @@ var init_XmlShapeSerializer = __esm({
|
|
|
12840
12864
|
}
|
|
12841
12865
|
});
|
|
12842
12866
|
|
|
12843
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12867
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js
|
|
12844
12868
|
var XmlCodec;
|
|
12845
12869
|
var init_XmlCodec = __esm({
|
|
12846
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12870
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js"() {
|
|
12847
12871
|
init_ConfigurableSerdeContext();
|
|
12848
12872
|
init_XmlShapeDeserializer();
|
|
12849
12873
|
init_XmlShapeSerializer();
|
|
@@ -12867,10 +12891,10 @@ var init_XmlCodec = __esm({
|
|
|
12867
12891
|
}
|
|
12868
12892
|
});
|
|
12869
12893
|
|
|
12870
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12894
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js
|
|
12871
12895
|
var AwsRestXmlProtocol;
|
|
12872
12896
|
var init_AwsRestXmlProtocol = __esm({
|
|
12873
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12897
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js"() {
|
|
12874
12898
|
init_protocols();
|
|
12875
12899
|
init_schema();
|
|
12876
12900
|
init_ProtocolLib();
|
|
@@ -12966,7 +12990,7 @@ var init_AwsRestXmlProtocol = __esm({
|
|
|
12966
12990
|
}
|
|
12967
12991
|
});
|
|
12968
12992
|
|
|
12969
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
12993
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js
|
|
12970
12994
|
var protocols_exports2 = {};
|
|
12971
12995
|
__export(protocols_exports2, {
|
|
12972
12996
|
AwsEc2QueryProtocol: () => AwsEc2QueryProtocol,
|
|
@@ -12996,7 +13020,7 @@ __export(protocols_exports2, {
|
|
|
12996
13020
|
parseXmlErrorBody: () => parseXmlErrorBody
|
|
12997
13021
|
});
|
|
12998
13022
|
var init_protocols2 = __esm({
|
|
12999
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
13023
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js"() {
|
|
13000
13024
|
init_AwsSmithyRpcV2CborProtocol();
|
|
13001
13025
|
init_coercing_serializers();
|
|
13002
13026
|
init_AwsJson1_0Protocol();
|
|
@@ -13020,9 +13044,9 @@ var init_protocols2 = __esm({
|
|
|
13020
13044
|
}
|
|
13021
13045
|
});
|
|
13022
13046
|
|
|
13023
|
-
// node_modules/.pnpm/@smithy+signature-v4@5.3.
|
|
13047
|
+
// node_modules/.pnpm/@smithy+signature-v4@5.3.13/node_modules/@smithy/signature-v4/dist-cjs/index.js
|
|
13024
13048
|
var require_dist_cjs30 = __commonJS({
|
|
13025
|
-
"node_modules/.pnpm/@smithy+signature-v4@5.3.
|
|
13049
|
+
"node_modules/.pnpm/@smithy+signature-v4@5.3.13/node_modules/@smithy/signature-v4/dist-cjs/index.js"(exports2) {
|
|
13026
13050
|
"use strict";
|
|
13027
13051
|
var utilHexEncoding = require_dist_cjs12();
|
|
13028
13052
|
var utilUtf8 = require_dist_cjs6();
|
|
@@ -13201,6 +13225,19 @@ var require_dist_cjs30 = __commonJS({
|
|
|
13201
13225
|
}
|
|
13202
13226
|
}
|
|
13203
13227
|
};
|
|
13228
|
+
var HEADER_VALUE_TYPE;
|
|
13229
|
+
(function(HEADER_VALUE_TYPE2) {
|
|
13230
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["boolTrue"] = 0] = "boolTrue";
|
|
13231
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["boolFalse"] = 1] = "boolFalse";
|
|
13232
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["byte"] = 2] = "byte";
|
|
13233
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["short"] = 3] = "short";
|
|
13234
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["integer"] = 4] = "integer";
|
|
13235
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["long"] = 5] = "long";
|
|
13236
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["byteArray"] = 6] = "byteArray";
|
|
13237
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["string"] = 7] = "string";
|
|
13238
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["timestamp"] = 8] = "timestamp";
|
|
13239
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["uuid"] = 9] = "uuid";
|
|
13240
|
+
})(HEADER_VALUE_TYPE || (HEADER_VALUE_TYPE = {}));
|
|
13204
13241
|
var UUID_PATTERN = /^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$/;
|
|
13205
13242
|
var Int64 = class _Int64 {
|
|
13206
13243
|
bytes;
|
|
@@ -13573,19 +13610,19 @@ var require_dist_cjs31 = __commonJS({
|
|
|
13573
13610
|
}
|
|
13574
13611
|
});
|
|
13575
13612
|
|
|
13576
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13613
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/getSmithyContext.js
|
|
13577
13614
|
var import_types, getSmithyContext4;
|
|
13578
13615
|
var init_getSmithyContext = __esm({
|
|
13579
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13616
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/getSmithyContext.js"() {
|
|
13580
13617
|
import_types = __toESM(require_dist_cjs());
|
|
13581
13618
|
getSmithyContext4 = (context) => context[import_types.SMITHY_CONTEXT_KEY] || (context[import_types.SMITHY_CONTEXT_KEY] = {});
|
|
13582
13619
|
}
|
|
13583
13620
|
});
|
|
13584
13621
|
|
|
13585
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13622
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js
|
|
13586
13623
|
var resolveAuthOptions;
|
|
13587
13624
|
var init_resolveAuthOptions = __esm({
|
|
13588
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13625
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js"() {
|
|
13589
13626
|
resolveAuthOptions = (candidateAuthOptions, authSchemePreference) => {
|
|
13590
13627
|
if (!authSchemePreference || authSchemePreference.length === 0) {
|
|
13591
13628
|
return candidateAuthOptions;
|
|
@@ -13609,7 +13646,7 @@ var init_resolveAuthOptions = __esm({
|
|
|
13609
13646
|
}
|
|
13610
13647
|
});
|
|
13611
13648
|
|
|
13612
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13649
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js
|
|
13613
13650
|
function convertHttpAuthSchemesToMap(httpAuthSchemes) {
|
|
13614
13651
|
const map2 = /* @__PURE__ */ new Map();
|
|
13615
13652
|
for (const scheme of httpAuthSchemes) {
|
|
@@ -13619,7 +13656,7 @@ function convertHttpAuthSchemesToMap(httpAuthSchemes) {
|
|
|
13619
13656
|
}
|
|
13620
13657
|
var import_util_middleware4, httpAuthSchemeMiddleware;
|
|
13621
13658
|
var init_httpAuthSchemeMiddleware = __esm({
|
|
13622
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13659
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js"() {
|
|
13623
13660
|
import_util_middleware4 = __toESM(require_dist_cjs18());
|
|
13624
13661
|
init_resolveAuthOptions();
|
|
13625
13662
|
httpAuthSchemeMiddleware = (config, mwOptions) => (next, context) => async (args) => {
|
|
@@ -13658,10 +13695,10 @@ var init_httpAuthSchemeMiddleware = __esm({
|
|
|
13658
13695
|
}
|
|
13659
13696
|
});
|
|
13660
13697
|
|
|
13661
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13698
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js
|
|
13662
13699
|
var httpAuthSchemeEndpointRuleSetMiddlewareOptions, getHttpAuthSchemeEndpointRuleSetPlugin;
|
|
13663
13700
|
var init_getHttpAuthSchemeEndpointRuleSetPlugin = __esm({
|
|
13664
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13701
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js"() {
|
|
13665
13702
|
init_httpAuthSchemeMiddleware();
|
|
13666
13703
|
httpAuthSchemeEndpointRuleSetMiddlewareOptions = {
|
|
13667
13704
|
step: "serialize",
|
|
@@ -13682,10 +13719,10 @@ var init_getHttpAuthSchemeEndpointRuleSetPlugin = __esm({
|
|
|
13682
13719
|
}
|
|
13683
13720
|
});
|
|
13684
13721
|
|
|
13685
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13722
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js
|
|
13686
13723
|
var httpAuthSchemeMiddlewareOptions, getHttpAuthSchemePlugin;
|
|
13687
13724
|
var init_getHttpAuthSchemePlugin = __esm({
|
|
13688
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13725
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js"() {
|
|
13689
13726
|
init_httpAuthSchemeMiddleware();
|
|
13690
13727
|
httpAuthSchemeMiddlewareOptions = {
|
|
13691
13728
|
step: "serialize",
|
|
@@ -13706,19 +13743,19 @@ var init_getHttpAuthSchemePlugin = __esm({
|
|
|
13706
13743
|
}
|
|
13707
13744
|
});
|
|
13708
13745
|
|
|
13709
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13746
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js
|
|
13710
13747
|
var init_middleware_http_auth_scheme = __esm({
|
|
13711
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13748
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js"() {
|
|
13712
13749
|
init_httpAuthSchemeMiddleware();
|
|
13713
13750
|
init_getHttpAuthSchemeEndpointRuleSetPlugin();
|
|
13714
13751
|
init_getHttpAuthSchemePlugin();
|
|
13715
13752
|
}
|
|
13716
13753
|
});
|
|
13717
13754
|
|
|
13718
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13755
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js
|
|
13719
13756
|
var import_protocol_http6, import_util_middleware5, defaultErrorHandler, defaultSuccessHandler, httpSigningMiddleware;
|
|
13720
13757
|
var init_httpSigningMiddleware = __esm({
|
|
13721
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13758
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js"() {
|
|
13722
13759
|
import_protocol_http6 = __toESM(require_dist_cjs2());
|
|
13723
13760
|
import_util_middleware5 = __toESM(require_dist_cjs18());
|
|
13724
13761
|
defaultErrorHandler = (signingProperties) => (error2) => {
|
|
@@ -13746,10 +13783,10 @@ var init_httpSigningMiddleware = __esm({
|
|
|
13746
13783
|
}
|
|
13747
13784
|
});
|
|
13748
13785
|
|
|
13749
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13786
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js
|
|
13750
13787
|
var httpSigningMiddlewareOptions, getHttpSigningPlugin;
|
|
13751
13788
|
var init_getHttpSigningMiddleware = __esm({
|
|
13752
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13789
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js"() {
|
|
13753
13790
|
init_httpSigningMiddleware();
|
|
13754
13791
|
httpSigningMiddlewareOptions = {
|
|
13755
13792
|
step: "finalizeRequest",
|
|
@@ -13768,18 +13805,18 @@ var init_getHttpSigningMiddleware = __esm({
|
|
|
13768
13805
|
}
|
|
13769
13806
|
});
|
|
13770
13807
|
|
|
13771
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13808
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js
|
|
13772
13809
|
var init_middleware_http_signing = __esm({
|
|
13773
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13810
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js"() {
|
|
13774
13811
|
init_httpSigningMiddleware();
|
|
13775
13812
|
init_getHttpSigningMiddleware();
|
|
13776
13813
|
}
|
|
13777
13814
|
});
|
|
13778
13815
|
|
|
13779
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13816
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/normalizeProvider.js
|
|
13780
13817
|
var normalizeProvider;
|
|
13781
13818
|
var init_normalizeProvider = __esm({
|
|
13782
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13819
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/normalizeProvider.js"() {
|
|
13783
13820
|
normalizeProvider = (input) => {
|
|
13784
13821
|
if (typeof input === "function")
|
|
13785
13822
|
return input;
|
|
@@ -13789,7 +13826,7 @@ var init_normalizeProvider = __esm({
|
|
|
13789
13826
|
}
|
|
13790
13827
|
});
|
|
13791
13828
|
|
|
13792
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13829
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/pagination/createPaginator.js
|
|
13793
13830
|
function createPaginator(ClientCtor, CommandCtor, inputTokenName, outputTokenName, pageSizeTokenName) {
|
|
13794
13831
|
return async function* paginateOperation(config, input, ...additionalArguments) {
|
|
13795
13832
|
const _input = input;
|
|
@@ -13816,7 +13853,7 @@ function createPaginator(ClientCtor, CommandCtor, inputTokenName, outputTokenNam
|
|
|
13816
13853
|
}
|
|
13817
13854
|
var makePagedClientRequest, get;
|
|
13818
13855
|
var init_createPaginator = __esm({
|
|
13819
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13856
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/pagination/createPaginator.js"() {
|
|
13820
13857
|
makePagedClientRequest = async (CommandCtor, client, input, withCommand = (_) => _, ...args) => {
|
|
13821
13858
|
let command = new CommandCtor(input);
|
|
13822
13859
|
command = withCommand(command) ?? command;
|
|
@@ -13836,14 +13873,14 @@ var init_createPaginator = __esm({
|
|
|
13836
13873
|
}
|
|
13837
13874
|
});
|
|
13838
13875
|
|
|
13839
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13876
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js
|
|
13840
13877
|
var init_requestBuilder2 = __esm({
|
|
13841
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13878
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js"() {
|
|
13842
13879
|
init_protocols();
|
|
13843
13880
|
}
|
|
13844
13881
|
});
|
|
13845
13882
|
|
|
13846
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13883
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/setFeature.js
|
|
13847
13884
|
function setFeature2(context, feature, value) {
|
|
13848
13885
|
if (!context.__smithy_context) {
|
|
13849
13886
|
context.__smithy_context = {
|
|
@@ -13855,14 +13892,14 @@ function setFeature2(context, feature, value) {
|
|
|
13855
13892
|
context.__smithy_context.features[feature] = value;
|
|
13856
13893
|
}
|
|
13857
13894
|
var init_setFeature2 = __esm({
|
|
13858
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13895
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/setFeature.js"() {
|
|
13859
13896
|
}
|
|
13860
13897
|
});
|
|
13861
13898
|
|
|
13862
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13899
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js
|
|
13863
13900
|
var DefaultIdentityProviderConfig;
|
|
13864
13901
|
var init_DefaultIdentityProviderConfig = __esm({
|
|
13865
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13902
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js"() {
|
|
13866
13903
|
DefaultIdentityProviderConfig = class {
|
|
13867
13904
|
authSchemes = /* @__PURE__ */ new Map();
|
|
13868
13905
|
constructor(config) {
|
|
@@ -13879,10 +13916,10 @@ var init_DefaultIdentityProviderConfig = __esm({
|
|
|
13879
13916
|
}
|
|
13880
13917
|
});
|
|
13881
13918
|
|
|
13882
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13919
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js
|
|
13883
13920
|
var import_protocol_http7, import_types2, HttpApiKeyAuthSigner;
|
|
13884
13921
|
var init_httpApiKeyAuth = __esm({
|
|
13885
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13922
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js"() {
|
|
13886
13923
|
import_protocol_http7 = __toESM(require_dist_cjs2());
|
|
13887
13924
|
import_types2 = __toESM(require_dist_cjs());
|
|
13888
13925
|
HttpApiKeyAuthSigner = class {
|
|
@@ -13913,10 +13950,10 @@ var init_httpApiKeyAuth = __esm({
|
|
|
13913
13950
|
}
|
|
13914
13951
|
});
|
|
13915
13952
|
|
|
13916
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13953
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js
|
|
13917
13954
|
var import_protocol_http8, HttpBearerAuthSigner;
|
|
13918
13955
|
var init_httpBearerAuth = __esm({
|
|
13919
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13956
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js"() {
|
|
13920
13957
|
import_protocol_http8 = __toESM(require_dist_cjs2());
|
|
13921
13958
|
HttpBearerAuthSigner = class {
|
|
13922
13959
|
async sign(httpRequest, identity, signingProperties) {
|
|
@@ -13931,10 +13968,10 @@ var init_httpBearerAuth = __esm({
|
|
|
13931
13968
|
}
|
|
13932
13969
|
});
|
|
13933
13970
|
|
|
13934
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13971
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js
|
|
13935
13972
|
var NoAuthSigner;
|
|
13936
13973
|
var init_noAuth = __esm({
|
|
13937
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13974
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js"() {
|
|
13938
13975
|
NoAuthSigner = class {
|
|
13939
13976
|
async sign(httpRequest, identity, signingProperties) {
|
|
13940
13977
|
return httpRequest;
|
|
@@ -13943,19 +13980,19 @@ var init_noAuth = __esm({
|
|
|
13943
13980
|
}
|
|
13944
13981
|
});
|
|
13945
13982
|
|
|
13946
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13983
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js
|
|
13947
13984
|
var init_httpAuthSchemes = __esm({
|
|
13948
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13985
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js"() {
|
|
13949
13986
|
init_httpApiKeyAuth();
|
|
13950
13987
|
init_httpBearerAuth();
|
|
13951
13988
|
init_noAuth();
|
|
13952
13989
|
}
|
|
13953
13990
|
});
|
|
13954
13991
|
|
|
13955
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
13992
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js
|
|
13956
13993
|
var createIsIdentityExpiredFunction, EXPIRATION_MS, isIdentityExpired, doesIdentityRequireRefresh, memoizeIdentityProvider;
|
|
13957
13994
|
var init_memoizeIdentityProvider = __esm({
|
|
13958
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
13995
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js"() {
|
|
13959
13996
|
createIsIdentityExpiredFunction = (expirationMs) => function isIdentityExpired2(identity) {
|
|
13960
13997
|
return doesIdentityRequireRefresh(identity) && identity.expiration.getTime() - Date.now() < expirationMs;
|
|
13961
13998
|
};
|
|
@@ -14013,16 +14050,16 @@ var init_memoizeIdentityProvider = __esm({
|
|
|
14013
14050
|
}
|
|
14014
14051
|
});
|
|
14015
14052
|
|
|
14016
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
14053
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js
|
|
14017
14054
|
var init_util_identity_and_auth = __esm({
|
|
14018
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
14055
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js"() {
|
|
14019
14056
|
init_DefaultIdentityProviderConfig();
|
|
14020
14057
|
init_httpAuthSchemes();
|
|
14021
14058
|
init_memoizeIdentityProvider();
|
|
14022
14059
|
}
|
|
14023
14060
|
});
|
|
14024
14061
|
|
|
14025
|
-
// node_modules/.pnpm/@smithy+core@3.23.
|
|
14062
|
+
// node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/index.js
|
|
14026
14063
|
var dist_es_exports = {};
|
|
14027
14064
|
__export(dist_es_exports, {
|
|
14028
14065
|
DefaultIdentityProviderConfig: () => DefaultIdentityProviderConfig,
|
|
@@ -14049,7 +14086,7 @@ __export(dist_es_exports, {
|
|
|
14049
14086
|
setFeature: () => setFeature2
|
|
14050
14087
|
});
|
|
14051
14088
|
var init_dist_es = __esm({
|
|
14052
|
-
"node_modules/.pnpm/@smithy+core@3.23.
|
|
14089
|
+
"node_modules/.pnpm/@smithy+core@3.23.14/node_modules/@smithy/core/dist-es/index.js"() {
|
|
14053
14090
|
init_getSmithyContext();
|
|
14054
14091
|
init_middleware_http_auth_scheme();
|
|
14055
14092
|
init_middleware_http_signing();
|
|
@@ -14061,9 +14098,9 @@ var init_dist_es = __esm({
|
|
|
14061
14098
|
}
|
|
14062
14099
|
});
|
|
14063
14100
|
|
|
14064
|
-
// node_modules/.pnpm/@aws-sdk+middleware-sdk-s3@3.972.
|
|
14101
|
+
// node_modules/.pnpm/@aws-sdk+middleware-sdk-s3@3.972.28/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js
|
|
14065
14102
|
var require_dist_cjs32 = __commonJS({
|
|
14066
|
-
"node_modules/.pnpm/@aws-sdk+middleware-sdk-s3@3.972.
|
|
14103
|
+
"node_modules/.pnpm/@aws-sdk+middleware-sdk-s3@3.972.28/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js"(exports2) {
|
|
14067
14104
|
"use strict";
|
|
14068
14105
|
var protocolHttp = require_dist_cjs2();
|
|
14069
14106
|
var smithyClient = require_dist_cjs27();
|
|
@@ -14634,9 +14671,9 @@ var require_dist_cjs32 = __commonJS({
|
|
|
14634
14671
|
}
|
|
14635
14672
|
});
|
|
14636
14673
|
|
|
14637
|
-
// node_modules/.pnpm/@smithy+util-endpoints@3.3.
|
|
14674
|
+
// node_modules/.pnpm/@smithy+util-endpoints@3.3.4/node_modules/@smithy/util-endpoints/dist-cjs/index.js
|
|
14638
14675
|
var require_dist_cjs33 = __commonJS({
|
|
14639
|
-
"node_modules/.pnpm/@smithy+util-endpoints@3.3.
|
|
14676
|
+
"node_modules/.pnpm/@smithy+util-endpoints@3.3.4/node_modules/@smithy/util-endpoints/dist-cjs/index.js"(exports2) {
|
|
14640
14677
|
"use strict";
|
|
14641
14678
|
var types = require_dist_cjs();
|
|
14642
14679
|
var EndpointCache5 = class {
|
|
@@ -15064,9 +15101,9 @@ var require_dist_cjs33 = __commonJS({
|
|
|
15064
15101
|
}
|
|
15065
15102
|
});
|
|
15066
15103
|
|
|
15067
|
-
// node_modules/.pnpm/@aws-sdk+util-endpoints@3.996.
|
|
15104
|
+
// node_modules/.pnpm/@aws-sdk+util-endpoints@3.996.6/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js
|
|
15068
15105
|
var require_dist_cjs34 = __commonJS({
|
|
15069
|
-
"node_modules/.pnpm/@aws-sdk+util-endpoints@3.996.
|
|
15106
|
+
"node_modules/.pnpm/@aws-sdk+util-endpoints@3.996.6/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js"(exports2) {
|
|
15070
15107
|
"use strict";
|
|
15071
15108
|
var utilEndpoints = require_dist_cjs33();
|
|
15072
15109
|
var urlParser = require_dist_cjs25();
|
|
@@ -15465,9 +15502,9 @@ var require_dist_cjs34 = __commonJS({
|
|
|
15465
15502
|
}
|
|
15466
15503
|
});
|
|
15467
15504
|
|
|
15468
|
-
// node_modules/.pnpm/@smithy+service-error-classification@4.2.
|
|
15505
|
+
// node_modules/.pnpm/@smithy+service-error-classification@4.2.13/node_modules/@smithy/service-error-classification/dist-cjs/index.js
|
|
15469
15506
|
var require_dist_cjs35 = __commonJS({
|
|
15470
|
-
"node_modules/.pnpm/@smithy+service-error-classification@4.2.
|
|
15507
|
+
"node_modules/.pnpm/@smithy+service-error-classification@4.2.13/node_modules/@smithy/service-error-classification/dist-cjs/index.js"(exports2) {
|
|
15471
15508
|
"use strict";
|
|
15472
15509
|
var CLOCK_SKEW_ERROR_CODES = [
|
|
15473
15510
|
"AuthFailure",
|
|
@@ -15536,9 +15573,9 @@ var require_dist_cjs35 = __commonJS({
|
|
|
15536
15573
|
}
|
|
15537
15574
|
});
|
|
15538
15575
|
|
|
15539
|
-
// node_modules/.pnpm/@smithy+util-retry@4.
|
|
15576
|
+
// node_modules/.pnpm/@smithy+util-retry@4.3.0/node_modules/@smithy/util-retry/dist-cjs/index.js
|
|
15540
15577
|
var require_dist_cjs36 = __commonJS({
|
|
15541
|
-
"node_modules/.pnpm/@smithy+util-retry@4.
|
|
15578
|
+
"node_modules/.pnpm/@smithy+util-retry@4.3.0/node_modules/@smithy/util-retry/dist-cjs/index.js"(exports2) {
|
|
15542
15579
|
"use strict";
|
|
15543
15580
|
var serviceErrorClassification = require_dist_cjs35();
|
|
15544
15581
|
exports2.RETRY_MODES = void 0;
|
|
@@ -15555,8 +15592,8 @@ var require_dist_cjs36 = __commonJS({
|
|
|
15555
15592
|
minFillRate;
|
|
15556
15593
|
scaleConstant;
|
|
15557
15594
|
smooth;
|
|
15558
|
-
currentCapacity = 0;
|
|
15559
15595
|
enabled = false;
|
|
15596
|
+
availableTokens = 0;
|
|
15560
15597
|
lastMaxRate = 0;
|
|
15561
15598
|
measuredTxRate = 0;
|
|
15562
15599
|
requestCount = 0;
|
|
@@ -15572,28 +15609,46 @@ var require_dist_cjs36 = __commonJS({
|
|
|
15572
15609
|
this.minFillRate = options?.minFillRate ?? 0.5;
|
|
15573
15610
|
this.scaleConstant = options?.scaleConstant ?? 0.4;
|
|
15574
15611
|
this.smooth = options?.smooth ?? 0.8;
|
|
15575
|
-
|
|
15576
|
-
this.lastThrottleTime = currentTimeInSeconds;
|
|
15612
|
+
this.lastThrottleTime = this.getCurrentTimeInSeconds();
|
|
15577
15613
|
this.lastTxRateBucket = Math.floor(this.getCurrentTimeInSeconds());
|
|
15578
15614
|
this.fillRate = this.minFillRate;
|
|
15579
15615
|
this.maxCapacity = this.minCapacity;
|
|
15580
15616
|
}
|
|
15581
|
-
getCurrentTimeInSeconds() {
|
|
15582
|
-
return Date.now() / 1e3;
|
|
15583
|
-
}
|
|
15584
15617
|
async getSendToken() {
|
|
15585
15618
|
return this.acquireTokenBucket(1);
|
|
15586
15619
|
}
|
|
15620
|
+
updateClientSendingRate(response) {
|
|
15621
|
+
let calculatedRate;
|
|
15622
|
+
this.updateMeasuredRate();
|
|
15623
|
+
const retryErrorInfo = response;
|
|
15624
|
+
const isThrottling = retryErrorInfo?.errorType === "THROTTLING" || serviceErrorClassification.isThrottlingError(retryErrorInfo?.error ?? response);
|
|
15625
|
+
if (isThrottling) {
|
|
15626
|
+
const rateToUse = !this.enabled ? this.measuredTxRate : Math.min(this.measuredTxRate, this.fillRate);
|
|
15627
|
+
this.lastMaxRate = rateToUse;
|
|
15628
|
+
this.calculateTimeWindow();
|
|
15629
|
+
this.lastThrottleTime = this.getCurrentTimeInSeconds();
|
|
15630
|
+
calculatedRate = this.cubicThrottle(rateToUse);
|
|
15631
|
+
this.enableTokenBucket();
|
|
15632
|
+
} else {
|
|
15633
|
+
this.calculateTimeWindow();
|
|
15634
|
+
calculatedRate = this.cubicSuccess(this.getCurrentTimeInSeconds());
|
|
15635
|
+
}
|
|
15636
|
+
const newRate = Math.min(calculatedRate, 2 * this.measuredTxRate);
|
|
15637
|
+
this.updateTokenBucketRate(newRate);
|
|
15638
|
+
}
|
|
15639
|
+
getCurrentTimeInSeconds() {
|
|
15640
|
+
return Date.now() / 1e3;
|
|
15641
|
+
}
|
|
15587
15642
|
async acquireTokenBucket(amount) {
|
|
15588
15643
|
if (!this.enabled) {
|
|
15589
15644
|
return;
|
|
15590
15645
|
}
|
|
15591
15646
|
this.refillTokenBucket();
|
|
15592
|
-
if (amount > this.
|
|
15593
|
-
const delay = (amount - this.
|
|
15647
|
+
if (amount > this.availableTokens) {
|
|
15648
|
+
const delay = (amount - this.availableTokens) / this.fillRate * 1e3;
|
|
15594
15649
|
await new Promise((resolve) => _DefaultRateLimiter.setTimeoutFn(resolve, delay));
|
|
15595
15650
|
}
|
|
15596
|
-
this.
|
|
15651
|
+
this.availableTokens = this.availableTokens - amount;
|
|
15597
15652
|
}
|
|
15598
15653
|
refillTokenBucket() {
|
|
15599
15654
|
const timestamp = this.getCurrentTimeInSeconds();
|
|
@@ -15602,26 +15657,9 @@ var require_dist_cjs36 = __commonJS({
|
|
|
15602
15657
|
return;
|
|
15603
15658
|
}
|
|
15604
15659
|
const fillAmount = (timestamp - this.lastTimestamp) * this.fillRate;
|
|
15605
|
-
this.
|
|
15660
|
+
this.availableTokens = Math.min(this.maxCapacity, this.availableTokens + fillAmount);
|
|
15606
15661
|
this.lastTimestamp = timestamp;
|
|
15607
15662
|
}
|
|
15608
|
-
updateClientSendingRate(response) {
|
|
15609
|
-
let calculatedRate;
|
|
15610
|
-
this.updateMeasuredRate();
|
|
15611
|
-
if (serviceErrorClassification.isThrottlingError(response)) {
|
|
15612
|
-
const rateToUse = !this.enabled ? this.measuredTxRate : Math.min(this.measuredTxRate, this.fillRate);
|
|
15613
|
-
this.lastMaxRate = rateToUse;
|
|
15614
|
-
this.calculateTimeWindow();
|
|
15615
|
-
this.lastThrottleTime = this.getCurrentTimeInSeconds();
|
|
15616
|
-
calculatedRate = this.cubicThrottle(rateToUse);
|
|
15617
|
-
this.enableTokenBucket();
|
|
15618
|
-
} else {
|
|
15619
|
-
this.calculateTimeWindow();
|
|
15620
|
-
calculatedRate = this.cubicSuccess(this.getCurrentTimeInSeconds());
|
|
15621
|
-
}
|
|
15622
|
-
const newRate = Math.min(calculatedRate, 2 * this.measuredTxRate);
|
|
15623
|
-
this.updateTokenBucketRate(newRate);
|
|
15624
|
-
}
|
|
15625
15663
|
calculateTimeWindow() {
|
|
15626
15664
|
this.timeWindow = this.getPrecise(Math.pow(this.lastMaxRate * (1 - this.beta) / this.scaleConstant, 1 / 3));
|
|
15627
15665
|
}
|
|
@@ -15638,7 +15676,7 @@ var require_dist_cjs36 = __commonJS({
|
|
|
15638
15676
|
this.refillTokenBucket();
|
|
15639
15677
|
this.fillRate = Math.max(newRate, this.minFillRate);
|
|
15640
15678
|
this.maxCapacity = Math.max(newRate, this.minCapacity);
|
|
15641
|
-
this.
|
|
15679
|
+
this.availableTokens = Math.min(this.availableTokens, this.maxCapacity);
|
|
15642
15680
|
}
|
|
15643
15681
|
updateMeasuredRate() {
|
|
15644
15682
|
const t5 = this.getCurrentTimeInSeconds();
|
|
@@ -15664,64 +15702,106 @@ var require_dist_cjs36 = __commonJS({
|
|
|
15664
15702
|
var NO_RETRY_INCREMENT = 1;
|
|
15665
15703
|
var INVOCATION_ID_HEADER = "amz-sdk-invocation-id";
|
|
15666
15704
|
var REQUEST_HEADER = "amz-sdk-request";
|
|
15667
|
-
var
|
|
15668
|
-
|
|
15669
|
-
|
|
15670
|
-
return
|
|
15671
|
-
}
|
|
15672
|
-
|
|
15673
|
-
|
|
15674
|
-
}
|
|
15675
|
-
|
|
15676
|
-
|
|
15677
|
-
|
|
15678
|
-
|
|
15705
|
+
var Retry = class _Retry {
|
|
15706
|
+
static v2026 = typeof process !== "undefined" && process.env?.SMITHY_NEW_RETRIES_2026 === "true";
|
|
15707
|
+
static delay() {
|
|
15708
|
+
return _Retry.v2026 ? 50 : 100;
|
|
15709
|
+
}
|
|
15710
|
+
static throttlingDelay() {
|
|
15711
|
+
return _Retry.v2026 ? 1e3 : 500;
|
|
15712
|
+
}
|
|
15713
|
+
static cost() {
|
|
15714
|
+
return _Retry.v2026 ? 14 : 5;
|
|
15715
|
+
}
|
|
15716
|
+
static throttlingCost() {
|
|
15717
|
+
return _Retry.v2026 ? 5 : 10;
|
|
15718
|
+
}
|
|
15719
|
+
static modifiedCostType() {
|
|
15720
|
+
return _Retry.v2026 ? "THROTTLING" : "TRANSIENT";
|
|
15721
|
+
}
|
|
15679
15722
|
};
|
|
15680
|
-
var
|
|
15681
|
-
|
|
15682
|
-
|
|
15683
|
-
|
|
15684
|
-
|
|
15685
|
-
|
|
15686
|
-
|
|
15687
|
-
|
|
15688
|
-
|
|
15723
|
+
var DefaultRetryBackoffStrategy = class {
|
|
15724
|
+
x = Retry.delay();
|
|
15725
|
+
computeNextBackoffDelay(i5) {
|
|
15726
|
+
const b5 = Math.random();
|
|
15727
|
+
const r5 = 2;
|
|
15728
|
+
const t_i = b5 * Math.min(this.x * r5 ** i5, MAXIMUM_RETRY_DELAY);
|
|
15729
|
+
return Math.floor(t_i);
|
|
15730
|
+
}
|
|
15731
|
+
setDelayBase(delay) {
|
|
15732
|
+
this.x = delay;
|
|
15733
|
+
}
|
|
15734
|
+
};
|
|
15735
|
+
var DefaultRetryToken = class {
|
|
15736
|
+
delay;
|
|
15737
|
+
count;
|
|
15738
|
+
cost;
|
|
15739
|
+
longPoll;
|
|
15740
|
+
constructor(delay, count, cost, longPoll) {
|
|
15741
|
+
this.delay = delay;
|
|
15742
|
+
this.count = count;
|
|
15743
|
+
this.cost = cost;
|
|
15744
|
+
this.longPoll = longPoll;
|
|
15745
|
+
}
|
|
15746
|
+
getRetryCount() {
|
|
15747
|
+
return this.count;
|
|
15748
|
+
}
|
|
15749
|
+
getRetryDelay() {
|
|
15750
|
+
return Math.min(MAXIMUM_RETRY_DELAY, this.delay);
|
|
15751
|
+
}
|
|
15752
|
+
getRetryCost() {
|
|
15753
|
+
return this.cost;
|
|
15754
|
+
}
|
|
15755
|
+
isLongPoll() {
|
|
15756
|
+
return this.longPoll;
|
|
15757
|
+
}
|
|
15689
15758
|
};
|
|
15690
15759
|
var StandardRetryStrategy = class {
|
|
15691
|
-
maxAttempts;
|
|
15692
15760
|
mode = exports2.RETRY_MODES.STANDARD;
|
|
15693
15761
|
capacity = INITIAL_RETRY_TOKENS;
|
|
15694
|
-
retryBackoffStrategy
|
|
15762
|
+
retryBackoffStrategy;
|
|
15695
15763
|
maxAttemptsProvider;
|
|
15696
|
-
|
|
15697
|
-
|
|
15698
|
-
|
|
15764
|
+
baseDelay;
|
|
15765
|
+
constructor(arg1) {
|
|
15766
|
+
if (typeof arg1 === "number") {
|
|
15767
|
+
this.maxAttemptsProvider = async () => arg1;
|
|
15768
|
+
} else if (typeof arg1 === "function") {
|
|
15769
|
+
this.maxAttemptsProvider = arg1;
|
|
15770
|
+
} else if (arg1 && typeof arg1 === "object") {
|
|
15771
|
+
this.maxAttemptsProvider = async () => arg1.maxAttempts;
|
|
15772
|
+
this.baseDelay = arg1.baseDelay;
|
|
15773
|
+
this.retryBackoffStrategy = arg1.backoff;
|
|
15774
|
+
}
|
|
15775
|
+
this.maxAttemptsProvider ??= async () => DEFAULT_MAX_ATTEMPTS;
|
|
15776
|
+
this.baseDelay ??= Retry.delay();
|
|
15777
|
+
this.retryBackoffStrategy ??= new DefaultRetryBackoffStrategy();
|
|
15699
15778
|
}
|
|
15700
15779
|
async acquireInitialRetryToken(retryTokenScope) {
|
|
15701
|
-
return
|
|
15702
|
-
retryDelay: DEFAULT_RETRY_DELAY_BASE,
|
|
15703
|
-
retryCount: 0
|
|
15704
|
-
});
|
|
15780
|
+
return new DefaultRetryToken(Retry.delay(), 0, void 0, Retry.v2026 && retryTokenScope.includes(":longpoll"));
|
|
15705
15781
|
}
|
|
15706
15782
|
async refreshRetryTokenForRetry(token, errorInfo) {
|
|
15707
15783
|
const maxAttempts = await this.getMaxAttempts();
|
|
15708
|
-
|
|
15784
|
+
const shouldRetry = this.shouldRetry(token, errorInfo, maxAttempts);
|
|
15785
|
+
if (shouldRetry || token.isLongPoll?.()) {
|
|
15709
15786
|
const errorType = errorInfo.errorType;
|
|
15710
|
-
this.retryBackoffStrategy.setDelayBase(errorType === "THROTTLING" ?
|
|
15787
|
+
this.retryBackoffStrategy.setDelayBase(errorType === "THROTTLING" ? Retry.throttlingDelay() : this.baseDelay);
|
|
15711
15788
|
const delayFromErrorType = this.retryBackoffStrategy.computeNextBackoffDelay(token.getRetryCount());
|
|
15712
|
-
|
|
15713
|
-
|
|
15714
|
-
|
|
15715
|
-
|
|
15716
|
-
|
|
15717
|
-
|
|
15718
|
-
|
|
15719
|
-
|
|
15789
|
+
let retryDelay = delayFromErrorType;
|
|
15790
|
+
if (errorInfo.retryAfterHint instanceof Date) {
|
|
15791
|
+
retryDelay = Math.max(delayFromErrorType, Math.min(errorInfo.retryAfterHint.getTime() - Date.now(), delayFromErrorType + 5e3));
|
|
15792
|
+
}
|
|
15793
|
+
if (!shouldRetry) {
|
|
15794
|
+
throw Object.assign(new Error("No retry token available"), { $backoff: Retry.v2026 ? retryDelay : 0 });
|
|
15795
|
+
} else {
|
|
15796
|
+
const capacityCost = this.getCapacityCost(errorType);
|
|
15797
|
+
this.capacity -= capacityCost;
|
|
15798
|
+
return new DefaultRetryToken(retryDelay, token.getRetryCount() + 1, capacityCost, token.isLongPoll?.() ?? false);
|
|
15799
|
+
}
|
|
15720
15800
|
}
|
|
15721
15801
|
throw new Error("No retry token available");
|
|
15722
15802
|
}
|
|
15723
15803
|
recordSuccess(token) {
|
|
15724
|
-
this.capacity = Math.
|
|
15804
|
+
this.capacity = Math.min(INITIAL_RETRY_TOKENS, this.capacity + (token.getRetryCost() ?? NO_RETRY_INCREMENT));
|
|
15725
15805
|
}
|
|
15726
15806
|
getCapacity() {
|
|
15727
15807
|
return this.capacity;
|
|
@@ -15739,22 +15819,23 @@ var require_dist_cjs36 = __commonJS({
|
|
|
15739
15819
|
return attempts < maxAttempts && this.capacity >= this.getCapacityCost(errorInfo.errorType) && this.isRetryableError(errorInfo.errorType);
|
|
15740
15820
|
}
|
|
15741
15821
|
getCapacityCost(errorType) {
|
|
15742
|
-
return errorType ===
|
|
15822
|
+
return errorType === Retry.modifiedCostType() ? Retry.throttlingCost() : Retry.cost();
|
|
15743
15823
|
}
|
|
15744
15824
|
isRetryableError(errorType) {
|
|
15745
15825
|
return errorType === "THROTTLING" || errorType === "TRANSIENT";
|
|
15746
15826
|
}
|
|
15747
15827
|
};
|
|
15748
15828
|
var AdaptiveRetryStrategy = class {
|
|
15749
|
-
|
|
15829
|
+
mode = exports2.RETRY_MODES.ADAPTIVE;
|
|
15750
15830
|
rateLimiter;
|
|
15751
15831
|
standardRetryStrategy;
|
|
15752
|
-
mode = exports2.RETRY_MODES.ADAPTIVE;
|
|
15753
15832
|
constructor(maxAttemptsProvider, options) {
|
|
15754
|
-
this.maxAttemptsProvider = maxAttemptsProvider;
|
|
15755
15833
|
const { rateLimiter } = options ?? {};
|
|
15756
15834
|
this.rateLimiter = rateLimiter ?? new DefaultRateLimiter();
|
|
15757
|
-
this.standardRetryStrategy = new StandardRetryStrategy(
|
|
15835
|
+
this.standardRetryStrategy = options ? new StandardRetryStrategy({
|
|
15836
|
+
maxAttempts: typeof maxAttemptsProvider === "number" ? maxAttemptsProvider : 3,
|
|
15837
|
+
...options
|
|
15838
|
+
}) : new StandardRetryStrategy(maxAttemptsProvider);
|
|
15758
15839
|
}
|
|
15759
15840
|
async acquireInitialRetryToken(retryTokenScope) {
|
|
15760
15841
|
await this.rateLimiter.getSendToken();
|
|
@@ -15771,7 +15852,7 @@ var require_dist_cjs36 = __commonJS({
|
|
|
15771
15852
|
};
|
|
15772
15853
|
var ConfiguredRetryStrategy = class extends StandardRetryStrategy {
|
|
15773
15854
|
computeNextBackoffDelay;
|
|
15774
|
-
constructor(maxAttempts, computeNextBackoffDelay =
|
|
15855
|
+
constructor(maxAttempts, computeNextBackoffDelay = Retry.delay()) {
|
|
15775
15856
|
super(typeof maxAttempts === "function" ? maxAttempts : async () => maxAttempts);
|
|
15776
15857
|
if (typeof computeNextBackoffDelay === "number") {
|
|
15777
15858
|
this.computeNextBackoffDelay = () => computeNextBackoffDelay;
|
|
@@ -15797,15 +15878,16 @@ var require_dist_cjs36 = __commonJS({
|
|
|
15797
15878
|
exports2.NO_RETRY_INCREMENT = NO_RETRY_INCREMENT;
|
|
15798
15879
|
exports2.REQUEST_HEADER = REQUEST_HEADER;
|
|
15799
15880
|
exports2.RETRY_COST = RETRY_COST;
|
|
15881
|
+
exports2.Retry = Retry;
|
|
15800
15882
|
exports2.StandardRetryStrategy = StandardRetryStrategy;
|
|
15801
15883
|
exports2.THROTTLING_RETRY_DELAY_BASE = THROTTLING_RETRY_DELAY_BASE;
|
|
15802
15884
|
exports2.TIMEOUT_RETRY_COST = TIMEOUT_RETRY_COST;
|
|
15803
15885
|
}
|
|
15804
15886
|
});
|
|
15805
15887
|
|
|
15806
|
-
// node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.972.
|
|
15888
|
+
// node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.972.29/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js
|
|
15807
15889
|
var require_dist_cjs37 = __commonJS({
|
|
15808
|
-
"node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.972.
|
|
15890
|
+
"node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.972.29/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js"(exports2) {
|
|
15809
15891
|
"use strict";
|
|
15810
15892
|
var core = (init_dist_es(), __toCommonJS(dist_es_exports));
|
|
15811
15893
|
var utilEndpoints = require_dist_cjs34();
|
|
@@ -15984,9 +16066,9 @@ var require_dist_cjs37 = __commonJS({
|
|
|
15984
16066
|
}
|
|
15985
16067
|
});
|
|
15986
16068
|
|
|
15987
|
-
// node_modules/.pnpm/@smithy+config-resolver@4.4.
|
|
16069
|
+
// node_modules/.pnpm/@smithy+config-resolver@4.4.14/node_modules/@smithy/config-resolver/dist-cjs/index.js
|
|
15988
16070
|
var require_dist_cjs38 = __commonJS({
|
|
15989
|
-
"node_modules/.pnpm/@smithy+config-resolver@4.4.
|
|
16071
|
+
"node_modules/.pnpm/@smithy+config-resolver@4.4.14/node_modules/@smithy/config-resolver/dist-cjs/index.js"(exports2) {
|
|
15990
16072
|
"use strict";
|
|
15991
16073
|
var utilConfigProvider = require_dist_cjs31();
|
|
15992
16074
|
var utilMiddleware = require_dist_cjs18();
|
|
@@ -16158,9 +16240,9 @@ var require_dist_cjs38 = __commonJS({
|
|
|
16158
16240
|
}
|
|
16159
16241
|
});
|
|
16160
16242
|
|
|
16161
|
-
// node_modules/.pnpm/@smithy+eventstream-serde-config-resolver@4.3.
|
|
16243
|
+
// node_modules/.pnpm/@smithy+eventstream-serde-config-resolver@4.3.13/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js
|
|
16162
16244
|
var require_dist_cjs39 = __commonJS({
|
|
16163
|
-
"node_modules/.pnpm/@smithy+eventstream-serde-config-resolver@4.3.
|
|
16245
|
+
"node_modules/.pnpm/@smithy+eventstream-serde-config-resolver@4.3.13/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js"(exports2) {
|
|
16164
16246
|
"use strict";
|
|
16165
16247
|
var resolveEventStreamSerdeConfig = (input) => Object.assign(input, {
|
|
16166
16248
|
eventStreamMarshaller: input.eventStreamSerdeProvider(input)
|
|
@@ -16169,9 +16251,9 @@ var require_dist_cjs39 = __commonJS({
|
|
|
16169
16251
|
}
|
|
16170
16252
|
});
|
|
16171
16253
|
|
|
16172
|
-
// node_modules/.pnpm/@smithy+middleware-content-length@4.2.
|
|
16254
|
+
// node_modules/.pnpm/@smithy+middleware-content-length@4.2.13/node_modules/@smithy/middleware-content-length/dist-cjs/index.js
|
|
16173
16255
|
var require_dist_cjs40 = __commonJS({
|
|
16174
|
-
"node_modules/.pnpm/@smithy+middleware-content-length@4.2.
|
|
16256
|
+
"node_modules/.pnpm/@smithy+middleware-content-length@4.2.13/node_modules/@smithy/middleware-content-length/dist-cjs/index.js"(exports2) {
|
|
16175
16257
|
"use strict";
|
|
16176
16258
|
var protocolHttp = require_dist_cjs2();
|
|
16177
16259
|
var CONTENT_LENGTH_HEADER = "content-length";
|
|
@@ -16214,9 +16296,9 @@ var require_dist_cjs40 = __commonJS({
|
|
|
16214
16296
|
}
|
|
16215
16297
|
});
|
|
16216
16298
|
|
|
16217
|
-
// node_modules/.pnpm/@smithy+property-provider@4.2.
|
|
16299
|
+
// node_modules/.pnpm/@smithy+property-provider@4.2.13/node_modules/@smithy/property-provider/dist-cjs/index.js
|
|
16218
16300
|
var require_dist_cjs41 = __commonJS({
|
|
16219
|
-
"node_modules/.pnpm/@smithy+property-provider@4.2.
|
|
16301
|
+
"node_modules/.pnpm/@smithy+property-provider@4.2.13/node_modules/@smithy/property-provider/dist-cjs/index.js"(exports2) {
|
|
16220
16302
|
"use strict";
|
|
16221
16303
|
var ProviderError2 = class _ProviderError extends Error {
|
|
16222
16304
|
name = "ProviderError";
|
|
@@ -16327,9 +16409,9 @@ var require_dist_cjs41 = __commonJS({
|
|
|
16327
16409
|
}
|
|
16328
16410
|
});
|
|
16329
16411
|
|
|
16330
|
-
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16412
|
+
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js
|
|
16331
16413
|
var require_getHomeDir = __commonJS({
|
|
16332
|
-
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16414
|
+
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js"(exports2) {
|
|
16333
16415
|
"use strict";
|
|
16334
16416
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
16335
16417
|
exports2.getHomeDir = void 0;
|
|
@@ -16359,9 +16441,9 @@ var require_getHomeDir = __commonJS({
|
|
|
16359
16441
|
}
|
|
16360
16442
|
});
|
|
16361
16443
|
|
|
16362
|
-
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16444
|
+
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js
|
|
16363
16445
|
var require_getSSOTokenFilepath = __commonJS({
|
|
16364
|
-
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16446
|
+
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js"(exports2) {
|
|
16365
16447
|
"use strict";
|
|
16366
16448
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
16367
16449
|
exports2.getSSOTokenFilepath = void 0;
|
|
@@ -16377,9 +16459,9 @@ var require_getSSOTokenFilepath = __commonJS({
|
|
|
16377
16459
|
}
|
|
16378
16460
|
});
|
|
16379
16461
|
|
|
16380
|
-
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16462
|
+
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js
|
|
16381
16463
|
var require_getSSOTokenFromFile = __commonJS({
|
|
16382
|
-
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16464
|
+
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js"(exports2) {
|
|
16383
16465
|
"use strict";
|
|
16384
16466
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
16385
16467
|
exports2.getSSOTokenFromFile = exports2.tokenIntercept = void 0;
|
|
@@ -16398,9 +16480,9 @@ var require_getSSOTokenFromFile = __commonJS({
|
|
|
16398
16480
|
}
|
|
16399
16481
|
});
|
|
16400
16482
|
|
|
16401
|
-
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16483
|
+
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js
|
|
16402
16484
|
var require_readFile = __commonJS({
|
|
16403
|
-
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16485
|
+
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js"(exports2) {
|
|
16404
16486
|
"use strict";
|
|
16405
16487
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
16406
16488
|
exports2.readFile = exports2.fileIntercept = exports2.filePromises = void 0;
|
|
@@ -16420,9 +16502,9 @@ var require_readFile = __commonJS({
|
|
|
16420
16502
|
}
|
|
16421
16503
|
});
|
|
16422
16504
|
|
|
16423
|
-
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16505
|
+
// node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js
|
|
16424
16506
|
var require_dist_cjs42 = __commonJS({
|
|
16425
|
-
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.
|
|
16507
|
+
"node_modules/.pnpm/@smithy+shared-ini-file-loader@4.4.8/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js"(exports2) {
|
|
16426
16508
|
"use strict";
|
|
16427
16509
|
var getHomeDir = require_getHomeDir();
|
|
16428
16510
|
var getSSOTokenFilepath = require_getSSOTokenFilepath();
|
|
@@ -16586,9 +16668,9 @@ var require_dist_cjs42 = __commonJS({
|
|
|
16586
16668
|
}
|
|
16587
16669
|
});
|
|
16588
16670
|
|
|
16589
|
-
// node_modules/.pnpm/@smithy+node-config-provider@4.3.
|
|
16671
|
+
// node_modules/.pnpm/@smithy+node-config-provider@4.3.13/node_modules/@smithy/node-config-provider/dist-cjs/index.js
|
|
16590
16672
|
var require_dist_cjs43 = __commonJS({
|
|
16591
|
-
"node_modules/.pnpm/@smithy+node-config-provider@4.3.
|
|
16673
|
+
"node_modules/.pnpm/@smithy+node-config-provider@4.3.13/node_modules/@smithy/node-config-provider/dist-cjs/index.js"(exports2) {
|
|
16592
16674
|
"use strict";
|
|
16593
16675
|
var propertyProvider = require_dist_cjs41();
|
|
16594
16676
|
var sharedIniFileLoader = require_dist_cjs42();
|
|
@@ -16642,9 +16724,9 @@ var require_dist_cjs43 = __commonJS({
|
|
|
16642
16724
|
}
|
|
16643
16725
|
});
|
|
16644
16726
|
|
|
16645
|
-
// node_modules/.pnpm/@smithy+middleware-endpoint@4.4.
|
|
16727
|
+
// node_modules/.pnpm/@smithy+middleware-endpoint@4.4.29/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js
|
|
16646
16728
|
var require_getEndpointUrlConfig = __commonJS({
|
|
16647
|
-
"node_modules/.pnpm/@smithy+middleware-endpoint@4.4.
|
|
16729
|
+
"node_modules/.pnpm/@smithy+middleware-endpoint@4.4.29/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js"(exports2) {
|
|
16648
16730
|
"use strict";
|
|
16649
16731
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
16650
16732
|
exports2.getEndpointUrlConfig = void 0;
|
|
@@ -16683,9 +16765,9 @@ var require_getEndpointUrlConfig = __commonJS({
|
|
|
16683
16765
|
}
|
|
16684
16766
|
});
|
|
16685
16767
|
|
|
16686
|
-
// node_modules/.pnpm/@smithy+middleware-endpoint@4.4.
|
|
16768
|
+
// node_modules/.pnpm/@smithy+middleware-endpoint@4.4.29/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js
|
|
16687
16769
|
var require_getEndpointFromConfig = __commonJS({
|
|
16688
|
-
"node_modules/.pnpm/@smithy+middleware-endpoint@4.4.
|
|
16770
|
+
"node_modules/.pnpm/@smithy+middleware-endpoint@4.4.29/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js"(exports2) {
|
|
16689
16771
|
"use strict";
|
|
16690
16772
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
16691
16773
|
exports2.getEndpointFromConfig = void 0;
|
|
@@ -16696,9 +16778,9 @@ var require_getEndpointFromConfig = __commonJS({
|
|
|
16696
16778
|
}
|
|
16697
16779
|
});
|
|
16698
16780
|
|
|
16699
|
-
// node_modules/.pnpm/@smithy+middleware-serde@4.2.
|
|
16781
|
+
// node_modules/.pnpm/@smithy+middleware-serde@4.2.17/node_modules/@smithy/middleware-serde/dist-cjs/index.js
|
|
16700
16782
|
var require_dist_cjs44 = __commonJS({
|
|
16701
|
-
"node_modules/.pnpm/@smithy+middleware-serde@4.2.
|
|
16783
|
+
"node_modules/.pnpm/@smithy+middleware-serde@4.2.17/node_modules/@smithy/middleware-serde/dist-cjs/index.js"(exports2) {
|
|
16702
16784
|
"use strict";
|
|
16703
16785
|
var protocolHttp = require_dist_cjs2();
|
|
16704
16786
|
var endpoints = (init_endpoints(), __toCommonJS(endpoints_exports));
|
|
@@ -16795,14 +16877,14 @@ var require_dist_cjs44 = __commonJS({
|
|
|
16795
16877
|
}
|
|
16796
16878
|
});
|
|
16797
16879
|
|
|
16798
|
-
// node_modules/.pnpm/@smithy+middleware-endpoint@4.4.
|
|
16880
|
+
// node_modules/.pnpm/@smithy+middleware-endpoint@4.4.29/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js
|
|
16799
16881
|
var require_dist_cjs45 = __commonJS({
|
|
16800
|
-
"node_modules/.pnpm/@smithy+middleware-endpoint@4.4.
|
|
16882
|
+
"node_modules/.pnpm/@smithy+middleware-endpoint@4.4.29/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js"(exports2) {
|
|
16801
16883
|
"use strict";
|
|
16802
|
-
var getEndpointFromConfig = require_getEndpointFromConfig();
|
|
16803
|
-
var urlParser = require_dist_cjs25();
|
|
16804
16884
|
var core = (init_dist_es(), __toCommonJS(dist_es_exports));
|
|
16805
16885
|
var utilMiddleware = require_dist_cjs18();
|
|
16886
|
+
var getEndpointFromConfig = require_getEndpointFromConfig();
|
|
16887
|
+
var urlParser = require_dist_cjs25();
|
|
16806
16888
|
var middlewareSerde = require_dist_cjs44();
|
|
16807
16889
|
var resolveParamsForS3 = async (endpointParams) => {
|
|
16808
16890
|
const bucket = endpointParams?.Bucket || "";
|
|
@@ -17049,9 +17131,9 @@ var require_dist_cjs45 = __commonJS({
|
|
|
17049
17131
|
}
|
|
17050
17132
|
});
|
|
17051
17133
|
|
|
17052
|
-
// node_modules/.pnpm/@smithy+middleware-retry@4.
|
|
17134
|
+
// node_modules/.pnpm/@smithy+middleware-retry@4.5.0/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js
|
|
17053
17135
|
var require_isStreamingPayload = __commonJS({
|
|
17054
|
-
"node_modules/.pnpm/@smithy+middleware-retry@4.
|
|
17136
|
+
"node_modules/.pnpm/@smithy+middleware-retry@4.5.0/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js"(exports2) {
|
|
17055
17137
|
"use strict";
|
|
17056
17138
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
17057
17139
|
exports2.isStreamingPayload = void 0;
|
|
@@ -17061,9 +17143,9 @@ var require_isStreamingPayload = __commonJS({
|
|
|
17061
17143
|
}
|
|
17062
17144
|
});
|
|
17063
17145
|
|
|
17064
|
-
// node_modules/.pnpm/@smithy+middleware-retry@4.
|
|
17146
|
+
// node_modules/.pnpm/@smithy+middleware-retry@4.5.0/node_modules/@smithy/middleware-retry/dist-cjs/index.js
|
|
17065
17147
|
var require_dist_cjs46 = __commonJS({
|
|
17066
|
-
"node_modules/.pnpm/@smithy+middleware-retry@4.
|
|
17148
|
+
"node_modules/.pnpm/@smithy+middleware-retry@4.5.0/node_modules/@smithy/middleware-retry/dist-cjs/index.js"(exports2) {
|
|
17067
17149
|
"use strict";
|
|
17068
17150
|
var utilRetry = require_dist_cjs36();
|
|
17069
17151
|
var protocolHttp = require_dist_cjs2();
|
|
@@ -17072,6 +17154,16 @@ var require_dist_cjs46 = __commonJS({
|
|
|
17072
17154
|
var utilMiddleware = require_dist_cjs18();
|
|
17073
17155
|
var smithyClient = require_dist_cjs27();
|
|
17074
17156
|
var isStreamingPayload = require_isStreamingPayload();
|
|
17157
|
+
var serde = (init_serde(), __toCommonJS(serde_exports));
|
|
17158
|
+
var asSdkError = (error2) => {
|
|
17159
|
+
if (error2 instanceof Error)
|
|
17160
|
+
return error2;
|
|
17161
|
+
if (error2 instanceof Object)
|
|
17162
|
+
return Object.assign(new Error(), error2);
|
|
17163
|
+
if (typeof error2 === "string")
|
|
17164
|
+
return new Error(error2);
|
|
17165
|
+
return new Error(`AWS SDK error wrapper for ${error2}`);
|
|
17166
|
+
};
|
|
17075
17167
|
var getDefaultRetryQuota = (initialRetryTokens, options) => {
|
|
17076
17168
|
const MAX_CAPACITY = initialRetryTokens;
|
|
17077
17169
|
const noRetryIncrement = utilRetry.NO_RETRY_INCREMENT;
|
|
@@ -17105,15 +17197,6 @@ var require_dist_cjs46 = __commonJS({
|
|
|
17105
17197
|
}
|
|
17106
17198
|
return serviceErrorClassification.isRetryableByTrait(error2) || serviceErrorClassification.isClockSkewError(error2) || serviceErrorClassification.isThrottlingError(error2) || serviceErrorClassification.isTransientError(error2);
|
|
17107
17199
|
};
|
|
17108
|
-
var asSdkError = (error2) => {
|
|
17109
|
-
if (error2 instanceof Error)
|
|
17110
|
-
return error2;
|
|
17111
|
-
if (error2 instanceof Object)
|
|
17112
|
-
return Object.assign(new Error(), error2);
|
|
17113
|
-
if (typeof error2 === "string")
|
|
17114
|
-
return new Error(error2);
|
|
17115
|
-
return new Error(`AWS SDK error wrapper for ${error2}`);
|
|
17116
|
-
};
|
|
17117
17200
|
var StandardRetryStrategy = class {
|
|
17118
17201
|
maxAttemptsProvider;
|
|
17119
17202
|
retryDecider;
|
|
@@ -17279,12 +17362,54 @@ var require_dist_cjs46 = __commonJS({
|
|
|
17279
17362
|
clientStack.addRelativeTo(omitRetryHeadersMiddleware(), omitRetryHeadersMiddlewareOptions);
|
|
17280
17363
|
}
|
|
17281
17364
|
});
|
|
17365
|
+
function parseRetryAfterHeader(response, logger2) {
|
|
17366
|
+
if (!protocolHttp.HttpResponse.isInstance(response)) {
|
|
17367
|
+
return;
|
|
17368
|
+
}
|
|
17369
|
+
for (const header of Object.keys(response.headers)) {
|
|
17370
|
+
const h6 = header.toLowerCase();
|
|
17371
|
+
if (h6 === "retry-after") {
|
|
17372
|
+
const retryAfter = response.headers[header];
|
|
17373
|
+
let retryAfterSeconds = NaN;
|
|
17374
|
+
if (retryAfter.endsWith("GMT")) {
|
|
17375
|
+
try {
|
|
17376
|
+
const date2 = serde.parseRfc7231DateTime(retryAfter);
|
|
17377
|
+
retryAfterSeconds = (date2.getTime() - Date.now()) / 1e3;
|
|
17378
|
+
} catch (e5) {
|
|
17379
|
+
logger2?.trace?.("Failed to parse retry-after header");
|
|
17380
|
+
logger2?.trace?.(e5);
|
|
17381
|
+
}
|
|
17382
|
+
} else if (retryAfter.match(/ GMT, ((\d+)|(\d+\.\d+))$/)) {
|
|
17383
|
+
retryAfterSeconds = Number(retryAfter.match(/ GMT, ([\d.]+)$/)?.[1]);
|
|
17384
|
+
} else if (retryAfter.match(/^((\d+)|(\d+\.\d+))$/)) {
|
|
17385
|
+
retryAfterSeconds = Number(retryAfter);
|
|
17386
|
+
} else if (Date.parse(retryAfter) >= Date.now()) {
|
|
17387
|
+
retryAfterSeconds = (Date.parse(retryAfter) - Date.now()) / 1e3;
|
|
17388
|
+
}
|
|
17389
|
+
if (isNaN(retryAfterSeconds)) {
|
|
17390
|
+
return;
|
|
17391
|
+
}
|
|
17392
|
+
return new Date(Date.now() + retryAfterSeconds * 1e3);
|
|
17393
|
+
} else if (h6 === "x-amz-retry-after") {
|
|
17394
|
+
const v5 = response.headers[header];
|
|
17395
|
+
const backoffMilliseconds = Number(v5);
|
|
17396
|
+
if (isNaN(backoffMilliseconds)) {
|
|
17397
|
+
logger2?.trace?.(`Failed to parse x-amz-retry-after=${v5}`);
|
|
17398
|
+
return;
|
|
17399
|
+
}
|
|
17400
|
+
return new Date(Date.now() + backoffMilliseconds);
|
|
17401
|
+
}
|
|
17402
|
+
}
|
|
17403
|
+
}
|
|
17404
|
+
function getRetryAfterHint(response, logger2) {
|
|
17405
|
+
return parseRetryAfterHeader(response, logger2);
|
|
17406
|
+
}
|
|
17282
17407
|
var retryMiddleware = (options) => (next, context) => async (args) => {
|
|
17283
17408
|
let retryStrategy = await options.retryStrategy();
|
|
17284
17409
|
const maxAttempts = await options.maxAttempts();
|
|
17285
17410
|
if (isRetryStrategyV2(retryStrategy)) {
|
|
17286
17411
|
retryStrategy = retryStrategy;
|
|
17287
|
-
let retryToken = await retryStrategy.acquireInitialRetryToken(context["partition_id"]);
|
|
17412
|
+
let retryToken = await retryStrategy.acquireInitialRetryToken((context["partition_id"] ?? "") + (context.__retryLongPoll ? ":longpoll" : ""));
|
|
17288
17413
|
let lastError = new Error();
|
|
17289
17414
|
let attempts = 0;
|
|
17290
17415
|
let totalRetryDelay = 0;
|
|
@@ -17304,7 +17429,7 @@ var require_dist_cjs46 = __commonJS({
|
|
|
17304
17429
|
output.$metadata.totalRetryDelay = totalRetryDelay;
|
|
17305
17430
|
return { response, output };
|
|
17306
17431
|
} catch (e5) {
|
|
17307
|
-
const retryErrorInfo = getRetryErrorInfo(e5);
|
|
17432
|
+
const retryErrorInfo = getRetryErrorInfo(e5, options.logger);
|
|
17308
17433
|
lastError = asSdkError(e5);
|
|
17309
17434
|
if (isRequest && isStreamingPayload.isStreamingPayload(request)) {
|
|
17310
17435
|
(context.logger instanceof smithyClient.NoOpLogger ? console : context.logger)?.warn("An error was encountered in a non-retryable streaming request.");
|
|
@@ -17313,6 +17438,9 @@ var require_dist_cjs46 = __commonJS({
|
|
|
17313
17438
|
try {
|
|
17314
17439
|
retryToken = await retryStrategy.refreshRetryTokenForRetry(retryToken, retryErrorInfo);
|
|
17315
17440
|
} catch (refreshError) {
|
|
17441
|
+
if (typeof refreshError.$backoff === "number") {
|
|
17442
|
+
await cooldown(refreshError.$backoff);
|
|
17443
|
+
}
|
|
17316
17444
|
if (!lastError.$metadata) {
|
|
17317
17445
|
lastError.$metadata = {};
|
|
17318
17446
|
}
|
|
@@ -17323,23 +17451,25 @@ var require_dist_cjs46 = __commonJS({
|
|
|
17323
17451
|
attempts = retryToken.getRetryCount();
|
|
17324
17452
|
const delay = retryToken.getRetryDelay();
|
|
17325
17453
|
totalRetryDelay += delay;
|
|
17326
|
-
await
|
|
17454
|
+
await cooldown(delay);
|
|
17327
17455
|
}
|
|
17328
17456
|
}
|
|
17329
17457
|
} else {
|
|
17330
17458
|
retryStrategy = retryStrategy;
|
|
17331
|
-
if (retryStrategy?.mode)
|
|
17459
|
+
if (retryStrategy?.mode) {
|
|
17332
17460
|
context.userAgent = [...context.userAgent || [], ["cfg/retry-mode", retryStrategy.mode]];
|
|
17461
|
+
}
|
|
17333
17462
|
return retryStrategy.retry(next, args);
|
|
17334
17463
|
}
|
|
17335
17464
|
};
|
|
17465
|
+
var cooldown = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
17336
17466
|
var isRetryStrategyV2 = (retryStrategy) => typeof retryStrategy.acquireInitialRetryToken !== "undefined" && typeof retryStrategy.refreshRetryTokenForRetry !== "undefined" && typeof retryStrategy.recordSuccess !== "undefined";
|
|
17337
|
-
var getRetryErrorInfo = (error2) => {
|
|
17467
|
+
var getRetryErrorInfo = (error2, logger2) => {
|
|
17338
17468
|
const errorInfo = {
|
|
17339
17469
|
error: error2,
|
|
17340
17470
|
errorType: getRetryErrorType(error2)
|
|
17341
17471
|
};
|
|
17342
|
-
const retryAfterHint =
|
|
17472
|
+
const retryAfterHint = parseRetryAfterHeader(error2.$response, logger2);
|
|
17343
17473
|
if (retryAfterHint) {
|
|
17344
17474
|
errorInfo.retryAfterHint = retryAfterHint;
|
|
17345
17475
|
}
|
|
@@ -17366,19 +17496,6 @@ var require_dist_cjs46 = __commonJS({
|
|
|
17366
17496
|
clientStack.add(retryMiddleware(options), retryMiddlewareOptions);
|
|
17367
17497
|
}
|
|
17368
17498
|
});
|
|
17369
|
-
var getRetryAfterHint = (response) => {
|
|
17370
|
-
if (!protocolHttp.HttpResponse.isInstance(response))
|
|
17371
|
-
return;
|
|
17372
|
-
const retryAfterHeaderName = Object.keys(response.headers).find((key) => key.toLowerCase() === "retry-after");
|
|
17373
|
-
if (!retryAfterHeaderName)
|
|
17374
|
-
return;
|
|
17375
|
-
const retryAfter = response.headers[retryAfterHeaderName];
|
|
17376
|
-
const retryAfterSeconds = Number(retryAfter);
|
|
17377
|
-
if (!Number.isNaN(retryAfterSeconds))
|
|
17378
|
-
return new Date(retryAfterSeconds * 1e3);
|
|
17379
|
-
const retryAfterDate = new Date(retryAfter);
|
|
17380
|
-
return retryAfterDate;
|
|
17381
|
-
};
|
|
17382
17499
|
exports2.AdaptiveRetryStrategy = AdaptiveRetryStrategy;
|
|
17383
17500
|
exports2.CONFIG_MAX_ATTEMPTS = CONFIG_MAX_ATTEMPTS;
|
|
17384
17501
|
exports2.CONFIG_RETRY_MODE = CONFIG_RETRY_MODE;
|
|
@@ -17400,36 +17517,36 @@ var require_dist_cjs46 = __commonJS({
|
|
|
17400
17517
|
}
|
|
17401
17518
|
});
|
|
17402
17519
|
|
|
17403
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17520
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js
|
|
17404
17521
|
var import_protocol_http9, getDateHeader;
|
|
17405
17522
|
var init_getDateHeader = __esm({
|
|
17406
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17523
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js"() {
|
|
17407
17524
|
import_protocol_http9 = __toESM(require_dist_cjs2());
|
|
17408
17525
|
getDateHeader = (response) => import_protocol_http9.HttpResponse.isInstance(response) ? response.headers?.date ?? response.headers?.Date : void 0;
|
|
17409
17526
|
}
|
|
17410
17527
|
});
|
|
17411
17528
|
|
|
17412
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17529
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js
|
|
17413
17530
|
var getSkewCorrectedDate;
|
|
17414
17531
|
var init_getSkewCorrectedDate = __esm({
|
|
17415
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17532
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js"() {
|
|
17416
17533
|
getSkewCorrectedDate = (systemClockOffset) => new Date(Date.now() + systemClockOffset);
|
|
17417
17534
|
}
|
|
17418
17535
|
});
|
|
17419
17536
|
|
|
17420
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17537
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js
|
|
17421
17538
|
var isClockSkewed;
|
|
17422
17539
|
var init_isClockSkewed = __esm({
|
|
17423
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17540
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js"() {
|
|
17424
17541
|
init_getSkewCorrectedDate();
|
|
17425
17542
|
isClockSkewed = (clockTime, systemClockOffset) => Math.abs(getSkewCorrectedDate(systemClockOffset).getTime() - clockTime) >= 3e5;
|
|
17426
17543
|
}
|
|
17427
17544
|
});
|
|
17428
17545
|
|
|
17429
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17546
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js
|
|
17430
17547
|
var getUpdatedSystemClockOffset;
|
|
17431
17548
|
var init_getUpdatedSystemClockOffset = __esm({
|
|
17432
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17549
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js"() {
|
|
17433
17550
|
init_isClockSkewed();
|
|
17434
17551
|
getUpdatedSystemClockOffset = (clockTime, currentSystemClockOffset) => {
|
|
17435
17552
|
const clockTimeInMs = Date.parse(clockTime);
|
|
@@ -17441,19 +17558,19 @@ var init_getUpdatedSystemClockOffset = __esm({
|
|
|
17441
17558
|
}
|
|
17442
17559
|
});
|
|
17443
17560
|
|
|
17444
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17561
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js
|
|
17445
17562
|
var init_utils = __esm({
|
|
17446
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17563
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js"() {
|
|
17447
17564
|
init_getDateHeader();
|
|
17448
17565
|
init_getSkewCorrectedDate();
|
|
17449
17566
|
init_getUpdatedSystemClockOffset();
|
|
17450
17567
|
}
|
|
17451
17568
|
});
|
|
17452
17569
|
|
|
17453
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17570
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js
|
|
17454
17571
|
var import_protocol_http10, throwSigningPropertyError, validateSigningProperties, AwsSdkSigV4Signer, AWSSDKSigV4Signer;
|
|
17455
17572
|
var init_AwsSdkSigV4Signer = __esm({
|
|
17456
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17573
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js"() {
|
|
17457
17574
|
import_protocol_http10 = __toESM(require_dist_cjs2());
|
|
17458
17575
|
init_utils();
|
|
17459
17576
|
throwSigningPropertyError = (name2, property) => {
|
|
@@ -17529,10 +17646,10 @@ var init_AwsSdkSigV4Signer = __esm({
|
|
|
17529
17646
|
}
|
|
17530
17647
|
});
|
|
17531
17648
|
|
|
17532
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17649
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js
|
|
17533
17650
|
var import_protocol_http11, AwsSdkSigV4ASigner;
|
|
17534
17651
|
var init_AwsSdkSigV4ASigner = __esm({
|
|
17535
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17652
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js"() {
|
|
17536
17653
|
import_protocol_http11 = __toESM(require_dist_cjs2());
|
|
17537
17654
|
init_utils();
|
|
17538
17655
|
init_AwsSdkSigV4Signer();
|
|
@@ -17555,26 +17672,26 @@ var init_AwsSdkSigV4ASigner = __esm({
|
|
|
17555
17672
|
}
|
|
17556
17673
|
});
|
|
17557
17674
|
|
|
17558
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17675
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.js
|
|
17559
17676
|
var getArrayForCommaSeparatedString;
|
|
17560
17677
|
var init_getArrayForCommaSeparatedString = __esm({
|
|
17561
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17678
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.js"() {
|
|
17562
17679
|
getArrayForCommaSeparatedString = (str) => typeof str === "string" && str.length > 0 ? str.split(",").map((item) => item.trim()) : [];
|
|
17563
17680
|
}
|
|
17564
17681
|
});
|
|
17565
17682
|
|
|
17566
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17683
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.js
|
|
17567
17684
|
var getBearerTokenEnvKey;
|
|
17568
17685
|
var init_getBearerTokenEnvKey = __esm({
|
|
17569
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17686
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.js"() {
|
|
17570
17687
|
getBearerTokenEnvKey = (signingName) => `AWS_BEARER_TOKEN_${signingName.replace(/[\s-]/g, "_").toUpperCase()}`;
|
|
17571
17688
|
}
|
|
17572
17689
|
});
|
|
17573
17690
|
|
|
17574
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17691
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.js
|
|
17575
17692
|
var NODE_AUTH_SCHEME_PREFERENCE_ENV_KEY, NODE_AUTH_SCHEME_PREFERENCE_CONFIG_KEY, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS;
|
|
17576
17693
|
var init_NODE_AUTH_SCHEME_PREFERENCE_OPTIONS = __esm({
|
|
17577
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17694
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.js"() {
|
|
17578
17695
|
init_getArrayForCommaSeparatedString();
|
|
17579
17696
|
init_getBearerTokenEnvKey();
|
|
17580
17697
|
NODE_AUTH_SCHEME_PREFERENCE_ENV_KEY = "AWS_AUTH_SCHEME_PREFERENCE";
|
|
@@ -17600,10 +17717,10 @@ var init_NODE_AUTH_SCHEME_PREFERENCE_OPTIONS = __esm({
|
|
|
17600
17717
|
}
|
|
17601
17718
|
});
|
|
17602
17719
|
|
|
17603
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17720
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js
|
|
17604
17721
|
var import_property_provider, resolveAwsSdkSigV4AConfig, NODE_SIGV4A_CONFIG_OPTIONS;
|
|
17605
17722
|
var init_resolveAwsSdkSigV4AConfig = __esm({
|
|
17606
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17723
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js"() {
|
|
17607
17724
|
init_dist_es();
|
|
17608
17725
|
import_property_provider = __toESM(require_dist_cjs41());
|
|
17609
17726
|
resolveAwsSdkSigV4AConfig = (config) => {
|
|
@@ -17632,7 +17749,7 @@ var init_resolveAwsSdkSigV4AConfig = __esm({
|
|
|
17632
17749
|
}
|
|
17633
17750
|
});
|
|
17634
17751
|
|
|
17635
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17752
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js
|
|
17636
17753
|
function normalizeCredentialProvider(config, { credentials, credentialDefaultProvider }) {
|
|
17637
17754
|
let credentialsProvider;
|
|
17638
17755
|
if (credentials) {
|
|
@@ -17666,7 +17783,7 @@ function bindCallerConfig(config, credentialsProvider) {
|
|
|
17666
17783
|
}
|
|
17667
17784
|
var import_signature_v4, resolveAwsSdkSigV4Config, resolveAWSSDKSigV4Config;
|
|
17668
17785
|
var init_resolveAwsSdkSigV4Config = __esm({
|
|
17669
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17786
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js"() {
|
|
17670
17787
|
init_client();
|
|
17671
17788
|
init_dist_es();
|
|
17672
17789
|
import_signature_v4 = __toESM(require_dist_cjs30());
|
|
@@ -17770,9 +17887,9 @@ var init_resolveAwsSdkSigV4Config = __esm({
|
|
|
17770
17887
|
}
|
|
17771
17888
|
});
|
|
17772
17889
|
|
|
17773
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17890
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js
|
|
17774
17891
|
var init_aws_sdk = __esm({
|
|
17775
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17892
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js"() {
|
|
17776
17893
|
init_AwsSdkSigV4Signer();
|
|
17777
17894
|
init_AwsSdkSigV4ASigner();
|
|
17778
17895
|
init_NODE_AUTH_SCHEME_PREFERENCE_OPTIONS();
|
|
@@ -17781,7 +17898,7 @@ var init_aws_sdk = __esm({
|
|
|
17781
17898
|
}
|
|
17782
17899
|
});
|
|
17783
17900
|
|
|
17784
|
-
// node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17901
|
+
// node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js
|
|
17785
17902
|
var httpAuthSchemes_exports = {};
|
|
17786
17903
|
__export(httpAuthSchemes_exports, {
|
|
17787
17904
|
AWSSDKSigV4Signer: () => AWSSDKSigV4Signer,
|
|
@@ -17796,15 +17913,15 @@ __export(httpAuthSchemes_exports, {
|
|
|
17796
17913
|
validateSigningProperties: () => validateSigningProperties
|
|
17797
17914
|
});
|
|
17798
17915
|
var init_httpAuthSchemes2 = __esm({
|
|
17799
|
-
"node_modules/.pnpm/@aws-sdk+core@3.973.
|
|
17916
|
+
"node_modules/.pnpm/@aws-sdk+core@3.973.27/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js"() {
|
|
17800
17917
|
init_aws_sdk();
|
|
17801
17918
|
init_getBearerTokenEnvKey();
|
|
17802
17919
|
}
|
|
17803
17920
|
});
|
|
17804
17921
|
|
|
17805
|
-
// node_modules/.pnpm/@aws-sdk+signature-v4-multi-region@3.996.
|
|
17922
|
+
// node_modules/.pnpm/@aws-sdk+signature-v4-multi-region@3.996.16/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js
|
|
17806
17923
|
var require_dist_cjs47 = __commonJS({
|
|
17807
|
-
"node_modules/.pnpm/@aws-sdk+signature-v4-multi-region@3.996.
|
|
17924
|
+
"node_modules/.pnpm/@aws-sdk+signature-v4-multi-region@3.996.16/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js"(exports2) {
|
|
17808
17925
|
"use strict";
|
|
17809
17926
|
var middlewareSdkS3 = require_dist_cjs32();
|
|
17810
17927
|
var signatureV4 = require_dist_cjs30();
|
|
@@ -17900,9 +18017,9 @@ var require_dist_cjs47 = __commonJS({
|
|
|
17900
18017
|
}
|
|
17901
18018
|
});
|
|
17902
18019
|
|
|
17903
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18020
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js
|
|
17904
18021
|
var require_ruleset = __commonJS({
|
|
17905
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18022
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js"(exports2) {
|
|
17906
18023
|
"use strict";
|
|
17907
18024
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
17908
18025
|
exports2.ruleSet = void 0;
|
|
@@ -18102,9 +18219,9 @@ var require_ruleset = __commonJS({
|
|
|
18102
18219
|
}
|
|
18103
18220
|
});
|
|
18104
18221
|
|
|
18105
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18222
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js
|
|
18106
18223
|
var require_endpointResolver = __commonJS({
|
|
18107
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18224
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js"(exports2) {
|
|
18108
18225
|
"use strict";
|
|
18109
18226
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
18110
18227
|
exports2.defaultEndpointResolver = void 0;
|
|
@@ -18141,9 +18258,9 @@ var require_endpointResolver = __commonJS({
|
|
|
18141
18258
|
}
|
|
18142
18259
|
});
|
|
18143
18260
|
|
|
18144
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18261
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js
|
|
18145
18262
|
var require_httpAuthSchemeProvider = __commonJS({
|
|
18146
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18263
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
|
|
18147
18264
|
"use strict";
|
|
18148
18265
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
18149
18266
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultS3HttpAuthSchemeProvider = exports2.defaultS3HttpAuthSchemeParametersProvider = void 0;
|
|
@@ -18270,9 +18387,9 @@ var require_httpAuthSchemeProvider = __commonJS({
|
|
|
18270
18387
|
}
|
|
18271
18388
|
});
|
|
18272
18389
|
|
|
18273
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18390
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js
|
|
18274
18391
|
var require_S3ServiceException = __commonJS({
|
|
18275
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18392
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js"(exports2) {
|
|
18276
18393
|
"use strict";
|
|
18277
18394
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
18278
18395
|
exports2.S3ServiceException = exports2.__ServiceException = void 0;
|
|
@@ -18290,9 +18407,9 @@ var require_S3ServiceException = __commonJS({
|
|
|
18290
18407
|
}
|
|
18291
18408
|
});
|
|
18292
18409
|
|
|
18293
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18410
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js
|
|
18294
18411
|
var require_errors = __commonJS({
|
|
18295
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18412
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js"(exports2) {
|
|
18296
18413
|
"use strict";
|
|
18297
18414
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
18298
18415
|
exports2.ObjectAlreadyInActiveTierError = exports2.IdempotencyParameterMismatch = exports2.TooManyParts = exports2.InvalidWriteOffset = exports2.InvalidRequest = exports2.EncryptionTypeMismatch = exports2.NotFound = exports2.NoSuchKey = exports2.InvalidObjectState = exports2.NoSuchBucket = exports2.BucketAlreadyOwnedByYou = exports2.BucketAlreadyExists = exports2.ObjectNotInActiveTierError = exports2.AccessDenied = exports2.NoSuchUpload = void 0;
|
|
@@ -18499,9 +18616,9 @@ var require_errors = __commonJS({
|
|
|
18499
18616
|
}
|
|
18500
18617
|
});
|
|
18501
18618
|
|
|
18502
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18619
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js
|
|
18503
18620
|
var require_schemas_0 = __commonJS({
|
|
18504
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
18621
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js"(exports2) {
|
|
18505
18622
|
"use strict";
|
|
18506
18623
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
18507
18624
|
exports2.CreateBucketMetadataTableConfigurationRequest$ = exports2.CreateBucketMetadataConfigurationRequest$ = exports2.CreateBucketConfiguration$ = exports2.CORSRule$ = exports2.CORSConfiguration$ = exports2.CopyPartResult$ = exports2.CopyObjectResult$ = exports2.CopyObjectRequest$ = exports2.CopyObjectOutput$ = exports2.ContinuationEvent$ = exports2.Condition$ = exports2.CompleteMultipartUploadRequest$ = exports2.CompleteMultipartUploadOutput$ = exports2.CompletedPart$ = exports2.CompletedMultipartUpload$ = exports2.CommonPrefix$ = exports2.Checksum$ = exports2.BucketLoggingStatus$ = exports2.BucketLifecycleConfiguration$ = exports2.BucketInfo$ = exports2.Bucket$ = exports2.BlockedEncryptionTypes$ = exports2.AnalyticsS3BucketDestination$ = exports2.AnalyticsExportDestination$ = exports2.AnalyticsConfiguration$ = exports2.AnalyticsAndOperator$ = exports2.AccessControlTranslation$ = exports2.AccessControlPolicy$ = exports2.AccelerateConfiguration$ = exports2.AbortMultipartUploadRequest$ = exports2.AbortMultipartUploadOutput$ = exports2.AbortIncompleteMultipartUpload$ = exports2.AbacStatus$ = exports2.errorTypeRegistries = exports2.TooManyParts$ = exports2.ObjectNotInActiveTierError$ = exports2.ObjectAlreadyInActiveTierError$ = exports2.NotFound$ = exports2.NoSuchUpload$ = exports2.NoSuchKey$ = exports2.NoSuchBucket$ = exports2.InvalidWriteOffset$ = exports2.InvalidRequest$ = exports2.InvalidObjectState$ = exports2.IdempotencyParameterMismatch$ = exports2.EncryptionTypeMismatch$ = exports2.BucketAlreadyOwnedByYou$ = exports2.BucketAlreadyExists$ = exports2.AccessDenied$ = exports2.S3ServiceException$ = void 0;
|
|
@@ -23698,13 +23815,13 @@ var require_schemas_0 = __commonJS({
|
|
|
23698
23815
|
}
|
|
23699
23816
|
});
|
|
23700
23817
|
|
|
23701
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
23818
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/package.json
|
|
23702
23819
|
var require_package = __commonJS({
|
|
23703
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
23820
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/package.json"(exports2, module2) {
|
|
23704
23821
|
module2.exports = {
|
|
23705
23822
|
name: "@aws-sdk/client-s3",
|
|
23706
23823
|
description: "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
23707
|
-
version: "3.
|
|
23824
|
+
version: "3.1027.0",
|
|
23708
23825
|
scripts: {
|
|
23709
23826
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
23710
23827
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -23733,62 +23850,62 @@ var require_package = __commonJS({
|
|
|
23733
23850
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
23734
23851
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23735
23852
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23736
|
-
"@aws-sdk/core": "^3.973.
|
|
23737
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
23738
|
-
"@aws-sdk/middleware-bucket-endpoint": "^3.972.
|
|
23739
|
-
"@aws-sdk/middleware-expect-continue": "^3.972.
|
|
23740
|
-
"@aws-sdk/middleware-flexible-checksums": "^3.974.
|
|
23741
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
23742
|
-
"@aws-sdk/middleware-location-constraint": "^3.972.
|
|
23743
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
23744
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
23745
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
23746
|
-
"@aws-sdk/middleware-ssec": "^3.972.
|
|
23747
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
23748
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
23749
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
23750
|
-
"@aws-sdk/types": "^3.973.
|
|
23751
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
23752
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
23753
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
23754
|
-
"@smithy/config-resolver": "^4.4.
|
|
23755
|
-
"@smithy/core": "^3.23.
|
|
23756
|
-
"@smithy/eventstream-serde-browser": "^4.2.
|
|
23757
|
-
"@smithy/eventstream-serde-config-resolver": "^4.3.
|
|
23758
|
-
"@smithy/eventstream-serde-node": "^4.2.
|
|
23759
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
23760
|
-
"@smithy/hash-blob-browser": "^4.2.
|
|
23761
|
-
"@smithy/hash-node": "^4.2.
|
|
23762
|
-
"@smithy/hash-stream-node": "^4.2.
|
|
23763
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
23764
|
-
"@smithy/md5-js": "^4.2.
|
|
23765
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
23766
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
23767
|
-
"@smithy/middleware-retry": "^4.
|
|
23768
|
-
"@smithy/middleware-serde": "^4.2.
|
|
23769
|
-
"@smithy/middleware-stack": "^4.2.
|
|
23770
|
-
"@smithy/node-config-provider": "^4.3.
|
|
23771
|
-
"@smithy/node-http-handler": "^4.5.
|
|
23772
|
-
"@smithy/protocol-http": "^5.3.
|
|
23773
|
-
"@smithy/smithy-client": "^4.12.
|
|
23774
|
-
"@smithy/types": "^4.
|
|
23775
|
-
"@smithy/url-parser": "^4.2.
|
|
23853
|
+
"@aws-sdk/core": "^3.973.27",
|
|
23854
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
23855
|
+
"@aws-sdk/middleware-bucket-endpoint": "^3.972.9",
|
|
23856
|
+
"@aws-sdk/middleware-expect-continue": "^3.972.9",
|
|
23857
|
+
"@aws-sdk/middleware-flexible-checksums": "^3.974.7",
|
|
23858
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
23859
|
+
"@aws-sdk/middleware-location-constraint": "^3.972.9",
|
|
23860
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
23861
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
23862
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.28",
|
|
23863
|
+
"@aws-sdk/middleware-ssec": "^3.972.9",
|
|
23864
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
23865
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
23866
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.16",
|
|
23867
|
+
"@aws-sdk/types": "^3.973.7",
|
|
23868
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
23869
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
23870
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
23871
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
23872
|
+
"@smithy/core": "^3.23.14",
|
|
23873
|
+
"@smithy/eventstream-serde-browser": "^4.2.13",
|
|
23874
|
+
"@smithy/eventstream-serde-config-resolver": "^4.3.13",
|
|
23875
|
+
"@smithy/eventstream-serde-node": "^4.2.13",
|
|
23876
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
23877
|
+
"@smithy/hash-blob-browser": "^4.2.14",
|
|
23878
|
+
"@smithy/hash-node": "^4.2.13",
|
|
23879
|
+
"@smithy/hash-stream-node": "^4.2.13",
|
|
23880
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
23881
|
+
"@smithy/md5-js": "^4.2.13",
|
|
23882
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
23883
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
23884
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
23885
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
23886
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
23887
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
23888
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
23889
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
23890
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
23891
|
+
"@smithy/types": "^4.14.0",
|
|
23892
|
+
"@smithy/url-parser": "^4.2.13",
|
|
23776
23893
|
"@smithy/util-base64": "^4.3.2",
|
|
23777
23894
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
23778
23895
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
23779
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
23780
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
23781
|
-
"@smithy/util-endpoints": "^3.3.
|
|
23782
|
-
"@smithy/util-middleware": "^4.2.
|
|
23783
|
-
"@smithy/util-retry": "^4.
|
|
23784
|
-
"@smithy/util-stream": "^4.5.
|
|
23896
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
23897
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
23898
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
23899
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
23900
|
+
"@smithy/util-retry": "^4.3.0",
|
|
23901
|
+
"@smithy/util-stream": "^4.5.22",
|
|
23785
23902
|
"@smithy/util-utf8": "^4.2.2",
|
|
23786
|
-
"@smithy/util-waiter": "^4.2.
|
|
23903
|
+
"@smithy/util-waiter": "^4.2.15",
|
|
23787
23904
|
tslib: "^2.6.2"
|
|
23788
23905
|
},
|
|
23789
23906
|
devDependencies: {
|
|
23790
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
23791
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
23907
|
+
"@aws-sdk/signature-v4-crt": "3.1027.0",
|
|
23908
|
+
"@smithy/snapshot-testing": "^2.0.5",
|
|
23792
23909
|
"@tsconfig/node20": "20.1.8",
|
|
23793
23910
|
"@types/node": "^20.14.8",
|
|
23794
23911
|
concurrently: "7.0.0",
|
|
@@ -23831,9 +23948,9 @@ var require_package = __commonJS({
|
|
|
23831
23948
|
}
|
|
23832
23949
|
});
|
|
23833
23950
|
|
|
23834
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-env@3.972.
|
|
23951
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-env@3.972.25/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js
|
|
23835
23952
|
var require_dist_cjs48 = __commonJS({
|
|
23836
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-env@3.972.
|
|
23953
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-env@3.972.25/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js"(exports2) {
|
|
23837
23954
|
"use strict";
|
|
23838
23955
|
var client = (init_client(), __toCommonJS(client_exports));
|
|
23839
23956
|
var propertyProvider = require_dist_cjs41();
|
|
@@ -23875,9 +23992,9 @@ var require_dist_cjs48 = __commonJS({
|
|
|
23875
23992
|
}
|
|
23876
23993
|
});
|
|
23877
23994
|
|
|
23878
|
-
// node_modules/.pnpm/@smithy+credential-provider-imds@4.2.
|
|
23995
|
+
// node_modules/.pnpm/@smithy+credential-provider-imds@4.2.13/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js
|
|
23879
23996
|
var require_dist_cjs49 = __commonJS({
|
|
23880
|
-
"node_modules/.pnpm/@smithy+credential-provider-imds@4.2.
|
|
23997
|
+
"node_modules/.pnpm/@smithy+credential-provider-imds@4.2.13/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js"(exports2) {
|
|
23881
23998
|
"use strict";
|
|
23882
23999
|
var propertyProvider = require_dist_cjs41();
|
|
23883
24000
|
var url = require("url");
|
|
@@ -24221,9 +24338,9 @@ For more information, please visit: ` + STATIC_STABILITY_DOC_URL);
|
|
|
24221
24338
|
}
|
|
24222
24339
|
});
|
|
24223
24340
|
|
|
24224
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24341
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js
|
|
24225
24342
|
var require_checkUrl = __commonJS({
|
|
24226
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24343
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js"(exports2) {
|
|
24227
24344
|
"use strict";
|
|
24228
24345
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
24229
24346
|
exports2.checkUrl = void 0;
|
|
@@ -24264,9 +24381,9 @@ var require_checkUrl = __commonJS({
|
|
|
24264
24381
|
}
|
|
24265
24382
|
});
|
|
24266
24383
|
|
|
24267
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24384
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js
|
|
24268
24385
|
var require_requestHelpers = __commonJS({
|
|
24269
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24386
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js"(exports2) {
|
|
24270
24387
|
"use strict";
|
|
24271
24388
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
24272
24389
|
exports2.createGetRequest = createGetRequest;
|
|
@@ -24319,9 +24436,9 @@ var require_requestHelpers = __commonJS({
|
|
|
24319
24436
|
}
|
|
24320
24437
|
});
|
|
24321
24438
|
|
|
24322
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24439
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js
|
|
24323
24440
|
var require_retry_wrapper = __commonJS({
|
|
24324
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24441
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js"(exports2) {
|
|
24325
24442
|
"use strict";
|
|
24326
24443
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
24327
24444
|
exports2.retryWrapper = void 0;
|
|
@@ -24341,9 +24458,9 @@ var require_retry_wrapper = __commonJS({
|
|
|
24341
24458
|
}
|
|
24342
24459
|
});
|
|
24343
24460
|
|
|
24344
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24461
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js
|
|
24345
24462
|
var require_fromHttp = __commonJS({
|
|
24346
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24463
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js"(exports2) {
|
|
24347
24464
|
"use strict";
|
|
24348
24465
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
24349
24466
|
exports2.fromHttp = void 0;
|
|
@@ -24409,9 +24526,9 @@ Set AWS_CONTAINER_CREDENTIALS_FULL_URI or AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
|
|
|
24409
24526
|
}
|
|
24410
24527
|
});
|
|
24411
24528
|
|
|
24412
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24529
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js
|
|
24413
24530
|
var require_dist_cjs50 = __commonJS({
|
|
24414
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.
|
|
24531
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.972.27/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js"(exports2) {
|
|
24415
24532
|
"use strict";
|
|
24416
24533
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
24417
24534
|
exports2.fromHttp = void 0;
|
|
@@ -24422,7 +24539,7 @@ var require_dist_cjs50 = __commonJS({
|
|
|
24422
24539
|
}
|
|
24423
24540
|
});
|
|
24424
24541
|
|
|
24425
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
24542
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js
|
|
24426
24543
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
24427
24544
|
return {
|
|
24428
24545
|
schemeId: "aws.auth#sigv4",
|
|
@@ -24445,7 +24562,7 @@ function createSmithyApiNoAuthHttpAuthOption(authParameters) {
|
|
|
24445
24562
|
}
|
|
24446
24563
|
var import_util_middleware6, defaultSSOOIDCHttpAuthSchemeParametersProvider, defaultSSOOIDCHttpAuthSchemeProvider, resolveHttpAuthSchemeConfig;
|
|
24447
24564
|
var init_httpAuthSchemeProvider = __esm({
|
|
24448
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
24565
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js"() {
|
|
24449
24566
|
init_httpAuthSchemes2();
|
|
24450
24567
|
import_util_middleware6 = __toESM(require_dist_cjs18());
|
|
24451
24568
|
defaultSSOOIDCHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
@@ -24478,10 +24595,10 @@ var init_httpAuthSchemeProvider = __esm({
|
|
|
24478
24595
|
}
|
|
24479
24596
|
});
|
|
24480
24597
|
|
|
24481
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
24598
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js
|
|
24482
24599
|
var resolveClientEndpointParameters, commonParams;
|
|
24483
24600
|
var init_EndpointParameters = __esm({
|
|
24484
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
24601
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js"() {
|
|
24485
24602
|
resolveClientEndpointParameters = (options) => {
|
|
24486
24603
|
return Object.assign(options, {
|
|
24487
24604
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
@@ -24498,13 +24615,13 @@ var init_EndpointParameters = __esm({
|
|
|
24498
24615
|
}
|
|
24499
24616
|
});
|
|
24500
24617
|
|
|
24501
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
24618
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/package.json
|
|
24502
24619
|
var package_default;
|
|
24503
24620
|
var init_package = __esm({
|
|
24504
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
24621
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/package.json"() {
|
|
24505
24622
|
package_default = {
|
|
24506
24623
|
name: "@aws-sdk/nested-clients",
|
|
24507
|
-
version: "3.996.
|
|
24624
|
+
version: "3.996.19",
|
|
24508
24625
|
description: "Nested clients for AWS SDK packages.",
|
|
24509
24626
|
main: "./dist-cjs/index.js",
|
|
24510
24627
|
module: "./dist-es/index.js",
|
|
@@ -24533,40 +24650,40 @@ var init_package = __esm({
|
|
|
24533
24650
|
dependencies: {
|
|
24534
24651
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24535
24652
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24536
|
-
"@aws-sdk/core": "^3.973.
|
|
24537
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
24538
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
24539
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
24540
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
24541
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
24542
|
-
"@aws-sdk/types": "^3.973.
|
|
24543
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
24544
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
24545
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
24546
|
-
"@smithy/config-resolver": "^4.4.
|
|
24547
|
-
"@smithy/core": "^3.23.
|
|
24548
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
24549
|
-
"@smithy/hash-node": "^4.2.
|
|
24550
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
24551
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
24552
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
24553
|
-
"@smithy/middleware-retry": "^4.
|
|
24554
|
-
"@smithy/middleware-serde": "^4.2.
|
|
24555
|
-
"@smithy/middleware-stack": "^4.2.
|
|
24556
|
-
"@smithy/node-config-provider": "^4.3.
|
|
24557
|
-
"@smithy/node-http-handler": "^4.5.
|
|
24558
|
-
"@smithy/protocol-http": "^5.3.
|
|
24559
|
-
"@smithy/smithy-client": "^4.12.
|
|
24560
|
-
"@smithy/types": "^4.
|
|
24561
|
-
"@smithy/url-parser": "^4.2.
|
|
24653
|
+
"@aws-sdk/core": "^3.973.27",
|
|
24654
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
24655
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
24656
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
24657
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
24658
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
24659
|
+
"@aws-sdk/types": "^3.973.7",
|
|
24660
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
24661
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
24662
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
24663
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
24664
|
+
"@smithy/core": "^3.23.14",
|
|
24665
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
24666
|
+
"@smithy/hash-node": "^4.2.13",
|
|
24667
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
24668
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
24669
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
24670
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
24671
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
24672
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
24673
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
24674
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
24675
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
24676
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
24677
|
+
"@smithy/types": "^4.14.0",
|
|
24678
|
+
"@smithy/url-parser": "^4.2.13",
|
|
24562
24679
|
"@smithy/util-base64": "^4.3.2",
|
|
24563
24680
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
24564
24681
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
24565
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
24566
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
24567
|
-
"@smithy/util-endpoints": "^3.3.
|
|
24568
|
-
"@smithy/util-middleware": "^4.2.
|
|
24569
|
-
"@smithy/util-retry": "^4.
|
|
24682
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
24683
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
24684
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
24685
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
24686
|
+
"@smithy/util-retry": "^4.3.0",
|
|
24570
24687
|
"@smithy/util-utf8": "^4.2.2",
|
|
24571
24688
|
tslib: "^2.6.2"
|
|
24572
24689
|
},
|
|
@@ -24652,9 +24769,9 @@ var init_package = __esm({
|
|
|
24652
24769
|
}
|
|
24653
24770
|
});
|
|
24654
24771
|
|
|
24655
|
-
// node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.973.
|
|
24772
|
+
// node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.973.15/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js
|
|
24656
24773
|
var require_dist_cjs51 = __commonJS({
|
|
24657
|
-
"node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.973.
|
|
24774
|
+
"node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.973.15/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js"(exports2) {
|
|
24658
24775
|
"use strict";
|
|
24659
24776
|
var node_os = require("node:os");
|
|
24660
24777
|
var node_process = require("node:process");
|
|
@@ -24828,9 +24945,9 @@ var require_dist_cjs51 = __commonJS({
|
|
|
24828
24945
|
}
|
|
24829
24946
|
});
|
|
24830
24947
|
|
|
24831
|
-
// node_modules/.pnpm/@smithy+hash-node@4.2.
|
|
24948
|
+
// node_modules/.pnpm/@smithy+hash-node@4.2.13/node_modules/@smithy/hash-node/dist-cjs/index.js
|
|
24832
24949
|
var require_dist_cjs52 = __commonJS({
|
|
24833
|
-
"node_modules/.pnpm/@smithy+hash-node@4.2.
|
|
24950
|
+
"node_modules/.pnpm/@smithy+hash-node@4.2.13/node_modules/@smithy/hash-node/dist-cjs/index.js"(exports2) {
|
|
24834
24951
|
"use strict";
|
|
24835
24952
|
var utilBufferFrom = require_dist_cjs5();
|
|
24836
24953
|
var utilUtf8 = require_dist_cjs6();
|
|
@@ -24901,9 +25018,9 @@ var require_dist_cjs53 = __commonJS({
|
|
|
24901
25018
|
}
|
|
24902
25019
|
});
|
|
24903
25020
|
|
|
24904
|
-
// node_modules/.pnpm/@smithy+util-defaults-mode-node@4.2.
|
|
25021
|
+
// node_modules/.pnpm/@smithy+util-defaults-mode-node@4.2.49/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js
|
|
24905
25022
|
var require_dist_cjs54 = __commonJS({
|
|
24906
|
-
"node_modules/.pnpm/@smithy+util-defaults-mode-node@4.2.
|
|
25023
|
+
"node_modules/.pnpm/@smithy+util-defaults-mode-node@4.2.49/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js"(exports2) {
|
|
24907
25024
|
"use strict";
|
|
24908
25025
|
var configResolver = require_dist_cjs38();
|
|
24909
25026
|
var nodeConfigProvider = require_dist_cjs43();
|
|
@@ -24974,10 +25091,10 @@ var require_dist_cjs54 = __commonJS({
|
|
|
24974
25091
|
}
|
|
24975
25092
|
});
|
|
24976
25093
|
|
|
24977
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25094
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js
|
|
24978
25095
|
var u, v, w, x, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, _data, ruleSet;
|
|
24979
25096
|
var init_ruleset = __esm({
|
|
24980
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25097
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js"() {
|
|
24981
25098
|
u = "required";
|
|
24982
25099
|
v = "fn";
|
|
24983
25100
|
w = "argv";
|
|
@@ -25106,10 +25223,10 @@ var init_ruleset = __esm({
|
|
|
25106
25223
|
}
|
|
25107
25224
|
});
|
|
25108
25225
|
|
|
25109
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25226
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js
|
|
25110
25227
|
var import_util_endpoints, import_util_endpoints2, cache, defaultEndpointResolver;
|
|
25111
25228
|
var init_endpointResolver = __esm({
|
|
25112
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25229
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js"() {
|
|
25113
25230
|
import_util_endpoints = __toESM(require_dist_cjs34());
|
|
25114
25231
|
import_util_endpoints2 = __toESM(require_dist_cjs33());
|
|
25115
25232
|
init_ruleset();
|
|
@@ -25127,10 +25244,10 @@ var init_endpointResolver = __esm({
|
|
|
25127
25244
|
}
|
|
25128
25245
|
});
|
|
25129
25246
|
|
|
25130
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25247
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js
|
|
25131
25248
|
var import_smithy_client8, SSOOIDCServiceException;
|
|
25132
25249
|
var init_SSOOIDCServiceException = __esm({
|
|
25133
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25250
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js"() {
|
|
25134
25251
|
import_smithy_client8 = __toESM(require_dist_cjs27());
|
|
25135
25252
|
SSOOIDCServiceException = class _SSOOIDCServiceException extends import_smithy_client8.ServiceException {
|
|
25136
25253
|
constructor(options) {
|
|
@@ -25141,10 +25258,10 @@ var init_SSOOIDCServiceException = __esm({
|
|
|
25141
25258
|
}
|
|
25142
25259
|
});
|
|
25143
25260
|
|
|
25144
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25261
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js
|
|
25145
25262
|
var AccessDeniedException, AuthorizationPendingException, ExpiredTokenException, InternalServerException, InvalidClientException, InvalidGrantException, InvalidRequestException, InvalidScopeException, SlowDownException, UnauthorizedClientException, UnsupportedGrantTypeException;
|
|
25146
25263
|
var init_errors = __esm({
|
|
25147
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25264
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js"() {
|
|
25148
25265
|
init_SSOOIDCServiceException();
|
|
25149
25266
|
AccessDeniedException = class _AccessDeniedException extends SSOOIDCServiceException {
|
|
25150
25267
|
name = "AccessDeniedException";
|
|
@@ -25329,10 +25446,10 @@ var init_errors = __esm({
|
|
|
25329
25446
|
}
|
|
25330
25447
|
});
|
|
25331
25448
|
|
|
25332
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25449
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js
|
|
25333
25450
|
var _ADE, _APE, _AT, _CS, _CT, _CTR, _CTRr, _CV, _ETE, _ICE, _IGE, _IRE, _ISE, _ISEn, _IT, _RT, _SDE, _UCE, _UGTE, _aT, _c, _cI, _cS, _cV, _co, _dC, _e, _eI, _ed, _gT, _h, _hE, _iT, _r, _rT, _rU, _s, _sc, _se, _tT, n0, _s_registry, SSOOIDCServiceException$, n0_registry, AccessDeniedException$, AuthorizationPendingException$, ExpiredTokenException$, InternalServerException$, InvalidClientException$, InvalidGrantException$, InvalidRequestException$, InvalidScopeException$, SlowDownException$, UnauthorizedClientException$, UnsupportedGrantTypeException$, errorTypeRegistries, AccessToken, ClientSecret, CodeVerifier, IdToken, RefreshToken, CreateTokenRequest$, CreateTokenResponse$, Scopes, CreateToken$;
|
|
25334
25451
|
var init_schemas_0 = __esm({
|
|
25335
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25452
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js"() {
|
|
25336
25453
|
init_schema();
|
|
25337
25454
|
init_errors();
|
|
25338
25455
|
init_SSOOIDCServiceException();
|
|
@@ -25473,10 +25590,10 @@ var init_schemas_0 = __esm({
|
|
|
25473
25590
|
}
|
|
25474
25591
|
});
|
|
25475
25592
|
|
|
25476
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25593
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js
|
|
25477
25594
|
var import_smithy_client9, import_url_parser2, import_util_base648, import_util_utf88, getRuntimeConfig;
|
|
25478
25595
|
var init_runtimeConfig_shared = __esm({
|
|
25479
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25596
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js"() {
|
|
25480
25597
|
init_httpAuthSchemes2();
|
|
25481
25598
|
init_protocols2();
|
|
25482
25599
|
init_dist_es();
|
|
@@ -25525,10 +25642,10 @@ var init_runtimeConfig_shared = __esm({
|
|
|
25525
25642
|
}
|
|
25526
25643
|
});
|
|
25527
25644
|
|
|
25528
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25645
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js
|
|
25529
25646
|
var import_util_user_agent_node, import_config_resolver, import_hash_node, import_middleware_retry, import_node_config_provider, import_node_http_handler, import_smithy_client10, import_util_body_length_node, import_util_defaults_mode_node, import_util_retry, getRuntimeConfig2;
|
|
25530
25647
|
var init_runtimeConfig = __esm({
|
|
25531
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25648
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js"() {
|
|
25532
25649
|
init_package();
|
|
25533
25650
|
init_client();
|
|
25534
25651
|
init_httpAuthSchemes2();
|
|
@@ -25578,9 +25695,9 @@ var init_runtimeConfig = __esm({
|
|
|
25578
25695
|
}
|
|
25579
25696
|
});
|
|
25580
25697
|
|
|
25581
|
-
// node_modules/.pnpm/@aws-sdk+region-config-resolver@3.972.
|
|
25698
|
+
// node_modules/.pnpm/@aws-sdk+region-config-resolver@3.972.11/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js
|
|
25582
25699
|
var require_stsRegionDefaultResolver = __commonJS({
|
|
25583
|
-
"node_modules/.pnpm/@aws-sdk+region-config-resolver@3.972.
|
|
25700
|
+
"node_modules/.pnpm/@aws-sdk+region-config-resolver@3.972.11/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js"(exports2) {
|
|
25584
25701
|
"use strict";
|
|
25585
25702
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
25586
25703
|
exports2.warning = void 0;
|
|
@@ -25604,9 +25721,9 @@ var require_stsRegionDefaultResolver = __commonJS({
|
|
|
25604
25721
|
}
|
|
25605
25722
|
});
|
|
25606
25723
|
|
|
25607
|
-
// node_modules/.pnpm/@aws-sdk+region-config-resolver@3.972.
|
|
25724
|
+
// node_modules/.pnpm/@aws-sdk+region-config-resolver@3.972.11/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js
|
|
25608
25725
|
var require_dist_cjs55 = __commonJS({
|
|
25609
|
-
"node_modules/.pnpm/@aws-sdk+region-config-resolver@3.972.
|
|
25726
|
+
"node_modules/.pnpm/@aws-sdk+region-config-resolver@3.972.11/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js"(exports2) {
|
|
25610
25727
|
"use strict";
|
|
25611
25728
|
var stsRegionDefaultResolver2 = require_stsRegionDefaultResolver();
|
|
25612
25729
|
var configResolver = require_dist_cjs38();
|
|
@@ -25642,10 +25759,10 @@ var require_dist_cjs55 = __commonJS({
|
|
|
25642
25759
|
}
|
|
25643
25760
|
});
|
|
25644
25761
|
|
|
25645
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25762
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js
|
|
25646
25763
|
var getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig;
|
|
25647
25764
|
var init_httpAuthExtensionConfiguration = __esm({
|
|
25648
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25765
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js"() {
|
|
25649
25766
|
getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
25650
25767
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
25651
25768
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -25686,10 +25803,10 @@ var init_httpAuthExtensionConfiguration = __esm({
|
|
|
25686
25803
|
}
|
|
25687
25804
|
});
|
|
25688
25805
|
|
|
25689
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25806
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js
|
|
25690
25807
|
var import_region_config_resolver, import_protocol_http12, import_smithy_client11, resolveRuntimeExtensions;
|
|
25691
25808
|
var init_runtimeExtensions = __esm({
|
|
25692
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25809
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js"() {
|
|
25693
25810
|
import_region_config_resolver = __toESM(require_dist_cjs55());
|
|
25694
25811
|
import_protocol_http12 = __toESM(require_dist_cjs2());
|
|
25695
25812
|
import_smithy_client11 = __toESM(require_dist_cjs27());
|
|
@@ -25702,10 +25819,10 @@ var init_runtimeExtensions = __esm({
|
|
|
25702
25819
|
}
|
|
25703
25820
|
});
|
|
25704
25821
|
|
|
25705
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25822
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js
|
|
25706
25823
|
var import_middleware_host_header, import_middleware_logger, import_middleware_recursion_detection, import_middleware_user_agent, import_config_resolver2, import_middleware_content_length, import_middleware_endpoint, import_middleware_retry2, import_smithy_client12, SSOOIDCClient;
|
|
25707
25824
|
var init_SSOOIDCClient = __esm({
|
|
25708
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25825
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js"() {
|
|
25709
25826
|
import_middleware_host_header = __toESM(require_dist_cjs20());
|
|
25710
25827
|
import_middleware_logger = __toESM(require_dist_cjs21());
|
|
25711
25828
|
import_middleware_recursion_detection = __toESM(require_dist_cjs22());
|
|
@@ -25758,10 +25875,10 @@ var init_SSOOIDCClient = __esm({
|
|
|
25758
25875
|
}
|
|
25759
25876
|
});
|
|
25760
25877
|
|
|
25761
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25878
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js
|
|
25762
25879
|
var import_middleware_endpoint2, import_smithy_client13, CreateTokenCommand;
|
|
25763
25880
|
var init_CreateTokenCommand = __esm({
|
|
25764
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25881
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js"() {
|
|
25765
25882
|
import_middleware_endpoint2 = __toESM(require_dist_cjs45());
|
|
25766
25883
|
import_smithy_client13 = __toESM(require_dist_cjs27());
|
|
25767
25884
|
init_EndpointParameters();
|
|
@@ -25773,10 +25890,10 @@ var init_CreateTokenCommand = __esm({
|
|
|
25773
25890
|
}
|
|
25774
25891
|
});
|
|
25775
25892
|
|
|
25776
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25893
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js
|
|
25777
25894
|
var import_smithy_client14, commands, SSOOIDC;
|
|
25778
25895
|
var init_SSOOIDC = __esm({
|
|
25779
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25896
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js"() {
|
|
25780
25897
|
import_smithy_client14 = __toESM(require_dist_cjs27());
|
|
25781
25898
|
init_CreateTokenCommand();
|
|
25782
25899
|
init_SSOOIDCClient();
|
|
@@ -25789,17 +25906,17 @@ var init_SSOOIDC = __esm({
|
|
|
25789
25906
|
}
|
|
25790
25907
|
});
|
|
25791
25908
|
|
|
25792
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25909
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js
|
|
25793
25910
|
var init_commands = __esm({
|
|
25794
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25911
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js"() {
|
|
25795
25912
|
init_CreateTokenCommand();
|
|
25796
25913
|
}
|
|
25797
25914
|
});
|
|
25798
25915
|
|
|
25799
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25916
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js
|
|
25800
25917
|
var AccessDeniedExceptionReason, InvalidRequestExceptionReason;
|
|
25801
25918
|
var init_enums = __esm({
|
|
25802
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25919
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js"() {
|
|
25803
25920
|
AccessDeniedExceptionReason = {
|
|
25804
25921
|
KMS_ACCESS_DENIED: "KMS_AccessDeniedException"
|
|
25805
25922
|
};
|
|
@@ -25812,13 +25929,13 @@ var init_enums = __esm({
|
|
|
25812
25929
|
}
|
|
25813
25930
|
});
|
|
25814
25931
|
|
|
25815
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25932
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js
|
|
25816
25933
|
var init_models_0 = __esm({
|
|
25817
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25934
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js"() {
|
|
25818
25935
|
}
|
|
25819
25936
|
});
|
|
25820
25937
|
|
|
25821
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25938
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js
|
|
25822
25939
|
var sso_oidc_exports = {};
|
|
25823
25940
|
__export(sso_oidc_exports, {
|
|
25824
25941
|
$Command: () => import_smithy_client13.Command,
|
|
@@ -25858,7 +25975,7 @@ __export(sso_oidc_exports, {
|
|
|
25858
25975
|
errorTypeRegistries: () => errorTypeRegistries
|
|
25859
25976
|
});
|
|
25860
25977
|
var init_sso_oidc = __esm({
|
|
25861
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
25978
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js"() {
|
|
25862
25979
|
init_SSOOIDCClient();
|
|
25863
25980
|
init_SSOOIDC();
|
|
25864
25981
|
init_commands();
|
|
@@ -25870,9 +25987,9 @@ var init_sso_oidc = __esm({
|
|
|
25870
25987
|
}
|
|
25871
25988
|
});
|
|
25872
25989
|
|
|
25873
|
-
// node_modules/.pnpm/@aws-sdk+token-providers@3.
|
|
25990
|
+
// node_modules/.pnpm/@aws-sdk+token-providers@3.1026.0/node_modules/@aws-sdk/token-providers/dist-cjs/index.js
|
|
25874
25991
|
var require_dist_cjs56 = __commonJS({
|
|
25875
|
-
"node_modules/.pnpm/@aws-sdk+token-providers@3.
|
|
25992
|
+
"node_modules/.pnpm/@aws-sdk+token-providers@3.1026.0/node_modules/@aws-sdk/token-providers/dist-cjs/index.js"(exports2) {
|
|
25876
25993
|
"use strict";
|
|
25877
25994
|
var client = (init_client(), __toCommonJS(client_exports));
|
|
25878
25995
|
var httpAuthSchemes = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
@@ -26017,7 +26134,7 @@ var require_dist_cjs56 = __commonJS({
|
|
|
26017
26134
|
}
|
|
26018
26135
|
});
|
|
26019
26136
|
|
|
26020
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26137
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js
|
|
26021
26138
|
function createAwsAuthSigv4HttpAuthOption2(authParameters) {
|
|
26022
26139
|
return {
|
|
26023
26140
|
schemeId: "aws.auth#sigv4",
|
|
@@ -26040,7 +26157,7 @@ function createSmithyApiNoAuthHttpAuthOption2(authParameters) {
|
|
|
26040
26157
|
}
|
|
26041
26158
|
var import_util_middleware7, defaultSSOHttpAuthSchemeParametersProvider, defaultSSOHttpAuthSchemeProvider, resolveHttpAuthSchemeConfig2;
|
|
26042
26159
|
var init_httpAuthSchemeProvider2 = __esm({
|
|
26043
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26160
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js"() {
|
|
26044
26161
|
init_httpAuthSchemes2();
|
|
26045
26162
|
import_util_middleware7 = __toESM(require_dist_cjs18());
|
|
26046
26163
|
defaultSSOHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
@@ -26073,10 +26190,10 @@ var init_httpAuthSchemeProvider2 = __esm({
|
|
|
26073
26190
|
}
|
|
26074
26191
|
});
|
|
26075
26192
|
|
|
26076
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26193
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/EndpointParameters.js
|
|
26077
26194
|
var resolveClientEndpointParameters2, commonParams2;
|
|
26078
26195
|
var init_EndpointParameters2 = __esm({
|
|
26079
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26196
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/EndpointParameters.js"() {
|
|
26080
26197
|
resolveClientEndpointParameters2 = (options) => {
|
|
26081
26198
|
return Object.assign(options, {
|
|
26082
26199
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
@@ -26093,10 +26210,10 @@ var init_EndpointParameters2 = __esm({
|
|
|
26093
26210
|
}
|
|
26094
26211
|
});
|
|
26095
26212
|
|
|
26096
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26213
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js
|
|
26097
26214
|
var u2, v2, w2, x2, a2, b2, c2, d2, e2, f2, g2, h2, i2, j2, k2, l2, m2, n2, o2, p2, q2, r2, s2, t2, _data2, ruleSet2;
|
|
26098
26215
|
var init_ruleset2 = __esm({
|
|
26099
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26216
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js"() {
|
|
26100
26217
|
u2 = "required";
|
|
26101
26218
|
v2 = "fn";
|
|
26102
26219
|
w2 = "argv";
|
|
@@ -26225,10 +26342,10 @@ var init_ruleset2 = __esm({
|
|
|
26225
26342
|
}
|
|
26226
26343
|
});
|
|
26227
26344
|
|
|
26228
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26345
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js
|
|
26229
26346
|
var import_util_endpoints3, import_util_endpoints4, cache2, defaultEndpointResolver2;
|
|
26230
26347
|
var init_endpointResolver2 = __esm({
|
|
26231
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26348
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js"() {
|
|
26232
26349
|
import_util_endpoints3 = __toESM(require_dist_cjs34());
|
|
26233
26350
|
import_util_endpoints4 = __toESM(require_dist_cjs33());
|
|
26234
26351
|
init_ruleset2();
|
|
@@ -26246,10 +26363,10 @@ var init_endpointResolver2 = __esm({
|
|
|
26246
26363
|
}
|
|
26247
26364
|
});
|
|
26248
26365
|
|
|
26249
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26366
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js
|
|
26250
26367
|
var import_smithy_client15, SSOServiceException;
|
|
26251
26368
|
var init_SSOServiceException = __esm({
|
|
26252
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26369
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js"() {
|
|
26253
26370
|
import_smithy_client15 = __toESM(require_dist_cjs27());
|
|
26254
26371
|
SSOServiceException = class _SSOServiceException extends import_smithy_client15.ServiceException {
|
|
26255
26372
|
constructor(options) {
|
|
@@ -26260,10 +26377,10 @@ var init_SSOServiceException = __esm({
|
|
|
26260
26377
|
}
|
|
26261
26378
|
});
|
|
26262
26379
|
|
|
26263
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26380
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/errors.js
|
|
26264
26381
|
var InvalidRequestException2, ResourceNotFoundException, TooManyRequestsException, UnauthorizedException;
|
|
26265
26382
|
var init_errors2 = __esm({
|
|
26266
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26383
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/errors.js"() {
|
|
26267
26384
|
init_SSOServiceException();
|
|
26268
26385
|
InvalidRequestException2 = class _InvalidRequestException extends SSOServiceException {
|
|
26269
26386
|
name = "InvalidRequestException";
|
|
@@ -26316,10 +26433,10 @@ var init_errors2 = __esm({
|
|
|
26316
26433
|
}
|
|
26317
26434
|
});
|
|
26318
26435
|
|
|
26319
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26436
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js
|
|
26320
26437
|
var _ATT, _GRC, _GRCR, _GRCRe, _IRE2, _RC, _RNFE, _SAKT, _STT, _TMRE, _UE, _aI, _aKI, _aT2, _ai, _c2, _e2, _ex, _h2, _hE2, _hH, _hQ, _m, _rC, _rN, _rn, _s2, _sAK, _sT, _xasbt, n02, _s_registry2, SSOServiceException$, n0_registry2, InvalidRequestException$2, ResourceNotFoundException$, TooManyRequestsException$, UnauthorizedException$, errorTypeRegistries2, AccessTokenType, SecretAccessKeyType, SessionTokenType, GetRoleCredentialsRequest$, GetRoleCredentialsResponse$, RoleCredentials$, GetRoleCredentials$;
|
|
26321
26438
|
var init_schemas_02 = __esm({
|
|
26322
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26439
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js"() {
|
|
26323
26440
|
init_schema();
|
|
26324
26441
|
init_errors2();
|
|
26325
26442
|
init_SSOServiceException();
|
|
@@ -26410,10 +26527,10 @@ var init_schemas_02 = __esm({
|
|
|
26410
26527
|
}
|
|
26411
26528
|
});
|
|
26412
26529
|
|
|
26413
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26530
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js
|
|
26414
26531
|
var import_smithy_client16, import_url_parser3, import_util_base649, import_util_utf89, getRuntimeConfig3;
|
|
26415
26532
|
var init_runtimeConfig_shared2 = __esm({
|
|
26416
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26533
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js"() {
|
|
26417
26534
|
init_httpAuthSchemes2();
|
|
26418
26535
|
init_protocols2();
|
|
26419
26536
|
init_dist_es();
|
|
@@ -26462,10 +26579,10 @@ var init_runtimeConfig_shared2 = __esm({
|
|
|
26462
26579
|
}
|
|
26463
26580
|
});
|
|
26464
26581
|
|
|
26465
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26582
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js
|
|
26466
26583
|
var import_util_user_agent_node2, import_config_resolver3, import_hash_node2, import_middleware_retry3, import_node_config_provider2, import_node_http_handler2, import_smithy_client17, import_util_body_length_node2, import_util_defaults_mode_node2, import_util_retry2, getRuntimeConfig4;
|
|
26467
26584
|
var init_runtimeConfig2 = __esm({
|
|
26468
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26585
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js"() {
|
|
26469
26586
|
init_package();
|
|
26470
26587
|
init_client();
|
|
26471
26588
|
init_httpAuthSchemes2();
|
|
@@ -26515,10 +26632,10 @@ var init_runtimeConfig2 = __esm({
|
|
|
26515
26632
|
}
|
|
26516
26633
|
});
|
|
26517
26634
|
|
|
26518
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26635
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthExtensionConfiguration.js
|
|
26519
26636
|
var getHttpAuthExtensionConfiguration2, resolveHttpAuthRuntimeConfig2;
|
|
26520
26637
|
var init_httpAuthExtensionConfiguration2 = __esm({
|
|
26521
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26638
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthExtensionConfiguration.js"() {
|
|
26522
26639
|
getHttpAuthExtensionConfiguration2 = (runtimeConfig) => {
|
|
26523
26640
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
26524
26641
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -26559,10 +26676,10 @@ var init_httpAuthExtensionConfiguration2 = __esm({
|
|
|
26559
26676
|
}
|
|
26560
26677
|
});
|
|
26561
26678
|
|
|
26562
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26679
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js
|
|
26563
26680
|
var import_region_config_resolver2, import_protocol_http13, import_smithy_client18, resolveRuntimeExtensions2;
|
|
26564
26681
|
var init_runtimeExtensions2 = __esm({
|
|
26565
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26682
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js"() {
|
|
26566
26683
|
import_region_config_resolver2 = __toESM(require_dist_cjs55());
|
|
26567
26684
|
import_protocol_http13 = __toESM(require_dist_cjs2());
|
|
26568
26685
|
import_smithy_client18 = __toESM(require_dist_cjs27());
|
|
@@ -26575,10 +26692,10 @@ var init_runtimeExtensions2 = __esm({
|
|
|
26575
26692
|
}
|
|
26576
26693
|
});
|
|
26577
26694
|
|
|
26578
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26695
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js
|
|
26579
26696
|
var import_middleware_host_header2, import_middleware_logger2, import_middleware_recursion_detection2, import_middleware_user_agent2, import_config_resolver4, import_middleware_content_length2, import_middleware_endpoint3, import_middleware_retry4, import_smithy_client19, SSOClient;
|
|
26580
26697
|
var init_SSOClient = __esm({
|
|
26581
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26698
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js"() {
|
|
26582
26699
|
import_middleware_host_header2 = __toESM(require_dist_cjs20());
|
|
26583
26700
|
import_middleware_logger2 = __toESM(require_dist_cjs21());
|
|
26584
26701
|
import_middleware_recursion_detection2 = __toESM(require_dist_cjs22());
|
|
@@ -26631,10 +26748,10 @@ var init_SSOClient = __esm({
|
|
|
26631
26748
|
}
|
|
26632
26749
|
});
|
|
26633
26750
|
|
|
26634
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26751
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js
|
|
26635
26752
|
var import_middleware_endpoint4, import_smithy_client20, GetRoleCredentialsCommand;
|
|
26636
26753
|
var init_GetRoleCredentialsCommand = __esm({
|
|
26637
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26754
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js"() {
|
|
26638
26755
|
import_middleware_endpoint4 = __toESM(require_dist_cjs45());
|
|
26639
26756
|
import_smithy_client20 = __toESM(require_dist_cjs27());
|
|
26640
26757
|
init_EndpointParameters2();
|
|
@@ -26646,10 +26763,10 @@ var init_GetRoleCredentialsCommand = __esm({
|
|
|
26646
26763
|
}
|
|
26647
26764
|
});
|
|
26648
26765
|
|
|
26649
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26766
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js
|
|
26650
26767
|
var import_smithy_client21, commands2, SSO;
|
|
26651
26768
|
var init_SSO = __esm({
|
|
26652
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26769
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js"() {
|
|
26653
26770
|
import_smithy_client21 = __toESM(require_dist_cjs27());
|
|
26654
26771
|
init_GetRoleCredentialsCommand();
|
|
26655
26772
|
init_SSOClient();
|
|
@@ -26662,20 +26779,20 @@ var init_SSO = __esm({
|
|
|
26662
26779
|
}
|
|
26663
26780
|
});
|
|
26664
26781
|
|
|
26665
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26782
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/index.js
|
|
26666
26783
|
var init_commands2 = __esm({
|
|
26667
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26784
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/index.js"() {
|
|
26668
26785
|
init_GetRoleCredentialsCommand();
|
|
26669
26786
|
}
|
|
26670
26787
|
});
|
|
26671
26788
|
|
|
26672
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26789
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/models_0.js
|
|
26673
26790
|
var init_models_02 = __esm({
|
|
26674
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26791
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/models_0.js"() {
|
|
26675
26792
|
}
|
|
26676
26793
|
});
|
|
26677
26794
|
|
|
26678
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26795
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js
|
|
26679
26796
|
var sso_exports = {};
|
|
26680
26797
|
__export(sso_exports, {
|
|
26681
26798
|
$Command: () => import_smithy_client20.Command,
|
|
@@ -26700,7 +26817,7 @@ __export(sso_exports, {
|
|
|
26700
26817
|
errorTypeRegistries: () => errorTypeRegistries2
|
|
26701
26818
|
});
|
|
26702
26819
|
var init_sso = __esm({
|
|
26703
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
26820
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js"() {
|
|
26704
26821
|
init_SSOClient();
|
|
26705
26822
|
init_SSO();
|
|
26706
26823
|
init_commands2();
|
|
@@ -26711,9 +26828,9 @@ var init_sso = __esm({
|
|
|
26711
26828
|
}
|
|
26712
26829
|
});
|
|
26713
26830
|
|
|
26714
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.972.
|
|
26831
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.972.29/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js
|
|
26715
26832
|
var require_loadSso_BKDNrsal = __commonJS({
|
|
26716
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.972.
|
|
26833
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.972.29/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js"(exports2) {
|
|
26717
26834
|
"use strict";
|
|
26718
26835
|
var sso = (init_sso(), __toCommonJS(sso_exports));
|
|
26719
26836
|
exports2.GetRoleCredentialsCommand = sso.GetRoleCredentialsCommand;
|
|
@@ -26721,9 +26838,9 @@ var require_loadSso_BKDNrsal = __commonJS({
|
|
|
26721
26838
|
}
|
|
26722
26839
|
});
|
|
26723
26840
|
|
|
26724
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.972.
|
|
26841
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.972.29/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js
|
|
26725
26842
|
var require_dist_cjs57 = __commonJS({
|
|
26726
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.972.
|
|
26843
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.972.29/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js"(exports2) {
|
|
26727
26844
|
"use strict";
|
|
26728
26845
|
var propertyProvider = require_dist_cjs41();
|
|
26729
26846
|
var sharedIniFileLoader = require_dist_cjs42();
|
|
@@ -26901,7 +27018,7 @@ Reference: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.ht
|
|
|
26901
27018
|
}
|
|
26902
27019
|
});
|
|
26903
27020
|
|
|
26904
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27021
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js
|
|
26905
27022
|
function createAwsAuthSigv4HttpAuthOption3(authParameters) {
|
|
26906
27023
|
return {
|
|
26907
27024
|
schemeId: "aws.auth#sigv4",
|
|
@@ -26924,7 +27041,7 @@ function createSmithyApiNoAuthHttpAuthOption3(authParameters) {
|
|
|
26924
27041
|
}
|
|
26925
27042
|
var import_util_middleware8, defaultSigninHttpAuthSchemeParametersProvider, defaultSigninHttpAuthSchemeProvider, resolveHttpAuthSchemeConfig3;
|
|
26926
27043
|
var init_httpAuthSchemeProvider3 = __esm({
|
|
26927
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27044
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js"() {
|
|
26928
27045
|
init_httpAuthSchemes2();
|
|
26929
27046
|
import_util_middleware8 = __toESM(require_dist_cjs18());
|
|
26930
27047
|
defaultSigninHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
@@ -26957,10 +27074,10 @@ var init_httpAuthSchemeProvider3 = __esm({
|
|
|
26957
27074
|
}
|
|
26958
27075
|
});
|
|
26959
27076
|
|
|
26960
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27077
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js
|
|
26961
27078
|
var resolveClientEndpointParameters3, commonParams3;
|
|
26962
27079
|
var init_EndpointParameters3 = __esm({
|
|
26963
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27080
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js"() {
|
|
26964
27081
|
resolveClientEndpointParameters3 = (options) => {
|
|
26965
27082
|
return Object.assign(options, {
|
|
26966
27083
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
@@ -26977,10 +27094,10 @@ var init_EndpointParameters3 = __esm({
|
|
|
26977
27094
|
}
|
|
26978
27095
|
});
|
|
26979
27096
|
|
|
26980
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27097
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js
|
|
26981
27098
|
var u3, v3, w3, x3, a3, b3, c3, d3, e3, f3, g3, h3, i3, j3, k3, l3, m3, n3, o3, p3, q3, r3, s3, t3, _data3, ruleSet3;
|
|
26982
27099
|
var init_ruleset3 = __esm({
|
|
26983
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27100
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js"() {
|
|
26984
27101
|
u3 = "required";
|
|
26985
27102
|
v3 = "fn";
|
|
26986
27103
|
w3 = "argv";
|
|
@@ -27136,10 +27253,10 @@ var init_ruleset3 = __esm({
|
|
|
27136
27253
|
}
|
|
27137
27254
|
});
|
|
27138
27255
|
|
|
27139
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27256
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js
|
|
27140
27257
|
var import_util_endpoints5, import_util_endpoints6, cache3, defaultEndpointResolver3;
|
|
27141
27258
|
var init_endpointResolver3 = __esm({
|
|
27142
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27259
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js"() {
|
|
27143
27260
|
import_util_endpoints5 = __toESM(require_dist_cjs34());
|
|
27144
27261
|
import_util_endpoints6 = __toESM(require_dist_cjs33());
|
|
27145
27262
|
init_ruleset3();
|
|
@@ -27157,10 +27274,10 @@ var init_endpointResolver3 = __esm({
|
|
|
27157
27274
|
}
|
|
27158
27275
|
});
|
|
27159
27276
|
|
|
27160
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27277
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js
|
|
27161
27278
|
var import_smithy_client22, SigninServiceException;
|
|
27162
27279
|
var init_SigninServiceException = __esm({
|
|
27163
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27280
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js"() {
|
|
27164
27281
|
import_smithy_client22 = __toESM(require_dist_cjs27());
|
|
27165
27282
|
SigninServiceException = class _SigninServiceException extends import_smithy_client22.ServiceException {
|
|
27166
27283
|
constructor(options) {
|
|
@@ -27171,10 +27288,10 @@ var init_SigninServiceException = __esm({
|
|
|
27171
27288
|
}
|
|
27172
27289
|
});
|
|
27173
27290
|
|
|
27174
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27291
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js
|
|
27175
27292
|
var AccessDeniedException2, InternalServerException2, TooManyRequestsError, ValidationException;
|
|
27176
27293
|
var init_errors3 = __esm({
|
|
27177
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27294
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js"() {
|
|
27178
27295
|
init_SigninServiceException();
|
|
27179
27296
|
AccessDeniedException2 = class _AccessDeniedException extends SigninServiceException {
|
|
27180
27297
|
name = "AccessDeniedException";
|
|
@@ -27235,10 +27352,10 @@ var init_errors3 = __esm({
|
|
|
27235
27352
|
}
|
|
27236
27353
|
});
|
|
27237
27354
|
|
|
27238
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27355
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js
|
|
27239
27356
|
var _ADE2, _AT2, _COAT, _COATR, _COATRB, _COATRBr, _COATRr, _ISE2, _RT2, _TMRE2, _VE, _aKI2, _aT3, _c3, _cI2, _cV2, _co2, _e3, _eI2, _gT2, _h3, _hE3, _iT2, _jN, _m2, _rT2, _rU2, _s3, _sAK2, _sT2, _se2, _tI, _tO, _tT2, n03, _s_registry3, SigninServiceException$, n0_registry3, AccessDeniedException$2, InternalServerException$2, TooManyRequestsError$, ValidationException$, errorTypeRegistries3, RefreshToken2, AccessToken$, CreateOAuth2TokenRequest$, CreateOAuth2TokenRequestBody$, CreateOAuth2TokenResponse$, CreateOAuth2TokenResponseBody$, CreateOAuth2Token$;
|
|
27240
27357
|
var init_schemas_03 = __esm({
|
|
27241
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27358
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js"() {
|
|
27242
27359
|
init_schema();
|
|
27243
27360
|
init_errors3();
|
|
27244
27361
|
init_SigninServiceException();
|
|
@@ -27364,10 +27481,10 @@ var init_schemas_03 = __esm({
|
|
|
27364
27481
|
}
|
|
27365
27482
|
});
|
|
27366
27483
|
|
|
27367
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27484
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js
|
|
27368
27485
|
var import_smithy_client23, import_url_parser4, import_util_base6410, import_util_utf810, getRuntimeConfig5;
|
|
27369
27486
|
var init_runtimeConfig_shared3 = __esm({
|
|
27370
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27487
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js"() {
|
|
27371
27488
|
init_httpAuthSchemes2();
|
|
27372
27489
|
init_protocols2();
|
|
27373
27490
|
init_dist_es();
|
|
@@ -27416,10 +27533,10 @@ var init_runtimeConfig_shared3 = __esm({
|
|
|
27416
27533
|
}
|
|
27417
27534
|
});
|
|
27418
27535
|
|
|
27419
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27536
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js
|
|
27420
27537
|
var import_util_user_agent_node3, import_config_resolver5, import_hash_node3, import_middleware_retry5, import_node_config_provider3, import_node_http_handler3, import_smithy_client24, import_util_body_length_node3, import_util_defaults_mode_node3, import_util_retry3, getRuntimeConfig6;
|
|
27421
27538
|
var init_runtimeConfig3 = __esm({
|
|
27422
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27539
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js"() {
|
|
27423
27540
|
init_package();
|
|
27424
27541
|
init_client();
|
|
27425
27542
|
init_httpAuthSchemes2();
|
|
@@ -27469,10 +27586,10 @@ var init_runtimeConfig3 = __esm({
|
|
|
27469
27586
|
}
|
|
27470
27587
|
});
|
|
27471
27588
|
|
|
27472
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27589
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js
|
|
27473
27590
|
var getHttpAuthExtensionConfiguration3, resolveHttpAuthRuntimeConfig3;
|
|
27474
27591
|
var init_httpAuthExtensionConfiguration3 = __esm({
|
|
27475
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27592
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js"() {
|
|
27476
27593
|
getHttpAuthExtensionConfiguration3 = (runtimeConfig) => {
|
|
27477
27594
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
27478
27595
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -27513,10 +27630,10 @@ var init_httpAuthExtensionConfiguration3 = __esm({
|
|
|
27513
27630
|
}
|
|
27514
27631
|
});
|
|
27515
27632
|
|
|
27516
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27633
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js
|
|
27517
27634
|
var import_region_config_resolver3, import_protocol_http14, import_smithy_client25, resolveRuntimeExtensions3;
|
|
27518
27635
|
var init_runtimeExtensions3 = __esm({
|
|
27519
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27636
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js"() {
|
|
27520
27637
|
import_region_config_resolver3 = __toESM(require_dist_cjs55());
|
|
27521
27638
|
import_protocol_http14 = __toESM(require_dist_cjs2());
|
|
27522
27639
|
import_smithy_client25 = __toESM(require_dist_cjs27());
|
|
@@ -27529,10 +27646,10 @@ var init_runtimeExtensions3 = __esm({
|
|
|
27529
27646
|
}
|
|
27530
27647
|
});
|
|
27531
27648
|
|
|
27532
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27649
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js
|
|
27533
27650
|
var import_middleware_host_header3, import_middleware_logger3, import_middleware_recursion_detection3, import_middleware_user_agent3, import_config_resolver6, import_middleware_content_length3, import_middleware_endpoint5, import_middleware_retry6, import_smithy_client26, SigninClient;
|
|
27534
27651
|
var init_SigninClient = __esm({
|
|
27535
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27652
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js"() {
|
|
27536
27653
|
import_middleware_host_header3 = __toESM(require_dist_cjs20());
|
|
27537
27654
|
import_middleware_logger3 = __toESM(require_dist_cjs21());
|
|
27538
27655
|
import_middleware_recursion_detection3 = __toESM(require_dist_cjs22());
|
|
@@ -27585,10 +27702,10 @@ var init_SigninClient = __esm({
|
|
|
27585
27702
|
}
|
|
27586
27703
|
});
|
|
27587
27704
|
|
|
27588
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27705
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js
|
|
27589
27706
|
var import_middleware_endpoint6, import_smithy_client27, CreateOAuth2TokenCommand;
|
|
27590
27707
|
var init_CreateOAuth2TokenCommand = __esm({
|
|
27591
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27708
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js"() {
|
|
27592
27709
|
import_middleware_endpoint6 = __toESM(require_dist_cjs45());
|
|
27593
27710
|
import_smithy_client27 = __toESM(require_dist_cjs27());
|
|
27594
27711
|
init_EndpointParameters3();
|
|
@@ -27600,10 +27717,10 @@ var init_CreateOAuth2TokenCommand = __esm({
|
|
|
27600
27717
|
}
|
|
27601
27718
|
});
|
|
27602
27719
|
|
|
27603
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27720
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js
|
|
27604
27721
|
var import_smithy_client28, commands3, Signin;
|
|
27605
27722
|
var init_Signin = __esm({
|
|
27606
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27723
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js"() {
|
|
27607
27724
|
import_smithy_client28 = __toESM(require_dist_cjs27());
|
|
27608
27725
|
init_CreateOAuth2TokenCommand();
|
|
27609
27726
|
init_SigninClient();
|
|
@@ -27616,17 +27733,17 @@ var init_Signin = __esm({
|
|
|
27616
27733
|
}
|
|
27617
27734
|
});
|
|
27618
27735
|
|
|
27619
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27736
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js
|
|
27620
27737
|
var init_commands3 = __esm({
|
|
27621
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27738
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js"() {
|
|
27622
27739
|
init_CreateOAuth2TokenCommand();
|
|
27623
27740
|
}
|
|
27624
27741
|
});
|
|
27625
27742
|
|
|
27626
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27743
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js
|
|
27627
27744
|
var OAuth2ErrorCode;
|
|
27628
27745
|
var init_enums2 = __esm({
|
|
27629
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27746
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js"() {
|
|
27630
27747
|
OAuth2ErrorCode = {
|
|
27631
27748
|
AUTHCODE_EXPIRED: "AUTHCODE_EXPIRED",
|
|
27632
27749
|
INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS",
|
|
@@ -27638,13 +27755,13 @@ var init_enums2 = __esm({
|
|
|
27638
27755
|
}
|
|
27639
27756
|
});
|
|
27640
27757
|
|
|
27641
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27758
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js
|
|
27642
27759
|
var init_models_03 = __esm({
|
|
27643
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27760
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js"() {
|
|
27644
27761
|
}
|
|
27645
27762
|
});
|
|
27646
27763
|
|
|
27647
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27764
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js
|
|
27648
27765
|
var signin_exports = {};
|
|
27649
27766
|
__export(signin_exports, {
|
|
27650
27767
|
$Command: () => import_smithy_client27.Command,
|
|
@@ -27672,7 +27789,7 @@ __export(signin_exports, {
|
|
|
27672
27789
|
errorTypeRegistries: () => errorTypeRegistries3
|
|
27673
27790
|
});
|
|
27674
27791
|
var init_signin = __esm({
|
|
27675
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
27792
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js"() {
|
|
27676
27793
|
init_SigninClient();
|
|
27677
27794
|
init_Signin();
|
|
27678
27795
|
init_commands3();
|
|
@@ -27684,9 +27801,9 @@ var init_signin = __esm({
|
|
|
27684
27801
|
}
|
|
27685
27802
|
});
|
|
27686
27803
|
|
|
27687
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-login@3.972.
|
|
27804
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-login@3.972.29/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js
|
|
27688
27805
|
var require_dist_cjs58 = __commonJS({
|
|
27689
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-login@3.972.
|
|
27806
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-login@3.972.29/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js"(exports2) {
|
|
27690
27807
|
"use strict";
|
|
27691
27808
|
var client = (init_client(), __toCommonJS(client_exports));
|
|
27692
27809
|
var propertyProvider = require_dist_cjs41();
|
|
@@ -27963,7 +28080,7 @@ var require_dist_cjs58 = __commonJS({
|
|
|
27963
28080
|
}
|
|
27964
28081
|
});
|
|
27965
28082
|
|
|
27966
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28083
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js
|
|
27967
28084
|
function createAwsAuthSigv4HttpAuthOption4(authParameters) {
|
|
27968
28085
|
return {
|
|
27969
28086
|
schemeId: "aws.auth#sigv4",
|
|
@@ -27986,7 +28103,7 @@ function createSmithyApiNoAuthHttpAuthOption4(authParameters) {
|
|
|
27986
28103
|
}
|
|
27987
28104
|
var import_util_middleware9, defaultSTSHttpAuthSchemeParametersProvider, defaultSTSHttpAuthSchemeProvider, resolveStsAuthConfig, resolveHttpAuthSchemeConfig4;
|
|
27988
28105
|
var init_httpAuthSchemeProvider4 = __esm({
|
|
27989
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28106
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js"() {
|
|
27990
28107
|
init_httpAuthSchemes2();
|
|
27991
28108
|
import_util_middleware9 = __toESM(require_dist_cjs18());
|
|
27992
28109
|
init_STSClient();
|
|
@@ -28024,10 +28141,10 @@ var init_httpAuthSchemeProvider4 = __esm({
|
|
|
28024
28141
|
}
|
|
28025
28142
|
});
|
|
28026
28143
|
|
|
28027
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28144
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js
|
|
28028
28145
|
var resolveClientEndpointParameters4, commonParams4;
|
|
28029
28146
|
var init_EndpointParameters4 = __esm({
|
|
28030
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28147
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js"() {
|
|
28031
28148
|
resolveClientEndpointParameters4 = (options) => {
|
|
28032
28149
|
return Object.assign(options, {
|
|
28033
28150
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
@@ -28046,10 +28163,10 @@ var init_EndpointParameters4 = __esm({
|
|
|
28046
28163
|
}
|
|
28047
28164
|
});
|
|
28048
28165
|
|
|
28049
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28166
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js
|
|
28050
28167
|
var F, G, H, I, J, a4, b4, c4, d4, e4, f4, g4, h4, i4, j4, k4, l4, m4, n4, o4, p4, q4, r4, s4, t4, u4, v4, w4, x4, y, z, A, B, C, D, E, _data4, ruleSet4;
|
|
28051
28168
|
var init_ruleset4 = __esm({
|
|
28052
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28169
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js"() {
|
|
28053
28170
|
F = "required";
|
|
28054
28171
|
G = "type";
|
|
28055
28172
|
H = "fn";
|
|
@@ -28229,10 +28346,10 @@ var init_ruleset4 = __esm({
|
|
|
28229
28346
|
}
|
|
28230
28347
|
});
|
|
28231
28348
|
|
|
28232
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28349
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js
|
|
28233
28350
|
var import_util_endpoints7, import_util_endpoints8, cache4, defaultEndpointResolver4;
|
|
28234
28351
|
var init_endpointResolver4 = __esm({
|
|
28235
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28352
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js"() {
|
|
28236
28353
|
import_util_endpoints7 = __toESM(require_dist_cjs34());
|
|
28237
28354
|
import_util_endpoints8 = __toESM(require_dist_cjs33());
|
|
28238
28355
|
init_ruleset4();
|
|
@@ -28250,10 +28367,10 @@ var init_endpointResolver4 = __esm({
|
|
|
28250
28367
|
}
|
|
28251
28368
|
});
|
|
28252
28369
|
|
|
28253
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28370
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js
|
|
28254
28371
|
var import_smithy_client29, STSServiceException;
|
|
28255
28372
|
var init_STSServiceException = __esm({
|
|
28256
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28373
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js"() {
|
|
28257
28374
|
import_smithy_client29 = __toESM(require_dist_cjs27());
|
|
28258
28375
|
STSServiceException = class _STSServiceException extends import_smithy_client29.ServiceException {
|
|
28259
28376
|
constructor(options) {
|
|
@@ -28264,10 +28381,10 @@ var init_STSServiceException = __esm({
|
|
|
28264
28381
|
}
|
|
28265
28382
|
});
|
|
28266
28383
|
|
|
28267
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28384
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js
|
|
28268
28385
|
var ExpiredTokenException2, MalformedPolicyDocumentException, PackedPolicyTooLargeException, RegionDisabledException, IDPRejectedClaimException, InvalidIdentityTokenException, IDPCommunicationErrorException;
|
|
28269
28386
|
var init_errors4 = __esm({
|
|
28270
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28387
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js"() {
|
|
28271
28388
|
init_STSServiceException();
|
|
28272
28389
|
ExpiredTokenException2 = class _ExpiredTokenException extends STSServiceException {
|
|
28273
28390
|
name = "ExpiredTokenException";
|
|
@@ -28356,10 +28473,10 @@ var init_errors4 = __esm({
|
|
|
28356
28473
|
}
|
|
28357
28474
|
});
|
|
28358
28475
|
|
|
28359
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28476
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js
|
|
28360
28477
|
var _A, _AKI, _AR, _ARI, _ARR, _ARRs, _ARU, _ARWWI, _ARWWIR, _ARWWIRs, _Au, _C, _CA, _DS, _E, _EI, _ETE2, _IDPCEE, _IDPRCE, _IITE, _K, _MPDE, _P, _PA, _PAr, _PC, _PCLT, _PCr, _PDT, _PI, _PPS, _PPTLE, _Pr, _RA, _RDE, _RSN, _SAK, _SFWIT, _SI, _SN, _ST, _T, _TC, _TTK, _Ta, _V, _WIT, _a, _aKST, _aQE, _c4, _cTT, _e4, _hE4, _m3, _pDLT, _s4, _tLT, n04, _s_registry4, STSServiceException$, n0_registry4, ExpiredTokenException$2, IDPCommunicationErrorException$, IDPRejectedClaimException$, InvalidIdentityTokenException$, MalformedPolicyDocumentException$, PackedPolicyTooLargeException$, RegionDisabledException$, errorTypeRegistries4, accessKeySecretType, clientTokenType, AssumedRoleUser$, AssumeRoleRequest$, AssumeRoleResponse$, AssumeRoleWithWebIdentityRequest$, AssumeRoleWithWebIdentityResponse$, Credentials$, PolicyDescriptorType$, ProvidedContext$, Tag$, policyDescriptorListType, ProvidedContextsListType, tagKeyListType, tagListType, AssumeRole$, AssumeRoleWithWebIdentity$;
|
|
28361
28478
|
var init_schemas_04 = __esm({
|
|
28362
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28479
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js"() {
|
|
28363
28480
|
init_schema();
|
|
28364
28481
|
init_errors4();
|
|
28365
28482
|
init_STSServiceException();
|
|
@@ -28555,10 +28672,10 @@ var init_schemas_04 = __esm({
|
|
|
28555
28672
|
}
|
|
28556
28673
|
});
|
|
28557
28674
|
|
|
28558
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28675
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js
|
|
28559
28676
|
var import_smithy_client30, import_url_parser5, import_util_base6411, import_util_utf811, getRuntimeConfig7;
|
|
28560
28677
|
var init_runtimeConfig_shared4 = __esm({
|
|
28561
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28678
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js"() {
|
|
28562
28679
|
init_httpAuthSchemes2();
|
|
28563
28680
|
init_protocols2();
|
|
28564
28681
|
init_dist_es();
|
|
@@ -28608,10 +28725,10 @@ var init_runtimeConfig_shared4 = __esm({
|
|
|
28608
28725
|
}
|
|
28609
28726
|
});
|
|
28610
28727
|
|
|
28611
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28728
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js
|
|
28612
28729
|
var import_util_user_agent_node4, import_config_resolver7, import_hash_node4, import_middleware_retry7, import_node_config_provider4, import_node_http_handler4, import_smithy_client31, import_util_body_length_node4, import_util_defaults_mode_node4, import_util_retry4, getRuntimeConfig8;
|
|
28613
28730
|
var init_runtimeConfig4 = __esm({
|
|
28614
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28731
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js"() {
|
|
28615
28732
|
init_package();
|
|
28616
28733
|
init_client();
|
|
28617
28734
|
init_httpAuthSchemes2();
|
|
@@ -28674,10 +28791,10 @@ var init_runtimeConfig4 = __esm({
|
|
|
28674
28791
|
}
|
|
28675
28792
|
});
|
|
28676
28793
|
|
|
28677
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28794
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js
|
|
28678
28795
|
var getHttpAuthExtensionConfiguration4, resolveHttpAuthRuntimeConfig4;
|
|
28679
28796
|
var init_httpAuthExtensionConfiguration4 = __esm({
|
|
28680
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28797
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js"() {
|
|
28681
28798
|
getHttpAuthExtensionConfiguration4 = (runtimeConfig) => {
|
|
28682
28799
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
28683
28800
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -28718,10 +28835,10 @@ var init_httpAuthExtensionConfiguration4 = __esm({
|
|
|
28718
28835
|
}
|
|
28719
28836
|
});
|
|
28720
28837
|
|
|
28721
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28838
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js
|
|
28722
28839
|
var import_region_config_resolver4, import_protocol_http15, import_smithy_client32, resolveRuntimeExtensions4;
|
|
28723
28840
|
var init_runtimeExtensions4 = __esm({
|
|
28724
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28841
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js"() {
|
|
28725
28842
|
import_region_config_resolver4 = __toESM(require_dist_cjs55());
|
|
28726
28843
|
import_protocol_http15 = __toESM(require_dist_cjs2());
|
|
28727
28844
|
import_smithy_client32 = __toESM(require_dist_cjs27());
|
|
@@ -28734,10 +28851,10 @@ var init_runtimeExtensions4 = __esm({
|
|
|
28734
28851
|
}
|
|
28735
28852
|
});
|
|
28736
28853
|
|
|
28737
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28854
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js
|
|
28738
28855
|
var import_middleware_host_header4, import_middleware_logger4, import_middleware_recursion_detection4, import_middleware_user_agent4, import_config_resolver8, import_middleware_content_length4, import_middleware_endpoint7, import_middleware_retry8, import_smithy_client33, STSClient;
|
|
28739
28856
|
var init_STSClient = __esm({
|
|
28740
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28857
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js"() {
|
|
28741
28858
|
import_middleware_host_header4 = __toESM(require_dist_cjs20());
|
|
28742
28859
|
import_middleware_logger4 = __toESM(require_dist_cjs21());
|
|
28743
28860
|
import_middleware_recursion_detection4 = __toESM(require_dist_cjs22());
|
|
@@ -28790,10 +28907,10 @@ var init_STSClient = __esm({
|
|
|
28790
28907
|
}
|
|
28791
28908
|
});
|
|
28792
28909
|
|
|
28793
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28910
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js
|
|
28794
28911
|
var import_middleware_endpoint8, import_smithy_client34, AssumeRoleCommand;
|
|
28795
28912
|
var init_AssumeRoleCommand = __esm({
|
|
28796
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28913
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js"() {
|
|
28797
28914
|
import_middleware_endpoint8 = __toESM(require_dist_cjs45());
|
|
28798
28915
|
import_smithy_client34 = __toESM(require_dist_cjs27());
|
|
28799
28916
|
init_EndpointParameters4();
|
|
@@ -28805,10 +28922,10 @@ var init_AssumeRoleCommand = __esm({
|
|
|
28805
28922
|
}
|
|
28806
28923
|
});
|
|
28807
28924
|
|
|
28808
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28925
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js
|
|
28809
28926
|
var import_middleware_endpoint9, import_smithy_client35, AssumeRoleWithWebIdentityCommand;
|
|
28810
28927
|
var init_AssumeRoleWithWebIdentityCommand = __esm({
|
|
28811
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28928
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js"() {
|
|
28812
28929
|
import_middleware_endpoint9 = __toESM(require_dist_cjs45());
|
|
28813
28930
|
import_smithy_client35 = __toESM(require_dist_cjs27());
|
|
28814
28931
|
init_EndpointParameters4();
|
|
@@ -28820,10 +28937,10 @@ var init_AssumeRoleWithWebIdentityCommand = __esm({
|
|
|
28820
28937
|
}
|
|
28821
28938
|
});
|
|
28822
28939
|
|
|
28823
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28940
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js
|
|
28824
28941
|
var import_smithy_client36, commands4, STS;
|
|
28825
28942
|
var init_STS = __esm({
|
|
28826
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28943
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js"() {
|
|
28827
28944
|
import_smithy_client36 = __toESM(require_dist_cjs27());
|
|
28828
28945
|
init_AssumeRoleCommand();
|
|
28829
28946
|
init_AssumeRoleWithWebIdentityCommand();
|
|
@@ -28838,24 +28955,24 @@ var init_STS = __esm({
|
|
|
28838
28955
|
}
|
|
28839
28956
|
});
|
|
28840
28957
|
|
|
28841
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28958
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js
|
|
28842
28959
|
var init_commands4 = __esm({
|
|
28843
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28960
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js"() {
|
|
28844
28961
|
init_AssumeRoleCommand();
|
|
28845
28962
|
init_AssumeRoleWithWebIdentityCommand();
|
|
28846
28963
|
}
|
|
28847
28964
|
});
|
|
28848
28965
|
|
|
28849
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28966
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js
|
|
28850
28967
|
var init_models_04 = __esm({
|
|
28851
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28968
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js"() {
|
|
28852
28969
|
}
|
|
28853
28970
|
});
|
|
28854
28971
|
|
|
28855
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28972
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js
|
|
28856
28973
|
var import_region_config_resolver5, getAccountIdFromAssumedRoleUser, resolveRegion, getDefaultRoleAssumer, getDefaultRoleAssumerWithWebIdentity, isH2;
|
|
28857
28974
|
var init_defaultStsRoleAssumers = __esm({
|
|
28858
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
28975
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js"() {
|
|
28859
28976
|
init_client();
|
|
28860
28977
|
import_region_config_resolver5 = __toESM(require_dist_cjs55());
|
|
28861
28978
|
init_AssumeRoleCommand();
|
|
@@ -28961,10 +29078,10 @@ var init_defaultStsRoleAssumers = __esm({
|
|
|
28961
29078
|
}
|
|
28962
29079
|
});
|
|
28963
29080
|
|
|
28964
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
29081
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js
|
|
28965
29082
|
var getCustomizableStsClientCtor, getDefaultRoleAssumer2, getDefaultRoleAssumerWithWebIdentity2, decorateDefaultCredentialProvider;
|
|
28966
29083
|
var init_defaultRoleAssumers = __esm({
|
|
28967
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
29084
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js"() {
|
|
28968
29085
|
init_defaultStsRoleAssumers();
|
|
28969
29086
|
init_STSClient();
|
|
28970
29087
|
getCustomizableStsClientCtor = (baseCtor, customizations) => {
|
|
@@ -28990,7 +29107,7 @@ var init_defaultRoleAssumers = __esm({
|
|
|
28990
29107
|
}
|
|
28991
29108
|
});
|
|
28992
29109
|
|
|
28993
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
29110
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js
|
|
28994
29111
|
var sts_exports = {};
|
|
28995
29112
|
__export(sts_exports, {
|
|
28996
29113
|
AssumeRole$: () => AssumeRole$,
|
|
@@ -29031,7 +29148,7 @@ __export(sts_exports, {
|
|
|
29031
29148
|
getDefaultRoleAssumerWithWebIdentity: () => getDefaultRoleAssumerWithWebIdentity2
|
|
29032
29149
|
});
|
|
29033
29150
|
var init_sts = __esm({
|
|
29034
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.
|
|
29151
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.996.19/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js"() {
|
|
29035
29152
|
init_STSClient();
|
|
29036
29153
|
init_STS();
|
|
29037
29154
|
init_commands4();
|
|
@@ -29043,9 +29160,9 @@ var init_sts = __esm({
|
|
|
29043
29160
|
}
|
|
29044
29161
|
});
|
|
29045
29162
|
|
|
29046
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-process@3.972.
|
|
29163
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-process@3.972.25/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js
|
|
29047
29164
|
var require_dist_cjs59 = __commonJS({
|
|
29048
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-process@3.972.
|
|
29165
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-process@3.972.25/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js"(exports2) {
|
|
29049
29166
|
"use strict";
|
|
29050
29167
|
var sharedIniFileLoader = require_dist_cjs42();
|
|
29051
29168
|
var propertyProvider = require_dist_cjs41();
|
|
@@ -29119,9 +29236,9 @@ var require_dist_cjs59 = __commonJS({
|
|
|
29119
29236
|
}
|
|
29120
29237
|
});
|
|
29121
29238
|
|
|
29122
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.
|
|
29239
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.29/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js
|
|
29123
29240
|
var require_fromWebToken = __commonJS({
|
|
29124
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.
|
|
29241
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.29/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js"(exports2) {
|
|
29125
29242
|
"use strict";
|
|
29126
29243
|
var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? (function(o5, m5, k5, k22) {
|
|
29127
29244
|
if (k22 === void 0) k22 = k5;
|
|
@@ -29191,9 +29308,9 @@ var require_fromWebToken = __commonJS({
|
|
|
29191
29308
|
}
|
|
29192
29309
|
});
|
|
29193
29310
|
|
|
29194
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.
|
|
29311
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.29/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js
|
|
29195
29312
|
var require_fromTokenFile = __commonJS({
|
|
29196
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.
|
|
29313
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.29/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js"(exports2) {
|
|
29197
29314
|
"use strict";
|
|
29198
29315
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
29199
29316
|
exports2.fromTokenFile = void 0;
|
|
@@ -29230,9 +29347,9 @@ var require_fromTokenFile = __commonJS({
|
|
|
29230
29347
|
}
|
|
29231
29348
|
});
|
|
29232
29349
|
|
|
29233
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.
|
|
29350
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.29/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js
|
|
29234
29351
|
var require_dist_cjs60 = __commonJS({
|
|
29235
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.
|
|
29352
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.972.29/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js"(exports2) {
|
|
29236
29353
|
"use strict";
|
|
29237
29354
|
var fromTokenFile = require_fromTokenFile();
|
|
29238
29355
|
var fromWebToken = require_fromWebToken();
|
|
@@ -29253,9 +29370,9 @@ var require_dist_cjs60 = __commonJS({
|
|
|
29253
29370
|
}
|
|
29254
29371
|
});
|
|
29255
29372
|
|
|
29256
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.972.
|
|
29373
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.972.29/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js
|
|
29257
29374
|
var require_dist_cjs61 = __commonJS({
|
|
29258
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.972.
|
|
29375
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.972.29/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js"(exports2) {
|
|
29259
29376
|
"use strict";
|
|
29260
29377
|
var sharedIniFileLoader = require_dist_cjs42();
|
|
29261
29378
|
var propertyProvider = require_dist_cjs41();
|
|
@@ -29444,9 +29561,9 @@ var require_dist_cjs61 = __commonJS({
|
|
|
29444
29561
|
}
|
|
29445
29562
|
});
|
|
29446
29563
|
|
|
29447
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-node@3.972.
|
|
29564
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-node@3.972.30/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js
|
|
29448
29565
|
var require_dist_cjs62 = __commonJS({
|
|
29449
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-node@3.972.
|
|
29566
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-node@3.972.30/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js"(exports2) {
|
|
29450
29567
|
"use strict";
|
|
29451
29568
|
var credentialProviderEnv = require_dist_cjs48();
|
|
29452
29569
|
var propertyProvider = require_dist_cjs41();
|
|
@@ -29592,9 +29709,9 @@ var require_dist_cjs62 = __commonJS({
|
|
|
29592
29709
|
}
|
|
29593
29710
|
});
|
|
29594
29711
|
|
|
29595
|
-
// node_modules/.pnpm/@aws-sdk+middleware-bucket-endpoint@3.972.
|
|
29712
|
+
// node_modules/.pnpm/@aws-sdk+middleware-bucket-endpoint@3.972.9/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js
|
|
29596
29713
|
var require_dist_cjs63 = __commonJS({
|
|
29597
|
-
"node_modules/.pnpm/@aws-sdk+middleware-bucket-endpoint@3.972.
|
|
29714
|
+
"node_modules/.pnpm/@aws-sdk+middleware-bucket-endpoint@3.972.9/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js"(exports2) {
|
|
29598
29715
|
"use strict";
|
|
29599
29716
|
var utilConfigProvider = require_dist_cjs31();
|
|
29600
29717
|
var utilArnParser = require_dist_cjs28();
|
|
@@ -29924,9 +30041,9 @@ var require_dist_cjs63 = __commonJS({
|
|
|
29924
30041
|
}
|
|
29925
30042
|
});
|
|
29926
30043
|
|
|
29927
|
-
// node_modules/.pnpm/@smithy+eventstream-codec@4.2.
|
|
30044
|
+
// node_modules/.pnpm/@smithy+eventstream-codec@4.2.13/node_modules/@smithy/eventstream-codec/dist-cjs/index.js
|
|
29928
30045
|
var require_dist_cjs64 = __commonJS({
|
|
29929
|
-
"node_modules/.pnpm/@smithy+eventstream-codec@4.2.
|
|
30046
|
+
"node_modules/.pnpm/@smithy+eventstream-codec@4.2.13/node_modules/@smithy/eventstream-codec/dist-cjs/index.js"(exports2) {
|
|
29930
30047
|
"use strict";
|
|
29931
30048
|
var crc32 = require_main3();
|
|
29932
30049
|
var utilHexEncoding = require_dist_cjs12();
|
|
@@ -30132,6 +30249,19 @@ var require_dist_cjs64 = __commonJS({
|
|
|
30132
30249
|
return out;
|
|
30133
30250
|
}
|
|
30134
30251
|
};
|
|
30252
|
+
var HEADER_VALUE_TYPE;
|
|
30253
|
+
(function(HEADER_VALUE_TYPE2) {
|
|
30254
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["boolTrue"] = 0] = "boolTrue";
|
|
30255
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["boolFalse"] = 1] = "boolFalse";
|
|
30256
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["byte"] = 2] = "byte";
|
|
30257
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["short"] = 3] = "short";
|
|
30258
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["integer"] = 4] = "integer";
|
|
30259
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["long"] = 5] = "long";
|
|
30260
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["byteArray"] = 6] = "byteArray";
|
|
30261
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["string"] = 7] = "string";
|
|
30262
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["timestamp"] = 8] = "timestamp";
|
|
30263
|
+
HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["uuid"] = 9] = "uuid";
|
|
30264
|
+
})(HEADER_VALUE_TYPE || (HEADER_VALUE_TYPE = {}));
|
|
30135
30265
|
var BOOLEAN_TAG = "boolean";
|
|
30136
30266
|
var BYTE_TAG = "byte";
|
|
30137
30267
|
var SHORT_TAG = "short";
|
|
@@ -30308,9 +30438,9 @@ var require_dist_cjs64 = __commonJS({
|
|
|
30308
30438
|
}
|
|
30309
30439
|
});
|
|
30310
30440
|
|
|
30311
|
-
// node_modules/.pnpm/@smithy+eventstream-serde-universal@4.2.
|
|
30441
|
+
// node_modules/.pnpm/@smithy+eventstream-serde-universal@4.2.13/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js
|
|
30312
30442
|
var require_dist_cjs65 = __commonJS({
|
|
30313
|
-
"node_modules/.pnpm/@smithy+eventstream-serde-universal@4.2.
|
|
30443
|
+
"node_modules/.pnpm/@smithy+eventstream-serde-universal@4.2.13/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js"(exports2) {
|
|
30314
30444
|
"use strict";
|
|
30315
30445
|
var eventstreamCodec = require_dist_cjs64();
|
|
30316
30446
|
function getChunkedStream(source) {
|
|
@@ -30435,9 +30565,9 @@ var require_dist_cjs65 = __commonJS({
|
|
|
30435
30565
|
}
|
|
30436
30566
|
});
|
|
30437
30567
|
|
|
30438
|
-
// node_modules/.pnpm/@smithy+eventstream-serde-node@4.2.
|
|
30568
|
+
// node_modules/.pnpm/@smithy+eventstream-serde-node@4.2.13/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js
|
|
30439
30569
|
var require_dist_cjs66 = __commonJS({
|
|
30440
|
-
"node_modules/.pnpm/@smithy+eventstream-serde-node@4.2.
|
|
30570
|
+
"node_modules/.pnpm/@smithy+eventstream-serde-node@4.2.13/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js"(exports2) {
|
|
30441
30571
|
"use strict";
|
|
30442
30572
|
var eventstreamSerdeUniversal = require_dist_cjs65();
|
|
30443
30573
|
var stream = require("stream");
|
|
@@ -30489,9 +30619,9 @@ var require_dist_cjs66 = __commonJS({
|
|
|
30489
30619
|
}
|
|
30490
30620
|
});
|
|
30491
30621
|
|
|
30492
|
-
// node_modules/.pnpm/@smithy+hash-stream-node@4.2.
|
|
30622
|
+
// node_modules/.pnpm/@smithy+hash-stream-node@4.2.13/node_modules/@smithy/hash-stream-node/dist-cjs/index.js
|
|
30493
30623
|
var require_dist_cjs67 = __commonJS({
|
|
30494
|
-
"node_modules/.pnpm/@smithy+hash-stream-node@4.2.
|
|
30624
|
+
"node_modules/.pnpm/@smithy+hash-stream-node@4.2.13/node_modules/@smithy/hash-stream-node/dist-cjs/index.js"(exports2) {
|
|
30495
30625
|
"use strict";
|
|
30496
30626
|
var fs2 = require("fs");
|
|
30497
30627
|
var utilUtf8 = require_dist_cjs6();
|
|
@@ -30556,9 +30686,9 @@ var require_dist_cjs67 = __commonJS({
|
|
|
30556
30686
|
}
|
|
30557
30687
|
});
|
|
30558
30688
|
|
|
30559
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
30689
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js
|
|
30560
30690
|
var require_runtimeConfig_shared = __commonJS({
|
|
30561
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
30691
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js"(exports2) {
|
|
30562
30692
|
"use strict";
|
|
30563
30693
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
30564
30694
|
exports2.getRuntimeConfig = void 0;
|
|
@@ -30618,9 +30748,9 @@ var require_runtimeConfig_shared = __commonJS({
|
|
|
30618
30748
|
}
|
|
30619
30749
|
});
|
|
30620
30750
|
|
|
30621
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
30751
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js
|
|
30622
30752
|
var require_runtimeConfig = __commonJS({
|
|
30623
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
30753
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js"(exports2) {
|
|
30624
30754
|
"use strict";
|
|
30625
30755
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
30626
30756
|
exports2.getRuntimeConfig = void 0;
|
|
@@ -30691,9 +30821,9 @@ var require_runtimeConfig = __commonJS({
|
|
|
30691
30821
|
}
|
|
30692
30822
|
});
|
|
30693
30823
|
|
|
30694
|
-
// node_modules/.pnpm/@aws-sdk+middleware-ssec@3.972.
|
|
30824
|
+
// node_modules/.pnpm/@aws-sdk+middleware-ssec@3.972.9/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js
|
|
30695
30825
|
var require_dist_cjs68 = __commonJS({
|
|
30696
|
-
"node_modules/.pnpm/@aws-sdk+middleware-ssec@3.972.
|
|
30826
|
+
"node_modules/.pnpm/@aws-sdk+middleware-ssec@3.972.9/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js"(exports2) {
|
|
30697
30827
|
"use strict";
|
|
30698
30828
|
function ssecMiddleware(options) {
|
|
30699
30829
|
return (next) => async (args) => {
|
|
@@ -30763,9 +30893,9 @@ var require_dist_cjs68 = __commonJS({
|
|
|
30763
30893
|
}
|
|
30764
30894
|
});
|
|
30765
30895
|
|
|
30766
|
-
// node_modules/.pnpm/@aws-sdk+middleware-location-constraint@3.972.
|
|
30896
|
+
// node_modules/.pnpm/@aws-sdk+middleware-location-constraint@3.972.9/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js
|
|
30767
30897
|
var require_dist_cjs69 = __commonJS({
|
|
30768
|
-
"node_modules/.pnpm/@aws-sdk+middleware-location-constraint@3.972.
|
|
30898
|
+
"node_modules/.pnpm/@aws-sdk+middleware-location-constraint@3.972.9/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js"(exports2) {
|
|
30769
30899
|
"use strict";
|
|
30770
30900
|
function locationConstraintMiddleware(options) {
|
|
30771
30901
|
return (next) => async (args) => {
|
|
@@ -30797,9 +30927,9 @@ var require_dist_cjs69 = __commonJS({
|
|
|
30797
30927
|
}
|
|
30798
30928
|
});
|
|
30799
30929
|
|
|
30800
|
-
// node_modules/.pnpm/@smithy+util-waiter@4.2.
|
|
30930
|
+
// node_modules/.pnpm/@smithy+util-waiter@4.2.15/node_modules/@smithy/util-waiter/dist-cjs/index.js
|
|
30801
30931
|
var require_dist_cjs70 = __commonJS({
|
|
30802
|
-
"node_modules/.pnpm/@smithy+util-waiter@4.2.
|
|
30932
|
+
"node_modules/.pnpm/@smithy+util-waiter@4.2.15/node_modules/@smithy/util-waiter/dist-cjs/index.js"(exports2) {
|
|
30803
30933
|
"use strict";
|
|
30804
30934
|
var getCircularReplacer = () => {
|
|
30805
30935
|
const seen = /* @__PURE__ */ new WeakSet();
|
|
@@ -30968,9 +31098,9 @@ var require_dist_cjs70 = __commonJS({
|
|
|
30968
31098
|
}
|
|
30969
31099
|
});
|
|
30970
31100
|
|
|
30971
|
-
// node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
31101
|
+
// node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/index.js
|
|
30972
31102
|
var require_dist_cjs71 = __commonJS({
|
|
30973
|
-
"node_modules/.pnpm/@aws-sdk+client-s3@3.
|
|
31103
|
+
"node_modules/.pnpm/@aws-sdk+client-s3@3.1027.0/node_modules/@aws-sdk/client-s3/dist-cjs/index.js"(exports2) {
|
|
30974
31104
|
"use strict";
|
|
30975
31105
|
var middlewareExpectContinue = require_dist_cjs3();
|
|
30976
31106
|
var middlewareFlexibleChecksums = require_dist_cjs19();
|
|
@@ -31777,6 +31907,7 @@ var require_dist_cjs71 = __commonJS({
|
|
|
31777
31907
|
};
|
|
31778
31908
|
var ListBucketMetricsConfigurationsCommand = class extends smithyClient.Command.classBuilder().ep({
|
|
31779
31909
|
...commonParams5,
|
|
31910
|
+
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
31780
31911
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
31781
31912
|
}).m(function(Command, cs, config, o5) {
|
|
31782
31913
|
return [
|
|
@@ -32642,6 +32773,7 @@ var require_dist_cjs71 = __commonJS({
|
|
|
32642
32773
|
EU: "EU",
|
|
32643
32774
|
af_south_1: "af-south-1",
|
|
32644
32775
|
ap_east_1: "ap-east-1",
|
|
32776
|
+
ap_east_2: "ap-east-2",
|
|
32645
32777
|
ap_northeast_1: "ap-northeast-1",
|
|
32646
32778
|
ap_northeast_2: "ap-northeast-2",
|
|
32647
32779
|
ap_northeast_3: "ap-northeast-3",
|
|
@@ -32652,7 +32784,10 @@ var require_dist_cjs71 = __commonJS({
|
|
|
32652
32784
|
ap_southeast_3: "ap-southeast-3",
|
|
32653
32785
|
ap_southeast_4: "ap-southeast-4",
|
|
32654
32786
|
ap_southeast_5: "ap-southeast-5",
|
|
32787
|
+
ap_southeast_6: "ap-southeast-6",
|
|
32788
|
+
ap_southeast_7: "ap-southeast-7",
|
|
32655
32789
|
ca_central_1: "ca-central-1",
|
|
32790
|
+
ca_west_1: "ca-west-1",
|
|
32656
32791
|
cn_north_1: "cn-north-1",
|
|
32657
32792
|
cn_northwest_1: "cn-northwest-1",
|
|
32658
32793
|
eu_central_1: "eu-central-1",
|
|
@@ -32666,6 +32801,7 @@ var require_dist_cjs71 = __commonJS({
|
|
|
32666
32801
|
il_central_1: "il-central-1",
|
|
32667
32802
|
me_central_1: "me-central-1",
|
|
32668
32803
|
me_south_1: "me-south-1",
|
|
32804
|
+
mx_central_1: "mx-central-1",
|
|
32669
32805
|
sa_east_1: "sa-east-1",
|
|
32670
32806
|
us_east_2: "us-east-2",
|
|
32671
32807
|
us_gov_east_1: "us-gov-east-1",
|
|
@@ -33148,9 +33284,9 @@ var require_dist_cjs71 = __commonJS({
|
|
|
33148
33284
|
}
|
|
33149
33285
|
});
|
|
33150
33286
|
|
|
33151
|
-
// node_modules/.pnpm/@aws-sdk+util-format-url@3.972.
|
|
33287
|
+
// node_modules/.pnpm/@aws-sdk+util-format-url@3.972.9/node_modules/@aws-sdk/util-format-url/dist-cjs/index.js
|
|
33152
33288
|
var require_dist_cjs72 = __commonJS({
|
|
33153
|
-
"node_modules/.pnpm/@aws-sdk+util-format-url@3.972.
|
|
33289
|
+
"node_modules/.pnpm/@aws-sdk+util-format-url@3.972.9/node_modules/@aws-sdk/util-format-url/dist-cjs/index.js"(exports2) {
|
|
33154
33290
|
"use strict";
|
|
33155
33291
|
var querystringBuilder = require_dist_cjs9();
|
|
33156
33292
|
function formatUrl(request) {
|
|
@@ -33185,9 +33321,9 @@ var require_dist_cjs72 = __commonJS({
|
|
|
33185
33321
|
}
|
|
33186
33322
|
});
|
|
33187
33323
|
|
|
33188
|
-
// node_modules/.pnpm/@aws-sdk+s3-request-presigner@3.
|
|
33324
|
+
// node_modules/.pnpm/@aws-sdk+s3-request-presigner@3.1026.0/node_modules/@aws-sdk/s3-request-presigner/dist-cjs/index.js
|
|
33189
33325
|
var require_dist_cjs73 = __commonJS({
|
|
33190
|
-
"node_modules/.pnpm/@aws-sdk+s3-request-presigner@3.
|
|
33326
|
+
"node_modules/.pnpm/@aws-sdk+s3-request-presigner@3.1026.0/node_modules/@aws-sdk/s3-request-presigner/dist-cjs/index.js"(exports2) {
|
|
33191
33327
|
"use strict";
|
|
33192
33328
|
var utilFormatUrl = require_dist_cjs72();
|
|
33193
33329
|
var middlewareEndpoint = require_dist_cjs45();
|