@junando/webhook 0.16.2 → 0.16.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dist-cjs-ChKmbyib.cjs +100 -0
- package/dist/{event-streams-BNpVWorN.cjs → event-streams-4dI73S0N.cjs} +266 -349
- package/dist/event-streams-D0peAKGF.cjs +1676 -0
- package/dist/handler.cjs +3630 -1664
- package/dist/{node-DdUjbr7d.cjs → node-BZLMCJ1t.cjs} +9 -9
- package/dist/{node-CaH-Nh2c.cjs → node-DTI7Tj9K.cjs} +1 -1
- package/dist/{sdk-DKBOmAd5.cjs → sdk-DUcZIewE.cjs} +166 -162
- package/dist/serde-BKDOXNkW.cjs +6890 -0
- package/package.json +5 -5
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
const require_rolldown_runtime = require('./rolldown-runtime-BDXX5GFZ.cjs');
|
|
2
|
+
const require_dist_cjs$1 = require('./dist-cjs-ChKmbyib.cjs');
|
|
2
3
|
let node_crypto = require("node:crypto");
|
|
3
4
|
let node_os = require("node:os");
|
|
4
5
|
let node_fs = require("node:fs");
|
|
@@ -8,7 +9,7 @@ let node_fs_promises = require("node:fs/promises");
|
|
|
8
9
|
let node_zlib = require("node:zlib");
|
|
9
10
|
node_zlib = require_rolldown_runtime.__toESM(node_zlib);
|
|
10
11
|
|
|
11
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
12
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/middleware-stack/MiddlewareStack.js
|
|
12
13
|
var getAllAliases, getMiddlewareNameWithAliases, constructStack, stepWeights, priorityWeights;
|
|
13
14
|
var init_MiddlewareStack = require_rolldown_runtime.__esmMin((() => {
|
|
14
15
|
getAllAliases = (name, aliases) => {
|
|
@@ -272,114 +273,22 @@ var init_MiddlewareStack = require_rolldown_runtime.__esmMin((() => {
|
|
|
272
273
|
}));
|
|
273
274
|
|
|
274
275
|
//#endregion
|
|
275
|
-
//#region ../../node_modules/.pnpm/@smithy+
|
|
276
|
-
var require_dist_cjs = /* @__PURE__ */ require_rolldown_runtime.__commonJSMin(((exports) => {
|
|
277
|
-
var HttpAuthLocation;
|
|
278
|
-
(function(HttpAuthLocation) {
|
|
279
|
-
HttpAuthLocation["HEADER"] = "header";
|
|
280
|
-
HttpAuthLocation["QUERY"] = "query";
|
|
281
|
-
})(HttpAuthLocation || (HttpAuthLocation = {}));
|
|
282
|
-
var HttpApiKeyAuthLocation;
|
|
283
|
-
(function(HttpApiKeyAuthLocation) {
|
|
284
|
-
HttpApiKeyAuthLocation["HEADER"] = "header";
|
|
285
|
-
HttpApiKeyAuthLocation["QUERY"] = "query";
|
|
286
|
-
})(HttpApiKeyAuthLocation || (HttpApiKeyAuthLocation = {}));
|
|
287
|
-
var EndpointURLScheme;
|
|
288
|
-
(function(EndpointURLScheme) {
|
|
289
|
-
EndpointURLScheme["HTTP"] = "http";
|
|
290
|
-
EndpointURLScheme["HTTPS"] = "https";
|
|
291
|
-
})(EndpointURLScheme || (EndpointURLScheme = {}));
|
|
292
|
-
var AlgorithmId;
|
|
293
|
-
(function(AlgorithmId) {
|
|
294
|
-
AlgorithmId["MD5"] = "md5";
|
|
295
|
-
AlgorithmId["CRC32"] = "crc32";
|
|
296
|
-
AlgorithmId["CRC32C"] = "crc32c";
|
|
297
|
-
AlgorithmId["SHA1"] = "sha1";
|
|
298
|
-
AlgorithmId["SHA256"] = "sha256";
|
|
299
|
-
})(AlgorithmId || (AlgorithmId = {}));
|
|
300
|
-
const getChecksumConfiguration = (runtimeConfig) => {
|
|
301
|
-
const checksumAlgorithms = [];
|
|
302
|
-
if (runtimeConfig.sha256 !== undefined) {
|
|
303
|
-
checksumAlgorithms.push({
|
|
304
|
-
algorithmId: () => AlgorithmId.SHA256,
|
|
305
|
-
checksumConstructor: () => runtimeConfig.sha256
|
|
306
|
-
});
|
|
307
|
-
}
|
|
308
|
-
if (runtimeConfig.md5 != undefined) {
|
|
309
|
-
checksumAlgorithms.push({
|
|
310
|
-
algorithmId: () => AlgorithmId.MD5,
|
|
311
|
-
checksumConstructor: () => runtimeConfig.md5
|
|
312
|
-
});
|
|
313
|
-
}
|
|
314
|
-
return {
|
|
315
|
-
addChecksumAlgorithm(algo) {
|
|
316
|
-
checksumAlgorithms.push(algo);
|
|
317
|
-
},
|
|
318
|
-
checksumAlgorithms() {
|
|
319
|
-
return checksumAlgorithms;
|
|
320
|
-
}
|
|
321
|
-
};
|
|
322
|
-
};
|
|
323
|
-
const resolveChecksumRuntimeConfig = (clientConfig) => {
|
|
324
|
-
const runtimeConfig = {};
|
|
325
|
-
clientConfig.checksumAlgorithms().forEach((checksumAlgorithm) => {
|
|
326
|
-
runtimeConfig[checksumAlgorithm.algorithmId()] = checksumAlgorithm.checksumConstructor();
|
|
327
|
-
});
|
|
328
|
-
return runtimeConfig;
|
|
329
|
-
};
|
|
330
|
-
const getDefaultClientConfiguration = (runtimeConfig) => {
|
|
331
|
-
return getChecksumConfiguration(runtimeConfig);
|
|
332
|
-
};
|
|
333
|
-
const resolveDefaultRuntimeConfig = (config) => {
|
|
334
|
-
return resolveChecksumRuntimeConfig(config);
|
|
335
|
-
};
|
|
336
|
-
var FieldPosition;
|
|
337
|
-
(function(FieldPosition) {
|
|
338
|
-
FieldPosition[FieldPosition["HEADER"] = 0] = "HEADER";
|
|
339
|
-
FieldPosition[FieldPosition["TRAILER"] = 1] = "TRAILER";
|
|
340
|
-
})(FieldPosition || (FieldPosition = {}));
|
|
341
|
-
const SMITHY_CONTEXT_KEY = "__smithy_context";
|
|
342
|
-
var IniSectionType;
|
|
343
|
-
(function(IniSectionType) {
|
|
344
|
-
IniSectionType["PROFILE"] = "profile";
|
|
345
|
-
IniSectionType["SSO_SESSION"] = "sso-session";
|
|
346
|
-
IniSectionType["SERVICES"] = "services";
|
|
347
|
-
})(IniSectionType || (IniSectionType = {}));
|
|
348
|
-
var RequestHandlerProtocol;
|
|
349
|
-
(function(RequestHandlerProtocol) {
|
|
350
|
-
RequestHandlerProtocol["HTTP_0_9"] = "http/0.9";
|
|
351
|
-
RequestHandlerProtocol["HTTP_1_0"] = "http/1.0";
|
|
352
|
-
RequestHandlerProtocol["TDS_8_0"] = "tds/8.0";
|
|
353
|
-
})(RequestHandlerProtocol || (RequestHandlerProtocol = {}));
|
|
354
|
-
exports.AlgorithmId = AlgorithmId;
|
|
355
|
-
exports.EndpointURLScheme = EndpointURLScheme;
|
|
356
|
-
exports.FieldPosition = FieldPosition;
|
|
357
|
-
exports.HttpApiKeyAuthLocation = HttpApiKeyAuthLocation;
|
|
358
|
-
exports.HttpAuthLocation = HttpAuthLocation;
|
|
359
|
-
exports.IniSectionType = IniSectionType;
|
|
360
|
-
exports.RequestHandlerProtocol = RequestHandlerProtocol;
|
|
361
|
-
exports.SMITHY_CONTEXT_KEY = SMITHY_CONTEXT_KEY;
|
|
362
|
-
exports.getDefaultClientConfiguration = getDefaultClientConfiguration;
|
|
363
|
-
exports.resolveDefaultRuntimeConfig = resolveDefaultRuntimeConfig;
|
|
364
|
-
}));
|
|
365
|
-
|
|
366
|
-
//#endregion
|
|
367
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/getSmithyContext.js
|
|
276
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/getSmithyContext.js
|
|
368
277
|
var import_dist_cjs$6, getSmithyContext;
|
|
369
278
|
var init_getSmithyContext = require_rolldown_runtime.__esmMin((() => {
|
|
370
|
-
import_dist_cjs$6 = require_dist_cjs();
|
|
279
|
+
import_dist_cjs$6 = require_dist_cjs$1.require_dist_cjs();
|
|
371
280
|
getSmithyContext = (context) => context[import_dist_cjs$6.SMITHY_CONTEXT_KEY] || (context[import_dist_cjs$6.SMITHY_CONTEXT_KEY] = {});
|
|
372
281
|
}));
|
|
373
282
|
|
|
374
283
|
//#endregion
|
|
375
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
284
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/hasOwn.js
|
|
376
285
|
function hasOwn(o, k) {
|
|
377
286
|
return Object.prototype.hasOwnProperty.call(o, k);
|
|
378
287
|
}
|
|
379
288
|
var init_hasOwn = require_rolldown_runtime.__esmMin((() => {}));
|
|
380
289
|
|
|
381
290
|
//#endregion
|
|
382
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
291
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/httpRequest.js
|
|
383
292
|
function cloneQuery(query) {
|
|
384
293
|
return Object.keys(query).reduce((carry, paramName) => {
|
|
385
294
|
const param = query[paramName];
|
|
@@ -440,7 +349,7 @@ var init_httpRequest = require_rolldown_runtime.__esmMin((() => {
|
|
|
440
349
|
}));
|
|
441
350
|
|
|
442
351
|
//#endregion
|
|
443
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
352
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/httpResponse.js
|
|
444
353
|
var HttpResponse;
|
|
445
354
|
var init_httpResponse = require_rolldown_runtime.__esmMin((() => {
|
|
446
355
|
HttpResponse = class {
|
|
@@ -463,7 +372,7 @@ var init_httpResponse = require_rolldown_runtime.__esmMin((() => {
|
|
|
463
372
|
}));
|
|
464
373
|
|
|
465
374
|
//#endregion
|
|
466
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
375
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/isValidHostLabel.js
|
|
467
376
|
var VALID_HOST_LABEL_REGEX, isValidHostLabel;
|
|
468
377
|
var init_isValidHostLabel = require_rolldown_runtime.__esmMin((() => {
|
|
469
378
|
VALID_HOST_LABEL_REGEX = new RegExp(`^(?!.*-$)(?!-)[a-zA-Z0-9-]{1,63}$`);
|
|
@@ -482,7 +391,7 @@ var init_isValidHostLabel = require_rolldown_runtime.__esmMin((() => {
|
|
|
482
391
|
}));
|
|
483
392
|
|
|
484
393
|
//#endregion
|
|
485
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
394
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/isValidHostname.js
|
|
486
395
|
function isValidHostname(hostname) {
|
|
487
396
|
const hostPattern = /^[a-z0-9][a-z0-9.-]*[a-z0-9]$/;
|
|
488
397
|
return hostPattern.test(hostname);
|
|
@@ -490,7 +399,7 @@ function isValidHostname(hostname) {
|
|
|
490
399
|
var init_isValidHostname = require_rolldown_runtime.__esmMin((() => {}));
|
|
491
400
|
|
|
492
401
|
//#endregion
|
|
493
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
402
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/normalizeProvider.js
|
|
494
403
|
var normalizeProvider;
|
|
495
404
|
var init_normalizeProvider = require_rolldown_runtime.__esmMin((() => {
|
|
496
405
|
normalizeProvider = (input) => {
|
|
@@ -501,7 +410,7 @@ var init_normalizeProvider = require_rolldown_runtime.__esmMin((() => {
|
|
|
501
410
|
}));
|
|
502
411
|
|
|
503
412
|
//#endregion
|
|
504
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
413
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/parseQueryString.js
|
|
505
414
|
function parseQueryString(querystring) {
|
|
506
415
|
const query = {};
|
|
507
416
|
querystring = querystring.replace(/^\?/, "");
|
|
@@ -526,7 +435,7 @@ function parseQueryString(querystring) {
|
|
|
526
435
|
var init_parseQueryString = require_rolldown_runtime.__esmMin((() => {}));
|
|
527
436
|
|
|
528
437
|
//#endregion
|
|
529
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
438
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/parseUrl.js
|
|
530
439
|
var parseUrl;
|
|
531
440
|
var init_parseUrl = require_rolldown_runtime.__esmMin((() => {
|
|
532
441
|
init_parseQueryString();
|
|
@@ -550,7 +459,7 @@ var init_parseUrl = require_rolldown_runtime.__esmMin((() => {
|
|
|
550
459
|
}));
|
|
551
460
|
|
|
552
461
|
//#endregion
|
|
553
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
462
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/toEndpointV1.js
|
|
554
463
|
var toEndpointV1;
|
|
555
464
|
var init_toEndpointV1$1 = require_rolldown_runtime.__esmMin((() => {
|
|
556
465
|
init_hasOwn();
|
|
@@ -575,7 +484,7 @@ var init_toEndpointV1$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
575
484
|
}));
|
|
576
485
|
|
|
577
486
|
//#endregion
|
|
578
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
487
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/transport/index.js
|
|
579
488
|
var init_transport = require_rolldown_runtime.__esmMin((() => {
|
|
580
489
|
init_getSmithyContext();
|
|
581
490
|
init_hasOwn();
|
|
@@ -590,7 +499,7 @@ var init_transport = require_rolldown_runtime.__esmMin((() => {
|
|
|
590
499
|
}));
|
|
591
500
|
|
|
592
501
|
//#endregion
|
|
593
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
502
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/invalid-dependency/invalidFunction.js
|
|
594
503
|
var invalidFunction;
|
|
595
504
|
var init_invalidFunction = require_rolldown_runtime.__esmMin((() => {
|
|
596
505
|
invalidFunction = (message) => () => {
|
|
@@ -599,14 +508,14 @@ var init_invalidFunction = require_rolldown_runtime.__esmMin((() => {
|
|
|
599
508
|
}));
|
|
600
509
|
|
|
601
510
|
//#endregion
|
|
602
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
511
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/invalid-dependency/invalidProvider.js
|
|
603
512
|
var invalidProvider;
|
|
604
513
|
var init_invalidProvider = require_rolldown_runtime.__esmMin((() => {
|
|
605
514
|
invalidProvider = (message) => () => Promise.reject(message);
|
|
606
515
|
}));
|
|
607
516
|
|
|
608
517
|
//#endregion
|
|
609
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
518
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/circularReplacer.js
|
|
610
519
|
var getCircularReplacer;
|
|
611
520
|
var init_circularReplacer = require_rolldown_runtime.__esmMin((() => {
|
|
612
521
|
getCircularReplacer = () => {
|
|
@@ -624,7 +533,7 @@ var init_circularReplacer = require_rolldown_runtime.__esmMin((() => {
|
|
|
624
533
|
}));
|
|
625
534
|
|
|
626
535
|
//#endregion
|
|
627
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
536
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/sleep.js
|
|
628
537
|
var sleep;
|
|
629
538
|
var init_sleep = require_rolldown_runtime.__esmMin((() => {
|
|
630
539
|
sleep = (seconds) => {
|
|
@@ -633,7 +542,7 @@ var init_sleep = require_rolldown_runtime.__esmMin((() => {
|
|
|
633
542
|
}));
|
|
634
543
|
|
|
635
544
|
//#endregion
|
|
636
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
545
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/waiter.js
|
|
637
546
|
var waiterServiceDefaults, WaiterState, checkExceptions;
|
|
638
547
|
var init_waiter = require_rolldown_runtime.__esmMin((() => {
|
|
639
548
|
init_circularReplacer();
|
|
@@ -672,7 +581,7 @@ var init_waiter = require_rolldown_runtime.__esmMin((() => {
|
|
|
672
581
|
}));
|
|
673
582
|
|
|
674
583
|
//#endregion
|
|
675
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
584
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js
|
|
676
585
|
var runPolling, checkWarn403, createMessageFromResponse, exponentialBackoffWithJitter, randomInRange;
|
|
677
586
|
var init_poller = require_rolldown_runtime.__esmMin((() => {
|
|
678
587
|
init_circularReplacer();
|
|
@@ -774,7 +683,7 @@ var init_poller = require_rolldown_runtime.__esmMin((() => {
|
|
|
774
683
|
}));
|
|
775
684
|
|
|
776
685
|
//#endregion
|
|
777
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
686
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/validate.js
|
|
778
687
|
var validateWaiterOptions;
|
|
779
688
|
var init_validate = require_rolldown_runtime.__esmMin((() => {
|
|
780
689
|
validateWaiterOptions = (options) => {
|
|
@@ -793,7 +702,7 @@ var init_validate = require_rolldown_runtime.__esmMin((() => {
|
|
|
793
702
|
}));
|
|
794
703
|
|
|
795
704
|
//#endregion
|
|
796
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
705
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js
|
|
797
706
|
var abortTimeout, createWaiter;
|
|
798
707
|
var init_createWaiter = require_rolldown_runtime.__esmMin((() => {
|
|
799
708
|
init_poller();
|
|
@@ -846,7 +755,7 @@ var init_createWaiter = require_rolldown_runtime.__esmMin((() => {
|
|
|
846
755
|
}));
|
|
847
756
|
|
|
848
757
|
//#endregion
|
|
849
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
758
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js
|
|
850
759
|
var Client;
|
|
851
760
|
var init_client$1 = require_rolldown_runtime.__esmMin((() => {
|
|
852
761
|
init_MiddlewareStack();
|
|
@@ -898,7 +807,7 @@ var init_client$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
898
807
|
}));
|
|
899
808
|
|
|
900
809
|
//#endregion
|
|
901
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
810
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/deref.js
|
|
902
811
|
var deref;
|
|
903
812
|
var init_deref = require_rolldown_runtime.__esmMin((() => {
|
|
904
813
|
deref = (schemaRef) => {
|
|
@@ -910,7 +819,7 @@ var init_deref = require_rolldown_runtime.__esmMin((() => {
|
|
|
910
819
|
}));
|
|
911
820
|
|
|
912
821
|
//#endregion
|
|
913
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
822
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js
|
|
914
823
|
var operation;
|
|
915
824
|
var init_operation = require_rolldown_runtime.__esmMin((() => {
|
|
916
825
|
operation = (namespace, name, traits, input, output) => ({
|
|
@@ -923,7 +832,7 @@ var init_operation = require_rolldown_runtime.__esmMin((() => {
|
|
|
923
832
|
}));
|
|
924
833
|
|
|
925
834
|
//#endregion
|
|
926
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
835
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js
|
|
927
836
|
var schemaDeserializationMiddleware, findHeader$1;
|
|
928
837
|
var init_schemaDeserializationMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
929
838
|
init_transport();
|
|
@@ -988,7 +897,7 @@ var init_schemaDeserializationMiddleware = require_rolldown_runtime.__esmMin((()
|
|
|
988
897
|
}));
|
|
989
898
|
|
|
990
899
|
//#endregion
|
|
991
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
900
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js
|
|
992
901
|
var schemaSerializationMiddleware;
|
|
993
902
|
var init_schemaSerializationMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
994
903
|
init_transport();
|
|
@@ -1010,7 +919,7 @@ var init_schemaSerializationMiddleware = require_rolldown_runtime.__esmMin((() =
|
|
|
1010
919
|
}));
|
|
1011
920
|
|
|
1012
921
|
//#endregion
|
|
1013
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
922
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js
|
|
1014
923
|
function getSchemaSerdePlugin(config) {
|
|
1015
924
|
return { applyToStack: (commandStack) => {
|
|
1016
925
|
commandStack.add(schemaSerializationMiddleware(config), serializerMiddlewareOption$2);
|
|
@@ -1037,7 +946,7 @@ var init_getSchemaSerdePlugin = require_rolldown_runtime.__esmMin((() => {
|
|
|
1037
946
|
}));
|
|
1038
947
|
|
|
1039
948
|
//#endregion
|
|
1040
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
949
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js
|
|
1041
950
|
var Schema;
|
|
1042
951
|
var init_Schema = require_rolldown_runtime.__esmMin((() => {
|
|
1043
952
|
Schema = class {
|
|
@@ -1063,7 +972,7 @@ var init_Schema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1063
972
|
}));
|
|
1064
973
|
|
|
1065
974
|
//#endregion
|
|
1066
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
975
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js
|
|
1067
976
|
var ListSchema, list;
|
|
1068
977
|
var init_ListSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1069
978
|
init_Schema();
|
|
@@ -1081,7 +990,7 @@ var init_ListSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1081
990
|
}));
|
|
1082
991
|
|
|
1083
992
|
//#endregion
|
|
1084
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
993
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js
|
|
1085
994
|
var MapSchema, map$1;
|
|
1086
995
|
var init_MapSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1087
996
|
init_Schema();
|
|
@@ -1101,7 +1010,7 @@ var init_MapSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1101
1010
|
}));
|
|
1102
1011
|
|
|
1103
1012
|
//#endregion
|
|
1104
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1013
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js
|
|
1105
1014
|
var OperationSchema, op;
|
|
1106
1015
|
var init_OperationSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1107
1016
|
init_Schema();
|
|
@@ -1121,7 +1030,7 @@ var init_OperationSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1121
1030
|
}));
|
|
1122
1031
|
|
|
1123
1032
|
//#endregion
|
|
1124
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1033
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js
|
|
1125
1034
|
var StructureSchema, struct;
|
|
1126
1035
|
var init_StructureSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1127
1036
|
init_Schema();
|
|
@@ -1141,7 +1050,7 @@ var init_StructureSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1141
1050
|
}));
|
|
1142
1051
|
|
|
1143
1052
|
//#endregion
|
|
1144
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1053
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js
|
|
1145
1054
|
var ErrorSchema, error;
|
|
1146
1055
|
var init_ErrorSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1147
1056
|
init_Schema();
|
|
@@ -1162,7 +1071,7 @@ var init_ErrorSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1162
1071
|
}));
|
|
1163
1072
|
|
|
1164
1073
|
//#endregion
|
|
1165
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1074
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js
|
|
1166
1075
|
function translateTraits(indicator) {
|
|
1167
1076
|
if (typeof indicator === "object") {
|
|
1168
1077
|
return indicator;
|
|
@@ -1194,7 +1103,7 @@ var init_translateTraits = require_rolldown_runtime.__esmMin((() => {
|
|
|
1194
1103
|
}));
|
|
1195
1104
|
|
|
1196
1105
|
//#endregion
|
|
1197
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1106
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js
|
|
1198
1107
|
function member(memberSchema, memberName) {
|
|
1199
1108
|
if (memberSchema instanceof NormalizedSchema) {
|
|
1200
1109
|
return Object.assign(memberSchema, {
|
|
@@ -1485,7 +1394,7 @@ var init_NormalizedSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1485
1394
|
}));
|
|
1486
1395
|
|
|
1487
1396
|
//#endregion
|
|
1488
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1397
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js
|
|
1489
1398
|
var SimpleSchema, sim, simAdapter;
|
|
1490
1399
|
var init_SimpleSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1491
1400
|
init_Schema();
|
|
@@ -1509,7 +1418,7 @@ var init_SimpleSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1509
1418
|
}));
|
|
1510
1419
|
|
|
1511
1420
|
//#endregion
|
|
1512
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1421
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js
|
|
1513
1422
|
var SCHEMA;
|
|
1514
1423
|
var init_sentinels = require_rolldown_runtime.__esmMin((() => {
|
|
1515
1424
|
SCHEMA = {
|
|
@@ -1531,7 +1440,7 @@ var init_sentinels = require_rolldown_runtime.__esmMin((() => {
|
|
|
1531
1440
|
}));
|
|
1532
1441
|
|
|
1533
1442
|
//#endregion
|
|
1534
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1443
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js
|
|
1535
1444
|
var TypeRegistry;
|
|
1536
1445
|
var init_TypeRegistry = require_rolldown_runtime.__esmMin((() => {
|
|
1537
1446
|
TypeRegistry = class TypeRegistry {
|
|
@@ -1638,7 +1547,7 @@ var init_TypeRegistry = require_rolldown_runtime.__esmMin((() => {
|
|
|
1638
1547
|
}));
|
|
1639
1548
|
|
|
1640
1549
|
//#endregion
|
|
1641
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1550
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/schema/index.js
|
|
1642
1551
|
var schema_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
1643
1552
|
ErrorSchema: () => ErrorSchema,
|
|
1644
1553
|
ListSchema: () => ListSchema,
|
|
@@ -1686,7 +1595,7 @@ var init_schema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1686
1595
|
}));
|
|
1687
1596
|
|
|
1688
1597
|
//#endregion
|
|
1689
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1598
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/schemaLogFilter.js
|
|
1690
1599
|
function schemaLogFilter(schema, data) {
|
|
1691
1600
|
if (data == null) {
|
|
1692
1601
|
return data;
|
|
@@ -1724,10 +1633,10 @@ var init_schemaLogFilter = require_rolldown_runtime.__esmMin((() => {
|
|
|
1724
1633
|
}));
|
|
1725
1634
|
|
|
1726
1635
|
//#endregion
|
|
1727
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1636
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js
|
|
1728
1637
|
var import_dist_cjs$5, Command, ClassBuilder;
|
|
1729
1638
|
var init_command = require_rolldown_runtime.__esmMin((() => {
|
|
1730
|
-
import_dist_cjs$5 = require_dist_cjs();
|
|
1639
|
+
import_dist_cjs$5 = require_dist_cjs$1.require_dist_cjs();
|
|
1731
1640
|
init_MiddlewareStack();
|
|
1732
1641
|
init_schemaLogFilter();
|
|
1733
1642
|
Command = class {
|
|
@@ -1861,14 +1770,14 @@ var init_command = require_rolldown_runtime.__esmMin((() => {
|
|
|
1861
1770
|
}));
|
|
1862
1771
|
|
|
1863
1772
|
//#endregion
|
|
1864
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1773
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/constants.js
|
|
1865
1774
|
var SENSITIVE_STRING;
|
|
1866
1775
|
var init_constants$2 = require_rolldown_runtime.__esmMin((() => {
|
|
1867
1776
|
SENSITIVE_STRING = "***SensitiveInformation***";
|
|
1868
1777
|
}));
|
|
1869
1778
|
|
|
1870
1779
|
//#endregion
|
|
1871
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1780
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/create-aggregated-client.js
|
|
1872
1781
|
var createAggregatedClient;
|
|
1873
1782
|
var init_create_aggregated_client = require_rolldown_runtime.__esmMin((() => {
|
|
1874
1783
|
createAggregatedClient = (commands, Client, options) => {
|
|
@@ -1916,7 +1825,7 @@ var init_create_aggregated_client = require_rolldown_runtime.__esmMin((() => {
|
|
|
1916
1825
|
}));
|
|
1917
1826
|
|
|
1918
1827
|
//#endregion
|
|
1919
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1828
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/exceptions.js
|
|
1920
1829
|
var ServiceException, decorateServiceException;
|
|
1921
1830
|
var init_exceptions = require_rolldown_runtime.__esmMin((() => {
|
|
1922
1831
|
ServiceException = class ServiceException extends Error {
|
|
@@ -1965,7 +1874,7 @@ var init_exceptions = require_rolldown_runtime.__esmMin((() => {
|
|
|
1965
1874
|
}));
|
|
1966
1875
|
|
|
1967
1876
|
//#endregion
|
|
1968
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1877
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/default-error-handler.js
|
|
1969
1878
|
var throwDefaultError, withBaseException, deserializeMetadata;
|
|
1970
1879
|
var init_default_error_handler = require_rolldown_runtime.__esmMin((() => {
|
|
1971
1880
|
init_exceptions();
|
|
@@ -1998,7 +1907,7 @@ var init_default_error_handler = require_rolldown_runtime.__esmMin((() => {
|
|
|
1998
1907
|
}));
|
|
1999
1908
|
|
|
2000
1909
|
//#endregion
|
|
2001
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1910
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/defaults-mode.js
|
|
2002
1911
|
var loadConfigsForDefaultMode;
|
|
2003
1912
|
var init_defaults_mode = require_rolldown_runtime.__esmMin((() => {
|
|
2004
1913
|
loadConfigsForDefaultMode = (mode) => {
|
|
@@ -2025,7 +1934,7 @@ var init_defaults_mode = require_rolldown_runtime.__esmMin((() => {
|
|
|
2025
1934
|
}));
|
|
2026
1935
|
|
|
2027
1936
|
//#endregion
|
|
2028
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1937
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.js
|
|
2029
1938
|
var warningEmitted, emitWarningIfUnsupportedVersion;
|
|
2030
1939
|
var init_emitWarningIfUnsupportedVersion = require_rolldown_runtime.__esmMin((() => {
|
|
2031
1940
|
warningEmitted = false;
|
|
@@ -2037,11 +1946,11 @@ var init_emitWarningIfUnsupportedVersion = require_rolldown_runtime.__esmMin((()
|
|
|
2037
1946
|
}));
|
|
2038
1947
|
|
|
2039
1948
|
//#endregion
|
|
2040
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1949
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js
|
|
2041
1950
|
var import_dist_cjs$4, knownAlgorithms, getChecksumConfiguration, resolveChecksumRuntimeConfig;
|
|
2042
1951
|
var init_checksum$1 = require_rolldown_runtime.__esmMin((() => {
|
|
2043
1952
|
init_transport();
|
|
2044
|
-
import_dist_cjs$4 = require_dist_cjs();
|
|
1953
|
+
import_dist_cjs$4 = require_dist_cjs$1.require_dist_cjs();
|
|
2045
1954
|
knownAlgorithms = Object.values(import_dist_cjs$4.AlgorithmId);
|
|
2046
1955
|
getChecksumConfiguration = (runtimeConfig) => {
|
|
2047
1956
|
const checksumAlgorithms = [];
|
|
@@ -2092,7 +2001,7 @@ var init_checksum$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2092
2001
|
}));
|
|
2093
2002
|
|
|
2094
2003
|
//#endregion
|
|
2095
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2004
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/retry.js
|
|
2096
2005
|
var getRetryConfiguration, resolveRetryRuntimeConfig;
|
|
2097
2006
|
var init_retry = require_rolldown_runtime.__esmMin((() => {
|
|
2098
2007
|
getRetryConfiguration = (runtimeConfig) => {
|
|
@@ -2113,7 +2022,7 @@ var init_retry = require_rolldown_runtime.__esmMin((() => {
|
|
|
2113
2022
|
}));
|
|
2114
2023
|
|
|
2115
2024
|
//#endregion
|
|
2116
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2025
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js
|
|
2117
2026
|
var getDefaultExtensionConfiguration, getDefaultClientConfiguration, resolveDefaultRuntimeConfig;
|
|
2118
2027
|
var init_defaultExtensionConfiguration = require_rolldown_runtime.__esmMin((() => {
|
|
2119
2028
|
init_checksum$1();
|
|
@@ -2128,14 +2037,14 @@ var init_defaultExtensionConfiguration = require_rolldown_runtime.__esmMin((() =
|
|
|
2128
2037
|
}));
|
|
2129
2038
|
|
|
2130
2039
|
//#endregion
|
|
2131
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2040
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-array-if-single-item.js
|
|
2132
2041
|
var getArrayIfSingleItem;
|
|
2133
2042
|
var init_get_array_if_single_item = require_rolldown_runtime.__esmMin((() => {
|
|
2134
2043
|
getArrayIfSingleItem = (mayBeArray) => Array.isArray(mayBeArray) ? mayBeArray : [mayBeArray];
|
|
2135
2044
|
}));
|
|
2136
2045
|
|
|
2137
2046
|
//#endregion
|
|
2138
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2047
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js
|
|
2139
2048
|
var getValueFromTextNode;
|
|
2140
2049
|
var init_get_value_from_text_node = require_rolldown_runtime.__esmMin((() => {
|
|
2141
2050
|
init_transport();
|
|
@@ -2154,7 +2063,7 @@ var init_get_value_from_text_node = require_rolldown_runtime.__esmMin((() => {
|
|
|
2154
2063
|
}));
|
|
2155
2064
|
|
|
2156
2065
|
//#endregion
|
|
2157
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2066
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/is-serializable-header-value.js
|
|
2158
2067
|
var isSerializableHeaderValue;
|
|
2159
2068
|
var init_is_serializable_header_value = require_rolldown_runtime.__esmMin((() => {
|
|
2160
2069
|
isSerializableHeaderValue = (value) => {
|
|
@@ -2163,7 +2072,7 @@ var init_is_serializable_header_value = require_rolldown_runtime.__esmMin((() =>
|
|
|
2163
2072
|
}));
|
|
2164
2073
|
|
|
2165
2074
|
//#endregion
|
|
2166
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2075
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/NoOpLogger.js
|
|
2167
2076
|
var NoOpLogger;
|
|
2168
2077
|
var init_NoOpLogger = require_rolldown_runtime.__esmMin((() => {
|
|
2169
2078
|
NoOpLogger = class {
|
|
@@ -2176,7 +2085,7 @@ var init_NoOpLogger = require_rolldown_runtime.__esmMin((() => {
|
|
|
2176
2085
|
}));
|
|
2177
2086
|
|
|
2178
2087
|
//#endregion
|
|
2179
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2088
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/object-mapping.js
|
|
2180
2089
|
function map(arg0, arg1, arg2) {
|
|
2181
2090
|
let target;
|
|
2182
2091
|
let filter;
|
|
@@ -2271,7 +2180,7 @@ var init_object_mapping = require_rolldown_runtime.__esmMin((() => {
|
|
|
2271
2180
|
}));
|
|
2272
2181
|
|
|
2273
2182
|
//#endregion
|
|
2274
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2183
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/ser-utils.js
|
|
2275
2184
|
var serializeFloat, serializeDateTime;
|
|
2276
2185
|
var init_ser_utils = require_rolldown_runtime.__esmMin((() => {
|
|
2277
2186
|
serializeFloat = (value) => {
|
|
@@ -2288,7 +2197,7 @@ var init_ser_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
2288
2197
|
}));
|
|
2289
2198
|
|
|
2290
2199
|
//#endregion
|
|
2291
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2200
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/serde-json.js
|
|
2292
2201
|
var _json;
|
|
2293
2202
|
var init_serde_json = require_rolldown_runtime.__esmMin((() => {
|
|
2294
2203
|
init_transport();
|
|
@@ -2315,7 +2224,7 @@ var init_serde_json = require_rolldown_runtime.__esmMin((() => {
|
|
|
2315
2224
|
}));
|
|
2316
2225
|
|
|
2317
2226
|
//#endregion
|
|
2318
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2227
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js
|
|
2319
2228
|
function makeBuilder(common, service, name, ep) {
|
|
2320
2229
|
return function makeCommand(added, plugins, op, $, smithyContext = {}) {
|
|
2321
2230
|
const epMerged = Object.assign({}, common, added);
|
|
@@ -2331,7 +2240,7 @@ var init_client_command_builder = require_rolldown_runtime.__esmMin((() => {
|
|
|
2331
2240
|
}));
|
|
2332
2241
|
|
|
2333
2242
|
//#endregion
|
|
2334
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2243
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/client/index.js
|
|
2335
2244
|
var client_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
2336
2245
|
AlgorithmId: () => import_dist_cjs$4.AlgorithmId,
|
|
2337
2246
|
Client: () => Client,
|
|
@@ -2403,14 +2312,14 @@ var init_client = require_rolldown_runtime.__esmMin((() => {
|
|
|
2403
2312
|
}));
|
|
2404
2313
|
|
|
2405
2314
|
//#endregion
|
|
2406
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2315
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/is-array-buffer/is-array-buffer.js
|
|
2407
2316
|
var isArrayBuffer;
|
|
2408
2317
|
var init_is_array_buffer = require_rolldown_runtime.__esmMin((() => {
|
|
2409
2318
|
isArrayBuffer = (arg) => typeof ArrayBuffer === "function" && arg instanceof ArrayBuffer || Object.prototype.toString.call(arg) === "[object ArrayBuffer]";
|
|
2410
2319
|
}));
|
|
2411
2320
|
|
|
2412
2321
|
//#endregion
|
|
2413
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2322
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js
|
|
2414
2323
|
var fromArrayBuffer, fromString;
|
|
2415
2324
|
var init_buffer_from = require_rolldown_runtime.__esmMin((() => {
|
|
2416
2325
|
init_is_array_buffer();
|
|
@@ -2429,7 +2338,7 @@ var init_buffer_from = require_rolldown_runtime.__esmMin((() => {
|
|
|
2429
2338
|
}));
|
|
2430
2339
|
|
|
2431
2340
|
//#endregion
|
|
2432
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2341
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js
|
|
2433
2342
|
var BASE64_REGEX, fromBase64;
|
|
2434
2343
|
var init_fromBase64 = require_rolldown_runtime.__esmMin((() => {
|
|
2435
2344
|
init_buffer_from();
|
|
@@ -2447,7 +2356,7 @@ var init_fromBase64 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2447
2356
|
}));
|
|
2448
2357
|
|
|
2449
2358
|
//#endregion
|
|
2450
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2359
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js
|
|
2451
2360
|
var fromUtf8$1;
|
|
2452
2361
|
var init_fromUtf8 = require_rolldown_runtime.__esmMin((() => {
|
|
2453
2362
|
init_buffer_from();
|
|
@@ -2458,7 +2367,7 @@ var init_fromUtf8 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2458
2367
|
}));
|
|
2459
2368
|
|
|
2460
2369
|
//#endregion
|
|
2461
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2370
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js
|
|
2462
2371
|
var toBase64$1;
|
|
2463
2372
|
var init_toBase64 = require_rolldown_runtime.__esmMin((() => {
|
|
2464
2373
|
init_buffer_from();
|
|
@@ -2478,7 +2387,7 @@ var init_toBase64 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2478
2387
|
}));
|
|
2479
2388
|
|
|
2480
2389
|
//#endregion
|
|
2481
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2390
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js
|
|
2482
2391
|
function bindUint8ArrayBlobAdapter(toUtf8, fromUtf8, toBase64, fromBase64) {
|
|
2483
2392
|
return class Uint8ArrayBlobAdapter extends Uint8Array {
|
|
2484
2393
|
static fromString(source, encoding = "utf-8") {
|
|
@@ -2505,7 +2414,7 @@ function bindUint8ArrayBlobAdapter(toUtf8, fromUtf8, toBase64, fromBase64) {
|
|
|
2505
2414
|
var init_Uint8ArrayBlobAdapter = require_rolldown_runtime.__esmMin((() => {}));
|
|
2506
2415
|
|
|
2507
2416
|
//#endregion
|
|
2508
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2417
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js
|
|
2509
2418
|
var toUtf8$1;
|
|
2510
2419
|
var init_toUtf8 = require_rolldown_runtime.__esmMin((() => {
|
|
2511
2420
|
init_buffer_from();
|
|
@@ -2521,7 +2430,7 @@ var init_toUtf8 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2521
2430
|
}));
|
|
2522
2431
|
|
|
2523
2432
|
//#endregion
|
|
2524
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2433
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js
|
|
2525
2434
|
function bindV4(getRandomValues) {
|
|
2526
2435
|
if (typeof crypto !== "undefined" && typeof crypto.randomUUID === "function") {
|
|
2527
2436
|
return () => crypto.randomUUID();
|
|
@@ -2540,14 +2449,14 @@ var init_v4 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2540
2449
|
}));
|
|
2541
2450
|
|
|
2542
2451
|
//#endregion
|
|
2543
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2452
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js
|
|
2544
2453
|
var copyDocumentWithTransform;
|
|
2545
2454
|
var init_copyDocumentWithTransform = require_rolldown_runtime.__esmMin((() => {
|
|
2546
2455
|
copyDocumentWithTransform = (source, _schemaRef, _transform = (_) => _) => source;
|
|
2547
2456
|
}));
|
|
2548
2457
|
|
|
2549
2458
|
//#endregion
|
|
2550
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2459
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js
|
|
2551
2460
|
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;
|
|
2552
2461
|
var init_parse_utils = require_rolldown_runtime.__esmMin((() => {
|
|
2553
2462
|
init_transport();
|
|
@@ -2776,7 +2685,7 @@ var init_parse_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
2776
2685
|
}));
|
|
2777
2686
|
|
|
2778
2687
|
//#endregion
|
|
2779
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2688
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js
|
|
2780
2689
|
function dateToUtcString(date) {
|
|
2781
2690
|
const year = date.getUTCFullYear();
|
|
2782
2691
|
const month = date.getUTCMonth();
|
|
@@ -3021,7 +2930,7 @@ var init_date_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
3021
2930
|
}));
|
|
3022
2931
|
|
|
3023
2932
|
//#endregion
|
|
3024
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2933
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js
|
|
3025
2934
|
var LazyJsonString;
|
|
3026
2935
|
var init_lazy_json = require_rolldown_runtime.__esmMin((() => {
|
|
3027
2936
|
LazyJsonString = function LazyJsonString(val) {
|
|
@@ -3050,7 +2959,7 @@ var init_lazy_json = require_rolldown_runtime.__esmMin((() => {
|
|
|
3050
2959
|
}));
|
|
3051
2960
|
|
|
3052
2961
|
//#endregion
|
|
3053
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2962
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js
|
|
3054
2963
|
function quoteHeader(part) {
|
|
3055
2964
|
if (part.includes(",") || part.includes("\"")) {
|
|
3056
2965
|
part = `"${part.replace(/"/g, "\\\"")}"`;
|
|
@@ -3060,7 +2969,7 @@ function quoteHeader(part) {
|
|
|
3060
2969
|
var init_quote_header = require_rolldown_runtime.__esmMin((() => {}));
|
|
3061
2970
|
|
|
3062
2971
|
//#endregion
|
|
3063
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2972
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js
|
|
3064
2973
|
function range(v, min, max) {
|
|
3065
2974
|
const _v = Number(v);
|
|
3066
2975
|
if (_v < min || _v > max) {
|
|
@@ -3181,7 +3090,7 @@ var init_schema_date_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
3181
3090
|
}));
|
|
3182
3091
|
|
|
3183
3092
|
//#endregion
|
|
3184
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3093
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js
|
|
3185
3094
|
function splitEvery(value, delimiter, numDelimiters) {
|
|
3186
3095
|
if (numDelimiters <= 0 || !Number.isInteger(numDelimiters)) {
|
|
3187
3096
|
throw new Error("Invalid number of delimiters (" + numDelimiters + ") for splitEvery.");
|
|
@@ -3211,7 +3120,7 @@ function splitEvery(value, delimiter, numDelimiters) {
|
|
|
3211
3120
|
var init_split_every = require_rolldown_runtime.__esmMin((() => {}));
|
|
3212
3121
|
|
|
3213
3122
|
//#endregion
|
|
3214
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3123
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js
|
|
3215
3124
|
var splitHeader;
|
|
3216
3125
|
var init_split_header = require_rolldown_runtime.__esmMin((() => {
|
|
3217
3126
|
splitHeader = (value) => {
|
|
@@ -3254,7 +3163,7 @@ var init_split_header = require_rolldown_runtime.__esmMin((() => {
|
|
|
3254
3163
|
}));
|
|
3255
3164
|
|
|
3256
3165
|
//#endregion
|
|
3257
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3166
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js
|
|
3258
3167
|
function nv(input) {
|
|
3259
3168
|
return new NumericValue(String(input), "bigDecimal");
|
|
3260
3169
|
}
|
|
@@ -3285,7 +3194,7 @@ var init_NumericValue = require_rolldown_runtime.__esmMin((() => {
|
|
|
3285
3194
|
}));
|
|
3286
3195
|
|
|
3287
3196
|
//#endregion
|
|
3288
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3197
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js
|
|
3289
3198
|
function fromHex(encoded) {
|
|
3290
3199
|
if (encoded.length % 2 !== 0) {
|
|
3291
3200
|
throw new Error("Hex encoded strings must have an even number length");
|
|
@@ -3323,7 +3232,7 @@ var init_hex_encoding = require_rolldown_runtime.__esmMin((() => {
|
|
|
3323
3232
|
}));
|
|
3324
3233
|
|
|
3325
3234
|
//#endregion
|
|
3326
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3235
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js
|
|
3327
3236
|
var calculateBodyLength;
|
|
3328
3237
|
var init_calculateBodyLength = require_rolldown_runtime.__esmMin((() => {
|
|
3329
3238
|
calculateBodyLength = (body) => {
|
|
@@ -3350,7 +3259,7 @@ var init_calculateBodyLength = require_rolldown_runtime.__esmMin((() => {
|
|
|
3350
3259
|
}));
|
|
3351
3260
|
|
|
3352
3261
|
//#endregion
|
|
3353
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3262
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.js
|
|
3354
3263
|
var toUint8Array;
|
|
3355
3264
|
var init_toUint8Array = require_rolldown_runtime.__esmMin((() => {
|
|
3356
3265
|
init_fromUtf8();
|
|
@@ -3369,7 +3278,7 @@ var init_toUint8Array = require_rolldown_runtime.__esmMin((() => {
|
|
|
3369
3278
|
}));
|
|
3370
3279
|
|
|
3371
3280
|
//#endregion
|
|
3372
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3281
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/concatBytes.js
|
|
3373
3282
|
function concatBytes(arrays, length) {
|
|
3374
3283
|
if (length === undefined) {
|
|
3375
3284
|
length = 0;
|
|
@@ -3388,7 +3297,7 @@ function concatBytes(arrays, length) {
|
|
|
3388
3297
|
var init_concatBytes = require_rolldown_runtime.__esmMin((() => {}));
|
|
3389
3298
|
|
|
3390
3299
|
//#endregion
|
|
3391
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3300
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js
|
|
3392
3301
|
var deserializerMiddleware, findHeader;
|
|
3393
3302
|
var init_deserializerMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
3394
3303
|
init_transport();
|
|
@@ -3447,7 +3356,7 @@ var init_deserializerMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
|
3447
3356
|
}));
|
|
3448
3357
|
|
|
3449
3358
|
//#endregion
|
|
3450
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3359
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/property-provider/ProviderError.js
|
|
3451
3360
|
var ProviderError;
|
|
3452
3361
|
var init_ProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
3453
3362
|
ProviderError = class ProviderError extends Error {
|
|
@@ -3475,7 +3384,7 @@ var init_ProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
|
3475
3384
|
}));
|
|
3476
3385
|
|
|
3477
3386
|
//#endregion
|
|
3478
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3387
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/property-provider/CredentialsProviderError.js
|
|
3479
3388
|
var CredentialsProviderError;
|
|
3480
3389
|
var init_CredentialsProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
3481
3390
|
init_ProviderError();
|
|
@@ -3489,7 +3398,7 @@ var init_CredentialsProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
|
3489
3398
|
}));
|
|
3490
3399
|
|
|
3491
3400
|
//#endregion
|
|
3492
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3401
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/property-provider/TokenProviderError.js
|
|
3493
3402
|
var TokenProviderError;
|
|
3494
3403
|
var init_TokenProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
3495
3404
|
init_ProviderError();
|
|
@@ -3503,7 +3412,7 @@ var init_TokenProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
|
3503
3412
|
}));
|
|
3504
3413
|
|
|
3505
3414
|
//#endregion
|
|
3506
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3415
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/property-provider/chain.js
|
|
3507
3416
|
var chain;
|
|
3508
3417
|
var init_chain = require_rolldown_runtime.__esmMin((() => {
|
|
3509
3418
|
init_ProviderError();
|
|
@@ -3529,14 +3438,14 @@ var init_chain = require_rolldown_runtime.__esmMin((() => {
|
|
|
3529
3438
|
}));
|
|
3530
3439
|
|
|
3531
3440
|
//#endregion
|
|
3532
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3441
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js
|
|
3533
3442
|
var fromValue;
|
|
3534
3443
|
var init_fromValue = require_rolldown_runtime.__esmMin((() => {
|
|
3535
3444
|
fromValue = (staticValue) => () => Promise.resolve(staticValue);
|
|
3536
3445
|
}));
|
|
3537
3446
|
|
|
3538
3447
|
//#endregion
|
|
3539
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3448
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/property-provider/memoize.js
|
|
3540
3449
|
var memoize;
|
|
3541
3450
|
var init_memoize = require_rolldown_runtime.__esmMin((() => {
|
|
3542
3451
|
memoize = (provider, isExpired, requiresRefresh) => {
|
|
@@ -3586,7 +3495,7 @@ var init_memoize = require_rolldown_runtime.__esmMin((() => {
|
|
|
3586
3495
|
}));
|
|
3587
3496
|
|
|
3588
3497
|
//#endregion
|
|
3589
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3498
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/booleanSelector.js
|
|
3590
3499
|
var booleanSelector;
|
|
3591
3500
|
var init_booleanSelector = require_rolldown_runtime.__esmMin((() => {
|
|
3592
3501
|
booleanSelector = (obj, key, type) => {
|
|
@@ -3598,7 +3507,7 @@ var init_booleanSelector = require_rolldown_runtime.__esmMin((() => {
|
|
|
3598
3507
|
}));
|
|
3599
3508
|
|
|
3600
3509
|
//#endregion
|
|
3601
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3510
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/numberSelector.js
|
|
3602
3511
|
var numberSelector;
|
|
3603
3512
|
var init_numberSelector = require_rolldown_runtime.__esmMin((() => {
|
|
3604
3513
|
numberSelector = (obj, key, type) => {
|
|
@@ -3612,7 +3521,7 @@ var init_numberSelector = require_rolldown_runtime.__esmMin((() => {
|
|
|
3612
3521
|
}));
|
|
3613
3522
|
|
|
3614
3523
|
//#endregion
|
|
3615
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3524
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/types.js
|
|
3616
3525
|
var SelectorType;
|
|
3617
3526
|
var init_types$1 = require_rolldown_runtime.__esmMin((() => {
|
|
3618
3527
|
;
|
|
@@ -3623,7 +3532,7 @@ var init_types$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
3623
3532
|
}));
|
|
3624
3533
|
|
|
3625
3534
|
//#endregion
|
|
3626
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3535
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js
|
|
3627
3536
|
var homeDirCache, getHomeDirCacheKey, getHomeDir;
|
|
3628
3537
|
var init_getHomeDir = require_rolldown_runtime.__esmMin((() => {
|
|
3629
3538
|
homeDirCache = {};
|
|
@@ -3645,7 +3554,7 @@ var init_getHomeDir = require_rolldown_runtime.__esmMin((() => {
|
|
|
3645
3554
|
}));
|
|
3646
3555
|
|
|
3647
3556
|
//#endregion
|
|
3648
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3557
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getProfileName.js
|
|
3649
3558
|
var ENV_PROFILE, DEFAULT_PROFILE, getProfileName;
|
|
3650
3559
|
var init_getProfileName = require_rolldown_runtime.__esmMin((() => {
|
|
3651
3560
|
ENV_PROFILE = "AWS_PROFILE";
|
|
@@ -3654,7 +3563,7 @@ var init_getProfileName = require_rolldown_runtime.__esmMin((() => {
|
|
|
3654
3563
|
}));
|
|
3655
3564
|
|
|
3656
3565
|
//#endregion
|
|
3657
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3566
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js
|
|
3658
3567
|
var getSSOTokenFilepath;
|
|
3659
3568
|
var init_getSSOTokenFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
3660
3569
|
init_getHomeDir();
|
|
@@ -3666,7 +3575,7 @@ var init_getSSOTokenFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
|
3666
3575
|
}));
|
|
3667
3576
|
|
|
3668
3577
|
//#endregion
|
|
3669
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3578
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js
|
|
3670
3579
|
var tokenIntercept, getSSOTokenFromFile;
|
|
3671
3580
|
var init_getSSOTokenFromFile = require_rolldown_runtime.__esmMin((() => {
|
|
3672
3581
|
init_getSSOTokenFilepath();
|
|
@@ -3682,17 +3591,17 @@ var init_getSSOTokenFromFile = require_rolldown_runtime.__esmMin((() => {
|
|
|
3682
3591
|
}));
|
|
3683
3592
|
|
|
3684
3593
|
//#endregion
|
|
3685
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3594
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/constants.js
|
|
3686
3595
|
var CONFIG_PREFIX_SEPARATOR;
|
|
3687
3596
|
var init_constants$1 = require_rolldown_runtime.__esmMin((() => {
|
|
3688
3597
|
CONFIG_PREFIX_SEPARATOR = ".";
|
|
3689
3598
|
}));
|
|
3690
3599
|
|
|
3691
3600
|
//#endregion
|
|
3692
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3601
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigData.js
|
|
3693
3602
|
var import_dist_cjs$3, getConfigData;
|
|
3694
3603
|
var init_getConfigData = require_rolldown_runtime.__esmMin((() => {
|
|
3695
|
-
import_dist_cjs$3 = require_dist_cjs();
|
|
3604
|
+
import_dist_cjs$3 = require_dist_cjs$1.require_dist_cjs();
|
|
3696
3605
|
init_constants$1();
|
|
3697
3606
|
getConfigData = (data) => Object.entries(data).filter(([key]) => {
|
|
3698
3607
|
const indexOfSeparator = key.indexOf(".");
|
|
@@ -3709,7 +3618,7 @@ var init_getConfigData = require_rolldown_runtime.__esmMin((() => {
|
|
|
3709
3618
|
}));
|
|
3710
3619
|
|
|
3711
3620
|
//#endregion
|
|
3712
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3621
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigFilepath.js
|
|
3713
3622
|
var ENV_CONFIG_PATH, getConfigFilepath;
|
|
3714
3623
|
var init_getConfigFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
3715
3624
|
init_getHomeDir();
|
|
@@ -3718,7 +3627,7 @@ var init_getConfigFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
|
3718
3627
|
}));
|
|
3719
3628
|
|
|
3720
3629
|
//#endregion
|
|
3721
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3630
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getCredentialsFilepath.js
|
|
3722
3631
|
var ENV_CREDENTIALS_PATH, getCredentialsFilepath;
|
|
3723
3632
|
var init_getCredentialsFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
3724
3633
|
init_getHomeDir();
|
|
@@ -3727,10 +3636,10 @@ var init_getCredentialsFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
|
3727
3636
|
}));
|
|
3728
3637
|
|
|
3729
3638
|
//#endregion
|
|
3730
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3639
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/parseIni.js
|
|
3731
3640
|
var import_dist_cjs$2, prefixKeyRegex, profileNameBlockList, parseIni;
|
|
3732
3641
|
var init_parseIni = require_rolldown_runtime.__esmMin((() => {
|
|
3733
|
-
import_dist_cjs$2 = require_dist_cjs();
|
|
3642
|
+
import_dist_cjs$2 = require_dist_cjs$1.require_dist_cjs();
|
|
3734
3643
|
init_constants$1();
|
|
3735
3644
|
prefixKeyRegex = /^([\w-]+)\s(["'])?([\w-@+.%:/]+)\2$/;
|
|
3736
3645
|
profileNameBlockList = ["__proto__", "profile __proto__"];
|
|
@@ -3779,7 +3688,7 @@ var init_parseIni = require_rolldown_runtime.__esmMin((() => {
|
|
|
3779
3688
|
}));
|
|
3780
3689
|
|
|
3781
3690
|
//#endregion
|
|
3782
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3691
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/readFile.js
|
|
3783
3692
|
var filePromises, fileIntercept, readFile;
|
|
3784
3693
|
var init_readFile = require_rolldown_runtime.__esmMin((() => {
|
|
3785
3694
|
filePromises = {};
|
|
@@ -3796,7 +3705,7 @@ var init_readFile = require_rolldown_runtime.__esmMin((() => {
|
|
|
3796
3705
|
}));
|
|
3797
3706
|
|
|
3798
3707
|
//#endregion
|
|
3799
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3708
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js
|
|
3800
3709
|
var swallowError$1, loadSharedConfigFiles;
|
|
3801
3710
|
var init_loadSharedConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
3802
3711
|
init_getConfigData();
|
|
@@ -3828,10 +3737,10 @@ var init_loadSharedConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
|
3828
3737
|
}));
|
|
3829
3738
|
|
|
3830
3739
|
//#endregion
|
|
3831
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3740
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSsoSessionData.js
|
|
3832
3741
|
var import_dist_cjs$1, getSsoSessionData;
|
|
3833
3742
|
var init_getSsoSessionData = require_rolldown_runtime.__esmMin((() => {
|
|
3834
|
-
import_dist_cjs$1 = require_dist_cjs();
|
|
3743
|
+
import_dist_cjs$1 = require_dist_cjs$1.require_dist_cjs();
|
|
3835
3744
|
init_loadSharedConfigFiles();
|
|
3836
3745
|
getSsoSessionData = (data) => Object.entries(data).filter(([key]) => key.startsWith(import_dist_cjs$1.IniSectionType.SSO_SESSION + ".")).reduce((acc, [key, value]) => ({
|
|
3837
3746
|
...acc,
|
|
@@ -3840,7 +3749,7 @@ var init_getSsoSessionData = require_rolldown_runtime.__esmMin((() => {
|
|
|
3840
3749
|
}));
|
|
3841
3750
|
|
|
3842
3751
|
//#endregion
|
|
3843
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3752
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSsoSessionData.js
|
|
3844
3753
|
var swallowError, loadSsoSessionData;
|
|
3845
3754
|
var init_loadSsoSessionData = require_rolldown_runtime.__esmMin((() => {
|
|
3846
3755
|
init_getConfigFilepath();
|
|
@@ -3852,7 +3761,7 @@ var init_loadSsoSessionData = require_rolldown_runtime.__esmMin((() => {
|
|
|
3852
3761
|
}));
|
|
3853
3762
|
|
|
3854
3763
|
//#endregion
|
|
3855
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3764
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/mergeConfigFiles.js
|
|
3856
3765
|
var mergeConfigFiles;
|
|
3857
3766
|
var init_mergeConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
3858
3767
|
mergeConfigFiles = (...files) => {
|
|
@@ -3871,7 +3780,7 @@ var init_mergeConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
|
3871
3780
|
}));
|
|
3872
3781
|
|
|
3873
3782
|
//#endregion
|
|
3874
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3783
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/parseKnownFiles.js
|
|
3875
3784
|
var parseKnownFiles;
|
|
3876
3785
|
var init_parseKnownFiles = require_rolldown_runtime.__esmMin((() => {
|
|
3877
3786
|
init_loadSharedConfigFiles();
|
|
@@ -3883,7 +3792,7 @@ var init_parseKnownFiles = require_rolldown_runtime.__esmMin((() => {
|
|
|
3883
3792
|
}));
|
|
3884
3793
|
|
|
3885
3794
|
//#endregion
|
|
3886
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3795
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/externalDataInterceptor.js
|
|
3887
3796
|
var externalDataInterceptor;
|
|
3888
3797
|
var init_externalDataInterceptor = require_rolldown_runtime.__esmMin((() => {
|
|
3889
3798
|
init_getSSOTokenFromFile();
|
|
@@ -3905,7 +3814,7 @@ var init_externalDataInterceptor = require_rolldown_runtime.__esmMin((() => {
|
|
|
3905
3814
|
}));
|
|
3906
3815
|
|
|
3907
3816
|
//#endregion
|
|
3908
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3817
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/getSelectorName.js
|
|
3909
3818
|
function getSelectorName(functionString) {
|
|
3910
3819
|
try {
|
|
3911
3820
|
const constants = new Set(Array.from(functionString.match(/([A-Z_]){3,}/g) ?? []));
|
|
@@ -3920,7 +3829,7 @@ function getSelectorName(functionString) {
|
|
|
3920
3829
|
var init_getSelectorName = require_rolldown_runtime.__esmMin((() => {}));
|
|
3921
3830
|
|
|
3922
3831
|
//#endregion
|
|
3923
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3832
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js
|
|
3924
3833
|
var fromEnv;
|
|
3925
3834
|
var init_fromEnv = require_rolldown_runtime.__esmMin((() => {
|
|
3926
3835
|
init_CredentialsProviderError();
|
|
@@ -3939,7 +3848,7 @@ var init_fromEnv = require_rolldown_runtime.__esmMin((() => {
|
|
|
3939
3848
|
}));
|
|
3940
3849
|
|
|
3941
3850
|
//#endregion
|
|
3942
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3851
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js
|
|
3943
3852
|
var fromSharedConfigFiles;
|
|
3944
3853
|
var init_fromSharedConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
3945
3854
|
init_CredentialsProviderError();
|
|
@@ -3972,7 +3881,7 @@ var init_fromSharedConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
|
3972
3881
|
}));
|
|
3973
3882
|
|
|
3974
3883
|
//#endregion
|
|
3975
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3884
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js
|
|
3976
3885
|
var isFunction, fromStatic;
|
|
3977
3886
|
var init_fromStatic = require_rolldown_runtime.__esmMin((() => {
|
|
3978
3887
|
init_fromValue();
|
|
@@ -3981,7 +3890,7 @@ var init_fromStatic = require_rolldown_runtime.__esmMin((() => {
|
|
|
3981
3890
|
}));
|
|
3982
3891
|
|
|
3983
3892
|
//#endregion
|
|
3984
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3893
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js
|
|
3985
3894
|
var loadConfig;
|
|
3986
3895
|
var init_configLoader = require_rolldown_runtime.__esmMin((() => {
|
|
3987
3896
|
init_chain();
|
|
@@ -4000,7 +3909,7 @@ var init_configLoader = require_rolldown_runtime.__esmMin((() => {
|
|
|
4000
3909
|
}));
|
|
4001
3910
|
|
|
4002
3911
|
//#endregion
|
|
4003
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3912
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js
|
|
4004
3913
|
var ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, nodeDualstackConfigSelectors;
|
|
4005
3914
|
var init_NodeUseDualstackEndpointConfigOptions = require_rolldown_runtime.__esmMin((() => {
|
|
4006
3915
|
init_booleanSelector();
|
|
@@ -4021,7 +3930,7 @@ var init_NodeUseDualstackEndpointConfigOptions = require_rolldown_runtime.__esmM
|
|
|
4021
3930
|
}));
|
|
4022
3931
|
|
|
4023
3932
|
//#endregion
|
|
4024
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3933
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js
|
|
4025
3934
|
var ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, nodeFipsConfigSelectors;
|
|
4026
3935
|
var init_NodeUseFipsEndpointConfigOptions = require_rolldown_runtime.__esmMin((() => {
|
|
4027
3936
|
init_booleanSelector();
|
|
@@ -4042,7 +3951,7 @@ var init_NodeUseFipsEndpointConfigOptions = require_rolldown_runtime.__esmMin(((
|
|
|
4042
3951
|
}));
|
|
4043
3952
|
|
|
4044
3953
|
//#endregion
|
|
4045
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3954
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js
|
|
4046
3955
|
var resolveCustomEndpointsConfig;
|
|
4047
3956
|
var init_resolveCustomEndpointsConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4048
3957
|
init_client();
|
|
@@ -4058,7 +3967,7 @@ var init_resolveCustomEndpointsConfig = require_rolldown_runtime.__esmMin((() =>
|
|
|
4058
3967
|
}));
|
|
4059
3968
|
|
|
4060
3969
|
//#endregion
|
|
4061
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3970
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/utils/getEndpointFromRegion.js
|
|
4062
3971
|
var getEndpointFromRegion;
|
|
4063
3972
|
var init_getEndpointFromRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4064
3973
|
getEndpointFromRegion = async (input) => {
|
|
@@ -4082,7 +3991,7 @@ var init_getEndpointFromRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
4082
3991
|
}));
|
|
4083
3992
|
|
|
4084
3993
|
//#endregion
|
|
4085
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3994
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js
|
|
4086
3995
|
var resolveEndpointsConfig;
|
|
4087
3996
|
var init_resolveEndpointsConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4088
3997
|
init_client();
|
|
@@ -4104,7 +4013,7 @@ var init_resolveEndpointsConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4104
4013
|
}));
|
|
4105
4014
|
|
|
4106
4015
|
//#endregion
|
|
4107
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4016
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/constants.js
|
|
4108
4017
|
var AWS_EXECUTION_ENV, AWS_REGION_ENV, AWS_DEFAULT_REGION_ENV, ENV_IMDS_DISABLED, DEFAULTS_MODE_OPTIONS, IMDS_REGION_PATH, IMDS_TOKEN_PATH, X_AWS_EC2_METADATA_TOKEN, X_AWS_EC2_METADATA_TOKEN_TTL;
|
|
4109
4018
|
var init_constants = require_rolldown_runtime.__esmMin((() => {
|
|
4110
4019
|
AWS_EXECUTION_ENV = "AWS_EXECUTION_ENV";
|
|
@@ -4125,7 +4034,7 @@ var init_constants = require_rolldown_runtime.__esmMin((() => {
|
|
|
4125
4034
|
}));
|
|
4126
4035
|
|
|
4127
4036
|
//#endregion
|
|
4128
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4037
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js
|
|
4129
4038
|
var TIMEOUT_MS, NEG_CACHE_TTL_MS, negativeCacheUntil, getInstanceMetadataRegion, cacheNegativeAndReturnUndefined, resolveImdsEndpoint, imdsRequest;
|
|
4130
4039
|
var init_getInstanceMetadataRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4131
4040
|
init_constants();
|
|
@@ -4216,7 +4125,7 @@ var init_getInstanceMetadataRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
4216
4125
|
}));
|
|
4217
4126
|
|
|
4218
4127
|
//#endregion
|
|
4219
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4128
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js
|
|
4220
4129
|
var REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS;
|
|
4221
4130
|
var init_config$1 = require_rolldown_runtime.__esmMin((() => {
|
|
4222
4131
|
init_getInstanceMetadataRegion();
|
|
@@ -4237,7 +4146,7 @@ var init_config$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
4237
4146
|
}));
|
|
4238
4147
|
|
|
4239
4148
|
//#endregion
|
|
4240
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4149
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js
|
|
4241
4150
|
var validRegions, checkRegion;
|
|
4242
4151
|
var init_checkRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4243
4152
|
init_transport();
|
|
@@ -4256,14 +4165,14 @@ var init_checkRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
4256
4165
|
}));
|
|
4257
4166
|
|
|
4258
4167
|
//#endregion
|
|
4259
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4168
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/isFipsRegion.js
|
|
4260
4169
|
var isFipsRegion;
|
|
4261
4170
|
var init_isFipsRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4262
4171
|
isFipsRegion = (region) => typeof region === "string" && (region.startsWith("fips-") || region.endsWith("-fips"));
|
|
4263
4172
|
}));
|
|
4264
4173
|
|
|
4265
4174
|
//#endregion
|
|
4266
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4175
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getRealRegion.js
|
|
4267
4176
|
var getRealRegion;
|
|
4268
4177
|
var init_getRealRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4269
4178
|
init_isFipsRegion();
|
|
@@ -4271,7 +4180,7 @@ var init_getRealRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
4271
4180
|
}));
|
|
4272
4181
|
|
|
4273
4182
|
//#endregion
|
|
4274
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4183
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/resolveRegionConfig.js
|
|
4275
4184
|
var resolveRegionConfig;
|
|
4276
4185
|
var init_resolveRegionConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4277
4186
|
init_checkRegion();
|
|
@@ -4301,28 +4210,28 @@ var init_resolveRegionConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4301
4210
|
}));
|
|
4302
4211
|
|
|
4303
4212
|
//#endregion
|
|
4304
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4213
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getHostnameFromVariants.js
|
|
4305
4214
|
var getHostnameFromVariants;
|
|
4306
4215
|
var init_getHostnameFromVariants = require_rolldown_runtime.__esmMin((() => {
|
|
4307
4216
|
getHostnameFromVariants = (variants = [], { useFipsEndpoint, useDualstackEndpoint }) => variants.find(({ tags }) => useFipsEndpoint === tags.includes("fips") && useDualstackEndpoint === tags.includes("dualstack"))?.hostname;
|
|
4308
4217
|
}));
|
|
4309
4218
|
|
|
4310
4219
|
//#endregion
|
|
4311
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4220
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedHostname.js
|
|
4312
4221
|
var getResolvedHostname;
|
|
4313
4222
|
var init_getResolvedHostname = require_rolldown_runtime.__esmMin((() => {
|
|
4314
4223
|
getResolvedHostname = (resolvedRegion, { regionHostname, partitionHostname }) => regionHostname ? regionHostname : partitionHostname ? partitionHostname.replace("{region}", resolvedRegion) : undefined;
|
|
4315
4224
|
}));
|
|
4316
4225
|
|
|
4317
4226
|
//#endregion
|
|
4318
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4227
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedPartition.js
|
|
4319
4228
|
var getResolvedPartition;
|
|
4320
4229
|
var init_getResolvedPartition = require_rolldown_runtime.__esmMin((() => {
|
|
4321
4230
|
getResolvedPartition = (region, { partitionHash }) => Object.keys(partitionHash || {}).find((key) => partitionHash[key].regions.includes(region)) ?? "aws";
|
|
4322
4231
|
}));
|
|
4323
4232
|
|
|
4324
4233
|
//#endregion
|
|
4325
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4234
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedSigningRegion.js
|
|
4326
4235
|
var getResolvedSigningRegion;
|
|
4327
4236
|
var init_getResolvedSigningRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4328
4237
|
getResolvedSigningRegion = (hostname, { signingRegion, regionRegex, useFipsEndpoint }) => {
|
|
@@ -4339,7 +4248,7 @@ var init_getResolvedSigningRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
4339
4248
|
}));
|
|
4340
4249
|
|
|
4341
4250
|
//#endregion
|
|
4342
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4251
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getRegionInfo.js
|
|
4343
4252
|
var getRegionInfo;
|
|
4344
4253
|
var init_getRegionInfo = require_rolldown_runtime.__esmMin((() => {
|
|
4345
4254
|
init_getHostnameFromVariants();
|
|
@@ -4382,7 +4291,7 @@ var init_getRegionInfo = require_rolldown_runtime.__esmMin((() => {
|
|
|
4382
4291
|
}));
|
|
4383
4292
|
|
|
4384
4293
|
//#endregion
|
|
4385
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4294
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/defaultsModeConfig.js
|
|
4386
4295
|
var AWS_DEFAULTS_MODE_ENV, AWS_DEFAULTS_MODE_CONFIG, NODE_DEFAULTS_MODE_CONFIG_OPTIONS;
|
|
4387
4296
|
var init_defaultsModeConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4388
4297
|
AWS_DEFAULTS_MODE_ENV = "AWS_DEFAULTS_MODE";
|
|
@@ -4399,7 +4308,7 @@ var init_defaultsModeConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4399
4308
|
}));
|
|
4400
4309
|
|
|
4401
4310
|
//#endregion
|
|
4402
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4311
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js
|
|
4403
4312
|
var resolveDefaultsModeConfig, resolveNodeDefaultsModeAuto, inferPhysicalRegion;
|
|
4404
4313
|
var init_resolveDefaultsModeConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4405
4314
|
init_config$1();
|
|
@@ -4445,7 +4354,7 @@ var init_resolveDefaultsModeConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4445
4354
|
}));
|
|
4446
4355
|
|
|
4447
4356
|
//#endregion
|
|
4448
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4357
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/config/index.js
|
|
4449
4358
|
var config_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
4450
4359
|
CONFIG_PREFIX_SEPARATOR: () => ".",
|
|
4451
4360
|
CONFIG_USE_DUALSTACK_ENDPOINT: () => CONFIG_USE_DUALSTACK_ENDPOINT,
|
|
@@ -4523,7 +4432,7 @@ var init_config = require_rolldown_runtime.__esmMin((() => {
|
|
|
4523
4432
|
}));
|
|
4524
4433
|
|
|
4525
4434
|
//#endregion
|
|
4526
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4435
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js
|
|
4527
4436
|
var ENV_ENDPOINT_URL, CONFIG_ENDPOINT_URL, getEndpointUrlConfig;
|
|
4528
4437
|
var init_getEndpointUrlConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4529
4438
|
init_config();
|
|
@@ -4558,7 +4467,7 @@ var init_getEndpointUrlConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4558
4467
|
}));
|
|
4559
4468
|
|
|
4560
4469
|
//#endregion
|
|
4561
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4470
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getIgnoreConfiguredEndpointUrls.js
|
|
4562
4471
|
var ENV_IGNORE_CONFIGURED_ENDPOINT_URLS, CONFIG_IGNORE_CONFIGURED_ENDPOINT_URLS, ignoreConfiguredEndpointUrlsConfigSelectors;
|
|
4563
4472
|
var init_getIgnoreConfiguredEndpointUrls = require_rolldown_runtime.__esmMin((() => {
|
|
4564
4473
|
init_config();
|
|
@@ -4572,7 +4481,7 @@ var init_getIgnoreConfiguredEndpointUrls = require_rolldown_runtime.__esmMin((()
|
|
|
4572
4481
|
}));
|
|
4573
4482
|
|
|
4574
4483
|
//#endregion
|
|
4575
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4484
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js
|
|
4576
4485
|
var getEndpointFromConfig;
|
|
4577
4486
|
var init_getEndpointFromConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4578
4487
|
init_config();
|
|
@@ -4588,7 +4497,7 @@ var init_getEndpointFromConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4588
4497
|
}));
|
|
4589
4498
|
|
|
4590
4499
|
//#endregion
|
|
4591
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4500
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/s3.js
|
|
4592
4501
|
var resolveParamsForS3, DOMAIN_PATTERN, IP_ADDRESS_PATTERN, DOTS_PATTERN, DOT_PATTERN, S3_HOSTNAME_PATTERN, isDnsCompatibleBucketName, isArnBucketName;
|
|
4593
4502
|
var init_s3 = require_rolldown_runtime.__esmMin((() => {
|
|
4594
4503
|
resolveParamsForS3 = async (endpointParams) => {
|
|
@@ -4627,13 +4536,13 @@ var init_s3 = require_rolldown_runtime.__esmMin((() => {
|
|
|
4627
4536
|
}));
|
|
4628
4537
|
|
|
4629
4538
|
//#endregion
|
|
4630
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4539
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js
|
|
4631
4540
|
var init_service_customizations = require_rolldown_runtime.__esmMin((() => {
|
|
4632
4541
|
init_s3();
|
|
4633
4542
|
}));
|
|
4634
4543
|
|
|
4635
4544
|
//#endregion
|
|
4636
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4545
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/createConfigValueProvider.js
|
|
4637
4546
|
var createConfigValueProvider;
|
|
4638
4547
|
var init_createConfigValueProvider = require_rolldown_runtime.__esmMin((() => {
|
|
4639
4548
|
createConfigValueProvider = (configKey, canonicalEndpointParamKey, config, isClientContextParam = false) => {
|
|
@@ -4688,13 +4597,13 @@ var init_createConfigValueProvider = require_rolldown_runtime.__esmMin((() => {
|
|
|
4688
4597
|
}));
|
|
4689
4598
|
|
|
4690
4599
|
//#endregion
|
|
4691
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4600
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js
|
|
4692
4601
|
var init_toEndpointV1 = require_rolldown_runtime.__esmMin((() => {
|
|
4693
4602
|
init_transport();
|
|
4694
4603
|
}));
|
|
4695
4604
|
|
|
4696
4605
|
//#endregion
|
|
4697
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4606
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js
|
|
4698
4607
|
function bindGetEndpointFromInstructions(getEndpointFromConfig) {
|
|
4699
4608
|
return async (commandInput, instructionsSupplier, clientConfig, context) => {
|
|
4700
4609
|
if (!clientConfig.isCustomEndpoint && !clientConfig.ignoreConfiguredEndpointUrls) {
|
|
@@ -4764,7 +4673,7 @@ var init_getEndpointFromInstructions = require_rolldown_runtime.__esmMin((() =>
|
|
|
4764
4673
|
}));
|
|
4765
4674
|
|
|
4766
4675
|
//#endregion
|
|
4767
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4676
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js
|
|
4768
4677
|
function setFeature(context, feature, value) {
|
|
4769
4678
|
if (!context.__smithy_context) {
|
|
4770
4679
|
context.__smithy_context = { features: {} };
|
|
@@ -4811,7 +4720,7 @@ var init_endpointMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
|
4811
4720
|
}));
|
|
4812
4721
|
|
|
4813
4722
|
//#endregion
|
|
4814
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4723
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js
|
|
4815
4724
|
function bindGetEndpointPlugin(getEndpointFromConfig) {
|
|
4816
4725
|
const endpointMiddleware = bindEndpointMiddleware(getEndpointFromConfig);
|
|
4817
4726
|
return (config, instructions) => ({ applyToStack: (clientStack) => {
|
|
@@ -4845,7 +4754,7 @@ var init_getEndpointPlugin = require_rolldown_runtime.__esmMin((() => {
|
|
|
4845
4754
|
}));
|
|
4846
4755
|
|
|
4847
4756
|
//#endregion
|
|
4848
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4757
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js
|
|
4849
4758
|
function bindResolveEndpointConfig(getEndpointFromConfig) {
|
|
4850
4759
|
return (input) => {
|
|
4851
4760
|
const tls = input.tls ?? true;
|
|
@@ -4876,7 +4785,7 @@ var init_resolveEndpointConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4876
4785
|
}));
|
|
4877
4786
|
|
|
4878
4787
|
//#endregion
|
|
4879
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4788
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.js
|
|
4880
4789
|
var BinaryDecisionDiagram;
|
|
4881
4790
|
var init_BinaryDecisionDiagram = require_rolldown_runtime.__esmMin((() => {
|
|
4882
4791
|
BinaryDecisionDiagram = class BinaryDecisionDiagram {
|
|
@@ -4897,7 +4806,7 @@ var init_BinaryDecisionDiagram = require_rolldown_runtime.__esmMin((() => {
|
|
|
4897
4806
|
}));
|
|
4898
4807
|
|
|
4899
4808
|
//#endregion
|
|
4900
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4809
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/cache/EndpointCache.js
|
|
4901
4810
|
var EndpointCache;
|
|
4902
4811
|
var init_EndpointCache = require_rolldown_runtime.__esmMin((() => {
|
|
4903
4812
|
EndpointCache = class {
|
|
@@ -4953,7 +4862,7 @@ var init_EndpointCache = require_rolldown_runtime.__esmMin((() => {
|
|
|
4953
4862
|
}));
|
|
4954
4863
|
|
|
4955
4864
|
//#endregion
|
|
4956
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4865
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/EndpointError.js
|
|
4957
4866
|
var EndpointError;
|
|
4958
4867
|
var init_EndpointError = require_rolldown_runtime.__esmMin((() => {
|
|
4959
4868
|
EndpointError = class extends Error {
|
|
@@ -4965,20 +4874,20 @@ var init_EndpointError = require_rolldown_runtime.__esmMin((() => {
|
|
|
4965
4874
|
}));
|
|
4966
4875
|
|
|
4967
4876
|
//#endregion
|
|
4968
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4877
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js
|
|
4969
4878
|
var init_types = require_rolldown_runtime.__esmMin((() => {
|
|
4970
4879
|
init_EndpointError();
|
|
4971
4880
|
}));
|
|
4972
4881
|
|
|
4973
4882
|
//#endregion
|
|
4974
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4883
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/debugId.js
|
|
4975
4884
|
var debugId;
|
|
4976
4885
|
var init_debugId = require_rolldown_runtime.__esmMin((() => {
|
|
4977
4886
|
debugId = "endpoints";
|
|
4978
4887
|
}));
|
|
4979
4888
|
|
|
4980
4889
|
//#endregion
|
|
4981
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4890
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/toDebugString.js
|
|
4982
4891
|
function toDebugString(input) {
|
|
4983
4892
|
if (typeof input !== "object" || input == null) {
|
|
4984
4893
|
return input;
|
|
@@ -4994,28 +4903,28 @@ function toDebugString(input) {
|
|
|
4994
4903
|
var init_toDebugString = require_rolldown_runtime.__esmMin((() => {}));
|
|
4995
4904
|
|
|
4996
4905
|
//#endregion
|
|
4997
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4906
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js
|
|
4998
4907
|
var init_debug = require_rolldown_runtime.__esmMin((() => {
|
|
4999
4908
|
init_debugId();
|
|
5000
4909
|
init_toDebugString();
|
|
5001
4910
|
}));
|
|
5002
4911
|
|
|
5003
4912
|
//#endregion
|
|
5004
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4913
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/customEndpointFunctions.js
|
|
5005
4914
|
var customEndpointFunctions;
|
|
5006
4915
|
var init_customEndpointFunctions = require_rolldown_runtime.__esmMin((() => {
|
|
5007
4916
|
customEndpointFunctions = {};
|
|
5008
4917
|
}));
|
|
5009
4918
|
|
|
5010
4919
|
//#endregion
|
|
5011
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4920
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/booleanEquals.js
|
|
5012
4921
|
var booleanEquals;
|
|
5013
4922
|
var init_booleanEquals = require_rolldown_runtime.__esmMin((() => {
|
|
5014
4923
|
booleanEquals = (value1, value2) => value1 === value2;
|
|
5015
4924
|
}));
|
|
5016
4925
|
|
|
5017
4926
|
//#endregion
|
|
5018
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4927
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/coalesce.js
|
|
5019
4928
|
function coalesce(...args) {
|
|
5020
4929
|
for (const arg of args) {
|
|
5021
4930
|
if (arg != null) {
|
|
@@ -5027,7 +4936,7 @@ function coalesce(...args) {
|
|
|
5027
4936
|
var init_coalesce = require_rolldown_runtime.__esmMin((() => {}));
|
|
5028
4937
|
|
|
5029
4938
|
//#endregion
|
|
5030
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4939
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttrPathList.js
|
|
5031
4940
|
var getAttrPathList;
|
|
5032
4941
|
var init_getAttrPathList = require_rolldown_runtime.__esmMin((() => {
|
|
5033
4942
|
init_types();
|
|
@@ -5057,7 +4966,7 @@ var init_getAttrPathList = require_rolldown_runtime.__esmMin((() => {
|
|
|
5057
4966
|
}));
|
|
5058
4967
|
|
|
5059
4968
|
//#endregion
|
|
5060
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4969
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttr.js
|
|
5061
4970
|
var getAttr;
|
|
5062
4971
|
var init_getAttr = require_rolldown_runtime.__esmMin((() => {
|
|
5063
4972
|
init_types();
|
|
@@ -5074,28 +4983,28 @@ var init_getAttr = require_rolldown_runtime.__esmMin((() => {
|
|
|
5074
4983
|
}));
|
|
5075
4984
|
|
|
5076
4985
|
//#endregion
|
|
5077
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4986
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/isSet.js
|
|
5078
4987
|
var isSet;
|
|
5079
4988
|
var init_isSet = require_rolldown_runtime.__esmMin((() => {
|
|
5080
4989
|
isSet = (value) => value != null;
|
|
5081
4990
|
}));
|
|
5082
4991
|
|
|
5083
4992
|
//#endregion
|
|
5084
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4993
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/ite.js
|
|
5085
4994
|
function ite(condition, trueValue, falseValue) {
|
|
5086
4995
|
return condition ? trueValue : falseValue;
|
|
5087
4996
|
}
|
|
5088
4997
|
var init_ite = require_rolldown_runtime.__esmMin((() => {}));
|
|
5089
4998
|
|
|
5090
4999
|
//#endregion
|
|
5091
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5000
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/not.js
|
|
5092
5001
|
var not;
|
|
5093
5002
|
var init_not = require_rolldown_runtime.__esmMin((() => {
|
|
5094
5003
|
not = (value) => !value;
|
|
5095
5004
|
}));
|
|
5096
5005
|
|
|
5097
5006
|
//#endregion
|
|
5098
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5007
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/isIpAddress.js
|
|
5099
5008
|
var IP_V4_REGEX, isIpAddress;
|
|
5100
5009
|
var init_isIpAddress = require_rolldown_runtime.__esmMin((() => {
|
|
5101
5010
|
IP_V4_REGEX = new RegExp(`^(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}$`);
|
|
@@ -5103,10 +5012,10 @@ var init_isIpAddress = require_rolldown_runtime.__esmMin((() => {
|
|
|
5103
5012
|
}));
|
|
5104
5013
|
|
|
5105
5014
|
//#endregion
|
|
5106
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5015
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/parseURL.js
|
|
5107
5016
|
var import_dist_cjs, DEFAULT_PORTS, parseURL;
|
|
5108
5017
|
var init_parseURL = require_rolldown_runtime.__esmMin((() => {
|
|
5109
|
-
import_dist_cjs = require_dist_cjs();
|
|
5018
|
+
import_dist_cjs = require_dist_cjs$1.require_dist_cjs();
|
|
5110
5019
|
init_isIpAddress();
|
|
5111
5020
|
DEFAULT_PORTS = {
|
|
5112
5021
|
[import_dist_cjs.EndpointURLScheme.HTTP]: 80,
|
|
@@ -5156,7 +5065,7 @@ var init_parseURL = require_rolldown_runtime.__esmMin((() => {
|
|
|
5156
5065
|
}));
|
|
5157
5066
|
|
|
5158
5067
|
//#endregion
|
|
5159
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5068
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/split.js
|
|
5160
5069
|
function split(value, delimiter, limit) {
|
|
5161
5070
|
if (limit === 1) {
|
|
5162
5071
|
return [value];
|
|
@@ -5173,14 +5082,14 @@ function split(value, delimiter, limit) {
|
|
|
5173
5082
|
var init_split = require_rolldown_runtime.__esmMin((() => {}));
|
|
5174
5083
|
|
|
5175
5084
|
//#endregion
|
|
5176
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5085
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/stringEquals.js
|
|
5177
5086
|
var stringEquals;
|
|
5178
5087
|
var init_stringEquals = require_rolldown_runtime.__esmMin((() => {
|
|
5179
5088
|
stringEquals = (value1, value2) => value1 === value2;
|
|
5180
5089
|
}));
|
|
5181
5090
|
|
|
5182
5091
|
//#endregion
|
|
5183
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5092
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/substring.js
|
|
5184
5093
|
var substring;
|
|
5185
5094
|
var init_substring = require_rolldown_runtime.__esmMin((() => {
|
|
5186
5095
|
substring = (input, start, stop, reverse) => {
|
|
@@ -5195,14 +5104,14 @@ var init_substring = require_rolldown_runtime.__esmMin((() => {
|
|
|
5195
5104
|
}));
|
|
5196
5105
|
|
|
5197
5106
|
//#endregion
|
|
5198
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5107
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/uriEncode.js
|
|
5199
5108
|
var uriEncode;
|
|
5200
5109
|
var init_uriEncode = require_rolldown_runtime.__esmMin((() => {
|
|
5201
5110
|
uriEncode = (value) => encodeURIComponent(value).replace(/[!*'()]/g, (c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`);
|
|
5202
5111
|
}));
|
|
5203
5112
|
|
|
5204
5113
|
//#endregion
|
|
5205
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5114
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js
|
|
5206
5115
|
var init_lib = require_rolldown_runtime.__esmMin((() => {
|
|
5207
5116
|
init_booleanEquals();
|
|
5208
5117
|
init_coalesce();
|
|
@@ -5219,7 +5128,7 @@ var init_lib = require_rolldown_runtime.__esmMin((() => {
|
|
|
5219
5128
|
}));
|
|
5220
5129
|
|
|
5221
5130
|
//#endregion
|
|
5222
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5131
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/endpointFunctions.js
|
|
5223
5132
|
var endpointFunctions;
|
|
5224
5133
|
var init_endpointFunctions = require_rolldown_runtime.__esmMin((() => {
|
|
5225
5134
|
init_lib();
|
|
@@ -5240,7 +5149,7 @@ var init_endpointFunctions = require_rolldown_runtime.__esmMin((() => {
|
|
|
5240
5149
|
}));
|
|
5241
5150
|
|
|
5242
5151
|
//#endregion
|
|
5243
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5152
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateTemplate.js
|
|
5244
5153
|
var evaluateTemplate;
|
|
5245
5154
|
var init_evaluateTemplate = require_rolldown_runtime.__esmMin((() => {
|
|
5246
5155
|
init_lib();
|
|
@@ -5278,7 +5187,7 @@ var init_evaluateTemplate = require_rolldown_runtime.__esmMin((() => {
|
|
|
5278
5187
|
}));
|
|
5279
5188
|
|
|
5280
5189
|
//#endregion
|
|
5281
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5190
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getReferenceValue.js
|
|
5282
5191
|
var getReferenceValue;
|
|
5283
5192
|
var init_getReferenceValue = require_rolldown_runtime.__esmMin((() => {
|
|
5284
5193
|
getReferenceValue = ({ ref }, options) => {
|
|
@@ -5287,7 +5196,7 @@ var init_getReferenceValue = require_rolldown_runtime.__esmMin((() => {
|
|
|
5287
5196
|
}));
|
|
5288
5197
|
|
|
5289
5198
|
//#endregion
|
|
5290
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5199
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js
|
|
5291
5200
|
var evaluateExpression, callFunction, group$2;
|
|
5292
5201
|
var init_evaluateExpression = require_rolldown_runtime.__esmMin((() => {
|
|
5293
5202
|
init_types();
|
|
@@ -5336,13 +5245,13 @@ var init_evaluateExpression = require_rolldown_runtime.__esmMin((() => {
|
|
|
5336
5245
|
}));
|
|
5337
5246
|
|
|
5338
5247
|
//#endregion
|
|
5339
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5248
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/callFunction.js
|
|
5340
5249
|
var init_callFunction = require_rolldown_runtime.__esmMin((() => {
|
|
5341
5250
|
init_evaluateExpression();
|
|
5342
5251
|
}));
|
|
5343
5252
|
|
|
5344
5253
|
//#endregion
|
|
5345
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5254
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateCondition.js
|
|
5346
5255
|
var evaluateCondition;
|
|
5347
5256
|
var init_evaluateCondition = require_rolldown_runtime.__esmMin((() => {
|
|
5348
5257
|
init_debug();
|
|
@@ -5370,7 +5279,7 @@ var init_evaluateCondition = require_rolldown_runtime.__esmMin((() => {
|
|
|
5370
5279
|
}));
|
|
5371
5280
|
|
|
5372
5281
|
//#endregion
|
|
5373
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5282
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.js
|
|
5374
5283
|
var getEndpointHeaders;
|
|
5375
5284
|
var init_getEndpointHeaders = require_rolldown_runtime.__esmMin((() => {
|
|
5376
5285
|
init_types();
|
|
@@ -5388,7 +5297,7 @@ var init_getEndpointHeaders = require_rolldown_runtime.__esmMin((() => {
|
|
|
5388
5297
|
}));
|
|
5389
5298
|
|
|
5390
5299
|
//#endregion
|
|
5391
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5300
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointProperties.js
|
|
5392
5301
|
var getEndpointProperties, getEndpointProperty, group$1;
|
|
5393
5302
|
var init_getEndpointProperties = require_rolldown_runtime.__esmMin((() => {
|
|
5394
5303
|
init_types();
|
|
@@ -5419,7 +5328,7 @@ var init_getEndpointProperties = require_rolldown_runtime.__esmMin((() => {
|
|
|
5419
5328
|
}));
|
|
5420
5329
|
|
|
5421
5330
|
//#endregion
|
|
5422
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5331
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointUrl.js
|
|
5423
5332
|
var getEndpointUrl;
|
|
5424
5333
|
var init_getEndpointUrl = require_rolldown_runtime.__esmMin((() => {
|
|
5425
5334
|
init_types();
|
|
@@ -5439,7 +5348,7 @@ var init_getEndpointUrl = require_rolldown_runtime.__esmMin((() => {
|
|
|
5439
5348
|
}));
|
|
5440
5349
|
|
|
5441
5350
|
//#endregion
|
|
5442
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5351
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/decideEndpoint.js
|
|
5443
5352
|
var RESULT, decideEndpoint;
|
|
5444
5353
|
var init_decideEndpoint = require_rolldown_runtime.__esmMin((() => {
|
|
5445
5354
|
init_types();
|
|
@@ -5495,7 +5404,7 @@ var init_decideEndpoint = require_rolldown_runtime.__esmMin((() => {
|
|
|
5495
5404
|
}));
|
|
5496
5405
|
|
|
5497
5406
|
//#endregion
|
|
5498
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5407
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateConditions.js
|
|
5499
5408
|
var evaluateConditions;
|
|
5500
5409
|
var init_evaluateConditions = require_rolldown_runtime.__esmMin((() => {
|
|
5501
5410
|
init_debug();
|
|
@@ -5530,7 +5439,7 @@ var init_evaluateConditions = require_rolldown_runtime.__esmMin((() => {
|
|
|
5530
5439
|
}));
|
|
5531
5440
|
|
|
5532
5441
|
//#endregion
|
|
5533
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5442
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.js
|
|
5534
5443
|
var evaluateEndpointRule;
|
|
5535
5444
|
var init_evaluateEndpointRule = require_rolldown_runtime.__esmMin((() => {
|
|
5536
5445
|
init_debug();
|
|
@@ -5565,7 +5474,7 @@ var init_evaluateEndpointRule = require_rolldown_runtime.__esmMin((() => {
|
|
|
5565
5474
|
}));
|
|
5566
5475
|
|
|
5567
5476
|
//#endregion
|
|
5568
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5477
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.js
|
|
5569
5478
|
var evaluateErrorRule;
|
|
5570
5479
|
var init_evaluateErrorRule = require_rolldown_runtime.__esmMin((() => {
|
|
5571
5480
|
init_types();
|
|
@@ -5589,7 +5498,7 @@ var init_evaluateErrorRule = require_rolldown_runtime.__esmMin((() => {
|
|
|
5589
5498
|
}));
|
|
5590
5499
|
|
|
5591
5500
|
//#endregion
|
|
5592
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5501
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateRules.js
|
|
5593
5502
|
var evaluateRules, evaluateTreeRule, group;
|
|
5594
5503
|
var init_evaluateRules = require_rolldown_runtime.__esmMin((() => {
|
|
5595
5504
|
init_types();
|
|
@@ -5638,14 +5547,14 @@ var init_evaluateRules = require_rolldown_runtime.__esmMin((() => {
|
|
|
5638
5547
|
}));
|
|
5639
5548
|
|
|
5640
5549
|
//#endregion
|
|
5641
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5550
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js
|
|
5642
5551
|
var init_utils$1 = require_rolldown_runtime.__esmMin((() => {
|
|
5643
5552
|
init_customEndpointFunctions();
|
|
5644
5553
|
init_evaluateRules();
|
|
5645
5554
|
}));
|
|
5646
5555
|
|
|
5647
5556
|
//#endregion
|
|
5648
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5557
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/resolveEndpoint.js
|
|
5649
5558
|
var resolveEndpoint;
|
|
5650
5559
|
var init_resolveEndpoint = require_rolldown_runtime.__esmMin((() => {
|
|
5651
5560
|
init_transport();
|
|
@@ -5679,7 +5588,7 @@ var init_resolveEndpoint = require_rolldown_runtime.__esmMin((() => {
|
|
|
5679
5588
|
}));
|
|
5680
5589
|
|
|
5681
5590
|
//#endregion
|
|
5682
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5591
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointRequiredConfig.js
|
|
5683
5592
|
var resolveEndpointRequiredConfig;
|
|
5684
5593
|
var init_resolveEndpointRequiredConfig = require_rolldown_runtime.__esmMin((() => {
|
|
5685
5594
|
resolveEndpointRequiredConfig = (input) => {
|
|
@@ -5694,7 +5603,7 @@ var init_resolveEndpointRequiredConfig = require_rolldown_runtime.__esmMin((() =
|
|
|
5694
5603
|
}));
|
|
5695
5604
|
|
|
5696
5605
|
//#endregion
|
|
5697
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5606
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js
|
|
5698
5607
|
var endpoints_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
5699
5608
|
BinaryDecisionDiagram: () => BinaryDecisionDiagram,
|
|
5700
5609
|
EndpointCache: () => EndpointCache,
|
|
@@ -5738,7 +5647,7 @@ var init_endpoints = require_rolldown_runtime.__esmMin((() => {
|
|
|
5738
5647
|
}));
|
|
5739
5648
|
|
|
5740
5649
|
//#endregion
|
|
5741
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5650
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/serializerMiddleware.js
|
|
5742
5651
|
var serializerMiddleware;
|
|
5743
5652
|
var init_serializerMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
5744
5653
|
init_endpoints();
|
|
@@ -5760,7 +5669,7 @@ var init_serializerMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
|
5760
5669
|
}));
|
|
5761
5670
|
|
|
5762
5671
|
//#endregion
|
|
5763
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5672
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/serdePlugin.js
|
|
5764
5673
|
function getSerdePlugin(config, serializer, deserializer) {
|
|
5765
5674
|
return { applyToStack: (commandStack) => {
|
|
5766
5675
|
commandStack.add(deserializerMiddleware(config, deserializer), deserializerMiddlewareOption);
|
|
@@ -5786,7 +5695,7 @@ var init_serdePlugin = require_rolldown_runtime.__esmMin((() => {
|
|
|
5786
5695
|
}));
|
|
5787
5696
|
|
|
5788
5697
|
//#endregion
|
|
5789
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5698
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js
|
|
5790
5699
|
function castSourceData(toCast, encoding) {
|
|
5791
5700
|
if (Buffer.isBuffer(toCast)) {
|
|
5792
5701
|
return toCast;
|
|
@@ -5825,7 +5734,7 @@ var init_hash_node = require_rolldown_runtime.__esmMin((() => {
|
|
|
5825
5734
|
}));
|
|
5826
5735
|
|
|
5827
5736
|
//#endregion
|
|
5828
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5737
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js
|
|
5829
5738
|
var ChecksumStream$1;
|
|
5830
5739
|
var init_ChecksumStream = require_rolldown_runtime.__esmMin((() => {
|
|
5831
5740
|
init_toBase64();
|
|
@@ -5905,7 +5814,7 @@ var init_ChecksumStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
5905
5814
|
}));
|
|
5906
5815
|
|
|
5907
5816
|
//#endregion
|
|
5908
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5817
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-type-check.js
|
|
5909
5818
|
var isReadableStream, isBlob;
|
|
5910
5819
|
var init_stream_type_check = require_rolldown_runtime.__esmMin((() => {
|
|
5911
5820
|
isReadableStream = (stream) => typeof ReadableStream === "function" && (stream?.constructor?.name === ReadableStream.name || stream instanceof ReadableStream);
|
|
@@ -5915,14 +5824,14 @@ var init_stream_type_check = require_rolldown_runtime.__esmMin((() => {
|
|
|
5915
5824
|
}));
|
|
5916
5825
|
|
|
5917
5826
|
//#endregion
|
|
5918
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5827
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.browser.js
|
|
5919
5828
|
var fromUtf8;
|
|
5920
5829
|
var init_fromUtf8_browser = require_rolldown_runtime.__esmMin((() => {
|
|
5921
5830
|
fromUtf8 = (input) => new TextEncoder().encode(input);
|
|
5922
5831
|
}));
|
|
5923
5832
|
|
|
5924
5833
|
//#endregion
|
|
5925
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5834
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/constants-for-browser.js
|
|
5926
5835
|
var chars, alphabetByEncoding, alphabetByValue, bitsPerLetter, bitsPerByte, maxLetterValue;
|
|
5927
5836
|
var init_constants_for_browser = require_rolldown_runtime.__esmMin((() => {
|
|
5928
5837
|
chars = `ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/`;
|
|
@@ -5937,7 +5846,7 @@ var init_constants_for_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
5937
5846
|
}));
|
|
5938
5847
|
|
|
5939
5848
|
//#endregion
|
|
5940
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5849
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js
|
|
5941
5850
|
function toBase64(_input) {
|
|
5942
5851
|
let input;
|
|
5943
5852
|
if (typeof _input === "string") {
|
|
@@ -5974,7 +5883,7 @@ var init_toBase64_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
5974
5883
|
}));
|
|
5975
5884
|
|
|
5976
5885
|
//#endregion
|
|
5977
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5886
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.browser.js
|
|
5978
5887
|
var ReadableStreamRef, ChecksumStream;
|
|
5979
5888
|
var init_ChecksumStream_browser = require_rolldown_runtime.__esmMin((() => {
|
|
5980
5889
|
ReadableStreamRef = typeof ReadableStream === "function" ? ReadableStream : function() {};
|
|
@@ -5982,7 +5891,7 @@ var init_ChecksumStream_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
5982
5891
|
}));
|
|
5983
5892
|
|
|
5984
5893
|
//#endregion
|
|
5985
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5894
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js
|
|
5986
5895
|
var createChecksumStream$1;
|
|
5987
5896
|
var init_createChecksumStream_browser = require_rolldown_runtime.__esmMin((() => {
|
|
5988
5897
|
init_toBase64_browser();
|
|
@@ -6021,7 +5930,7 @@ var init_createChecksumStream_browser = require_rolldown_runtime.__esmMin((() =>
|
|
|
6021
5930
|
}));
|
|
6022
5931
|
|
|
6023
5932
|
//#endregion
|
|
6024
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5933
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js
|
|
6025
5934
|
function createChecksumStream(init) {
|
|
6026
5935
|
if (typeof ReadableStream === "function" && isReadableStream(init.source)) {
|
|
6027
5936
|
return createChecksumStream$1(init);
|
|
@@ -6035,7 +5944,7 @@ var init_createChecksumStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
6035
5944
|
}));
|
|
6036
5945
|
|
|
6037
5946
|
//#endregion
|
|
6038
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5947
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/ByteArrayCollector.js
|
|
6039
5948
|
var ByteArrayCollector;
|
|
6040
5949
|
var init_ByteArrayCollector = require_rolldown_runtime.__esmMin((() => {
|
|
6041
5950
|
ByteArrayCollector = class {
|
|
@@ -6073,7 +5982,7 @@ var init_ByteArrayCollector = require_rolldown_runtime.__esmMin((() => {
|
|
|
6073
5982
|
}));
|
|
6074
5983
|
|
|
6075
5984
|
//#endregion
|
|
6076
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5985
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js
|
|
6077
5986
|
function createBufferedReadableStream(upstream, size, logger) {
|
|
6078
5987
|
const reader = upstream.getReader();
|
|
6079
5988
|
let streamBufferingLoggedWarning = false;
|
|
@@ -6168,7 +6077,7 @@ var init_createBufferedReadable_browser = require_rolldown_runtime.__esmMin((()
|
|
|
6168
6077
|
}));
|
|
6169
6078
|
|
|
6170
6079
|
//#endregion
|
|
6171
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6080
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js
|
|
6172
6081
|
function createBufferedReadable(upstream, size, logger) {
|
|
6173
6082
|
if (isReadableStream(upstream)) {
|
|
6174
6083
|
return createBufferedReadableStream(upstream, size, logger);
|
|
@@ -6228,13 +6137,14 @@ var init_createBufferedReadable = require_rolldown_runtime.__esmMin((() => {
|
|
|
6228
6137
|
}));
|
|
6229
6138
|
|
|
6230
6139
|
//#endregion
|
|
6231
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6140
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/getAwsChunkedEncodingStream.browser.js
|
|
6232
6141
|
var getAwsChunkedEncodingStream$1;
|
|
6233
6142
|
var init_getAwsChunkedEncodingStream_browser = require_rolldown_runtime.__esmMin((() => {
|
|
6234
6143
|
getAwsChunkedEncodingStream$1 = (readableStream, options) => {
|
|
6235
6144
|
const { base64Encoder, bodyLengthChecker, checksumAlgorithmFn, checksumLocationName, streamHasher } = options;
|
|
6236
6145
|
const checksumRequired = base64Encoder !== undefined && bodyLengthChecker !== undefined && checksumAlgorithmFn !== undefined && checksumLocationName !== undefined && streamHasher !== undefined;
|
|
6237
6146
|
const digest = checksumRequired ? streamHasher(checksumAlgorithmFn, readableStream) : undefined;
|
|
6147
|
+
Promise.resolve(digest).catch(() => {});
|
|
6238
6148
|
const reader = readableStream.getReader();
|
|
6239
6149
|
return new ReadableStream({ async pull(controller) {
|
|
6240
6150
|
const { value, done } = await reader.read();
|
|
@@ -6254,7 +6164,7 @@ var init_getAwsChunkedEncodingStream_browser = require_rolldown_runtime.__esmMin
|
|
|
6254
6164
|
}));
|
|
6255
6165
|
|
|
6256
6166
|
//#endregion
|
|
6257
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6167
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/getAwsChunkedEncodingStream.js
|
|
6258
6168
|
function getAwsChunkedEncodingStream(stream, options) {
|
|
6259
6169
|
const readable = stream;
|
|
6260
6170
|
const readableStream = stream;
|
|
@@ -6264,7 +6174,10 @@ function getAwsChunkedEncodingStream(stream, options) {
|
|
|
6264
6174
|
const { base64Encoder, bodyLengthChecker, checksumAlgorithmFn, checksumLocationName, streamHasher } = options;
|
|
6265
6175
|
const checksumRequired = base64Encoder !== undefined && checksumAlgorithmFn !== undefined && checksumLocationName !== undefined && streamHasher !== undefined;
|
|
6266
6176
|
const digest = checksumRequired ? streamHasher(checksumAlgorithmFn, readable) : undefined;
|
|
6267
|
-
|
|
6177
|
+
Promise.resolve(digest).catch(() => {});
|
|
6178
|
+
const awsChunkedEncodingStream = new node_stream.Readable({ read() {
|
|
6179
|
+
readable.resume();
|
|
6180
|
+
} });
|
|
6268
6181
|
readable.on("data", (data) => {
|
|
6269
6182
|
const length = bodyLengthChecker(data) || 0;
|
|
6270
6183
|
if (length === 0) {
|
|
@@ -6272,16 +6185,26 @@ function getAwsChunkedEncodingStream(stream, options) {
|
|
|
6272
6185
|
}
|
|
6273
6186
|
awsChunkedEncodingStream.push(`${length.toString(16)}\r\n`);
|
|
6274
6187
|
awsChunkedEncodingStream.push(data);
|
|
6275
|
-
awsChunkedEncodingStream.push("\r\n")
|
|
6188
|
+
if (!awsChunkedEncodingStream.push("\r\n")) {
|
|
6189
|
+
readable.pause();
|
|
6190
|
+
}
|
|
6276
6191
|
});
|
|
6192
|
+
readable.on("error", (err) => {
|
|
6193
|
+
awsChunkedEncodingStream.destroy(err);
|
|
6194
|
+
});
|
|
6195
|
+
readable.pause();
|
|
6277
6196
|
readable.on("end", async () => {
|
|
6278
|
-
|
|
6279
|
-
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
6197
|
+
try {
|
|
6198
|
+
awsChunkedEncodingStream.push(`0\r\n`);
|
|
6199
|
+
if (checksumRequired) {
|
|
6200
|
+
const checksum = base64Encoder(await digest);
|
|
6201
|
+
awsChunkedEncodingStream.push(`${checksumLocationName}:${checksum}\r\n`);
|
|
6202
|
+
awsChunkedEncodingStream.push(`\r\n`);
|
|
6203
|
+
}
|
|
6204
|
+
awsChunkedEncodingStream.push(null);
|
|
6205
|
+
} catch (err) {
|
|
6206
|
+
awsChunkedEncodingStream.destroy(err);
|
|
6283
6207
|
}
|
|
6284
|
-
awsChunkedEncodingStream.push(null);
|
|
6285
6208
|
});
|
|
6286
6209
|
return awsChunkedEncodingStream;
|
|
6287
6210
|
}
|
|
@@ -6291,7 +6214,7 @@ var init_getAwsChunkedEncodingStream = require_rolldown_runtime.__esmMin((() =>
|
|
|
6291
6214
|
}));
|
|
6292
6215
|
|
|
6293
6216
|
//#endregion
|
|
6294
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6217
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.browser.js
|
|
6295
6218
|
async function headStream$1(stream, bytes) {
|
|
6296
6219
|
let byteLengthCounter = 0;
|
|
6297
6220
|
const chunks = [];
|
|
@@ -6325,7 +6248,7 @@ async function headStream$1(stream, bytes) {
|
|
|
6325
6248
|
var init_headStream_browser = require_rolldown_runtime.__esmMin((() => {}));
|
|
6326
6249
|
|
|
6327
6250
|
//#endregion
|
|
6328
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6251
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js
|
|
6329
6252
|
var headStream, Collector$1;
|
|
6330
6253
|
var init_headStream = require_rolldown_runtime.__esmMin((() => {
|
|
6331
6254
|
init_concatBytes();
|
|
@@ -6369,7 +6292,7 @@ var init_headStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
6369
6292
|
}));
|
|
6370
6293
|
|
|
6371
6294
|
//#endregion
|
|
6372
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6295
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.browser.js
|
|
6373
6296
|
var toUtf8;
|
|
6374
6297
|
var init_toUtf8_browser = require_rolldown_runtime.__esmMin((() => {
|
|
6375
6298
|
toUtf8 = (input) => {
|
|
@@ -6384,7 +6307,7 @@ var init_toUtf8_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
6384
6307
|
}));
|
|
6385
6308
|
|
|
6386
6309
|
//#endregion
|
|
6387
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6310
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js
|
|
6388
6311
|
async function collectBlob(blob) {
|
|
6389
6312
|
return blob.arrayBuffer().then((ab) => new Uint8Array(ab));
|
|
6390
6313
|
}
|
|
@@ -6417,7 +6340,7 @@ var init_stream_collector_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
6417
6340
|
}));
|
|
6418
6341
|
|
|
6419
6342
|
//#endregion
|
|
6420
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6343
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js
|
|
6421
6344
|
var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED$1, sdkStreamMixin$1, isBlobInstance;
|
|
6422
6345
|
var init_sdk_stream_mixin_browser = require_rolldown_runtime.__esmMin((() => {
|
|
6423
6346
|
init_toBase64_browser();
|
|
@@ -6480,7 +6403,7 @@ var init_sdk_stream_mixin_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
6480
6403
|
}));
|
|
6481
6404
|
|
|
6482
6405
|
//#endregion
|
|
6483
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6406
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js
|
|
6484
6407
|
var streamCollector, Collector;
|
|
6485
6408
|
var init_stream_collector = require_rolldown_runtime.__esmMin((() => {
|
|
6486
6409
|
init_concatBytes();
|
|
@@ -6518,7 +6441,7 @@ var init_stream_collector = require_rolldown_runtime.__esmMin((() => {
|
|
|
6518
6441
|
}));
|
|
6519
6442
|
|
|
6520
6443
|
//#endregion
|
|
6521
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6444
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js
|
|
6522
6445
|
var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED, sdkStreamMixin;
|
|
6523
6446
|
var init_sdk_stream_mixin = require_rolldown_runtime.__esmMin((() => {
|
|
6524
6447
|
init_buffer_from();
|
|
@@ -6571,7 +6494,7 @@ var init_sdk_stream_mixin = require_rolldown_runtime.__esmMin((() => {
|
|
|
6571
6494
|
}));
|
|
6572
6495
|
|
|
6573
6496
|
//#endregion
|
|
6574
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6497
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.browser.js
|
|
6575
6498
|
async function splitStream$1(stream) {
|
|
6576
6499
|
if (typeof stream.stream === "function") {
|
|
6577
6500
|
stream = stream.stream();
|
|
@@ -6582,7 +6505,7 @@ async function splitStream$1(stream) {
|
|
|
6582
6505
|
var init_splitStream_browser = require_rolldown_runtime.__esmMin((() => {}));
|
|
6583
6506
|
|
|
6584
6507
|
//#endregion
|
|
6585
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6508
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js
|
|
6586
6509
|
async function splitStream(stream) {
|
|
6587
6510
|
if (isReadableStream(stream) || isBlob(stream)) {
|
|
6588
6511
|
return splitStream$1(stream);
|
|
@@ -6599,7 +6522,7 @@ var init_splitStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
6599
6522
|
}));
|
|
6600
6523
|
|
|
6601
6524
|
//#endregion
|
|
6602
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6525
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/serde/index.js
|
|
6603
6526
|
var serde_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
6604
6527
|
ChecksumStream: () => ChecksumStream$1,
|
|
6605
6528
|
Hash: () => Hash,
|
|
@@ -6719,7 +6642,7 @@ var init_serde = require_rolldown_runtime.__esmMin((() => {
|
|
|
6719
6642
|
}));
|
|
6720
6643
|
|
|
6721
6644
|
//#endregion
|
|
6722
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6645
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js
|
|
6723
6646
|
async function blobReader(blob, onChunk, chunkSize = 1024 * 1024) {
|
|
6724
6647
|
const size = blob.size;
|
|
6725
6648
|
let totalBytesRead = 0;
|
|
@@ -6732,7 +6655,7 @@ async function blobReader(blob, onChunk, chunkSize = 1024 * 1024) {
|
|
|
6732
6655
|
var init_chunked_blob_reader = require_rolldown_runtime.__esmMin((() => {}));
|
|
6733
6656
|
|
|
6734
6657
|
//#endregion
|
|
6735
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6658
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js
|
|
6736
6659
|
var blobHasher;
|
|
6737
6660
|
var init_blobHasher = require_rolldown_runtime.__esmMin((() => {
|
|
6738
6661
|
init_chunked_blob_reader();
|
|
@@ -6746,7 +6669,7 @@ var init_blobHasher = require_rolldown_runtime.__esmMin((() => {
|
|
|
6746
6669
|
}));
|
|
6747
6670
|
|
|
6748
6671
|
//#endregion
|
|
6749
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6672
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js
|
|
6750
6673
|
var HashCalculator;
|
|
6751
6674
|
var init_HashCalculator = require_rolldown_runtime.__esmMin((() => {
|
|
6752
6675
|
init_serde();
|
|
@@ -6768,7 +6691,7 @@ var init_HashCalculator = require_rolldown_runtime.__esmMin((() => {
|
|
|
6768
6691
|
}));
|
|
6769
6692
|
|
|
6770
6693
|
//#endregion
|
|
6771
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6694
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js
|
|
6772
6695
|
var fileStreamHasher, isReadStream;
|
|
6773
6696
|
var init_fileStreamHasher = require_rolldown_runtime.__esmMin((() => {
|
|
6774
6697
|
init_HashCalculator();
|
|
@@ -6797,7 +6720,7 @@ var init_fileStreamHasher = require_rolldown_runtime.__esmMin((() => {
|
|
|
6797
6720
|
}));
|
|
6798
6721
|
|
|
6799
6722
|
//#endregion
|
|
6800
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6723
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/readableStreamHasher.js
|
|
6801
6724
|
var readableStreamHasher;
|
|
6802
6725
|
var init_readableStreamHasher = require_rolldown_runtime.__esmMin((() => {
|
|
6803
6726
|
init_HashCalculator();
|
|
@@ -6822,7 +6745,7 @@ var init_readableStreamHasher = require_rolldown_runtime.__esmMin((() => {
|
|
|
6822
6745
|
}));
|
|
6823
6746
|
|
|
6824
6747
|
//#endregion
|
|
6825
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6748
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Js.js
|
|
6826
6749
|
function compress(state, block) {
|
|
6827
6750
|
let a = state[0], b = state[1], c = state[2], d = state[3];
|
|
6828
6751
|
for (let i = 0; i < 64; ++i) {
|
|
@@ -6922,7 +6845,7 @@ var init_Md5Js = require_rolldown_runtime.__esmMin((() => {
|
|
|
6922
6845
|
}));
|
|
6923
6846
|
|
|
6924
6847
|
//#endregion
|
|
6925
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6848
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Node.js
|
|
6926
6849
|
function buildNativeClass$2() {
|
|
6927
6850
|
return class Md5Node {
|
|
6928
6851
|
digestLength = 16;
|
|
@@ -6955,7 +6878,7 @@ var init_Md5Node = require_rolldown_runtime.__esmMin((() => {
|
|
|
6955
6878
|
}));
|
|
6956
6879
|
|
|
6957
6880
|
//#endregion
|
|
6958
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6881
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js
|
|
6959
6882
|
var CRC32_TABLE, ONES, Crc32Js;
|
|
6960
6883
|
var init_Crc32Js = require_rolldown_runtime.__esmMin((() => {
|
|
6961
6884
|
CRC32_TABLE = new Uint32Array(256);
|
|
@@ -6991,7 +6914,7 @@ var init_Crc32Js = require_rolldown_runtime.__esmMin((() => {
|
|
|
6991
6914
|
}));
|
|
6992
6915
|
|
|
6993
6916
|
//#endregion
|
|
6994
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6917
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js
|
|
6995
6918
|
function buildNativeClass$1(nativeCrc32) {
|
|
6996
6919
|
return class Crc32Node {
|
|
6997
6920
|
digestLength = 4;
|
|
@@ -7020,7 +6943,7 @@ var init_Crc32Node = require_rolldown_runtime.__esmMin((() => {
|
|
|
7020
6943
|
}));
|
|
7021
6944
|
|
|
7022
6945
|
//#endregion
|
|
7023
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6946
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Js.js
|
|
7024
6947
|
var BLOCK, DIGEST_LENGTH, MAX_HASHABLE_LENGTH, Sha256Js, INIT, K;
|
|
7025
6948
|
var init_Sha256Js = require_rolldown_runtime.__esmMin((() => {
|
|
7026
6949
|
init_serde();
|
|
@@ -7257,7 +7180,7 @@ var init_Sha256Js = require_rolldown_runtime.__esmMin((() => {
|
|
|
7257
7180
|
}));
|
|
7258
7181
|
|
|
7259
7182
|
//#endregion
|
|
7260
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7183
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Node.js
|
|
7261
7184
|
function buildNativeClass() {
|
|
7262
7185
|
return class Sha256Node {
|
|
7263
7186
|
digestLength = 32;
|
|
@@ -7319,7 +7242,7 @@ var init_Sha256Node = require_rolldown_runtime.__esmMin((() => {
|
|
|
7319
7242
|
}));
|
|
7320
7243
|
|
|
7321
7244
|
//#endregion
|
|
7322
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7245
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256WebCrypto.js
|
|
7323
7246
|
var digest, sign, importKey, subtle, MAX_PENDING_BYTES, Sha256WebCrypto;
|
|
7324
7247
|
var init_Sha256WebCrypto = require_rolldown_runtime.__esmMin((() => {
|
|
7325
7248
|
init_serde();
|
|
@@ -7397,7 +7320,7 @@ var init_Sha256WebCrypto = require_rolldown_runtime.__esmMin((() => {
|
|
|
7397
7320
|
}));
|
|
7398
7321
|
|
|
7399
7322
|
//#endregion
|
|
7400
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7323
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/checksum/index.js
|
|
7401
7324
|
var checksum_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
7402
7325
|
Crc32: () => Crc32Node,
|
|
7403
7326
|
Crc32Js: () => Crc32Js,
|
|
@@ -7429,7 +7352,7 @@ var init_checksum = require_rolldown_runtime.__esmMin((() => {
|
|
|
7429
7352
|
}));
|
|
7430
7353
|
|
|
7431
7354
|
//#endregion
|
|
7432
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7355
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js
|
|
7433
7356
|
function negate(bytes) {
|
|
7434
7357
|
for (let i = 0; i < 8; i++) {
|
|
7435
7358
|
bytes[i] ^= 255;
|
|
@@ -7478,7 +7401,7 @@ var init_Int64 = require_rolldown_runtime.__esmMin((() => {
|
|
|
7478
7401
|
}));
|
|
7479
7402
|
|
|
7480
7403
|
//#endregion
|
|
7481
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7404
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js
|
|
7482
7405
|
var HeaderMarshaller, HEADER_VALUE_TYPE, BOOLEAN_TAG, BYTE_TAG, SHORT_TAG, INT_TAG, LONG_TAG, BINARY_TAG, STRING_TAG, TIMESTAMP_TAG, UUID_TAG, UUID_PATTERN;
|
|
7483
7406
|
var init_HeaderMarshaller = require_rolldown_runtime.__esmMin((() => {
|
|
7484
7407
|
init_transport();
|
|
@@ -7667,7 +7590,7 @@ var init_HeaderMarshaller = require_rolldown_runtime.__esmMin((() => {
|
|
|
7667
7590
|
}));
|
|
7668
7591
|
|
|
7669
7592
|
//#endregion
|
|
7670
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7593
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/splitMessage.js
|
|
7671
7594
|
function splitMessage({ byteLength, byteOffset, buffer }) {
|
|
7672
7595
|
if (byteLength < MINIMUM_MESSAGE_LENGTH) {
|
|
7673
7596
|
throw new Error("Provided message too short to accommodate event stream message overhead");
|
|
@@ -7704,7 +7627,7 @@ var init_splitMessage = require_rolldown_runtime.__esmMin((() => {
|
|
|
7704
7627
|
}));
|
|
7705
7628
|
|
|
7706
7629
|
//#endregion
|
|
7707
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7630
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/EventStreamCodec.js
|
|
7708
7631
|
var EventStreamCodec;
|
|
7709
7632
|
var init_EventStreamCodec = require_rolldown_runtime.__esmMin((() => {
|
|
7710
7633
|
init_checksum();
|
|
@@ -7780,7 +7703,7 @@ var init_EventStreamCodec = require_rolldown_runtime.__esmMin((() => {
|
|
|
7780
7703
|
}));
|
|
7781
7704
|
|
|
7782
7705
|
//#endregion
|
|
7783
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7706
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/MessageDecoderStream.js
|
|
7784
7707
|
var MessageDecoderStream;
|
|
7785
7708
|
var init_MessageDecoderStream = require_rolldown_runtime.__esmMin((() => {
|
|
7786
7709
|
MessageDecoderStream = class {
|
|
@@ -7801,7 +7724,7 @@ var init_MessageDecoderStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
7801
7724
|
}));
|
|
7802
7725
|
|
|
7803
7726
|
//#endregion
|
|
7804
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7727
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/MessageEncoderStream.js
|
|
7805
7728
|
var MessageEncoderStream;
|
|
7806
7729
|
var init_MessageEncoderStream = require_rolldown_runtime.__esmMin((() => {
|
|
7807
7730
|
MessageEncoderStream = class {
|
|
@@ -7825,7 +7748,7 @@ var init_MessageEncoderStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
7825
7748
|
}));
|
|
7826
7749
|
|
|
7827
7750
|
//#endregion
|
|
7828
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7751
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/SmithyMessageDecoderStream.js
|
|
7829
7752
|
var SmithyMessageDecoderStream;
|
|
7830
7753
|
var init_SmithyMessageDecoderStream = require_rolldown_runtime.__esmMin((() => {
|
|
7831
7754
|
SmithyMessageDecoderStream = class {
|
|
@@ -7847,7 +7770,7 @@ var init_SmithyMessageDecoderStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
7847
7770
|
}));
|
|
7848
7771
|
|
|
7849
7772
|
//#endregion
|
|
7850
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7773
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/SmithyMessageEncoderStream.js
|
|
7851
7774
|
var SmithyMessageEncoderStream;
|
|
7852
7775
|
var init_SmithyMessageEncoderStream = require_rolldown_runtime.__esmMin((() => {
|
|
7853
7776
|
SmithyMessageEncoderStream = class {
|
|
@@ -7868,7 +7791,7 @@ var init_SmithyMessageEncoderStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
7868
7791
|
}));
|
|
7869
7792
|
|
|
7870
7793
|
//#endregion
|
|
7871
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7794
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/getChunkedStream.js
|
|
7872
7795
|
function getChunkedStream(source) {
|
|
7873
7796
|
let currentMessageTotalLength = 0;
|
|
7874
7797
|
let currentMessagePendingLength = 0;
|
|
@@ -7934,7 +7857,7 @@ function getChunkedStream(source) {
|
|
|
7934
7857
|
var init_getChunkedStream = require_rolldown_runtime.__esmMin((() => {}));
|
|
7935
7858
|
|
|
7936
7859
|
//#endregion
|
|
7937
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7860
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.js
|
|
7938
7861
|
function getUnmarshalledStream(source, options) {
|
|
7939
7862
|
const messageUnmarshaller = getMessageUnmarshaller(options.deserializer, options.toUtf8);
|
|
7940
7863
|
return { [Symbol.asyncIterator]: async function* () {
|
|
@@ -7976,7 +7899,7 @@ function getMessageUnmarshaller(deserializer, toUtf8) {
|
|
|
7976
7899
|
var init_getUnmarshalledStream = require_rolldown_runtime.__esmMin((() => {}));
|
|
7977
7900
|
|
|
7978
7901
|
//#endregion
|
|
7979
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7902
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js
|
|
7980
7903
|
var EventStreamMarshaller$1, eventStreamSerdeProvider$1;
|
|
7981
7904
|
var init_EventStreamMarshaller$1 = require_rolldown_runtime.__esmMin((() => {
|
|
7982
7905
|
init_EventStreamCodec();
|
|
@@ -8018,7 +7941,7 @@ var init_EventStreamMarshaller$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
8018
7941
|
}));
|
|
8019
7942
|
|
|
8020
7943
|
//#endregion
|
|
8021
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7944
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js
|
|
8022
7945
|
async function* readableToIterable(readStream) {
|
|
8023
7946
|
let streamEnded = false;
|
|
8024
7947
|
let generationEnded = false;
|
|
@@ -8068,7 +7991,7 @@ var init_EventStreamMarshaller = require_rolldown_runtime.__esmMin((() => {
|
|
|
8068
7991
|
}));
|
|
8069
7992
|
|
|
8070
7993
|
//#endregion
|
|
8071
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7994
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js
|
|
8072
7995
|
var readableStreamToIterable, iterableToReadableStream;
|
|
8073
7996
|
var init_utils = require_rolldown_runtime.__esmMin((() => {
|
|
8074
7997
|
readableStreamToIterable = (readableStream) => ({ [Symbol.asyncIterator]: async function* () {
|
|
@@ -8096,14 +8019,14 @@ var init_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
8096
8019
|
}));
|
|
8097
8020
|
|
|
8098
8021
|
//#endregion
|
|
8099
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
8022
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-config-resolver/EventStreamSerdeConfig.js
|
|
8100
8023
|
var resolveEventStreamSerdeConfig;
|
|
8101
8024
|
var init_EventStreamSerdeConfig = require_rolldown_runtime.__esmMin((() => {
|
|
8102
8025
|
resolveEventStreamSerdeConfig = (input) => Object.assign(input, { eventStreamMarshaller: input.eventStreamSerdeProvider(input) });
|
|
8103
8026
|
}));
|
|
8104
8027
|
|
|
8105
8028
|
//#endregion
|
|
8106
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
8029
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js
|
|
8107
8030
|
var EventStreamSerde;
|
|
8108
8031
|
var init_EventStreamSerde = require_rolldown_runtime.__esmMin((() => {
|
|
8109
8032
|
init_transport();
|
|
@@ -8381,7 +8304,7 @@ var init_EventStreamSerde = require_rolldown_runtime.__esmMin((() => {
|
|
|
8381
8304
|
}));
|
|
8382
8305
|
|
|
8383
8306
|
//#endregion
|
|
8384
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
8307
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.34.1/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js
|
|
8385
8308
|
var event_streams_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
8386
8309
|
EventStreamCodec: () => EventStreamCodec,
|
|
8387
8310
|
EventStreamMarshaller: () => EventStreamMarshaller,
|
|
@@ -9188,12 +9111,6 @@ Object.defineProperty(exports, 'quoteHeader', {
|
|
|
9188
9111
|
return quoteHeader;
|
|
9189
9112
|
}
|
|
9190
9113
|
});
|
|
9191
|
-
Object.defineProperty(exports, 'require_dist_cjs', {
|
|
9192
|
-
enumerable: true,
|
|
9193
|
-
get: function () {
|
|
9194
|
-
return require_dist_cjs;
|
|
9195
|
-
}
|
|
9196
|
-
});
|
|
9197
9114
|
Object.defineProperty(exports, 'resolveDefaultRuntimeConfig', {
|
|
9198
9115
|
enumerable: true,
|
|
9199
9116
|
get: function () {
|