@junando/worker 0.12.1 → 0.12.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/{checksum-AM2soALR.cjs → checksum-Conn-Zv6.cjs} +473 -243
- package/dist/{dist-CbGq-c4z.cjs → dist-DV15lRHH.cjs} +1 -1
- package/dist/{es5-CBwA-Kuh.cjs → es5-BeSWht5a.cjs} +1 -1
- package/dist/{event-streams-cGG6y4x_.cjs → event-streams-D4zq5a68.cjs} +74 -49
- package/dist/handler.cjs +19082 -12044
- package/dist/node-CaH-Nh2c.cjs +39 -0
- package/dist/node-DdUjbr7d.cjs +2703 -0
- package/dist/{rolldown-runtime-CfAboj1T.cjs → rolldown-runtime-BDXX5GFZ.cjs} +1 -2
- package/dist/{sdk-a89HQ1X4.cjs → sdk-DKBOmAd5.cjs} +3409 -771
- package/package.json +9 -9
- package/dist/checksum-DYd9h1Z6.cjs +0 -7720
- package/dist/dist-cjs-mxzJ7CE9.cjs +0 -100
- package/dist/event-streams-x0B21mfk.cjs +0 -953
- package/dist/node-BYAxz9X-.cjs +0 -1186
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
const require_rolldown_runtime = require('./rolldown-runtime-
|
|
2
|
-
const require_dist_cjs$1 = require('./dist-cjs-mxzJ7CE9.cjs');
|
|
1
|
+
const require_rolldown_runtime = require('./rolldown-runtime-BDXX5GFZ.cjs');
|
|
3
2
|
let node_crypto = require("node:crypto");
|
|
4
3
|
let node_os = require("node:os");
|
|
5
4
|
let node_fs = require("node:fs");
|
|
@@ -9,7 +8,7 @@ let node_fs_promises = require("node:fs/promises");
|
|
|
9
8
|
let node_zlib = require("node:zlib");
|
|
10
9
|
node_zlib = require_rolldown_runtime.__toESM(node_zlib);
|
|
11
10
|
|
|
12
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
11
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/middleware-stack/MiddlewareStack.js
|
|
13
12
|
var getAllAliases, getMiddlewareNameWithAliases, constructStack, stepWeights, priorityWeights;
|
|
14
13
|
var init_MiddlewareStack = require_rolldown_runtime.__esmMin((() => {
|
|
15
14
|
getAllAliases = (name, aliases) => {
|
|
@@ -273,15 +272,114 @@ var init_MiddlewareStack = require_rolldown_runtime.__esmMin((() => {
|
|
|
273
272
|
}));
|
|
274
273
|
|
|
275
274
|
//#endregion
|
|
276
|
-
//#region ../../node_modules/.pnpm/@smithy+
|
|
275
|
+
//#region ../../node_modules/.pnpm/@smithy+types@4.18.0/node_modules/@smithy/types/dist-cjs/index.js
|
|
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
|
|
277
368
|
var import_dist_cjs$6, getSmithyContext;
|
|
278
369
|
var init_getSmithyContext = require_rolldown_runtime.__esmMin((() => {
|
|
279
|
-
import_dist_cjs$6 = require_dist_cjs
|
|
370
|
+
import_dist_cjs$6 = require_dist_cjs();
|
|
280
371
|
getSmithyContext = (context) => context[import_dist_cjs$6.SMITHY_CONTEXT_KEY] || (context[import_dist_cjs$6.SMITHY_CONTEXT_KEY] = {});
|
|
281
372
|
}));
|
|
282
373
|
|
|
283
374
|
//#endregion
|
|
284
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
375
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/hasOwn.js
|
|
376
|
+
function hasOwn(o, k) {
|
|
377
|
+
return Object.prototype.hasOwnProperty.call(o, k);
|
|
378
|
+
}
|
|
379
|
+
var init_hasOwn = require_rolldown_runtime.__esmMin((() => {}));
|
|
380
|
+
|
|
381
|
+
//#endregion
|
|
382
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/httpRequest.js
|
|
285
383
|
function cloneQuery(query) {
|
|
286
384
|
return Object.keys(query).reduce((carry, paramName) => {
|
|
287
385
|
const param = query[paramName];
|
|
@@ -342,7 +440,7 @@ var init_httpRequest = require_rolldown_runtime.__esmMin((() => {
|
|
|
342
440
|
}));
|
|
343
441
|
|
|
344
442
|
//#endregion
|
|
345
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
443
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/httpResponse.js
|
|
346
444
|
var HttpResponse;
|
|
347
445
|
var init_httpResponse = require_rolldown_runtime.__esmMin((() => {
|
|
348
446
|
HttpResponse = class {
|
|
@@ -365,7 +463,7 @@ var init_httpResponse = require_rolldown_runtime.__esmMin((() => {
|
|
|
365
463
|
}));
|
|
366
464
|
|
|
367
465
|
//#endregion
|
|
368
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
466
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/isValidHostLabel.js
|
|
369
467
|
var VALID_HOST_LABEL_REGEX, isValidHostLabel;
|
|
370
468
|
var init_isValidHostLabel = require_rolldown_runtime.__esmMin((() => {
|
|
371
469
|
VALID_HOST_LABEL_REGEX = new RegExp(`^(?!.*-$)(?!-)[a-zA-Z0-9-]{1,63}$`);
|
|
@@ -384,7 +482,7 @@ var init_isValidHostLabel = require_rolldown_runtime.__esmMin((() => {
|
|
|
384
482
|
}));
|
|
385
483
|
|
|
386
484
|
//#endregion
|
|
387
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
485
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/isValidHostname.js
|
|
388
486
|
function isValidHostname(hostname) {
|
|
389
487
|
const hostPattern = /^[a-z0-9][a-z0-9.-]*[a-z0-9]$/;
|
|
390
488
|
return hostPattern.test(hostname);
|
|
@@ -392,7 +490,7 @@ function isValidHostname(hostname) {
|
|
|
392
490
|
var init_isValidHostname = require_rolldown_runtime.__esmMin((() => {}));
|
|
393
491
|
|
|
394
492
|
//#endregion
|
|
395
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
493
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/normalizeProvider.js
|
|
396
494
|
var normalizeProvider;
|
|
397
495
|
var init_normalizeProvider = require_rolldown_runtime.__esmMin((() => {
|
|
398
496
|
normalizeProvider = (input) => {
|
|
@@ -403,7 +501,7 @@ var init_normalizeProvider = require_rolldown_runtime.__esmMin((() => {
|
|
|
403
501
|
}));
|
|
404
502
|
|
|
405
503
|
//#endregion
|
|
406
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
504
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/parseQueryString.js
|
|
407
505
|
function parseQueryString(querystring) {
|
|
408
506
|
const query = {};
|
|
409
507
|
querystring = querystring.replace(/^\?/, "");
|
|
@@ -428,7 +526,7 @@ function parseQueryString(querystring) {
|
|
|
428
526
|
var init_parseQueryString = require_rolldown_runtime.__esmMin((() => {}));
|
|
429
527
|
|
|
430
528
|
//#endregion
|
|
431
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
529
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/parseUrl.js
|
|
432
530
|
var parseUrl;
|
|
433
531
|
var init_parseUrl = require_rolldown_runtime.__esmMin((() => {
|
|
434
532
|
init_parseQueryString();
|
|
@@ -452,9 +550,10 @@ var init_parseUrl = require_rolldown_runtime.__esmMin((() => {
|
|
|
452
550
|
}));
|
|
453
551
|
|
|
454
552
|
//#endregion
|
|
455
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
553
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/toEndpointV1.js
|
|
456
554
|
var toEndpointV1;
|
|
457
555
|
var init_toEndpointV1$1 = require_rolldown_runtime.__esmMin((() => {
|
|
556
|
+
init_hasOwn();
|
|
458
557
|
init_parseUrl();
|
|
459
558
|
toEndpointV1 = (endpoint) => {
|
|
460
559
|
if (typeof endpoint === "object") {
|
|
@@ -463,6 +562,7 @@ var init_toEndpointV1$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
463
562
|
if (endpoint.headers) {
|
|
464
563
|
v1Endpoint.headers = {};
|
|
465
564
|
for (const name in endpoint.headers) {
|
|
565
|
+
if (!hasOwn(endpoint.headers, name)) continue;
|
|
466
566
|
v1Endpoint.headers[name.toLowerCase()] = endpoint.headers[name].join(", ");
|
|
467
567
|
}
|
|
468
568
|
}
|
|
@@ -475,9 +575,10 @@ var init_toEndpointV1$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
475
575
|
}));
|
|
476
576
|
|
|
477
577
|
//#endregion
|
|
478
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
578
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/transport/index.js
|
|
479
579
|
var init_transport = require_rolldown_runtime.__esmMin((() => {
|
|
480
580
|
init_getSmithyContext();
|
|
581
|
+
init_hasOwn();
|
|
481
582
|
init_httpRequest();
|
|
482
583
|
init_httpResponse();
|
|
483
584
|
init_isValidHostLabel();
|
|
@@ -489,7 +590,7 @@ var init_transport = require_rolldown_runtime.__esmMin((() => {
|
|
|
489
590
|
}));
|
|
490
591
|
|
|
491
592
|
//#endregion
|
|
492
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
593
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/invalid-dependency/invalidFunction.js
|
|
493
594
|
var invalidFunction;
|
|
494
595
|
var init_invalidFunction = require_rolldown_runtime.__esmMin((() => {
|
|
495
596
|
invalidFunction = (message) => () => {
|
|
@@ -498,14 +599,14 @@ var init_invalidFunction = require_rolldown_runtime.__esmMin((() => {
|
|
|
498
599
|
}));
|
|
499
600
|
|
|
500
601
|
//#endregion
|
|
501
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
602
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/invalid-dependency/invalidProvider.js
|
|
502
603
|
var invalidProvider;
|
|
503
604
|
var init_invalidProvider = require_rolldown_runtime.__esmMin((() => {
|
|
504
605
|
invalidProvider = (message) => () => Promise.reject(message);
|
|
505
606
|
}));
|
|
506
607
|
|
|
507
608
|
//#endregion
|
|
508
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
609
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/circularReplacer.js
|
|
509
610
|
var getCircularReplacer;
|
|
510
611
|
var init_circularReplacer = require_rolldown_runtime.__esmMin((() => {
|
|
511
612
|
getCircularReplacer = () => {
|
|
@@ -523,7 +624,7 @@ var init_circularReplacer = require_rolldown_runtime.__esmMin((() => {
|
|
|
523
624
|
}));
|
|
524
625
|
|
|
525
626
|
//#endregion
|
|
526
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
627
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/sleep.js
|
|
527
628
|
var sleep;
|
|
528
629
|
var init_sleep = require_rolldown_runtime.__esmMin((() => {
|
|
529
630
|
sleep = (seconds) => {
|
|
@@ -532,7 +633,7 @@ var init_sleep = require_rolldown_runtime.__esmMin((() => {
|
|
|
532
633
|
}));
|
|
533
634
|
|
|
534
635
|
//#endregion
|
|
535
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
636
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/waiter.js
|
|
536
637
|
var waiterServiceDefaults, WaiterState, checkExceptions;
|
|
537
638
|
var init_waiter = require_rolldown_runtime.__esmMin((() => {
|
|
538
639
|
init_circularReplacer();
|
|
@@ -571,7 +672,7 @@ var init_waiter = require_rolldown_runtime.__esmMin((() => {
|
|
|
571
672
|
}));
|
|
572
673
|
|
|
573
674
|
//#endregion
|
|
574
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
675
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js
|
|
575
676
|
var runPolling, checkWarn403, createMessageFromResponse, exponentialBackoffWithJitter, randomInRange;
|
|
576
677
|
var init_poller = require_rolldown_runtime.__esmMin((() => {
|
|
577
678
|
init_circularReplacer();
|
|
@@ -673,7 +774,7 @@ var init_poller = require_rolldown_runtime.__esmMin((() => {
|
|
|
673
774
|
}));
|
|
674
775
|
|
|
675
776
|
//#endregion
|
|
676
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
777
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/validate.js
|
|
677
778
|
var validateWaiterOptions;
|
|
678
779
|
var init_validate = require_rolldown_runtime.__esmMin((() => {
|
|
679
780
|
validateWaiterOptions = (options) => {
|
|
@@ -692,7 +793,7 @@ var init_validate = require_rolldown_runtime.__esmMin((() => {
|
|
|
692
793
|
}));
|
|
693
794
|
|
|
694
795
|
//#endregion
|
|
695
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
796
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js
|
|
696
797
|
var abortTimeout, createWaiter;
|
|
697
798
|
var init_createWaiter = require_rolldown_runtime.__esmMin((() => {
|
|
698
799
|
init_poller();
|
|
@@ -745,7 +846,7 @@ var init_createWaiter = require_rolldown_runtime.__esmMin((() => {
|
|
|
745
846
|
}));
|
|
746
847
|
|
|
747
848
|
//#endregion
|
|
748
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
849
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js
|
|
749
850
|
var Client;
|
|
750
851
|
var init_client$1 = require_rolldown_runtime.__esmMin((() => {
|
|
751
852
|
init_MiddlewareStack();
|
|
@@ -797,7 +898,7 @@ var init_client$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
797
898
|
}));
|
|
798
899
|
|
|
799
900
|
//#endregion
|
|
800
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
901
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/deref.js
|
|
801
902
|
var deref;
|
|
802
903
|
var init_deref = require_rolldown_runtime.__esmMin((() => {
|
|
803
904
|
deref = (schemaRef) => {
|
|
@@ -809,7 +910,7 @@ var init_deref = require_rolldown_runtime.__esmMin((() => {
|
|
|
809
910
|
}));
|
|
810
911
|
|
|
811
912
|
//#endregion
|
|
812
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
913
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js
|
|
813
914
|
var operation;
|
|
814
915
|
var init_operation = require_rolldown_runtime.__esmMin((() => {
|
|
815
916
|
operation = (namespace, name, traits, input, output) => ({
|
|
@@ -822,7 +923,7 @@ var init_operation = require_rolldown_runtime.__esmMin((() => {
|
|
|
822
923
|
}));
|
|
823
924
|
|
|
824
925
|
//#endregion
|
|
825
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
926
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js
|
|
826
927
|
var schemaDeserializationMiddleware, findHeader$1;
|
|
827
928
|
var init_schemaDeserializationMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
828
929
|
init_transport();
|
|
@@ -887,7 +988,7 @@ var init_schemaDeserializationMiddleware = require_rolldown_runtime.__esmMin((()
|
|
|
887
988
|
}));
|
|
888
989
|
|
|
889
990
|
//#endregion
|
|
890
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
991
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js
|
|
891
992
|
var schemaSerializationMiddleware;
|
|
892
993
|
var init_schemaSerializationMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
893
994
|
init_transport();
|
|
@@ -909,7 +1010,7 @@ var init_schemaSerializationMiddleware = require_rolldown_runtime.__esmMin((() =
|
|
|
909
1010
|
}));
|
|
910
1011
|
|
|
911
1012
|
//#endregion
|
|
912
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1013
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js
|
|
913
1014
|
function getSchemaSerdePlugin(config) {
|
|
914
1015
|
return { applyToStack: (commandStack) => {
|
|
915
1016
|
commandStack.add(schemaSerializationMiddleware(config), serializerMiddlewareOption$2);
|
|
@@ -936,7 +1037,7 @@ var init_getSchemaSerdePlugin = require_rolldown_runtime.__esmMin((() => {
|
|
|
936
1037
|
}));
|
|
937
1038
|
|
|
938
1039
|
//#endregion
|
|
939
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1040
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js
|
|
940
1041
|
var Schema;
|
|
941
1042
|
var init_Schema = require_rolldown_runtime.__esmMin((() => {
|
|
942
1043
|
Schema = class {
|
|
@@ -962,14 +1063,12 @@ var init_Schema = require_rolldown_runtime.__esmMin((() => {
|
|
|
962
1063
|
}));
|
|
963
1064
|
|
|
964
1065
|
//#endregion
|
|
965
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1066
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js
|
|
966
1067
|
var ListSchema, list;
|
|
967
1068
|
var init_ListSchema = require_rolldown_runtime.__esmMin((() => {
|
|
968
1069
|
init_Schema();
|
|
969
1070
|
ListSchema = class ListSchema extends Schema {
|
|
970
1071
|
static symbol = Symbol.for("@smithy/lis");
|
|
971
|
-
name;
|
|
972
|
-
traits;
|
|
973
1072
|
valueSchema;
|
|
974
1073
|
symbol = ListSchema.symbol;
|
|
975
1074
|
};
|
|
@@ -982,14 +1081,12 @@ var init_ListSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
982
1081
|
}));
|
|
983
1082
|
|
|
984
1083
|
//#endregion
|
|
985
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1084
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js
|
|
986
1085
|
var MapSchema, map$1;
|
|
987
1086
|
var init_MapSchema = require_rolldown_runtime.__esmMin((() => {
|
|
988
1087
|
init_Schema();
|
|
989
1088
|
MapSchema = class MapSchema extends Schema {
|
|
990
1089
|
static symbol = Symbol.for("@smithy/map");
|
|
991
|
-
name;
|
|
992
|
-
traits;
|
|
993
1090
|
keySchema;
|
|
994
1091
|
valueSchema;
|
|
995
1092
|
symbol = MapSchema.symbol;
|
|
@@ -1004,14 +1101,12 @@ var init_MapSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1004
1101
|
}));
|
|
1005
1102
|
|
|
1006
1103
|
//#endregion
|
|
1007
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1104
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js
|
|
1008
1105
|
var OperationSchema, op;
|
|
1009
1106
|
var init_OperationSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1010
1107
|
init_Schema();
|
|
1011
1108
|
OperationSchema = class OperationSchema extends Schema {
|
|
1012
1109
|
static symbol = Symbol.for("@smithy/ope");
|
|
1013
|
-
name;
|
|
1014
|
-
traits;
|
|
1015
1110
|
input;
|
|
1016
1111
|
output;
|
|
1017
1112
|
symbol = OperationSchema.symbol;
|
|
@@ -1026,14 +1121,12 @@ var init_OperationSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1026
1121
|
}));
|
|
1027
1122
|
|
|
1028
1123
|
//#endregion
|
|
1029
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1124
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js
|
|
1030
1125
|
var StructureSchema, struct;
|
|
1031
1126
|
var init_StructureSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1032
1127
|
init_Schema();
|
|
1033
1128
|
StructureSchema = class StructureSchema extends Schema {
|
|
1034
1129
|
static symbol = Symbol.for("@smithy/str");
|
|
1035
|
-
name;
|
|
1036
|
-
traits;
|
|
1037
1130
|
memberNames;
|
|
1038
1131
|
memberList;
|
|
1039
1132
|
symbol = StructureSchema.symbol;
|
|
@@ -1048,7 +1141,7 @@ var init_StructureSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1048
1141
|
}));
|
|
1049
1142
|
|
|
1050
1143
|
//#endregion
|
|
1051
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1144
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js
|
|
1052
1145
|
var ErrorSchema, error;
|
|
1053
1146
|
var init_ErrorSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1054
1147
|
init_Schema();
|
|
@@ -1069,7 +1162,7 @@ var init_ErrorSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1069
1162
|
}));
|
|
1070
1163
|
|
|
1071
1164
|
//#endregion
|
|
1072
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1165
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js
|
|
1073
1166
|
function translateTraits(indicator) {
|
|
1074
1167
|
if (typeof indicator === "object") {
|
|
1075
1168
|
return indicator;
|
|
@@ -1101,7 +1194,7 @@ var init_translateTraits = require_rolldown_runtime.__esmMin((() => {
|
|
|
1101
1194
|
}));
|
|
1102
1195
|
|
|
1103
1196
|
//#endregion
|
|
1104
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1197
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js
|
|
1105
1198
|
function member(memberSchema, memberName) {
|
|
1106
1199
|
if (memberSchema instanceof NormalizedSchema) {
|
|
1107
1200
|
return Object.assign(memberSchema, {
|
|
@@ -1392,15 +1485,13 @@ var init_NormalizedSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1392
1485
|
}));
|
|
1393
1486
|
|
|
1394
1487
|
//#endregion
|
|
1395
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1488
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js
|
|
1396
1489
|
var SimpleSchema, sim, simAdapter;
|
|
1397
1490
|
var init_SimpleSchema = require_rolldown_runtime.__esmMin((() => {
|
|
1398
1491
|
init_Schema();
|
|
1399
1492
|
SimpleSchema = class SimpleSchema extends Schema {
|
|
1400
1493
|
static symbol = Symbol.for("@smithy/sim");
|
|
1401
|
-
name;
|
|
1402
1494
|
schemaRef;
|
|
1403
|
-
traits;
|
|
1404
1495
|
symbol = SimpleSchema.symbol;
|
|
1405
1496
|
};
|
|
1406
1497
|
sim = (namespace, name, schemaRef, traits) => Schema.assign(new SimpleSchema(), {
|
|
@@ -1418,7 +1509,7 @@ var init_SimpleSchema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1418
1509
|
}));
|
|
1419
1510
|
|
|
1420
1511
|
//#endregion
|
|
1421
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1512
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js
|
|
1422
1513
|
var SCHEMA;
|
|
1423
1514
|
var init_sentinels = require_rolldown_runtime.__esmMin((() => {
|
|
1424
1515
|
SCHEMA = {
|
|
@@ -1440,7 +1531,7 @@ var init_sentinels = require_rolldown_runtime.__esmMin((() => {
|
|
|
1440
1531
|
}));
|
|
1441
1532
|
|
|
1442
1533
|
//#endregion
|
|
1443
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1534
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js
|
|
1444
1535
|
var TypeRegistry;
|
|
1445
1536
|
var init_TypeRegistry = require_rolldown_runtime.__esmMin((() => {
|
|
1446
1537
|
TypeRegistry = class TypeRegistry {
|
|
@@ -1547,7 +1638,36 @@ var init_TypeRegistry = require_rolldown_runtime.__esmMin((() => {
|
|
|
1547
1638
|
}));
|
|
1548
1639
|
|
|
1549
1640
|
//#endregion
|
|
1550
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1641
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/schema/index.js
|
|
1642
|
+
var schema_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
1643
|
+
ErrorSchema: () => ErrorSchema,
|
|
1644
|
+
ListSchema: () => ListSchema,
|
|
1645
|
+
MapSchema: () => MapSchema,
|
|
1646
|
+
NormalizedSchema: () => NormalizedSchema,
|
|
1647
|
+
OperationSchema: () => OperationSchema,
|
|
1648
|
+
SCHEMA: () => SCHEMA,
|
|
1649
|
+
Schema: () => Schema,
|
|
1650
|
+
SimpleSchema: () => SimpleSchema,
|
|
1651
|
+
StructureSchema: () => StructureSchema,
|
|
1652
|
+
TypeRegistry: () => TypeRegistry,
|
|
1653
|
+
deref: () => deref,
|
|
1654
|
+
deserializerMiddlewareOption: () => deserializerMiddlewareOption$1,
|
|
1655
|
+
error: () => error,
|
|
1656
|
+
getSchemaSerdePlugin: () => getSchemaSerdePlugin,
|
|
1657
|
+
isStaticSchema: () => isStaticSchema,
|
|
1658
|
+
list: () => list,
|
|
1659
|
+
map: () => map$1,
|
|
1660
|
+
op: () => op,
|
|
1661
|
+
operation: () => operation,
|
|
1662
|
+
serializerMiddlewareOption: () => serializerMiddlewareOption$2,
|
|
1663
|
+
sim: () => sim,
|
|
1664
|
+
simAdapter: () => simAdapter,
|
|
1665
|
+
simpleSchemaCacheN: () => simpleSchemaCacheN,
|
|
1666
|
+
simpleSchemaCacheS: () => simpleSchemaCacheS,
|
|
1667
|
+
struct: () => struct,
|
|
1668
|
+
traitsCache: () => traitsCache,
|
|
1669
|
+
translateTraits: () => translateTraits
|
|
1670
|
+
});
|
|
1551
1671
|
var init_schema = require_rolldown_runtime.__esmMin((() => {
|
|
1552
1672
|
init_deref();
|
|
1553
1673
|
init_getSchemaSerdePlugin();
|
|
@@ -1566,7 +1686,7 @@ var init_schema = require_rolldown_runtime.__esmMin((() => {
|
|
|
1566
1686
|
}));
|
|
1567
1687
|
|
|
1568
1688
|
//#endregion
|
|
1569
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1689
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/schemaLogFilter.js
|
|
1570
1690
|
function schemaLogFilter(schema, data) {
|
|
1571
1691
|
if (data == null) {
|
|
1572
1692
|
return data;
|
|
@@ -1604,10 +1724,10 @@ var init_schemaLogFilter = require_rolldown_runtime.__esmMin((() => {
|
|
|
1604
1724
|
}));
|
|
1605
1725
|
|
|
1606
1726
|
//#endregion
|
|
1607
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1727
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js
|
|
1608
1728
|
var import_dist_cjs$5, Command, ClassBuilder;
|
|
1609
1729
|
var init_command = require_rolldown_runtime.__esmMin((() => {
|
|
1610
|
-
import_dist_cjs$5 = require_dist_cjs
|
|
1730
|
+
import_dist_cjs$5 = require_dist_cjs();
|
|
1611
1731
|
init_MiddlewareStack();
|
|
1612
1732
|
init_schemaLogFilter();
|
|
1613
1733
|
Command = class {
|
|
@@ -1741,14 +1861,14 @@ var init_command = require_rolldown_runtime.__esmMin((() => {
|
|
|
1741
1861
|
}));
|
|
1742
1862
|
|
|
1743
1863
|
//#endregion
|
|
1744
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1864
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/constants.js
|
|
1745
1865
|
var SENSITIVE_STRING;
|
|
1746
1866
|
var init_constants$2 = require_rolldown_runtime.__esmMin((() => {
|
|
1747
1867
|
SENSITIVE_STRING = "***SensitiveInformation***";
|
|
1748
1868
|
}));
|
|
1749
1869
|
|
|
1750
1870
|
//#endregion
|
|
1751
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1871
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/create-aggregated-client.js
|
|
1752
1872
|
var createAggregatedClient;
|
|
1753
1873
|
var init_create_aggregated_client = require_rolldown_runtime.__esmMin((() => {
|
|
1754
1874
|
createAggregatedClient = (commands, Client, options) => {
|
|
@@ -1796,7 +1916,7 @@ var init_create_aggregated_client = require_rolldown_runtime.__esmMin((() => {
|
|
|
1796
1916
|
}));
|
|
1797
1917
|
|
|
1798
1918
|
//#endregion
|
|
1799
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1919
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/exceptions.js
|
|
1800
1920
|
var ServiceException, decorateServiceException;
|
|
1801
1921
|
var init_exceptions = require_rolldown_runtime.__esmMin((() => {
|
|
1802
1922
|
ServiceException = class ServiceException extends Error {
|
|
@@ -1845,7 +1965,7 @@ var init_exceptions = require_rolldown_runtime.__esmMin((() => {
|
|
|
1845
1965
|
}));
|
|
1846
1966
|
|
|
1847
1967
|
//#endregion
|
|
1848
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
1968
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/default-error-handler.js
|
|
1849
1969
|
var throwDefaultError, withBaseException, deserializeMetadata;
|
|
1850
1970
|
var init_default_error_handler = require_rolldown_runtime.__esmMin((() => {
|
|
1851
1971
|
init_exceptions();
|
|
@@ -1878,7 +1998,7 @@ var init_default_error_handler = require_rolldown_runtime.__esmMin((() => {
|
|
|
1878
1998
|
}));
|
|
1879
1999
|
|
|
1880
2000
|
//#endregion
|
|
1881
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2001
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/defaults-mode.js
|
|
1882
2002
|
var loadConfigsForDefaultMode;
|
|
1883
2003
|
var init_defaults_mode = require_rolldown_runtime.__esmMin((() => {
|
|
1884
2004
|
loadConfigsForDefaultMode = (mode) => {
|
|
@@ -1905,7 +2025,7 @@ var init_defaults_mode = require_rolldown_runtime.__esmMin((() => {
|
|
|
1905
2025
|
}));
|
|
1906
2026
|
|
|
1907
2027
|
//#endregion
|
|
1908
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2028
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.js
|
|
1909
2029
|
var warningEmitted, emitWarningIfUnsupportedVersion;
|
|
1910
2030
|
var init_emitWarningIfUnsupportedVersion = require_rolldown_runtime.__esmMin((() => {
|
|
1911
2031
|
warningEmitted = false;
|
|
@@ -1917,14 +2037,16 @@ var init_emitWarningIfUnsupportedVersion = require_rolldown_runtime.__esmMin((()
|
|
|
1917
2037
|
}));
|
|
1918
2038
|
|
|
1919
2039
|
//#endregion
|
|
1920
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2040
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js
|
|
1921
2041
|
var import_dist_cjs$4, knownAlgorithms, getChecksumConfiguration, resolveChecksumRuntimeConfig;
|
|
1922
2042
|
var init_checksum$1 = require_rolldown_runtime.__esmMin((() => {
|
|
1923
|
-
|
|
2043
|
+
init_transport();
|
|
2044
|
+
import_dist_cjs$4 = require_dist_cjs();
|
|
1924
2045
|
knownAlgorithms = Object.values(import_dist_cjs$4.AlgorithmId);
|
|
1925
2046
|
getChecksumConfiguration = (runtimeConfig) => {
|
|
1926
2047
|
const checksumAlgorithms = [];
|
|
1927
2048
|
for (const id in import_dist_cjs$4.AlgorithmId) {
|
|
2049
|
+
if (!hasOwn(import_dist_cjs$4.AlgorithmId, id)) continue;
|
|
1928
2050
|
const algorithmId = import_dist_cjs$4.AlgorithmId[id];
|
|
1929
2051
|
if (runtimeConfig[algorithmId] === undefined) {
|
|
1930
2052
|
continue;
|
|
@@ -1970,7 +2092,7 @@ var init_checksum$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
1970
2092
|
}));
|
|
1971
2093
|
|
|
1972
2094
|
//#endregion
|
|
1973
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2095
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/retry.js
|
|
1974
2096
|
var getRetryConfiguration, resolveRetryRuntimeConfig;
|
|
1975
2097
|
var init_retry = require_rolldown_runtime.__esmMin((() => {
|
|
1976
2098
|
getRetryConfiguration = (runtimeConfig) => {
|
|
@@ -1991,7 +2113,7 @@ var init_retry = require_rolldown_runtime.__esmMin((() => {
|
|
|
1991
2113
|
}));
|
|
1992
2114
|
|
|
1993
2115
|
//#endregion
|
|
1994
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2116
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js
|
|
1995
2117
|
var getDefaultExtensionConfiguration, getDefaultClientConfiguration, resolveDefaultRuntimeConfig;
|
|
1996
2118
|
var init_defaultExtensionConfiguration = require_rolldown_runtime.__esmMin((() => {
|
|
1997
2119
|
init_checksum$1();
|
|
@@ -2006,20 +2128,22 @@ var init_defaultExtensionConfiguration = require_rolldown_runtime.__esmMin((() =
|
|
|
2006
2128
|
}));
|
|
2007
2129
|
|
|
2008
2130
|
//#endregion
|
|
2009
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2131
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-array-if-single-item.js
|
|
2010
2132
|
var getArrayIfSingleItem;
|
|
2011
2133
|
var init_get_array_if_single_item = require_rolldown_runtime.__esmMin((() => {
|
|
2012
2134
|
getArrayIfSingleItem = (mayBeArray) => Array.isArray(mayBeArray) ? mayBeArray : [mayBeArray];
|
|
2013
2135
|
}));
|
|
2014
2136
|
|
|
2015
2137
|
//#endregion
|
|
2016
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2138
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js
|
|
2017
2139
|
var getValueFromTextNode;
|
|
2018
2140
|
var init_get_value_from_text_node = require_rolldown_runtime.__esmMin((() => {
|
|
2141
|
+
init_transport();
|
|
2019
2142
|
getValueFromTextNode = (obj) => {
|
|
2020
2143
|
const textNodeName = "#text";
|
|
2021
2144
|
for (const key in obj) {
|
|
2022
|
-
if (
|
|
2145
|
+
if (!hasOwn(obj, key)) continue;
|
|
2146
|
+
if (obj[key][textNodeName] !== undefined) {
|
|
2023
2147
|
obj[key] = obj[key][textNodeName];
|
|
2024
2148
|
} else if (typeof obj[key] === "object" && obj[key] !== null) {
|
|
2025
2149
|
obj[key] = getValueFromTextNode(obj[key]);
|
|
@@ -2030,7 +2154,7 @@ var init_get_value_from_text_node = require_rolldown_runtime.__esmMin((() => {
|
|
|
2030
2154
|
}));
|
|
2031
2155
|
|
|
2032
2156
|
//#endregion
|
|
2033
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2157
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/is-serializable-header-value.js
|
|
2034
2158
|
var isSerializableHeaderValue;
|
|
2035
2159
|
var init_is_serializable_header_value = require_rolldown_runtime.__esmMin((() => {
|
|
2036
2160
|
isSerializableHeaderValue = (value) => {
|
|
@@ -2039,7 +2163,7 @@ var init_is_serializable_header_value = require_rolldown_runtime.__esmMin((() =>
|
|
|
2039
2163
|
}));
|
|
2040
2164
|
|
|
2041
2165
|
//#endregion
|
|
2042
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2166
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/NoOpLogger.js
|
|
2043
2167
|
var NoOpLogger;
|
|
2044
2168
|
var init_NoOpLogger = require_rolldown_runtime.__esmMin((() => {
|
|
2045
2169
|
NoOpLogger = class {
|
|
@@ -2052,7 +2176,7 @@ var init_NoOpLogger = require_rolldown_runtime.__esmMin((() => {
|
|
|
2052
2176
|
}));
|
|
2053
2177
|
|
|
2054
2178
|
//#endregion
|
|
2055
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2179
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/object-mapping.js
|
|
2056
2180
|
function map(arg0, arg1, arg2) {
|
|
2057
2181
|
let target;
|
|
2058
2182
|
let filter;
|
|
@@ -2070,7 +2194,8 @@ function map(arg0, arg1, arg2) {
|
|
|
2070
2194
|
instructions = arg1;
|
|
2071
2195
|
}
|
|
2072
2196
|
}
|
|
2073
|
-
for (const key
|
|
2197
|
+
for (const key in instructions) {
|
|
2198
|
+
if (!hasOwn(instructions, key)) continue;
|
|
2074
2199
|
if (!Array.isArray(instructions[key])) {
|
|
2075
2200
|
target[key] = instructions[key];
|
|
2076
2201
|
continue;
|
|
@@ -2081,6 +2206,7 @@ function map(arg0, arg1, arg2) {
|
|
|
2081
2206
|
}
|
|
2082
2207
|
var convertMap, take, mapWithFilter, applyInstruction, nonNullish, pass;
|
|
2083
2208
|
var init_object_mapping = require_rolldown_runtime.__esmMin((() => {
|
|
2209
|
+
init_transport();
|
|
2084
2210
|
convertMap = (target) => {
|
|
2085
2211
|
const output = {};
|
|
2086
2212
|
for (const [k, v] of Object.entries(target || {})) {
|
|
@@ -2091,6 +2217,7 @@ var init_object_mapping = require_rolldown_runtime.__esmMin((() => {
|
|
|
2091
2217
|
take = (source, instructions) => {
|
|
2092
2218
|
const out = {};
|
|
2093
2219
|
for (const key in instructions) {
|
|
2220
|
+
if (!hasOwn(instructions, key)) continue;
|
|
2094
2221
|
applyInstruction(out, source, instructions, key);
|
|
2095
2222
|
}
|
|
2096
2223
|
return out;
|
|
@@ -2144,7 +2271,7 @@ var init_object_mapping = require_rolldown_runtime.__esmMin((() => {
|
|
|
2144
2271
|
}));
|
|
2145
2272
|
|
|
2146
2273
|
//#endregion
|
|
2147
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2274
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/ser-utils.js
|
|
2148
2275
|
var serializeFloat, serializeDateTime;
|
|
2149
2276
|
var init_ser_utils = require_rolldown_runtime.__esmMin((() => {
|
|
2150
2277
|
serializeFloat = (value) => {
|
|
@@ -2161,9 +2288,10 @@ var init_ser_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
2161
2288
|
}));
|
|
2162
2289
|
|
|
2163
2290
|
//#endregion
|
|
2164
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2291
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/serde-json.js
|
|
2165
2292
|
var _json;
|
|
2166
2293
|
var init_serde_json = require_rolldown_runtime.__esmMin((() => {
|
|
2294
|
+
init_transport();
|
|
2167
2295
|
_json = (obj) => {
|
|
2168
2296
|
if (obj == null) {
|
|
2169
2297
|
return {};
|
|
@@ -2173,7 +2301,8 @@ var init_serde_json = require_rolldown_runtime.__esmMin((() => {
|
|
|
2173
2301
|
}
|
|
2174
2302
|
if (typeof obj === "object") {
|
|
2175
2303
|
const target = {};
|
|
2176
|
-
for (const key
|
|
2304
|
+
for (const key in obj) {
|
|
2305
|
+
if (!hasOwn(obj, key)) continue;
|
|
2177
2306
|
if (obj[key] == null) {
|
|
2178
2307
|
continue;
|
|
2179
2308
|
}
|
|
@@ -2186,7 +2315,7 @@ var init_serde_json = require_rolldown_runtime.__esmMin((() => {
|
|
|
2186
2315
|
}));
|
|
2187
2316
|
|
|
2188
2317
|
//#endregion
|
|
2189
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2318
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js
|
|
2190
2319
|
function makeBuilder(common, service, name, ep) {
|
|
2191
2320
|
return function makeCommand(added, plugins, op, $, smithyContext = {}) {
|
|
2192
2321
|
const epMerged = Object.assign({}, common, added);
|
|
@@ -2202,7 +2331,7 @@ var init_client_command_builder = require_rolldown_runtime.__esmMin((() => {
|
|
|
2202
2331
|
}));
|
|
2203
2332
|
|
|
2204
2333
|
//#endregion
|
|
2205
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2334
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/client/index.js
|
|
2206
2335
|
var client_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
2207
2336
|
AlgorithmId: () => import_dist_cjs$4.AlgorithmId,
|
|
2208
2337
|
Client: () => Client,
|
|
@@ -2274,14 +2403,14 @@ var init_client = require_rolldown_runtime.__esmMin((() => {
|
|
|
2274
2403
|
}));
|
|
2275
2404
|
|
|
2276
2405
|
//#endregion
|
|
2277
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2406
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/is-array-buffer/is-array-buffer.js
|
|
2278
2407
|
var isArrayBuffer;
|
|
2279
2408
|
var init_is_array_buffer = require_rolldown_runtime.__esmMin((() => {
|
|
2280
2409
|
isArrayBuffer = (arg) => typeof ArrayBuffer === "function" && arg instanceof ArrayBuffer || Object.prototype.toString.call(arg) === "[object ArrayBuffer]";
|
|
2281
2410
|
}));
|
|
2282
2411
|
|
|
2283
2412
|
//#endregion
|
|
2284
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2413
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js
|
|
2285
2414
|
var fromArrayBuffer, fromString;
|
|
2286
2415
|
var init_buffer_from = require_rolldown_runtime.__esmMin((() => {
|
|
2287
2416
|
init_is_array_buffer();
|
|
@@ -2300,7 +2429,7 @@ var init_buffer_from = require_rolldown_runtime.__esmMin((() => {
|
|
|
2300
2429
|
}));
|
|
2301
2430
|
|
|
2302
2431
|
//#endregion
|
|
2303
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2432
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js
|
|
2304
2433
|
var BASE64_REGEX, fromBase64;
|
|
2305
2434
|
var init_fromBase64 = require_rolldown_runtime.__esmMin((() => {
|
|
2306
2435
|
init_buffer_from();
|
|
@@ -2318,7 +2447,7 @@ var init_fromBase64 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2318
2447
|
}));
|
|
2319
2448
|
|
|
2320
2449
|
//#endregion
|
|
2321
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2450
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js
|
|
2322
2451
|
var fromUtf8$1;
|
|
2323
2452
|
var init_fromUtf8 = require_rolldown_runtime.__esmMin((() => {
|
|
2324
2453
|
init_buffer_from();
|
|
@@ -2329,7 +2458,7 @@ var init_fromUtf8 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2329
2458
|
}));
|
|
2330
2459
|
|
|
2331
2460
|
//#endregion
|
|
2332
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2461
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js
|
|
2333
2462
|
var toBase64$1;
|
|
2334
2463
|
var init_toBase64 = require_rolldown_runtime.__esmMin((() => {
|
|
2335
2464
|
init_buffer_from();
|
|
@@ -2349,7 +2478,7 @@ var init_toBase64 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2349
2478
|
}));
|
|
2350
2479
|
|
|
2351
2480
|
//#endregion
|
|
2352
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2481
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js
|
|
2353
2482
|
function bindUint8ArrayBlobAdapter(toUtf8, fromUtf8, toBase64, fromBase64) {
|
|
2354
2483
|
return class Uint8ArrayBlobAdapter extends Uint8Array {
|
|
2355
2484
|
static fromString(source, encoding = "utf-8") {
|
|
@@ -2376,7 +2505,7 @@ function bindUint8ArrayBlobAdapter(toUtf8, fromUtf8, toBase64, fromBase64) {
|
|
|
2376
2505
|
var init_Uint8ArrayBlobAdapter = require_rolldown_runtime.__esmMin((() => {}));
|
|
2377
2506
|
|
|
2378
2507
|
//#endregion
|
|
2379
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2508
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js
|
|
2380
2509
|
var toUtf8$1;
|
|
2381
2510
|
var init_toUtf8 = require_rolldown_runtime.__esmMin((() => {
|
|
2382
2511
|
init_buffer_from();
|
|
@@ -2392,7 +2521,7 @@ var init_toUtf8 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2392
2521
|
}));
|
|
2393
2522
|
|
|
2394
2523
|
//#endregion
|
|
2395
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2524
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js
|
|
2396
2525
|
function bindV4(getRandomValues) {
|
|
2397
2526
|
if (typeof crypto !== "undefined" && typeof crypto.randomUUID === "function") {
|
|
2398
2527
|
return () => crypto.randomUUID();
|
|
@@ -2411,16 +2540,17 @@ var init_v4 = require_rolldown_runtime.__esmMin((() => {
|
|
|
2411
2540
|
}));
|
|
2412
2541
|
|
|
2413
2542
|
//#endregion
|
|
2414
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2543
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js
|
|
2415
2544
|
var copyDocumentWithTransform;
|
|
2416
2545
|
var init_copyDocumentWithTransform = require_rolldown_runtime.__esmMin((() => {
|
|
2417
2546
|
copyDocumentWithTransform = (source, _schemaRef, _transform = (_) => _) => source;
|
|
2418
2547
|
}));
|
|
2419
2548
|
|
|
2420
2549
|
//#endregion
|
|
2421
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2550
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js
|
|
2422
2551
|
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;
|
|
2423
2552
|
var init_parse_utils = require_rolldown_runtime.__esmMin((() => {
|
|
2553
|
+
init_transport();
|
|
2424
2554
|
parseBoolean = (value) => {
|
|
2425
2555
|
switch (value) {
|
|
2426
2556
|
case "true": return true;
|
|
@@ -2558,6 +2688,7 @@ var init_parse_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
2558
2688
|
const asObject = expectObject(value);
|
|
2559
2689
|
const setKeys = [];
|
|
2560
2690
|
for (const k in asObject) {
|
|
2691
|
+
if (!hasOwn(asObject, k)) continue;
|
|
2561
2692
|
if (asObject[k] != null) {
|
|
2562
2693
|
setKeys.push(k);
|
|
2563
2694
|
}
|
|
@@ -2645,7 +2776,7 @@ var init_parse_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
2645
2776
|
}));
|
|
2646
2777
|
|
|
2647
2778
|
//#endregion
|
|
2648
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
2779
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js
|
|
2649
2780
|
function dateToUtcString(date) {
|
|
2650
2781
|
const year = date.getUTCFullYear();
|
|
2651
2782
|
const month = date.getUTCMonth();
|
|
@@ -2890,7 +3021,7 @@ var init_date_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
2890
3021
|
}));
|
|
2891
3022
|
|
|
2892
3023
|
//#endregion
|
|
2893
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3024
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js
|
|
2894
3025
|
var LazyJsonString;
|
|
2895
3026
|
var init_lazy_json = require_rolldown_runtime.__esmMin((() => {
|
|
2896
3027
|
LazyJsonString = function LazyJsonString(val) {
|
|
@@ -2919,7 +3050,7 @@ var init_lazy_json = require_rolldown_runtime.__esmMin((() => {
|
|
|
2919
3050
|
}));
|
|
2920
3051
|
|
|
2921
3052
|
//#endregion
|
|
2922
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3053
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js
|
|
2923
3054
|
function quoteHeader(part) {
|
|
2924
3055
|
if (part.includes(",") || part.includes("\"")) {
|
|
2925
3056
|
part = `"${part.replace(/"/g, "\\\"")}"`;
|
|
@@ -2929,7 +3060,7 @@ function quoteHeader(part) {
|
|
|
2929
3060
|
var init_quote_header = require_rolldown_runtime.__esmMin((() => {}));
|
|
2930
3061
|
|
|
2931
3062
|
//#endregion
|
|
2932
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3063
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js
|
|
2933
3064
|
function range(v, min, max) {
|
|
2934
3065
|
const _v = Number(v);
|
|
2935
3066
|
if (_v < min || _v > max) {
|
|
@@ -3050,7 +3181,7 @@ var init_schema_date_utils = require_rolldown_runtime.__esmMin((() => {
|
|
|
3050
3181
|
}));
|
|
3051
3182
|
|
|
3052
3183
|
//#endregion
|
|
3053
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3184
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js
|
|
3054
3185
|
function splitEvery(value, delimiter, numDelimiters) {
|
|
3055
3186
|
if (numDelimiters <= 0 || !Number.isInteger(numDelimiters)) {
|
|
3056
3187
|
throw new Error("Invalid number of delimiters (" + numDelimiters + ") for splitEvery.");
|
|
@@ -3080,7 +3211,7 @@ function splitEvery(value, delimiter, numDelimiters) {
|
|
|
3080
3211
|
var init_split_every = require_rolldown_runtime.__esmMin((() => {}));
|
|
3081
3212
|
|
|
3082
3213
|
//#endregion
|
|
3083
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3214
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js
|
|
3084
3215
|
var splitHeader;
|
|
3085
3216
|
var init_split_header = require_rolldown_runtime.__esmMin((() => {
|
|
3086
3217
|
splitHeader = (value) => {
|
|
@@ -3123,13 +3254,13 @@ var init_split_header = require_rolldown_runtime.__esmMin((() => {
|
|
|
3123
3254
|
}));
|
|
3124
3255
|
|
|
3125
3256
|
//#endregion
|
|
3126
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3257
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js
|
|
3127
3258
|
function nv(input) {
|
|
3128
3259
|
return new NumericValue(String(input), "bigDecimal");
|
|
3129
3260
|
}
|
|
3130
3261
|
var format, NumericValue;
|
|
3131
3262
|
var init_NumericValue = require_rolldown_runtime.__esmMin((() => {
|
|
3132
|
-
format =
|
|
3263
|
+
format = /^-?((0|[1-9]\d*)(\.\d+)?|\.\d+)([eE][+-]?\d+)?$/;
|
|
3133
3264
|
NumericValue = class NumericValue {
|
|
3134
3265
|
string;
|
|
3135
3266
|
type;
|
|
@@ -3137,7 +3268,7 @@ var init_NumericValue = require_rolldown_runtime.__esmMin((() => {
|
|
|
3137
3268
|
this.string = string;
|
|
3138
3269
|
this.type = type;
|
|
3139
3270
|
if (!format.test(string)) {
|
|
3140
|
-
throw new Error(`@smithy/core/serde - NumericValue must
|
|
3271
|
+
throw new Error(`@smithy/core/serde - NumericValue string must conform to the Smithy bigDecimal format. Received: "${string}"`);
|
|
3141
3272
|
}
|
|
3142
3273
|
}
|
|
3143
3274
|
toString() {
|
|
@@ -3154,7 +3285,7 @@ var init_NumericValue = require_rolldown_runtime.__esmMin((() => {
|
|
|
3154
3285
|
}));
|
|
3155
3286
|
|
|
3156
3287
|
//#endregion
|
|
3157
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3288
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js
|
|
3158
3289
|
function fromHex(encoded) {
|
|
3159
3290
|
if (encoded.length % 2 !== 0) {
|
|
3160
3291
|
throw new Error("Hex encoded strings must have an even number length");
|
|
@@ -3192,7 +3323,7 @@ var init_hex_encoding = require_rolldown_runtime.__esmMin((() => {
|
|
|
3192
3323
|
}));
|
|
3193
3324
|
|
|
3194
3325
|
//#endregion
|
|
3195
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3326
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js
|
|
3196
3327
|
var calculateBodyLength;
|
|
3197
3328
|
var init_calculateBodyLength = require_rolldown_runtime.__esmMin((() => {
|
|
3198
3329
|
calculateBodyLength = (body) => {
|
|
@@ -3219,7 +3350,7 @@ var init_calculateBodyLength = require_rolldown_runtime.__esmMin((() => {
|
|
|
3219
3350
|
}));
|
|
3220
3351
|
|
|
3221
3352
|
//#endregion
|
|
3222
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3353
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.js
|
|
3223
3354
|
var toUint8Array;
|
|
3224
3355
|
var init_toUint8Array = require_rolldown_runtime.__esmMin((() => {
|
|
3225
3356
|
init_fromUtf8();
|
|
@@ -3238,7 +3369,7 @@ var init_toUint8Array = require_rolldown_runtime.__esmMin((() => {
|
|
|
3238
3369
|
}));
|
|
3239
3370
|
|
|
3240
3371
|
//#endregion
|
|
3241
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3372
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/concatBytes.js
|
|
3242
3373
|
function concatBytes(arrays, length) {
|
|
3243
3374
|
if (length === undefined) {
|
|
3244
3375
|
length = 0;
|
|
@@ -3257,7 +3388,7 @@ function concatBytes(arrays, length) {
|
|
|
3257
3388
|
var init_concatBytes = require_rolldown_runtime.__esmMin((() => {}));
|
|
3258
3389
|
|
|
3259
3390
|
//#endregion
|
|
3260
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3391
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js
|
|
3261
3392
|
var deserializerMiddleware, findHeader;
|
|
3262
3393
|
var init_deserializerMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
3263
3394
|
init_transport();
|
|
@@ -3316,7 +3447,7 @@ var init_deserializerMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
|
3316
3447
|
}));
|
|
3317
3448
|
|
|
3318
3449
|
//#endregion
|
|
3319
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3450
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/property-provider/ProviderError.js
|
|
3320
3451
|
var ProviderError;
|
|
3321
3452
|
var init_ProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
3322
3453
|
ProviderError = class ProviderError extends Error {
|
|
@@ -3344,7 +3475,7 @@ var init_ProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
|
3344
3475
|
}));
|
|
3345
3476
|
|
|
3346
3477
|
//#endregion
|
|
3347
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3478
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/property-provider/CredentialsProviderError.js
|
|
3348
3479
|
var CredentialsProviderError;
|
|
3349
3480
|
var init_CredentialsProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
3350
3481
|
init_ProviderError();
|
|
@@ -3358,7 +3489,7 @@ var init_CredentialsProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
|
3358
3489
|
}));
|
|
3359
3490
|
|
|
3360
3491
|
//#endregion
|
|
3361
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3492
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/property-provider/TokenProviderError.js
|
|
3362
3493
|
var TokenProviderError;
|
|
3363
3494
|
var init_TokenProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
3364
3495
|
init_ProviderError();
|
|
@@ -3372,7 +3503,7 @@ var init_TokenProviderError = require_rolldown_runtime.__esmMin((() => {
|
|
|
3372
3503
|
}));
|
|
3373
3504
|
|
|
3374
3505
|
//#endregion
|
|
3375
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3506
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/property-provider/chain.js
|
|
3376
3507
|
var chain;
|
|
3377
3508
|
var init_chain = require_rolldown_runtime.__esmMin((() => {
|
|
3378
3509
|
init_ProviderError();
|
|
@@ -3398,14 +3529,14 @@ var init_chain = require_rolldown_runtime.__esmMin((() => {
|
|
|
3398
3529
|
}));
|
|
3399
3530
|
|
|
3400
3531
|
//#endregion
|
|
3401
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3532
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js
|
|
3402
3533
|
var fromValue;
|
|
3403
3534
|
var init_fromValue = require_rolldown_runtime.__esmMin((() => {
|
|
3404
3535
|
fromValue = (staticValue) => () => Promise.resolve(staticValue);
|
|
3405
3536
|
}));
|
|
3406
3537
|
|
|
3407
3538
|
//#endregion
|
|
3408
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3539
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/property-provider/memoize.js
|
|
3409
3540
|
var memoize;
|
|
3410
3541
|
var init_memoize = require_rolldown_runtime.__esmMin((() => {
|
|
3411
3542
|
memoize = (provider, isExpired, requiresRefresh) => {
|
|
@@ -3455,7 +3586,7 @@ var init_memoize = require_rolldown_runtime.__esmMin((() => {
|
|
|
3455
3586
|
}));
|
|
3456
3587
|
|
|
3457
3588
|
//#endregion
|
|
3458
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3589
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/booleanSelector.js
|
|
3459
3590
|
var booleanSelector;
|
|
3460
3591
|
var init_booleanSelector = require_rolldown_runtime.__esmMin((() => {
|
|
3461
3592
|
booleanSelector = (obj, key, type) => {
|
|
@@ -3467,7 +3598,7 @@ var init_booleanSelector = require_rolldown_runtime.__esmMin((() => {
|
|
|
3467
3598
|
}));
|
|
3468
3599
|
|
|
3469
3600
|
//#endregion
|
|
3470
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3601
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/numberSelector.js
|
|
3471
3602
|
var numberSelector;
|
|
3472
3603
|
var init_numberSelector = require_rolldown_runtime.__esmMin((() => {
|
|
3473
3604
|
numberSelector = (obj, key, type) => {
|
|
@@ -3481,7 +3612,7 @@ var init_numberSelector = require_rolldown_runtime.__esmMin((() => {
|
|
|
3481
3612
|
}));
|
|
3482
3613
|
|
|
3483
3614
|
//#endregion
|
|
3484
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3615
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/types.js
|
|
3485
3616
|
var SelectorType;
|
|
3486
3617
|
var init_types$1 = require_rolldown_runtime.__esmMin((() => {
|
|
3487
3618
|
;
|
|
@@ -3492,7 +3623,7 @@ var init_types$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
3492
3623
|
}));
|
|
3493
3624
|
|
|
3494
3625
|
//#endregion
|
|
3495
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3626
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js
|
|
3496
3627
|
var homeDirCache, getHomeDirCacheKey, getHomeDir;
|
|
3497
3628
|
var init_getHomeDir = require_rolldown_runtime.__esmMin((() => {
|
|
3498
3629
|
homeDirCache = {};
|
|
@@ -3514,7 +3645,7 @@ var init_getHomeDir = require_rolldown_runtime.__esmMin((() => {
|
|
|
3514
3645
|
}));
|
|
3515
3646
|
|
|
3516
3647
|
//#endregion
|
|
3517
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3648
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getProfileName.js
|
|
3518
3649
|
var ENV_PROFILE, DEFAULT_PROFILE, getProfileName;
|
|
3519
3650
|
var init_getProfileName = require_rolldown_runtime.__esmMin((() => {
|
|
3520
3651
|
ENV_PROFILE = "AWS_PROFILE";
|
|
@@ -3523,7 +3654,7 @@ var init_getProfileName = require_rolldown_runtime.__esmMin((() => {
|
|
|
3523
3654
|
}));
|
|
3524
3655
|
|
|
3525
3656
|
//#endregion
|
|
3526
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3657
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js
|
|
3527
3658
|
var getSSOTokenFilepath;
|
|
3528
3659
|
var init_getSSOTokenFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
3529
3660
|
init_getHomeDir();
|
|
@@ -3535,7 +3666,7 @@ var init_getSSOTokenFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
|
3535
3666
|
}));
|
|
3536
3667
|
|
|
3537
3668
|
//#endregion
|
|
3538
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3669
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js
|
|
3539
3670
|
var tokenIntercept, getSSOTokenFromFile;
|
|
3540
3671
|
var init_getSSOTokenFromFile = require_rolldown_runtime.__esmMin((() => {
|
|
3541
3672
|
init_getSSOTokenFilepath();
|
|
@@ -3551,17 +3682,17 @@ var init_getSSOTokenFromFile = require_rolldown_runtime.__esmMin((() => {
|
|
|
3551
3682
|
}));
|
|
3552
3683
|
|
|
3553
3684
|
//#endregion
|
|
3554
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3685
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/constants.js
|
|
3555
3686
|
var CONFIG_PREFIX_SEPARATOR;
|
|
3556
3687
|
var init_constants$1 = require_rolldown_runtime.__esmMin((() => {
|
|
3557
3688
|
CONFIG_PREFIX_SEPARATOR = ".";
|
|
3558
3689
|
}));
|
|
3559
3690
|
|
|
3560
3691
|
//#endregion
|
|
3561
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3692
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigData.js
|
|
3562
3693
|
var import_dist_cjs$3, getConfigData;
|
|
3563
3694
|
var init_getConfigData = require_rolldown_runtime.__esmMin((() => {
|
|
3564
|
-
import_dist_cjs$3 = require_dist_cjs
|
|
3695
|
+
import_dist_cjs$3 = require_dist_cjs();
|
|
3565
3696
|
init_constants$1();
|
|
3566
3697
|
getConfigData = (data) => Object.entries(data).filter(([key]) => {
|
|
3567
3698
|
const indexOfSeparator = key.indexOf(".");
|
|
@@ -3578,7 +3709,7 @@ var init_getConfigData = require_rolldown_runtime.__esmMin((() => {
|
|
|
3578
3709
|
}));
|
|
3579
3710
|
|
|
3580
3711
|
//#endregion
|
|
3581
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3712
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigFilepath.js
|
|
3582
3713
|
var ENV_CONFIG_PATH, getConfigFilepath;
|
|
3583
3714
|
var init_getConfigFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
3584
3715
|
init_getHomeDir();
|
|
@@ -3587,7 +3718,7 @@ var init_getConfigFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
|
3587
3718
|
}));
|
|
3588
3719
|
|
|
3589
3720
|
//#endregion
|
|
3590
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3721
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getCredentialsFilepath.js
|
|
3591
3722
|
var ENV_CREDENTIALS_PATH, getCredentialsFilepath;
|
|
3592
3723
|
var init_getCredentialsFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
3593
3724
|
init_getHomeDir();
|
|
@@ -3596,10 +3727,10 @@ var init_getCredentialsFilepath = require_rolldown_runtime.__esmMin((() => {
|
|
|
3596
3727
|
}));
|
|
3597
3728
|
|
|
3598
3729
|
//#endregion
|
|
3599
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3730
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/parseIni.js
|
|
3600
3731
|
var import_dist_cjs$2, prefixKeyRegex, profileNameBlockList, parseIni;
|
|
3601
3732
|
var init_parseIni = require_rolldown_runtime.__esmMin((() => {
|
|
3602
|
-
import_dist_cjs$2 = require_dist_cjs
|
|
3733
|
+
import_dist_cjs$2 = require_dist_cjs();
|
|
3603
3734
|
init_constants$1();
|
|
3604
3735
|
prefixKeyRegex = /^([\w-]+)\s(["'])?([\w-@+.%:/]+)\2$/;
|
|
3605
3736
|
profileNameBlockList = ["__proto__", "profile __proto__"];
|
|
@@ -3648,7 +3779,7 @@ var init_parseIni = require_rolldown_runtime.__esmMin((() => {
|
|
|
3648
3779
|
}));
|
|
3649
3780
|
|
|
3650
3781
|
//#endregion
|
|
3651
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3782
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/readFile.js
|
|
3652
3783
|
var filePromises, fileIntercept, readFile;
|
|
3653
3784
|
var init_readFile = require_rolldown_runtime.__esmMin((() => {
|
|
3654
3785
|
filePromises = {};
|
|
@@ -3665,7 +3796,7 @@ var init_readFile = require_rolldown_runtime.__esmMin((() => {
|
|
|
3665
3796
|
}));
|
|
3666
3797
|
|
|
3667
3798
|
//#endregion
|
|
3668
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3799
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js
|
|
3669
3800
|
var swallowError$1, loadSharedConfigFiles;
|
|
3670
3801
|
var init_loadSharedConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
3671
3802
|
init_getConfigData();
|
|
@@ -3697,10 +3828,10 @@ var init_loadSharedConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
|
3697
3828
|
}));
|
|
3698
3829
|
|
|
3699
3830
|
//#endregion
|
|
3700
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3831
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSsoSessionData.js
|
|
3701
3832
|
var import_dist_cjs$1, getSsoSessionData;
|
|
3702
3833
|
var init_getSsoSessionData = require_rolldown_runtime.__esmMin((() => {
|
|
3703
|
-
import_dist_cjs$1 = require_dist_cjs
|
|
3834
|
+
import_dist_cjs$1 = require_dist_cjs();
|
|
3704
3835
|
init_loadSharedConfigFiles();
|
|
3705
3836
|
getSsoSessionData = (data) => Object.entries(data).filter(([key]) => key.startsWith(import_dist_cjs$1.IniSectionType.SSO_SESSION + ".")).reduce((acc, [key, value]) => ({
|
|
3706
3837
|
...acc,
|
|
@@ -3709,7 +3840,7 @@ var init_getSsoSessionData = require_rolldown_runtime.__esmMin((() => {
|
|
|
3709
3840
|
}));
|
|
3710
3841
|
|
|
3711
3842
|
//#endregion
|
|
3712
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3843
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSsoSessionData.js
|
|
3713
3844
|
var swallowError, loadSsoSessionData;
|
|
3714
3845
|
var init_loadSsoSessionData = require_rolldown_runtime.__esmMin((() => {
|
|
3715
3846
|
init_getConfigFilepath();
|
|
@@ -3721,7 +3852,7 @@ var init_loadSsoSessionData = require_rolldown_runtime.__esmMin((() => {
|
|
|
3721
3852
|
}));
|
|
3722
3853
|
|
|
3723
3854
|
//#endregion
|
|
3724
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3855
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/mergeConfigFiles.js
|
|
3725
3856
|
var mergeConfigFiles;
|
|
3726
3857
|
var init_mergeConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
3727
3858
|
mergeConfigFiles = (...files) => {
|
|
@@ -3740,7 +3871,7 @@ var init_mergeConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
|
3740
3871
|
}));
|
|
3741
3872
|
|
|
3742
3873
|
//#endregion
|
|
3743
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3874
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/parseKnownFiles.js
|
|
3744
3875
|
var parseKnownFiles;
|
|
3745
3876
|
var init_parseKnownFiles = require_rolldown_runtime.__esmMin((() => {
|
|
3746
3877
|
init_loadSharedConfigFiles();
|
|
@@ -3752,7 +3883,7 @@ var init_parseKnownFiles = require_rolldown_runtime.__esmMin((() => {
|
|
|
3752
3883
|
}));
|
|
3753
3884
|
|
|
3754
3885
|
//#endregion
|
|
3755
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3886
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/externalDataInterceptor.js
|
|
3756
3887
|
var externalDataInterceptor;
|
|
3757
3888
|
var init_externalDataInterceptor = require_rolldown_runtime.__esmMin((() => {
|
|
3758
3889
|
init_getSSOTokenFromFile();
|
|
@@ -3774,7 +3905,7 @@ var init_externalDataInterceptor = require_rolldown_runtime.__esmMin((() => {
|
|
|
3774
3905
|
}));
|
|
3775
3906
|
|
|
3776
3907
|
//#endregion
|
|
3777
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3908
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/getSelectorName.js
|
|
3778
3909
|
function getSelectorName(functionString) {
|
|
3779
3910
|
try {
|
|
3780
3911
|
const constants = new Set(Array.from(functionString.match(/([A-Z_]){3,}/g) ?? []));
|
|
@@ -3789,7 +3920,7 @@ function getSelectorName(functionString) {
|
|
|
3789
3920
|
var init_getSelectorName = require_rolldown_runtime.__esmMin((() => {}));
|
|
3790
3921
|
|
|
3791
3922
|
//#endregion
|
|
3792
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3923
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js
|
|
3793
3924
|
var fromEnv;
|
|
3794
3925
|
var init_fromEnv = require_rolldown_runtime.__esmMin((() => {
|
|
3795
3926
|
init_CredentialsProviderError();
|
|
@@ -3808,7 +3939,7 @@ var init_fromEnv = require_rolldown_runtime.__esmMin((() => {
|
|
|
3808
3939
|
}));
|
|
3809
3940
|
|
|
3810
3941
|
//#endregion
|
|
3811
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3942
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js
|
|
3812
3943
|
var fromSharedConfigFiles;
|
|
3813
3944
|
var init_fromSharedConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
3814
3945
|
init_CredentialsProviderError();
|
|
@@ -3841,7 +3972,7 @@ var init_fromSharedConfigFiles = require_rolldown_runtime.__esmMin((() => {
|
|
|
3841
3972
|
}));
|
|
3842
3973
|
|
|
3843
3974
|
//#endregion
|
|
3844
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3975
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js
|
|
3845
3976
|
var isFunction, fromStatic;
|
|
3846
3977
|
var init_fromStatic = require_rolldown_runtime.__esmMin((() => {
|
|
3847
3978
|
init_fromValue();
|
|
@@ -3850,7 +3981,7 @@ var init_fromStatic = require_rolldown_runtime.__esmMin((() => {
|
|
|
3850
3981
|
}));
|
|
3851
3982
|
|
|
3852
3983
|
//#endregion
|
|
3853
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
3984
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js
|
|
3854
3985
|
var loadConfig;
|
|
3855
3986
|
var init_configLoader = require_rolldown_runtime.__esmMin((() => {
|
|
3856
3987
|
init_chain();
|
|
@@ -3869,7 +4000,7 @@ var init_configLoader = require_rolldown_runtime.__esmMin((() => {
|
|
|
3869
4000
|
}));
|
|
3870
4001
|
|
|
3871
4002
|
//#endregion
|
|
3872
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4003
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js
|
|
3873
4004
|
var ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, nodeDualstackConfigSelectors;
|
|
3874
4005
|
var init_NodeUseDualstackEndpointConfigOptions = require_rolldown_runtime.__esmMin((() => {
|
|
3875
4006
|
init_booleanSelector();
|
|
@@ -3890,7 +4021,7 @@ var init_NodeUseDualstackEndpointConfigOptions = require_rolldown_runtime.__esmM
|
|
|
3890
4021
|
}));
|
|
3891
4022
|
|
|
3892
4023
|
//#endregion
|
|
3893
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4024
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js
|
|
3894
4025
|
var ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, nodeFipsConfigSelectors;
|
|
3895
4026
|
var init_NodeUseFipsEndpointConfigOptions = require_rolldown_runtime.__esmMin((() => {
|
|
3896
4027
|
init_booleanSelector();
|
|
@@ -3911,7 +4042,7 @@ var init_NodeUseFipsEndpointConfigOptions = require_rolldown_runtime.__esmMin(((
|
|
|
3911
4042
|
}));
|
|
3912
4043
|
|
|
3913
4044
|
//#endregion
|
|
3914
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4045
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js
|
|
3915
4046
|
var resolveCustomEndpointsConfig;
|
|
3916
4047
|
var init_resolveCustomEndpointsConfig = require_rolldown_runtime.__esmMin((() => {
|
|
3917
4048
|
init_client();
|
|
@@ -3927,7 +4058,7 @@ var init_resolveCustomEndpointsConfig = require_rolldown_runtime.__esmMin((() =>
|
|
|
3927
4058
|
}));
|
|
3928
4059
|
|
|
3929
4060
|
//#endregion
|
|
3930
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4061
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/utils/getEndpointFromRegion.js
|
|
3931
4062
|
var getEndpointFromRegion;
|
|
3932
4063
|
var init_getEndpointFromRegion = require_rolldown_runtime.__esmMin((() => {
|
|
3933
4064
|
getEndpointFromRegion = async (input) => {
|
|
@@ -3951,7 +4082,7 @@ var init_getEndpointFromRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
3951
4082
|
}));
|
|
3952
4083
|
|
|
3953
4084
|
//#endregion
|
|
3954
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4085
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js
|
|
3955
4086
|
var resolveEndpointsConfig;
|
|
3956
4087
|
var init_resolveEndpointsConfig = require_rolldown_runtime.__esmMin((() => {
|
|
3957
4088
|
init_client();
|
|
@@ -3973,7 +4104,7 @@ var init_resolveEndpointsConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
3973
4104
|
}));
|
|
3974
4105
|
|
|
3975
4106
|
//#endregion
|
|
3976
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4107
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/constants.js
|
|
3977
4108
|
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;
|
|
3978
4109
|
var init_constants = require_rolldown_runtime.__esmMin((() => {
|
|
3979
4110
|
AWS_EXECUTION_ENV = "AWS_EXECUTION_ENV";
|
|
@@ -3994,7 +4125,7 @@ var init_constants = require_rolldown_runtime.__esmMin((() => {
|
|
|
3994
4125
|
}));
|
|
3995
4126
|
|
|
3996
4127
|
//#endregion
|
|
3997
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4128
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js
|
|
3998
4129
|
var TIMEOUT_MS, NEG_CACHE_TTL_MS, negativeCacheUntil, getInstanceMetadataRegion, cacheNegativeAndReturnUndefined, resolveImdsEndpoint, imdsRequest;
|
|
3999
4130
|
var init_getInstanceMetadataRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4000
4131
|
init_constants();
|
|
@@ -4085,7 +4216,7 @@ var init_getInstanceMetadataRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
4085
4216
|
}));
|
|
4086
4217
|
|
|
4087
4218
|
//#endregion
|
|
4088
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4219
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js
|
|
4089
4220
|
var REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS;
|
|
4090
4221
|
var init_config$1 = require_rolldown_runtime.__esmMin((() => {
|
|
4091
4222
|
init_getInstanceMetadataRegion();
|
|
@@ -4106,7 +4237,7 @@ var init_config$1 = require_rolldown_runtime.__esmMin((() => {
|
|
|
4106
4237
|
}));
|
|
4107
4238
|
|
|
4108
4239
|
//#endregion
|
|
4109
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4240
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js
|
|
4110
4241
|
var validRegions, checkRegion;
|
|
4111
4242
|
var init_checkRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4112
4243
|
init_transport();
|
|
@@ -4125,14 +4256,14 @@ var init_checkRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
4125
4256
|
}));
|
|
4126
4257
|
|
|
4127
4258
|
//#endregion
|
|
4128
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4259
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/isFipsRegion.js
|
|
4129
4260
|
var isFipsRegion;
|
|
4130
4261
|
var init_isFipsRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4131
4262
|
isFipsRegion = (region) => typeof region === "string" && (region.startsWith("fips-") || region.endsWith("-fips"));
|
|
4132
4263
|
}));
|
|
4133
4264
|
|
|
4134
4265
|
//#endregion
|
|
4135
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4266
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getRealRegion.js
|
|
4136
4267
|
var getRealRegion;
|
|
4137
4268
|
var init_getRealRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4138
4269
|
init_isFipsRegion();
|
|
@@ -4140,7 +4271,7 @@ var init_getRealRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
4140
4271
|
}));
|
|
4141
4272
|
|
|
4142
4273
|
//#endregion
|
|
4143
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4274
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/resolveRegionConfig.js
|
|
4144
4275
|
var resolveRegionConfig;
|
|
4145
4276
|
var init_resolveRegionConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4146
4277
|
init_checkRegion();
|
|
@@ -4170,28 +4301,28 @@ var init_resolveRegionConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4170
4301
|
}));
|
|
4171
4302
|
|
|
4172
4303
|
//#endregion
|
|
4173
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4304
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getHostnameFromVariants.js
|
|
4174
4305
|
var getHostnameFromVariants;
|
|
4175
4306
|
var init_getHostnameFromVariants = require_rolldown_runtime.__esmMin((() => {
|
|
4176
4307
|
getHostnameFromVariants = (variants = [], { useFipsEndpoint, useDualstackEndpoint }) => variants.find(({ tags }) => useFipsEndpoint === tags.includes("fips") && useDualstackEndpoint === tags.includes("dualstack"))?.hostname;
|
|
4177
4308
|
}));
|
|
4178
4309
|
|
|
4179
4310
|
//#endregion
|
|
4180
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4311
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedHostname.js
|
|
4181
4312
|
var getResolvedHostname;
|
|
4182
4313
|
var init_getResolvedHostname = require_rolldown_runtime.__esmMin((() => {
|
|
4183
4314
|
getResolvedHostname = (resolvedRegion, { regionHostname, partitionHostname }) => regionHostname ? regionHostname : partitionHostname ? partitionHostname.replace("{region}", resolvedRegion) : undefined;
|
|
4184
4315
|
}));
|
|
4185
4316
|
|
|
4186
4317
|
//#endregion
|
|
4187
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4318
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedPartition.js
|
|
4188
4319
|
var getResolvedPartition;
|
|
4189
4320
|
var init_getResolvedPartition = require_rolldown_runtime.__esmMin((() => {
|
|
4190
4321
|
getResolvedPartition = (region, { partitionHash }) => Object.keys(partitionHash || {}).find((key) => partitionHash[key].regions.includes(region)) ?? "aws";
|
|
4191
4322
|
}));
|
|
4192
4323
|
|
|
4193
4324
|
//#endregion
|
|
4194
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4325
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedSigningRegion.js
|
|
4195
4326
|
var getResolvedSigningRegion;
|
|
4196
4327
|
var init_getResolvedSigningRegion = require_rolldown_runtime.__esmMin((() => {
|
|
4197
4328
|
getResolvedSigningRegion = (hostname, { signingRegion, regionRegex, useFipsEndpoint }) => {
|
|
@@ -4208,7 +4339,7 @@ var init_getResolvedSigningRegion = require_rolldown_runtime.__esmMin((() => {
|
|
|
4208
4339
|
}));
|
|
4209
4340
|
|
|
4210
4341
|
//#endregion
|
|
4211
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4342
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getRegionInfo.js
|
|
4212
4343
|
var getRegionInfo;
|
|
4213
4344
|
var init_getRegionInfo = require_rolldown_runtime.__esmMin((() => {
|
|
4214
4345
|
init_getHostnameFromVariants();
|
|
@@ -4251,7 +4382,7 @@ var init_getRegionInfo = require_rolldown_runtime.__esmMin((() => {
|
|
|
4251
4382
|
}));
|
|
4252
4383
|
|
|
4253
4384
|
//#endregion
|
|
4254
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4385
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/defaultsModeConfig.js
|
|
4255
4386
|
var AWS_DEFAULTS_MODE_ENV, AWS_DEFAULTS_MODE_CONFIG, NODE_DEFAULTS_MODE_CONFIG_OPTIONS;
|
|
4256
4387
|
var init_defaultsModeConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4257
4388
|
AWS_DEFAULTS_MODE_ENV = "AWS_DEFAULTS_MODE";
|
|
@@ -4268,7 +4399,7 @@ var init_defaultsModeConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4268
4399
|
}));
|
|
4269
4400
|
|
|
4270
4401
|
//#endregion
|
|
4271
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4402
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js
|
|
4272
4403
|
var resolveDefaultsModeConfig, resolveNodeDefaultsModeAuto, inferPhysicalRegion;
|
|
4273
4404
|
var init_resolveDefaultsModeConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4274
4405
|
init_config$1();
|
|
@@ -4314,7 +4445,7 @@ var init_resolveDefaultsModeConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4314
4445
|
}));
|
|
4315
4446
|
|
|
4316
4447
|
//#endregion
|
|
4317
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4448
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/config/index.js
|
|
4318
4449
|
var config_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
4319
4450
|
CONFIG_PREFIX_SEPARATOR: () => ".",
|
|
4320
4451
|
CONFIG_USE_DUALSTACK_ENDPOINT: () => CONFIG_USE_DUALSTACK_ENDPOINT,
|
|
@@ -4392,7 +4523,7 @@ var init_config = require_rolldown_runtime.__esmMin((() => {
|
|
|
4392
4523
|
}));
|
|
4393
4524
|
|
|
4394
4525
|
//#endregion
|
|
4395
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4526
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js
|
|
4396
4527
|
var ENV_ENDPOINT_URL, CONFIG_ENDPOINT_URL, getEndpointUrlConfig;
|
|
4397
4528
|
var init_getEndpointUrlConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4398
4529
|
init_config();
|
|
@@ -4427,7 +4558,7 @@ var init_getEndpointUrlConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4427
4558
|
}));
|
|
4428
4559
|
|
|
4429
4560
|
//#endregion
|
|
4430
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4561
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getIgnoreConfiguredEndpointUrls.js
|
|
4431
4562
|
var ENV_IGNORE_CONFIGURED_ENDPOINT_URLS, CONFIG_IGNORE_CONFIGURED_ENDPOINT_URLS, ignoreConfiguredEndpointUrlsConfigSelectors;
|
|
4432
4563
|
var init_getIgnoreConfiguredEndpointUrls = require_rolldown_runtime.__esmMin((() => {
|
|
4433
4564
|
init_config();
|
|
@@ -4441,7 +4572,7 @@ var init_getIgnoreConfiguredEndpointUrls = require_rolldown_runtime.__esmMin((()
|
|
|
4441
4572
|
}));
|
|
4442
4573
|
|
|
4443
4574
|
//#endregion
|
|
4444
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4575
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js
|
|
4445
4576
|
var getEndpointFromConfig;
|
|
4446
4577
|
var init_getEndpointFromConfig = require_rolldown_runtime.__esmMin((() => {
|
|
4447
4578
|
init_config();
|
|
@@ -4457,7 +4588,7 @@ var init_getEndpointFromConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4457
4588
|
}));
|
|
4458
4589
|
|
|
4459
4590
|
//#endregion
|
|
4460
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4591
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/s3.js
|
|
4461
4592
|
var resolveParamsForS3, DOMAIN_PATTERN, IP_ADDRESS_PATTERN, DOTS_PATTERN, DOT_PATTERN, S3_HOSTNAME_PATTERN, isDnsCompatibleBucketName, isArnBucketName;
|
|
4462
4593
|
var init_s3 = require_rolldown_runtime.__esmMin((() => {
|
|
4463
4594
|
resolveParamsForS3 = async (endpointParams) => {
|
|
@@ -4496,13 +4627,13 @@ var init_s3 = require_rolldown_runtime.__esmMin((() => {
|
|
|
4496
4627
|
}));
|
|
4497
4628
|
|
|
4498
4629
|
//#endregion
|
|
4499
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4630
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js
|
|
4500
4631
|
var init_service_customizations = require_rolldown_runtime.__esmMin((() => {
|
|
4501
4632
|
init_s3();
|
|
4502
4633
|
}));
|
|
4503
4634
|
|
|
4504
4635
|
//#endregion
|
|
4505
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4636
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/createConfigValueProvider.js
|
|
4506
4637
|
var createConfigValueProvider;
|
|
4507
4638
|
var init_createConfigValueProvider = require_rolldown_runtime.__esmMin((() => {
|
|
4508
4639
|
createConfigValueProvider = (configKey, canonicalEndpointParamKey, config, isClientContextParam = false) => {
|
|
@@ -4557,13 +4688,13 @@ var init_createConfigValueProvider = require_rolldown_runtime.__esmMin((() => {
|
|
|
4557
4688
|
}));
|
|
4558
4689
|
|
|
4559
4690
|
//#endregion
|
|
4560
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4691
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js
|
|
4561
4692
|
var init_toEndpointV1 = require_rolldown_runtime.__esmMin((() => {
|
|
4562
4693
|
init_transport();
|
|
4563
4694
|
}));
|
|
4564
4695
|
|
|
4565
4696
|
//#endregion
|
|
4566
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4697
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js
|
|
4567
4698
|
function bindGetEndpointFromInstructions(getEndpointFromConfig) {
|
|
4568
4699
|
return async (commandInput, instructionsSupplier, clientConfig, context) => {
|
|
4569
4700
|
if (!clientConfig.isCustomEndpoint && !clientConfig.ignoreConfiguredEndpointUrls) {
|
|
@@ -4633,7 +4764,7 @@ var init_getEndpointFromInstructions = require_rolldown_runtime.__esmMin((() =>
|
|
|
4633
4764
|
}));
|
|
4634
4765
|
|
|
4635
4766
|
//#endregion
|
|
4636
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4767
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js
|
|
4637
4768
|
function setFeature(context, feature, value) {
|
|
4638
4769
|
if (!context.__smithy_context) {
|
|
4639
4770
|
context.__smithy_context = { features: {} };
|
|
@@ -4680,7 +4811,7 @@ var init_endpointMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
|
4680
4811
|
}));
|
|
4681
4812
|
|
|
4682
4813
|
//#endregion
|
|
4683
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4814
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js
|
|
4684
4815
|
function bindGetEndpointPlugin(getEndpointFromConfig) {
|
|
4685
4816
|
const endpointMiddleware = bindEndpointMiddleware(getEndpointFromConfig);
|
|
4686
4817
|
return (config, instructions) => ({ applyToStack: (clientStack) => {
|
|
@@ -4714,7 +4845,7 @@ var init_getEndpointPlugin = require_rolldown_runtime.__esmMin((() => {
|
|
|
4714
4845
|
}));
|
|
4715
4846
|
|
|
4716
4847
|
//#endregion
|
|
4717
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4848
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js
|
|
4718
4849
|
function bindResolveEndpointConfig(getEndpointFromConfig) {
|
|
4719
4850
|
return (input) => {
|
|
4720
4851
|
const tls = input.tls ?? true;
|
|
@@ -4745,7 +4876,7 @@ var init_resolveEndpointConfig = require_rolldown_runtime.__esmMin((() => {
|
|
|
4745
4876
|
}));
|
|
4746
4877
|
|
|
4747
4878
|
//#endregion
|
|
4748
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4879
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.js
|
|
4749
4880
|
var BinaryDecisionDiagram;
|
|
4750
4881
|
var init_BinaryDecisionDiagram = require_rolldown_runtime.__esmMin((() => {
|
|
4751
4882
|
BinaryDecisionDiagram = class BinaryDecisionDiagram {
|
|
@@ -4766,7 +4897,7 @@ var init_BinaryDecisionDiagram = require_rolldown_runtime.__esmMin((() => {
|
|
|
4766
4897
|
}));
|
|
4767
4898
|
|
|
4768
4899
|
//#endregion
|
|
4769
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4900
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/cache/EndpointCache.js
|
|
4770
4901
|
var EndpointCache;
|
|
4771
4902
|
var init_EndpointCache = require_rolldown_runtime.__esmMin((() => {
|
|
4772
4903
|
EndpointCache = class {
|
|
@@ -4822,7 +4953,7 @@ var init_EndpointCache = require_rolldown_runtime.__esmMin((() => {
|
|
|
4822
4953
|
}));
|
|
4823
4954
|
|
|
4824
4955
|
//#endregion
|
|
4825
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4956
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/EndpointError.js
|
|
4826
4957
|
var EndpointError;
|
|
4827
4958
|
var init_EndpointError = require_rolldown_runtime.__esmMin((() => {
|
|
4828
4959
|
EndpointError = class extends Error {
|
|
@@ -4834,20 +4965,20 @@ var init_EndpointError = require_rolldown_runtime.__esmMin((() => {
|
|
|
4834
4965
|
}));
|
|
4835
4966
|
|
|
4836
4967
|
//#endregion
|
|
4837
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4968
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js
|
|
4838
4969
|
var init_types = require_rolldown_runtime.__esmMin((() => {
|
|
4839
4970
|
init_EndpointError();
|
|
4840
4971
|
}));
|
|
4841
4972
|
|
|
4842
4973
|
//#endregion
|
|
4843
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4974
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/debugId.js
|
|
4844
4975
|
var debugId;
|
|
4845
4976
|
var init_debugId = require_rolldown_runtime.__esmMin((() => {
|
|
4846
4977
|
debugId = "endpoints";
|
|
4847
4978
|
}));
|
|
4848
4979
|
|
|
4849
4980
|
//#endregion
|
|
4850
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4981
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/toDebugString.js
|
|
4851
4982
|
function toDebugString(input) {
|
|
4852
4983
|
if (typeof input !== "object" || input == null) {
|
|
4853
4984
|
return input;
|
|
@@ -4863,28 +4994,28 @@ function toDebugString(input) {
|
|
|
4863
4994
|
var init_toDebugString = require_rolldown_runtime.__esmMin((() => {}));
|
|
4864
4995
|
|
|
4865
4996
|
//#endregion
|
|
4866
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
4997
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js
|
|
4867
4998
|
var init_debug = require_rolldown_runtime.__esmMin((() => {
|
|
4868
4999
|
init_debugId();
|
|
4869
5000
|
init_toDebugString();
|
|
4870
5001
|
}));
|
|
4871
5002
|
|
|
4872
5003
|
//#endregion
|
|
4873
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5004
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/customEndpointFunctions.js
|
|
4874
5005
|
var customEndpointFunctions;
|
|
4875
5006
|
var init_customEndpointFunctions = require_rolldown_runtime.__esmMin((() => {
|
|
4876
5007
|
customEndpointFunctions = {};
|
|
4877
5008
|
}));
|
|
4878
5009
|
|
|
4879
5010
|
//#endregion
|
|
4880
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5011
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/booleanEquals.js
|
|
4881
5012
|
var booleanEquals;
|
|
4882
5013
|
var init_booleanEquals = require_rolldown_runtime.__esmMin((() => {
|
|
4883
5014
|
booleanEquals = (value1, value2) => value1 === value2;
|
|
4884
5015
|
}));
|
|
4885
5016
|
|
|
4886
5017
|
//#endregion
|
|
4887
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5018
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/coalesce.js
|
|
4888
5019
|
function coalesce(...args) {
|
|
4889
5020
|
for (const arg of args) {
|
|
4890
5021
|
if (arg != null) {
|
|
@@ -4896,7 +5027,7 @@ function coalesce(...args) {
|
|
|
4896
5027
|
var init_coalesce = require_rolldown_runtime.__esmMin((() => {}));
|
|
4897
5028
|
|
|
4898
5029
|
//#endregion
|
|
4899
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5030
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttrPathList.js
|
|
4900
5031
|
var getAttrPathList;
|
|
4901
5032
|
var init_getAttrPathList = require_rolldown_runtime.__esmMin((() => {
|
|
4902
5033
|
init_types();
|
|
@@ -4926,7 +5057,7 @@ var init_getAttrPathList = require_rolldown_runtime.__esmMin((() => {
|
|
|
4926
5057
|
}));
|
|
4927
5058
|
|
|
4928
5059
|
//#endregion
|
|
4929
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5060
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttr.js
|
|
4930
5061
|
var getAttr;
|
|
4931
5062
|
var init_getAttr = require_rolldown_runtime.__esmMin((() => {
|
|
4932
5063
|
init_types();
|
|
@@ -4943,28 +5074,28 @@ var init_getAttr = require_rolldown_runtime.__esmMin((() => {
|
|
|
4943
5074
|
}));
|
|
4944
5075
|
|
|
4945
5076
|
//#endregion
|
|
4946
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5077
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/isSet.js
|
|
4947
5078
|
var isSet;
|
|
4948
5079
|
var init_isSet = require_rolldown_runtime.__esmMin((() => {
|
|
4949
5080
|
isSet = (value) => value != null;
|
|
4950
5081
|
}));
|
|
4951
5082
|
|
|
4952
5083
|
//#endregion
|
|
4953
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5084
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/ite.js
|
|
4954
5085
|
function ite(condition, trueValue, falseValue) {
|
|
4955
5086
|
return condition ? trueValue : falseValue;
|
|
4956
5087
|
}
|
|
4957
5088
|
var init_ite = require_rolldown_runtime.__esmMin((() => {}));
|
|
4958
5089
|
|
|
4959
5090
|
//#endregion
|
|
4960
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5091
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/not.js
|
|
4961
5092
|
var not;
|
|
4962
5093
|
var init_not = require_rolldown_runtime.__esmMin((() => {
|
|
4963
5094
|
not = (value) => !value;
|
|
4964
5095
|
}));
|
|
4965
5096
|
|
|
4966
5097
|
//#endregion
|
|
4967
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5098
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/isIpAddress.js
|
|
4968
5099
|
var IP_V4_REGEX, isIpAddress;
|
|
4969
5100
|
var init_isIpAddress = require_rolldown_runtime.__esmMin((() => {
|
|
4970
5101
|
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}$`);
|
|
@@ -4972,10 +5103,10 @@ var init_isIpAddress = require_rolldown_runtime.__esmMin((() => {
|
|
|
4972
5103
|
}));
|
|
4973
5104
|
|
|
4974
5105
|
//#endregion
|
|
4975
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5106
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/parseURL.js
|
|
4976
5107
|
var import_dist_cjs, DEFAULT_PORTS, parseURL;
|
|
4977
5108
|
var init_parseURL = require_rolldown_runtime.__esmMin((() => {
|
|
4978
|
-
import_dist_cjs = require_dist_cjs
|
|
5109
|
+
import_dist_cjs = require_dist_cjs();
|
|
4979
5110
|
init_isIpAddress();
|
|
4980
5111
|
DEFAULT_PORTS = {
|
|
4981
5112
|
[import_dist_cjs.EndpointURLScheme.HTTP]: 80,
|
|
@@ -5025,7 +5156,7 @@ var init_parseURL = require_rolldown_runtime.__esmMin((() => {
|
|
|
5025
5156
|
}));
|
|
5026
5157
|
|
|
5027
5158
|
//#endregion
|
|
5028
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5159
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/split.js
|
|
5029
5160
|
function split(value, delimiter, limit) {
|
|
5030
5161
|
if (limit === 1) {
|
|
5031
5162
|
return [value];
|
|
@@ -5042,14 +5173,14 @@ function split(value, delimiter, limit) {
|
|
|
5042
5173
|
var init_split = require_rolldown_runtime.__esmMin((() => {}));
|
|
5043
5174
|
|
|
5044
5175
|
//#endregion
|
|
5045
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5176
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/stringEquals.js
|
|
5046
5177
|
var stringEquals;
|
|
5047
5178
|
var init_stringEquals = require_rolldown_runtime.__esmMin((() => {
|
|
5048
5179
|
stringEquals = (value1, value2) => value1 === value2;
|
|
5049
5180
|
}));
|
|
5050
5181
|
|
|
5051
5182
|
//#endregion
|
|
5052
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5183
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/substring.js
|
|
5053
5184
|
var substring;
|
|
5054
5185
|
var init_substring = require_rolldown_runtime.__esmMin((() => {
|
|
5055
5186
|
substring = (input, start, stop, reverse) => {
|
|
@@ -5064,14 +5195,14 @@ var init_substring = require_rolldown_runtime.__esmMin((() => {
|
|
|
5064
5195
|
}));
|
|
5065
5196
|
|
|
5066
5197
|
//#endregion
|
|
5067
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5198
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/uriEncode.js
|
|
5068
5199
|
var uriEncode;
|
|
5069
5200
|
var init_uriEncode = require_rolldown_runtime.__esmMin((() => {
|
|
5070
5201
|
uriEncode = (value) => encodeURIComponent(value).replace(/[!*'()]/g, (c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`);
|
|
5071
5202
|
}));
|
|
5072
5203
|
|
|
5073
5204
|
//#endregion
|
|
5074
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5205
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js
|
|
5075
5206
|
var init_lib = require_rolldown_runtime.__esmMin((() => {
|
|
5076
5207
|
init_booleanEquals();
|
|
5077
5208
|
init_coalesce();
|
|
@@ -5088,7 +5219,7 @@ var init_lib = require_rolldown_runtime.__esmMin((() => {
|
|
|
5088
5219
|
}));
|
|
5089
5220
|
|
|
5090
5221
|
//#endregion
|
|
5091
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5222
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/endpointFunctions.js
|
|
5092
5223
|
var endpointFunctions;
|
|
5093
5224
|
var init_endpointFunctions = require_rolldown_runtime.__esmMin((() => {
|
|
5094
5225
|
init_lib();
|
|
@@ -5109,7 +5240,7 @@ var init_endpointFunctions = require_rolldown_runtime.__esmMin((() => {
|
|
|
5109
5240
|
}));
|
|
5110
5241
|
|
|
5111
5242
|
//#endregion
|
|
5112
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5243
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateTemplate.js
|
|
5113
5244
|
var evaluateTemplate;
|
|
5114
5245
|
var init_evaluateTemplate = require_rolldown_runtime.__esmMin((() => {
|
|
5115
5246
|
init_lib();
|
|
@@ -5147,7 +5278,7 @@ var init_evaluateTemplate = require_rolldown_runtime.__esmMin((() => {
|
|
|
5147
5278
|
}));
|
|
5148
5279
|
|
|
5149
5280
|
//#endregion
|
|
5150
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5281
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getReferenceValue.js
|
|
5151
5282
|
var getReferenceValue;
|
|
5152
5283
|
var init_getReferenceValue = require_rolldown_runtime.__esmMin((() => {
|
|
5153
5284
|
getReferenceValue = ({ ref }, options) => {
|
|
@@ -5156,7 +5287,7 @@ var init_getReferenceValue = require_rolldown_runtime.__esmMin((() => {
|
|
|
5156
5287
|
}));
|
|
5157
5288
|
|
|
5158
5289
|
//#endregion
|
|
5159
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5290
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js
|
|
5160
5291
|
var evaluateExpression, callFunction, group$2;
|
|
5161
5292
|
var init_evaluateExpression = require_rolldown_runtime.__esmMin((() => {
|
|
5162
5293
|
init_types();
|
|
@@ -5205,13 +5336,13 @@ var init_evaluateExpression = require_rolldown_runtime.__esmMin((() => {
|
|
|
5205
5336
|
}));
|
|
5206
5337
|
|
|
5207
5338
|
//#endregion
|
|
5208
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5339
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/callFunction.js
|
|
5209
5340
|
var init_callFunction = require_rolldown_runtime.__esmMin((() => {
|
|
5210
5341
|
init_evaluateExpression();
|
|
5211
5342
|
}));
|
|
5212
5343
|
|
|
5213
5344
|
//#endregion
|
|
5214
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5345
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateCondition.js
|
|
5215
5346
|
var evaluateCondition;
|
|
5216
5347
|
var init_evaluateCondition = require_rolldown_runtime.__esmMin((() => {
|
|
5217
5348
|
init_debug();
|
|
@@ -5239,7 +5370,7 @@ var init_evaluateCondition = require_rolldown_runtime.__esmMin((() => {
|
|
|
5239
5370
|
}));
|
|
5240
5371
|
|
|
5241
5372
|
//#endregion
|
|
5242
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5373
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.js
|
|
5243
5374
|
var getEndpointHeaders;
|
|
5244
5375
|
var init_getEndpointHeaders = require_rolldown_runtime.__esmMin((() => {
|
|
5245
5376
|
init_types();
|
|
@@ -5257,7 +5388,7 @@ var init_getEndpointHeaders = require_rolldown_runtime.__esmMin((() => {
|
|
|
5257
5388
|
}));
|
|
5258
5389
|
|
|
5259
5390
|
//#endregion
|
|
5260
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5391
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointProperties.js
|
|
5261
5392
|
var getEndpointProperties, getEndpointProperty, group$1;
|
|
5262
5393
|
var init_getEndpointProperties = require_rolldown_runtime.__esmMin((() => {
|
|
5263
5394
|
init_types();
|
|
@@ -5288,7 +5419,7 @@ var init_getEndpointProperties = require_rolldown_runtime.__esmMin((() => {
|
|
|
5288
5419
|
}));
|
|
5289
5420
|
|
|
5290
5421
|
//#endregion
|
|
5291
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5422
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointUrl.js
|
|
5292
5423
|
var getEndpointUrl;
|
|
5293
5424
|
var init_getEndpointUrl = require_rolldown_runtime.__esmMin((() => {
|
|
5294
5425
|
init_types();
|
|
@@ -5308,7 +5439,7 @@ var init_getEndpointUrl = require_rolldown_runtime.__esmMin((() => {
|
|
|
5308
5439
|
}));
|
|
5309
5440
|
|
|
5310
5441
|
//#endregion
|
|
5311
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5442
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/decideEndpoint.js
|
|
5312
5443
|
var RESULT, decideEndpoint;
|
|
5313
5444
|
var init_decideEndpoint = require_rolldown_runtime.__esmMin((() => {
|
|
5314
5445
|
init_types();
|
|
@@ -5364,7 +5495,7 @@ var init_decideEndpoint = require_rolldown_runtime.__esmMin((() => {
|
|
|
5364
5495
|
}));
|
|
5365
5496
|
|
|
5366
5497
|
//#endregion
|
|
5367
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5498
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateConditions.js
|
|
5368
5499
|
var evaluateConditions;
|
|
5369
5500
|
var init_evaluateConditions = require_rolldown_runtime.__esmMin((() => {
|
|
5370
5501
|
init_debug();
|
|
@@ -5399,7 +5530,7 @@ var init_evaluateConditions = require_rolldown_runtime.__esmMin((() => {
|
|
|
5399
5530
|
}));
|
|
5400
5531
|
|
|
5401
5532
|
//#endregion
|
|
5402
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5533
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.js
|
|
5403
5534
|
var evaluateEndpointRule;
|
|
5404
5535
|
var init_evaluateEndpointRule = require_rolldown_runtime.__esmMin((() => {
|
|
5405
5536
|
init_debug();
|
|
@@ -5434,7 +5565,7 @@ var init_evaluateEndpointRule = require_rolldown_runtime.__esmMin((() => {
|
|
|
5434
5565
|
}));
|
|
5435
5566
|
|
|
5436
5567
|
//#endregion
|
|
5437
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5568
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.js
|
|
5438
5569
|
var evaluateErrorRule;
|
|
5439
5570
|
var init_evaluateErrorRule = require_rolldown_runtime.__esmMin((() => {
|
|
5440
5571
|
init_types();
|
|
@@ -5458,7 +5589,7 @@ var init_evaluateErrorRule = require_rolldown_runtime.__esmMin((() => {
|
|
|
5458
5589
|
}));
|
|
5459
5590
|
|
|
5460
5591
|
//#endregion
|
|
5461
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5592
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateRules.js
|
|
5462
5593
|
var evaluateRules, evaluateTreeRule, group;
|
|
5463
5594
|
var init_evaluateRules = require_rolldown_runtime.__esmMin((() => {
|
|
5464
5595
|
init_types();
|
|
@@ -5507,16 +5638,17 @@ var init_evaluateRules = require_rolldown_runtime.__esmMin((() => {
|
|
|
5507
5638
|
}));
|
|
5508
5639
|
|
|
5509
5640
|
//#endregion
|
|
5510
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5641
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js
|
|
5511
5642
|
var init_utils = require_rolldown_runtime.__esmMin((() => {
|
|
5512
5643
|
init_customEndpointFunctions();
|
|
5513
5644
|
init_evaluateRules();
|
|
5514
5645
|
}));
|
|
5515
5646
|
|
|
5516
5647
|
//#endregion
|
|
5517
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5648
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/resolveEndpoint.js
|
|
5518
5649
|
var resolveEndpoint;
|
|
5519
5650
|
var init_resolveEndpoint = require_rolldown_runtime.__esmMin((() => {
|
|
5651
|
+
init_transport();
|
|
5520
5652
|
init_debug();
|
|
5521
5653
|
init_types();
|
|
5522
5654
|
init_utils();
|
|
@@ -5525,6 +5657,7 @@ var init_resolveEndpoint = require_rolldown_runtime.__esmMin((() => {
|
|
|
5525
5657
|
const { parameters, rules } = ruleSetObject;
|
|
5526
5658
|
options.logger?.debug?.(`${debugId} Initial EndpointParams: ${toDebugString(endpointParams)}`);
|
|
5527
5659
|
for (const paramKey in parameters) {
|
|
5660
|
+
if (!hasOwn(parameters, paramKey)) continue;
|
|
5528
5661
|
const parameter = parameters[paramKey];
|
|
5529
5662
|
const endpointParam = endpointParams[paramKey];
|
|
5530
5663
|
if (endpointParam == null && parameter.default != null) {
|
|
@@ -5546,7 +5679,7 @@ var init_resolveEndpoint = require_rolldown_runtime.__esmMin((() => {
|
|
|
5546
5679
|
}));
|
|
5547
5680
|
|
|
5548
5681
|
//#endregion
|
|
5549
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5682
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointRequiredConfig.js
|
|
5550
5683
|
var resolveEndpointRequiredConfig;
|
|
5551
5684
|
var init_resolveEndpointRequiredConfig = require_rolldown_runtime.__esmMin((() => {
|
|
5552
5685
|
resolveEndpointRequiredConfig = (input) => {
|
|
@@ -5561,7 +5694,26 @@ var init_resolveEndpointRequiredConfig = require_rolldown_runtime.__esmMin((() =
|
|
|
5561
5694
|
}));
|
|
5562
5695
|
|
|
5563
5696
|
//#endregion
|
|
5564
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5697
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js
|
|
5698
|
+
var endpoints_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
5699
|
+
BinaryDecisionDiagram: () => BinaryDecisionDiagram,
|
|
5700
|
+
EndpointCache: () => EndpointCache,
|
|
5701
|
+
EndpointError: () => EndpointError,
|
|
5702
|
+
customEndpointFunctions: () => customEndpointFunctions,
|
|
5703
|
+
decideEndpoint: () => decideEndpoint,
|
|
5704
|
+
endpointMiddleware: () => endpointMiddleware,
|
|
5705
|
+
endpointMiddlewareOptions: () => endpointMiddlewareOptions,
|
|
5706
|
+
getEndpointFromInstructions: () => getEndpointFromInstructions,
|
|
5707
|
+
getEndpointPlugin: () => getEndpointPlugin,
|
|
5708
|
+
isIpAddress: () => isIpAddress,
|
|
5709
|
+
isValidHostLabel: () => isValidHostLabel,
|
|
5710
|
+
middlewareEndpointToEndpointV1: () => toEndpointV1,
|
|
5711
|
+
resolveEndpoint: () => resolveEndpoint,
|
|
5712
|
+
resolveEndpointConfig: () => resolveEndpointConfig,
|
|
5713
|
+
resolveEndpointRequiredConfig: () => resolveEndpointRequiredConfig,
|
|
5714
|
+
resolveParams: () => resolveParams,
|
|
5715
|
+
toEndpointV1: () => toEndpointV1
|
|
5716
|
+
});
|
|
5565
5717
|
var getEndpointFromInstructions, resolveEndpointConfig, endpointMiddleware, getEndpointPlugin;
|
|
5566
5718
|
var init_endpoints = require_rolldown_runtime.__esmMin((() => {
|
|
5567
5719
|
init_getEndpointFromConfig();
|
|
@@ -5586,7 +5738,7 @@ var init_endpoints = require_rolldown_runtime.__esmMin((() => {
|
|
|
5586
5738
|
}));
|
|
5587
5739
|
|
|
5588
5740
|
//#endregion
|
|
5589
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5741
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/serializerMiddleware.js
|
|
5590
5742
|
var serializerMiddleware;
|
|
5591
5743
|
var init_serializerMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
5592
5744
|
init_endpoints();
|
|
@@ -5608,7 +5760,7 @@ var init_serializerMiddleware = require_rolldown_runtime.__esmMin((() => {
|
|
|
5608
5760
|
}));
|
|
5609
5761
|
|
|
5610
5762
|
//#endregion
|
|
5611
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5763
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/serdePlugin.js
|
|
5612
5764
|
function getSerdePlugin(config, serializer, deserializer) {
|
|
5613
5765
|
return { applyToStack: (commandStack) => {
|
|
5614
5766
|
commandStack.add(deserializerMiddleware(config, deserializer), deserializerMiddlewareOption);
|
|
@@ -5634,7 +5786,7 @@ var init_serdePlugin = require_rolldown_runtime.__esmMin((() => {
|
|
|
5634
5786
|
}));
|
|
5635
5787
|
|
|
5636
5788
|
//#endregion
|
|
5637
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5789
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js
|
|
5638
5790
|
function castSourceData(toCast, encoding) {
|
|
5639
5791
|
if (Buffer.isBuffer(toCast)) {
|
|
5640
5792
|
return toCast;
|
|
@@ -5673,7 +5825,7 @@ var init_hash_node = require_rolldown_runtime.__esmMin((() => {
|
|
|
5673
5825
|
}));
|
|
5674
5826
|
|
|
5675
5827
|
//#endregion
|
|
5676
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5828
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js
|
|
5677
5829
|
var ChecksumStream$1;
|
|
5678
5830
|
var init_ChecksumStream = require_rolldown_runtime.__esmMin((() => {
|
|
5679
5831
|
init_toBase64();
|
|
@@ -5753,7 +5905,7 @@ var init_ChecksumStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
5753
5905
|
}));
|
|
5754
5906
|
|
|
5755
5907
|
//#endregion
|
|
5756
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5908
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-type-check.js
|
|
5757
5909
|
var isReadableStream, isBlob;
|
|
5758
5910
|
var init_stream_type_check = require_rolldown_runtime.__esmMin((() => {
|
|
5759
5911
|
isReadableStream = (stream) => typeof ReadableStream === "function" && (stream?.constructor?.name === ReadableStream.name || stream instanceof ReadableStream);
|
|
@@ -5763,14 +5915,14 @@ var init_stream_type_check = require_rolldown_runtime.__esmMin((() => {
|
|
|
5763
5915
|
}));
|
|
5764
5916
|
|
|
5765
5917
|
//#endregion
|
|
5766
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5918
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.browser.js
|
|
5767
5919
|
var fromUtf8;
|
|
5768
5920
|
var init_fromUtf8_browser = require_rolldown_runtime.__esmMin((() => {
|
|
5769
5921
|
fromUtf8 = (input) => new TextEncoder().encode(input);
|
|
5770
5922
|
}));
|
|
5771
5923
|
|
|
5772
5924
|
//#endregion
|
|
5773
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5925
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/constants-for-browser.js
|
|
5774
5926
|
var chars, alphabetByEncoding, alphabetByValue, bitsPerLetter, bitsPerByte, maxLetterValue;
|
|
5775
5927
|
var init_constants_for_browser = require_rolldown_runtime.__esmMin((() => {
|
|
5776
5928
|
chars = `ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/`;
|
|
@@ -5785,7 +5937,7 @@ var init_constants_for_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
5785
5937
|
}));
|
|
5786
5938
|
|
|
5787
5939
|
//#endregion
|
|
5788
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5940
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js
|
|
5789
5941
|
function toBase64(_input) {
|
|
5790
5942
|
let input;
|
|
5791
5943
|
if (typeof _input === "string") {
|
|
@@ -5822,7 +5974,7 @@ var init_toBase64_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
5822
5974
|
}));
|
|
5823
5975
|
|
|
5824
5976
|
//#endregion
|
|
5825
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5977
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.browser.js
|
|
5826
5978
|
var ReadableStreamRef, ChecksumStream;
|
|
5827
5979
|
var init_ChecksumStream_browser = require_rolldown_runtime.__esmMin((() => {
|
|
5828
5980
|
ReadableStreamRef = typeof ReadableStream === "function" ? ReadableStream : function() {};
|
|
@@ -5830,7 +5982,7 @@ var init_ChecksumStream_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
5830
5982
|
}));
|
|
5831
5983
|
|
|
5832
5984
|
//#endregion
|
|
5833
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
5985
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js
|
|
5834
5986
|
var createChecksumStream$1;
|
|
5835
5987
|
var init_createChecksumStream_browser = require_rolldown_runtime.__esmMin((() => {
|
|
5836
5988
|
init_toBase64_browser();
|
|
@@ -5869,7 +6021,7 @@ var init_createChecksumStream_browser = require_rolldown_runtime.__esmMin((() =>
|
|
|
5869
6021
|
}));
|
|
5870
6022
|
|
|
5871
6023
|
//#endregion
|
|
5872
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6024
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js
|
|
5873
6025
|
function createChecksumStream(init) {
|
|
5874
6026
|
if (typeof ReadableStream === "function" && isReadableStream(init.source)) {
|
|
5875
6027
|
return createChecksumStream$1(init);
|
|
@@ -5883,7 +6035,7 @@ var init_createChecksumStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
5883
6035
|
}));
|
|
5884
6036
|
|
|
5885
6037
|
//#endregion
|
|
5886
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6038
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/ByteArrayCollector.js
|
|
5887
6039
|
var ByteArrayCollector;
|
|
5888
6040
|
var init_ByteArrayCollector = require_rolldown_runtime.__esmMin((() => {
|
|
5889
6041
|
ByteArrayCollector = class {
|
|
@@ -5921,7 +6073,7 @@ var init_ByteArrayCollector = require_rolldown_runtime.__esmMin((() => {
|
|
|
5921
6073
|
}));
|
|
5922
6074
|
|
|
5923
6075
|
//#endregion
|
|
5924
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6076
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js
|
|
5925
6077
|
function createBufferedReadableStream(upstream, size, logger) {
|
|
5926
6078
|
const reader = upstream.getReader();
|
|
5927
6079
|
let streamBufferingLoggedWarning = false;
|
|
@@ -6016,7 +6168,7 @@ var init_createBufferedReadable_browser = require_rolldown_runtime.__esmMin((()
|
|
|
6016
6168
|
}));
|
|
6017
6169
|
|
|
6018
6170
|
//#endregion
|
|
6019
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6171
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js
|
|
6020
6172
|
function createBufferedReadable(upstream, size, logger) {
|
|
6021
6173
|
if (isReadableStream(upstream)) {
|
|
6022
6174
|
return createBufferedReadableStream(upstream, size, logger);
|
|
@@ -6076,7 +6228,7 @@ var init_createBufferedReadable = require_rolldown_runtime.__esmMin((() => {
|
|
|
6076
6228
|
}));
|
|
6077
6229
|
|
|
6078
6230
|
//#endregion
|
|
6079
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6231
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/getAwsChunkedEncodingStream.browser.js
|
|
6080
6232
|
var getAwsChunkedEncodingStream$1;
|
|
6081
6233
|
var init_getAwsChunkedEncodingStream_browser = require_rolldown_runtime.__esmMin((() => {
|
|
6082
6234
|
getAwsChunkedEncodingStream$1 = (readableStream, options) => {
|
|
@@ -6102,7 +6254,7 @@ var init_getAwsChunkedEncodingStream_browser = require_rolldown_runtime.__esmMin
|
|
|
6102
6254
|
}));
|
|
6103
6255
|
|
|
6104
6256
|
//#endregion
|
|
6105
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6257
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/getAwsChunkedEncodingStream.js
|
|
6106
6258
|
function getAwsChunkedEncodingStream(stream, options) {
|
|
6107
6259
|
const readable = stream;
|
|
6108
6260
|
const readableStream = stream;
|
|
@@ -6139,7 +6291,7 @@ var init_getAwsChunkedEncodingStream = require_rolldown_runtime.__esmMin((() =>
|
|
|
6139
6291
|
}));
|
|
6140
6292
|
|
|
6141
6293
|
//#endregion
|
|
6142
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6294
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.browser.js
|
|
6143
6295
|
async function headStream$1(stream, bytes) {
|
|
6144
6296
|
let byteLengthCounter = 0;
|
|
6145
6297
|
const chunks = [];
|
|
@@ -6173,7 +6325,7 @@ async function headStream$1(stream, bytes) {
|
|
|
6173
6325
|
var init_headStream_browser = require_rolldown_runtime.__esmMin((() => {}));
|
|
6174
6326
|
|
|
6175
6327
|
//#endregion
|
|
6176
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6328
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js
|
|
6177
6329
|
var headStream, Collector$1;
|
|
6178
6330
|
var init_headStream = require_rolldown_runtime.__esmMin((() => {
|
|
6179
6331
|
init_concatBytes();
|
|
@@ -6217,7 +6369,7 @@ var init_headStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
6217
6369
|
}));
|
|
6218
6370
|
|
|
6219
6371
|
//#endregion
|
|
6220
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6372
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.browser.js
|
|
6221
6373
|
var toUtf8;
|
|
6222
6374
|
var init_toUtf8_browser = require_rolldown_runtime.__esmMin((() => {
|
|
6223
6375
|
toUtf8 = (input) => {
|
|
@@ -6232,7 +6384,7 @@ var init_toUtf8_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
6232
6384
|
}));
|
|
6233
6385
|
|
|
6234
6386
|
//#endregion
|
|
6235
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6387
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js
|
|
6236
6388
|
async function collectBlob(blob) {
|
|
6237
6389
|
return blob.arrayBuffer().then((ab) => new Uint8Array(ab));
|
|
6238
6390
|
}
|
|
@@ -6265,7 +6417,7 @@ var init_stream_collector_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
6265
6417
|
}));
|
|
6266
6418
|
|
|
6267
6419
|
//#endregion
|
|
6268
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6420
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js
|
|
6269
6421
|
var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED$1, sdkStreamMixin$1, isBlobInstance;
|
|
6270
6422
|
var init_sdk_stream_mixin_browser = require_rolldown_runtime.__esmMin((() => {
|
|
6271
6423
|
init_toBase64_browser();
|
|
@@ -6328,7 +6480,7 @@ var init_sdk_stream_mixin_browser = require_rolldown_runtime.__esmMin((() => {
|
|
|
6328
6480
|
}));
|
|
6329
6481
|
|
|
6330
6482
|
//#endregion
|
|
6331
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6483
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js
|
|
6332
6484
|
var streamCollector, Collector;
|
|
6333
6485
|
var init_stream_collector = require_rolldown_runtime.__esmMin((() => {
|
|
6334
6486
|
init_concatBytes();
|
|
@@ -6366,7 +6518,7 @@ var init_stream_collector = require_rolldown_runtime.__esmMin((() => {
|
|
|
6366
6518
|
}));
|
|
6367
6519
|
|
|
6368
6520
|
//#endregion
|
|
6369
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6521
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js
|
|
6370
6522
|
var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED, sdkStreamMixin;
|
|
6371
6523
|
var init_sdk_stream_mixin = require_rolldown_runtime.__esmMin((() => {
|
|
6372
6524
|
init_buffer_from();
|
|
@@ -6419,7 +6571,7 @@ var init_sdk_stream_mixin = require_rolldown_runtime.__esmMin((() => {
|
|
|
6419
6571
|
}));
|
|
6420
6572
|
|
|
6421
6573
|
//#endregion
|
|
6422
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6574
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.browser.js
|
|
6423
6575
|
async function splitStream$1(stream) {
|
|
6424
6576
|
if (typeof stream.stream === "function") {
|
|
6425
6577
|
stream = stream.stream();
|
|
@@ -6430,7 +6582,7 @@ async function splitStream$1(stream) {
|
|
|
6430
6582
|
var init_splitStream_browser = require_rolldown_runtime.__esmMin((() => {}));
|
|
6431
6583
|
|
|
6432
6584
|
//#endregion
|
|
6433
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6585
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js
|
|
6434
6586
|
async function splitStream(stream) {
|
|
6435
6587
|
if (isReadableStream(stream) || isBlob(stream)) {
|
|
6436
6588
|
return splitStream$1(stream);
|
|
@@ -6447,7 +6599,7 @@ var init_splitStream = require_rolldown_runtime.__esmMin((() => {
|
|
|
6447
6599
|
}));
|
|
6448
6600
|
|
|
6449
6601
|
//#endregion
|
|
6450
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6602
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/serde/index.js
|
|
6451
6603
|
var serde_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
6452
6604
|
ChecksumStream: () => ChecksumStream$1,
|
|
6453
6605
|
Hash: () => Hash,
|
|
@@ -6486,6 +6638,7 @@ var serde_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
|
6486
6638
|
getAwsChunkedEncodingStream: () => getAwsChunkedEncodingStream,
|
|
6487
6639
|
getSerdePlugin: () => getSerdePlugin,
|
|
6488
6640
|
handleFloat: () => handleFloat,
|
|
6641
|
+
hasOwn: () => hasOwn,
|
|
6489
6642
|
headStream: () => headStream,
|
|
6490
6643
|
isArrayBuffer: () => isArrayBuffer,
|
|
6491
6644
|
isBlob: () => isBlob,
|
|
@@ -6558,6 +6711,7 @@ var init_serde = require_rolldown_runtime.__esmMin((() => {
|
|
|
6558
6711
|
init_splitStream();
|
|
6559
6712
|
init_stream_type_check();
|
|
6560
6713
|
init_stream_collector();
|
|
6714
|
+
init_transport();
|
|
6561
6715
|
Uint8ArrayBlobAdapter = class extends bindUint8ArrayBlobAdapter(toUtf8$1, fromUtf8$1, toBase64$1, fromBase64) {};
|
|
6562
6716
|
_getRandomValues = node_crypto.getRandomValues;
|
|
6563
6717
|
v4 = bindV4(_getRandomValues);
|
|
@@ -6565,7 +6719,7 @@ var init_serde = require_rolldown_runtime.__esmMin((() => {
|
|
|
6565
6719
|
}));
|
|
6566
6720
|
|
|
6567
6721
|
//#endregion
|
|
6568
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6722
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js
|
|
6569
6723
|
async function blobReader(blob, onChunk, chunkSize = 1024 * 1024) {
|
|
6570
6724
|
const size = blob.size;
|
|
6571
6725
|
let totalBytesRead = 0;
|
|
@@ -6578,7 +6732,7 @@ async function blobReader(blob, onChunk, chunkSize = 1024 * 1024) {
|
|
|
6578
6732
|
var init_chunked_blob_reader = require_rolldown_runtime.__esmMin((() => {}));
|
|
6579
6733
|
|
|
6580
6734
|
//#endregion
|
|
6581
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6735
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js
|
|
6582
6736
|
var blobHasher;
|
|
6583
6737
|
var init_blobHasher = require_rolldown_runtime.__esmMin((() => {
|
|
6584
6738
|
init_chunked_blob_reader();
|
|
@@ -6592,7 +6746,7 @@ var init_blobHasher = require_rolldown_runtime.__esmMin((() => {
|
|
|
6592
6746
|
}));
|
|
6593
6747
|
|
|
6594
6748
|
//#endregion
|
|
6595
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6749
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js
|
|
6596
6750
|
var HashCalculator;
|
|
6597
6751
|
var init_HashCalculator = require_rolldown_runtime.__esmMin((() => {
|
|
6598
6752
|
init_serde();
|
|
@@ -6614,7 +6768,7 @@ var init_HashCalculator = require_rolldown_runtime.__esmMin((() => {
|
|
|
6614
6768
|
}));
|
|
6615
6769
|
|
|
6616
6770
|
//#endregion
|
|
6617
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6771
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js
|
|
6618
6772
|
var fileStreamHasher, isReadStream;
|
|
6619
6773
|
var init_fileStreamHasher = require_rolldown_runtime.__esmMin((() => {
|
|
6620
6774
|
init_HashCalculator();
|
|
@@ -6643,7 +6797,7 @@ var init_fileStreamHasher = require_rolldown_runtime.__esmMin((() => {
|
|
|
6643
6797
|
}));
|
|
6644
6798
|
|
|
6645
6799
|
//#endregion
|
|
6646
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6800
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/readableStreamHasher.js
|
|
6647
6801
|
var readableStreamHasher;
|
|
6648
6802
|
var init_readableStreamHasher = require_rolldown_runtime.__esmMin((() => {
|
|
6649
6803
|
init_HashCalculator();
|
|
@@ -6668,7 +6822,7 @@ var init_readableStreamHasher = require_rolldown_runtime.__esmMin((() => {
|
|
|
6668
6822
|
}));
|
|
6669
6823
|
|
|
6670
6824
|
//#endregion
|
|
6671
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6825
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Js.js
|
|
6672
6826
|
function compress(state, block) {
|
|
6673
6827
|
let a = state[0], b = state[1], c = state[2], d = state[3];
|
|
6674
6828
|
for (let i = 0; i < 64; ++i) {
|
|
@@ -6768,7 +6922,7 @@ var init_Md5Js = require_rolldown_runtime.__esmMin((() => {
|
|
|
6768
6922
|
}));
|
|
6769
6923
|
|
|
6770
6924
|
//#endregion
|
|
6771
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6925
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Node.js
|
|
6772
6926
|
function buildNativeClass$2() {
|
|
6773
6927
|
return class Md5Node {
|
|
6774
6928
|
digestLength = 16;
|
|
@@ -6801,7 +6955,7 @@ var init_Md5Node = require_rolldown_runtime.__esmMin((() => {
|
|
|
6801
6955
|
}));
|
|
6802
6956
|
|
|
6803
6957
|
//#endregion
|
|
6804
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6958
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js
|
|
6805
6959
|
var CRC32_TABLE, ONES, Crc32Js;
|
|
6806
6960
|
var init_Crc32Js = require_rolldown_runtime.__esmMin((() => {
|
|
6807
6961
|
CRC32_TABLE = new Uint32Array(256);
|
|
@@ -6837,7 +6991,7 @@ var init_Crc32Js = require_rolldown_runtime.__esmMin((() => {
|
|
|
6837
6991
|
}));
|
|
6838
6992
|
|
|
6839
6993
|
//#endregion
|
|
6840
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
6994
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js
|
|
6841
6995
|
function buildNativeClass$1(nativeCrc32) {
|
|
6842
6996
|
return class Crc32Node {
|
|
6843
6997
|
digestLength = 4;
|
|
@@ -6866,7 +7020,7 @@ var init_Crc32Node = require_rolldown_runtime.__esmMin((() => {
|
|
|
6866
7020
|
}));
|
|
6867
7021
|
|
|
6868
7022
|
//#endregion
|
|
6869
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7023
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Js.js
|
|
6870
7024
|
var BLOCK, DIGEST_LENGTH, MAX_HASHABLE_LENGTH, Sha256Js, INIT, K;
|
|
6871
7025
|
var init_Sha256Js = require_rolldown_runtime.__esmMin((() => {
|
|
6872
7026
|
init_serde();
|
|
@@ -7103,7 +7257,7 @@ var init_Sha256Js = require_rolldown_runtime.__esmMin((() => {
|
|
|
7103
7257
|
}));
|
|
7104
7258
|
|
|
7105
7259
|
//#endregion
|
|
7106
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7260
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Node.js
|
|
7107
7261
|
function buildNativeClass() {
|
|
7108
7262
|
return class Sha256Node {
|
|
7109
7263
|
digestLength = 32;
|
|
@@ -7165,7 +7319,7 @@ var init_Sha256Node = require_rolldown_runtime.__esmMin((() => {
|
|
|
7165
7319
|
}));
|
|
7166
7320
|
|
|
7167
7321
|
//#endregion
|
|
7168
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7322
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256WebCrypto.js
|
|
7169
7323
|
var digest, sign, importKey, subtle, MAX_PENDING_BYTES, Sha256WebCrypto;
|
|
7170
7324
|
var init_Sha256WebCrypto = require_rolldown_runtime.__esmMin((() => {
|
|
7171
7325
|
init_serde();
|
|
@@ -7243,7 +7397,23 @@ var init_Sha256WebCrypto = require_rolldown_runtime.__esmMin((() => {
|
|
|
7243
7397
|
}));
|
|
7244
7398
|
|
|
7245
7399
|
//#endregion
|
|
7246
|
-
//#region ../../node_modules/.pnpm/@smithy+core@3.
|
|
7400
|
+
//#region ../../node_modules/.pnpm/@smithy+core@3.33.3/node_modules/@smithy/core/dist-es/submodules/checksum/index.js
|
|
7401
|
+
var checksum_exports = /* @__PURE__ */ require_rolldown_runtime.__exportAll({
|
|
7402
|
+
Crc32: () => Crc32Node,
|
|
7403
|
+
Crc32Js: () => Crc32Js,
|
|
7404
|
+
Crc32Node: () => Crc32Node,
|
|
7405
|
+
Md5: () => Md5Node,
|
|
7406
|
+
Md5Js: () => Md5Js,
|
|
7407
|
+
Md5Node: () => Md5Node,
|
|
7408
|
+
Sha256: () => Sha256Node,
|
|
7409
|
+
Sha256Js: () => Sha256Js,
|
|
7410
|
+
Sha256Node: () => Sha256Node,
|
|
7411
|
+
Sha256WebCrypto: () => Sha256WebCrypto,
|
|
7412
|
+
blobHasher: () => blobHasher,
|
|
7413
|
+
blobReader: () => blobReader,
|
|
7414
|
+
fileStreamHasher: () => fileStreamHasher,
|
|
7415
|
+
readableStreamHasher: () => readableStreamHasher
|
|
7416
|
+
});
|
|
7247
7417
|
var init_checksum = require_rolldown_runtime.__esmMin((() => {
|
|
7248
7418
|
init_blobHasher();
|
|
7249
7419
|
init_fileStreamHasher();
|
|
@@ -7373,6 +7543,12 @@ Object.defineProperty(exports, 'REGION_INI_NAME', {
|
|
|
7373
7543
|
return REGION_INI_NAME;
|
|
7374
7544
|
}
|
|
7375
7545
|
});
|
|
7546
|
+
Object.defineProperty(exports, 'SelectorType', {
|
|
7547
|
+
enumerable: true,
|
|
7548
|
+
get: function () {
|
|
7549
|
+
return SelectorType;
|
|
7550
|
+
}
|
|
7551
|
+
});
|
|
7376
7552
|
Object.defineProperty(exports, 'ServiceException', {
|
|
7377
7553
|
enumerable: true,
|
|
7378
7554
|
get: function () {
|
|
@@ -7415,12 +7591,24 @@ Object.defineProperty(exports, '_parseRfc7231DateTime', {
|
|
|
7415
7591
|
return _parseRfc7231DateTime;
|
|
7416
7592
|
}
|
|
7417
7593
|
});
|
|
7594
|
+
Object.defineProperty(exports, 'booleanSelector', {
|
|
7595
|
+
enumerable: true,
|
|
7596
|
+
get: function () {
|
|
7597
|
+
return booleanSelector;
|
|
7598
|
+
}
|
|
7599
|
+
});
|
|
7418
7600
|
Object.defineProperty(exports, 'calculateBodyLength', {
|
|
7419
7601
|
enumerable: true,
|
|
7420
7602
|
get: function () {
|
|
7421
7603
|
return calculateBodyLength;
|
|
7422
7604
|
}
|
|
7423
7605
|
});
|
|
7606
|
+
Object.defineProperty(exports, 'checksum_exports', {
|
|
7607
|
+
enumerable: true,
|
|
7608
|
+
get: function () {
|
|
7609
|
+
return checksum_exports;
|
|
7610
|
+
}
|
|
7611
|
+
});
|
|
7424
7612
|
Object.defineProperty(exports, 'client_exports', {
|
|
7425
7613
|
enumerable: true,
|
|
7426
7614
|
get: function () {
|
|
@@ -7475,6 +7663,12 @@ Object.defineProperty(exports, 'emitWarningIfUnsupportedVersion', {
|
|
|
7475
7663
|
return emitWarningIfUnsupportedVersion;
|
|
7476
7664
|
}
|
|
7477
7665
|
});
|
|
7666
|
+
Object.defineProperty(exports, 'endpoints_exports', {
|
|
7667
|
+
enumerable: true,
|
|
7668
|
+
get: function () {
|
|
7669
|
+
return endpoints_exports;
|
|
7670
|
+
}
|
|
7671
|
+
});
|
|
7478
7672
|
Object.defineProperty(exports, 'expectUnion', {
|
|
7479
7673
|
enumerable: true,
|
|
7480
7674
|
get: function () {
|
|
@@ -7535,6 +7729,12 @@ Object.defineProperty(exports, 'getValueFromTextNode', {
|
|
|
7535
7729
|
return getValueFromTextNode;
|
|
7536
7730
|
}
|
|
7537
7731
|
});
|
|
7732
|
+
Object.defineProperty(exports, 'hasOwn', {
|
|
7733
|
+
enumerable: true,
|
|
7734
|
+
get: function () {
|
|
7735
|
+
return hasOwn;
|
|
7736
|
+
}
|
|
7737
|
+
});
|
|
7538
7738
|
Object.defineProperty(exports, 'init_BinaryDecisionDiagram', {
|
|
7539
7739
|
enumerable: true,
|
|
7540
7740
|
get: function () {
|
|
@@ -7607,6 +7807,12 @@ Object.defineProperty(exports, 'init_TypeRegistry', {
|
|
|
7607
7807
|
return init_TypeRegistry;
|
|
7608
7808
|
}
|
|
7609
7809
|
});
|
|
7810
|
+
Object.defineProperty(exports, 'init_booleanSelector', {
|
|
7811
|
+
enumerable: true,
|
|
7812
|
+
get: function () {
|
|
7813
|
+
return init_booleanSelector;
|
|
7814
|
+
}
|
|
7815
|
+
});
|
|
7610
7816
|
Object.defineProperty(exports, 'init_calculateBodyLength', {
|
|
7611
7817
|
enumerable: true,
|
|
7612
7818
|
get: function () {
|
|
@@ -7757,6 +7963,12 @@ Object.defineProperty(exports, 'init_get_value_from_text_node', {
|
|
|
7757
7963
|
return init_get_value_from_text_node;
|
|
7758
7964
|
}
|
|
7759
7965
|
});
|
|
7966
|
+
Object.defineProperty(exports, 'init_hasOwn', {
|
|
7967
|
+
enumerable: true,
|
|
7968
|
+
get: function () {
|
|
7969
|
+
return init_hasOwn;
|
|
7970
|
+
}
|
|
7971
|
+
});
|
|
7760
7972
|
Object.defineProperty(exports, 'init_hex_encoding', {
|
|
7761
7973
|
enumerable: true,
|
|
7762
7974
|
get: function () {
|
|
@@ -7907,6 +8119,12 @@ Object.defineProperty(exports, 'init_transport', {
|
|
|
7907
8119
|
return init_transport;
|
|
7908
8120
|
}
|
|
7909
8121
|
});
|
|
8122
|
+
Object.defineProperty(exports, 'init_types', {
|
|
8123
|
+
enumerable: true,
|
|
8124
|
+
get: function () {
|
|
8125
|
+
return init_types$1;
|
|
8126
|
+
}
|
|
8127
|
+
});
|
|
7910
8128
|
Object.defineProperty(exports, 'isIpAddress', {
|
|
7911
8129
|
enumerable: true,
|
|
7912
8130
|
get: function () {
|
|
@@ -7991,6 +8209,12 @@ Object.defineProperty(exports, 'quoteHeader', {
|
|
|
7991
8209
|
return quoteHeader;
|
|
7992
8210
|
}
|
|
7993
8211
|
});
|
|
8212
|
+
Object.defineProperty(exports, 'require_dist_cjs', {
|
|
8213
|
+
enumerable: true,
|
|
8214
|
+
get: function () {
|
|
8215
|
+
return require_dist_cjs;
|
|
8216
|
+
}
|
|
8217
|
+
});
|
|
7994
8218
|
Object.defineProperty(exports, 'resolveDefaultRuntimeConfig', {
|
|
7995
8219
|
enumerable: true,
|
|
7996
8220
|
get: function () {
|
|
@@ -8027,6 +8251,12 @@ Object.defineProperty(exports, 'resolveRegionConfig', {
|
|
|
8027
8251
|
return resolveRegionConfig;
|
|
8028
8252
|
}
|
|
8029
8253
|
});
|
|
8254
|
+
Object.defineProperty(exports, 'schema_exports', {
|
|
8255
|
+
enumerable: true,
|
|
8256
|
+
get: function () {
|
|
8257
|
+
return schema_exports;
|
|
8258
|
+
}
|
|
8259
|
+
});
|
|
8030
8260
|
Object.defineProperty(exports, 'sdkStreamMixin', {
|
|
8031
8261
|
enumerable: true,
|
|
8032
8262
|
get: function () {
|