@stacksjs/storage 0.68.0 → 0.68.2

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.
Files changed (2) hide show
  1. package/dist/index.js +581 -657
  2. package/package.json +11 -13
package/dist/index.js CHANGED
@@ -10517,7 +10517,6 @@ async function writeToLogFile(message, options2) {
10517
10517
  try {
10518
10518
  await access(logFile);
10519
10519
  } catch {
10520
- console.log("Creating log file directory...", logFile);
10521
10520
  await mkdir(dirname(logFile), { recursive: true });
10522
10521
  }
10523
10522
  await appendFile(logFile, formattedMessage);
@@ -163305,43 +163304,6 @@ var init_S3ExpressIdentityProviderImpl = __esm(() => {
163305
163304
  S3ExpressIdentityProviderImpl.REFRESH_WINDOW_MS = 60000;
163306
163305
  });
163307
163306
 
163308
- // ../../../../node_modules/@smithy/util-hex-encoding/dist-es/index.js
163309
- function fromHex(encoded) {
163310
- if (encoded.length % 2 !== 0) {
163311
- throw new Error("Hex encoded strings must have an even number length");
163312
- }
163313
- const out = new Uint8Array(encoded.length / 2);
163314
- for (let i = 0;i < encoded.length; i += 2) {
163315
- const encodedByte = encoded.slice(i, i + 2).toLowerCase();
163316
- if (encodedByte in HEX_TO_SHORT) {
163317
- out[i / 2] = HEX_TO_SHORT[encodedByte];
163318
- } else {
163319
- throw new Error(`Cannot decode unrecognized sequence ${encodedByte} as hexadecimal`);
163320
- }
163321
- }
163322
- return out;
163323
- }
163324
- function toHex(bytes) {
163325
- let out = "";
163326
- for (let i = 0;i < bytes.byteLength; i++) {
163327
- out += SHORT_TO_HEX[bytes[i]];
163328
- }
163329
- return out;
163330
- }
163331
- var SHORT_TO_HEX, HEX_TO_SHORT;
163332
- var init_dist_es13 = __esm(() => {
163333
- SHORT_TO_HEX = {};
163334
- HEX_TO_SHORT = {};
163335
- for (let i = 0;i < 256; i++) {
163336
- let encodedByte = i.toString(16).toLowerCase();
163337
- if (encodedByte.length === 1) {
163338
- encodedByte = `0${encodedByte}`;
163339
- }
163340
- SHORT_TO_HEX[i] = encodedByte;
163341
- HEX_TO_SHORT[encodedByte] = i;
163342
- }
163343
- });
163344
-
163345
163307
  // ../../../../node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js
163346
163308
  var escapeUri = (uri) => encodeURIComponent(uri).replace(/[!'()*]/g, hexEncode), hexEncode = (c2) => `%${c2.charCodeAt(0).toString(16).toUpperCase()}`;
163347
163309
 
@@ -163350,7 +163312,7 @@ var init_escape_uri_path = () => {
163350
163312
  };
163351
163313
 
163352
163314
  // ../../../../node_modules/@smithy/util-uri-escape/dist-es/index.js
163353
- var init_dist_es14 = __esm(() => {
163315
+ var init_dist_es13 = __esm(() => {
163354
163316
  init_escape_uri_path();
163355
163317
  });
163356
163318
 
@@ -163384,9 +163346,9 @@ var init_constants2 = __esm(() => {
163384
163346
  });
163385
163347
 
163386
163348
  // ../../../../node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js
163387
- var signingKeyCache, cacheQueue, createScope = (shortDate, region, service) => `${shortDate}/${region}/${service}/${KEY_TYPE_IDENTIFIER}`, getSigningKey = async (sha256Constructor, credentials, shortDate, region, service) => {
163349
+ var import_util_hex_encoding, signingKeyCache, cacheQueue, createScope = (shortDate, region, service) => `${shortDate}/${region}/${service}/${KEY_TYPE_IDENTIFIER}`, getSigningKey = async (sha256Constructor, credentials, shortDate, region, service) => {
163388
163350
  const credsHash = await hmac(sha256Constructor, credentials.secretAccessKey, credentials.accessKeyId);
163389
- const cacheKey = `${shortDate}:${region}:${service}:${toHex(credsHash)}:${credentials.sessionToken}`;
163351
+ const cacheKey = `${shortDate}:${region}:${service}:${import_util_hex_encoding.toHex(credsHash)}:${credentials.sessionToken}`;
163390
163352
  if (cacheKey in signingKeyCache) {
163391
163353
  return signingKeyCache[cacheKey];
163392
163354
  }
@@ -163405,7 +163367,7 @@ var signingKeyCache, cacheQueue, createScope = (shortDate, region, service) => `
163405
163367
  return hash3.digest();
163406
163368
  };
163407
163369
  var init_credentialDerivation = __esm(() => {
163408
- init_dist_es13();
163370
+ import_util_hex_encoding = __toESM(require_dist_cjs13(), 1);
163409
163371
  init_dist_es6();
163410
163372
  init_constants2();
163411
163373
  signingKeyCache = {};
@@ -163453,12 +163415,12 @@ var getCanonicalQuery = ({ query = {} }) => {
163453
163415
  return keys2.sort().map((key2) => serialized[key2]).filter((serialized2) => serialized2).join("&");
163454
163416
  };
163455
163417
  var init_getCanonicalQuery = __esm(() => {
163456
- init_dist_es14();
163418
+ init_dist_es13();
163457
163419
  init_constants2();
163458
163420
  });
163459
163421
 
163460
163422
  // ../../../../node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js
163461
- var getPayloadHash = async ({ headers, body }, hashConstructor) => {
163423
+ var import_util_hex_encoding2, getPayloadHash = async ({ headers, body }, hashConstructor) => {
163462
163424
  for (const headerName of Object.keys(headers)) {
163463
163425
  if (headerName.toLowerCase() === SHA256_HEADER) {
163464
163426
  return headers[headerName];
@@ -163469,12 +163431,12 @@ var getPayloadHash = async ({ headers, body }, hashConstructor) => {
163469
163431
  } else if (typeof body === "string" || ArrayBuffer.isView(body) || isArrayBuffer(body)) {
163470
163432
  const hashCtor = new hashConstructor;
163471
163433
  hashCtor.update(toUint8Array2(body));
163472
- return toHex(await hashCtor.digest());
163434
+ return import_util_hex_encoding2.toHex(await hashCtor.digest());
163473
163435
  }
163474
163436
  return UNSIGNED_PAYLOAD;
163475
163437
  };
163476
163438
  var init_getPayloadHash = __esm(() => {
163477
- init_dist_es13();
163439
+ import_util_hex_encoding2 = __toESM(require_dist_cjs13(), 1);
163478
163440
  init_dist_es6();
163479
163441
  init_constants2();
163480
163442
  });
@@ -163542,7 +163504,7 @@ class HeaderFormatter {
163542
163504
  }
163543
163505
  const uuidBytes = new Uint8Array(17);
163544
163506
  uuidBytes[0] = 9;
163545
- uuidBytes.set(fromHex(header.value.replace(/\-/g, "")), 1);
163507
+ uuidBytes.set(import_util_hex_encoding3.fromHex(header.value.replace(/\-/g, "")), 1);
163546
163508
  return uuidBytes;
163547
163509
  }
163548
163510
  }
@@ -163574,7 +163536,7 @@ class Int64 {
163574
163536
  if (negative) {
163575
163537
  negate(bytes);
163576
163538
  }
163577
- return parseInt(toHex(bytes), 16) * (negative ? -1 : 1);
163539
+ return parseInt(import_util_hex_encoding3.toHex(bytes), 16) * (negative ? -1 : 1);
163578
163540
  }
163579
163541
  toString() {
163580
163542
  return String(this.valueOf());
@@ -163590,9 +163552,9 @@ function negate(bytes) {
163590
163552
  break;
163591
163553
  }
163592
163554
  }
163593
- var HEADER_VALUE_TYPE, UUID_PATTERN;
163555
+ var import_util_hex_encoding3, HEADER_VALUE_TYPE, UUID_PATTERN;
163594
163556
  var init_HeaderFormatter = __esm(() => {
163595
- init_dist_es13();
163557
+ import_util_hex_encoding3 = __toESM(require_dist_cjs13(), 1);
163596
163558
  init_dist_es6();
163597
163559
  (function(HEADER_VALUE_TYPE2) {
163598
163560
  HEADER_VALUE_TYPE2[HEADER_VALUE_TYPE2["boolTrue"] = 0] = "boolTrue";
@@ -163721,7 +163683,7 @@ class SignatureV4 {
163721
163683
  const hashedPayload = await getPayloadHash({ headers: {}, body: payload }, this.sha256);
163722
163684
  const hash3 = new this.sha256;
163723
163685
  hash3.update(headers);
163724
- const hashedHeaders = toHex(await hash3.digest());
163686
+ const hashedHeaders = import_util_hex_encoding4.toHex(await hash3.digest());
163725
163687
  const stringToSign = [
163726
163688
  EVENT_ALGORITHM_IDENTIFIER,
163727
163689
  longDate,
@@ -163753,7 +163715,7 @@ class SignatureV4 {
163753
163715
  const { shortDate } = formatDate(signingDate);
163754
163716
  const hash3 = new this.sha256(await this.getSigningKey(credentials, region, shortDate, signingService));
163755
163717
  hash3.update(toUint8Array2(stringToSign));
163756
- return toHex(await hash3.digest());
163718
+ return import_util_hex_encoding4.toHex(await hash3.digest());
163757
163719
  }
163758
163720
  async signRequest(requestToSign, { signingDate = new Date, signableHeaders, unsignableHeaders, signingRegion, signingService } = {}) {
163759
163721
  const credentials = await this.credentialProvider();
@@ -163792,7 +163754,7 @@ ${payloadHash}`;
163792
163754
  return `${ALGORITHM_IDENTIFIER}
163793
163755
  ${longDate}
163794
163756
  ${credentialScope}
163795
- ${toHex(hashedRequest)}`;
163757
+ ${import_util_hex_encoding4.toHex(hashedRequest)}`;
163796
163758
  }
163797
163759
  getCanonicalPath({ path: path5 }) {
163798
163760
  if (this.uriEscapePath) {
@@ -163818,7 +163780,7 @@ ${toHex(hashedRequest)}`;
163818
163780
  const stringToSign = await this.createStringToSign(longDate, credentialScope, canonicalRequest);
163819
163781
  const hash3 = new this.sha256(await keyPromise);
163820
163782
  hash3.update(toUint8Array2(stringToSign));
163821
- return toHex(await hash3.digest());
163783
+ return import_util_hex_encoding4.toHex(await hash3.digest());
163822
163784
  }
163823
163785
  getSigningKey(credentials, region, shortDate, service) {
163824
163786
  return getSigningKey(this.sha256, credentials, shortDate, region, service || this.service);
@@ -163829,7 +163791,7 @@ ${toHex(hashedRequest)}`;
163829
163791
  }
163830
163792
  }
163831
163793
  }
163832
- var import_util_middleware2, formatDate = (now2) => {
163794
+ var import_util_hex_encoding4, import_util_middleware2, formatDate = (now2) => {
163833
163795
  const longDate = iso8601(now2).replace(/[\-:]/g, "");
163834
163796
  return {
163835
163797
  longDate,
@@ -163837,9 +163799,9 @@ var import_util_middleware2, formatDate = (now2) => {
163837
163799
  };
163838
163800
  }, getCanonicalHeaderList = (headers) => Object.keys(headers).sort().join(";");
163839
163801
  var init_SignatureV4 = __esm(() => {
163840
- init_dist_es13();
163802
+ import_util_hex_encoding4 = __toESM(require_dist_cjs13(), 1);
163841
163803
  import_util_middleware2 = __toESM(require_dist_cjs3(), 1);
163842
- init_dist_es14();
163804
+ init_dist_es13();
163843
163805
  init_dist_es6();
163844
163806
  init_constants2();
163845
163807
  init_credentialDerivation();
@@ -163852,7 +163814,7 @@ var init_SignatureV4 = __esm(() => {
163852
163814
  });
163853
163815
 
163854
163816
  // ../../../../node_modules/@smithy/signature-v4/dist-es/index.js
163855
- var init_dist_es15 = __esm(() => {
163817
+ var init_dist_es14 = __esm(() => {
163856
163818
  init_SignatureV4();
163857
163819
  init_getCanonicalHeaders();
163858
163820
  init_getCanonicalQuery();
@@ -163882,14 +163844,14 @@ var init_types6 = __esm(() => {
163882
163844
  });
163883
163845
 
163884
163846
  // ../../../../node_modules/@smithy/util-config-provider/dist-es/index.js
163885
- var init_dist_es16 = __esm(() => {
163847
+ var init_dist_es15 = __esm(() => {
163886
163848
  init_types6();
163887
163849
  });
163888
163850
 
163889
163851
  // ../../../../node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js
163890
163852
  var S3_EXPRESS_BUCKET_TYPE = "Directory", S3_EXPRESS_BACKEND = "S3Express", S3_EXPRESS_AUTH_SCHEME = "sigv4-s3express", SESSION_TOKEN_QUERY_PARAM = "X-Amz-S3session-Token", SESSION_TOKEN_HEADER, NODE_DISABLE_S3_EXPRESS_SESSION_AUTH_ENV_NAME = "AWS_S3_DISABLE_EXPRESS_SESSION_AUTH", NODE_DISABLE_S3_EXPRESS_SESSION_AUTH_INI_NAME = "s3_disable_express_session_auth", NODE_DISABLE_S3_EXPRESS_SESSION_AUTH_OPTIONS;
163891
163853
  var init_constants3 = __esm(() => {
163892
- init_dist_es16();
163854
+ init_dist_es15();
163893
163855
  SESSION_TOKEN_HEADER = SESSION_TOKEN_QUERY_PARAM.toLowerCase();
163894
163856
  NODE_DISABLE_S3_EXPRESS_SESSION_AUTH_OPTIONS = {
163895
163857
  environmentVariableSelector: (env6) => booleanSelector(env6, NODE_DISABLE_S3_EXPRESS_SESSION_AUTH_ENV_NAME, SelectorType2.ENV),
@@ -163921,7 +163883,7 @@ function setSingleOverride(privateAccess, credentialsWithoutSessionToken) {
163921
163883
  }
163922
163884
  var SignatureV4S3Express;
163923
163885
  var init_SignatureV4S3Express = __esm(() => {
163924
- init_dist_es15();
163886
+ init_dist_es14();
163925
163887
  init_constants3();
163926
163888
  SignatureV4S3Express = class SignatureV4S3Express extends SignatureV4 {
163927
163889
  async signWithCredentials(requestToSign, credentials, options3) {
@@ -164099,14 +164061,14 @@ var init_toBase64 = __esm(() => {
164099
164061
  });
164100
164062
 
164101
164063
  // ../../../../node_modules/@smithy/util-base64/dist-es/index.js
164102
- var init_dist_es17 = __esm(() => {
164064
+ var init_dist_es16 = __esm(() => {
164103
164065
  init_fromBase64();
164104
164066
  init_toBase64();
164105
164067
  });
164106
164068
 
164107
164069
  // ../../../../node_modules/@smithy/util-stream/dist-es/blob/transforms.js
164108
164070
  var init_transforms = __esm(() => {
164109
- init_dist_es17();
164071
+ init_dist_es16();
164110
164072
  init_dist_es6();
164111
164073
  init_Uint8ArrayBlobAdapter();
164112
164074
  });
@@ -164164,8 +164126,8 @@ function buildQueryString(query) {
164164
164126
  }
164165
164127
  return parts.join("&");
164166
164128
  }
164167
- var init_dist_es18 = __esm(() => {
164168
- init_dist_es14();
164129
+ var init_dist_es17 = __esm(() => {
164130
+ init_dist_es13();
164169
164131
  });
164170
164132
 
164171
164133
  // ../../../../node_modules/@smithy/node-http-handler/dist-es/constants.js
@@ -164504,7 +164466,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
164504
164466
  }
164505
164467
  var init_node_http_handler = __esm(() => {
164506
164468
  init_dist_es();
164507
- init_dist_es18();
164469
+ init_dist_es17();
164508
164470
  init_constants4();
164509
164471
  init_get_transformed_headers();
164510
164472
  init_write_request_body();
@@ -164522,7 +164484,7 @@ var init_node_http2_connection_manager = __esm(() => {
164522
164484
  // ../../../../node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js
164523
164485
  var init_node_http2_handler = __esm(() => {
164524
164486
  init_dist_es();
164525
- init_dist_es18();
164487
+ init_dist_es17();
164526
164488
  init_get_transformed_headers();
164527
164489
  init_node_http2_connection_manager();
164528
164490
  init_write_request_body();
@@ -164589,56 +164551,17 @@ var init_stream_collector = __esm(() => {
164589
164551
  });
164590
164552
 
164591
164553
  // ../../../../node_modules/@smithy/node-http-handler/dist-es/index.js
164592
- var init_dist_es19 = __esm(() => {
164554
+ var init_dist_es18 = __esm(() => {
164593
164555
  init_node_http_handler();
164594
164556
  init_node_http2_handler();
164595
164557
  init_stream_collector();
164596
164558
  });
164597
- // ../../../../node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js
164598
- var init_fetch_http_handler = __esm(() => {
164599
- init_dist_es();
164600
- init_dist_es18();
164601
- });
164602
-
164603
- // ../../../../node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js
164604
- async function collectStream(stream2) {
164605
- const chunks = [];
164606
- const reader = stream2.getReader();
164607
- let isDone = false;
164608
- let length = 0;
164609
- while (!isDone) {
164610
- const { done, value } = await reader.read();
164611
- if (value) {
164612
- chunks.push(value);
164613
- length += value.length;
164614
- }
164615
- isDone = done;
164616
- }
164617
- const collected = new Uint8Array(length);
164618
- let offset2 = 0;
164619
- for (const chunk of chunks) {
164620
- collected.set(chunk, offset2);
164621
- offset2 += chunk.length;
164622
- }
164623
- return collected;
164624
- }
164625
- var streamCollector2 = async (stream2) => {
164626
- if (typeof Blob === "function" && stream2 instanceof Blob) {
164627
- return new Uint8Array(await stream2.arrayBuffer());
164628
- }
164629
- return collectStream(stream2);
164630
- };
164631
-
164632
- // ../../../../node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/index.js
164633
- var init_dist_es20 = __esm(() => {
164634
- init_fetch_http_handler();
164635
- });
164636
164559
 
164637
164560
  // ../../../../node_modules/@smithy/util-stream/dist-es/stream-type-check.js
164638
164561
  var isReadableStream2 = (stream2) => typeof ReadableStream === "function" && (stream2?.constructor?.name === ReadableStream.name || stream2 instanceof ReadableStream);
164639
164562
 
164640
164563
  // ../../../../node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js
164641
- var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED = "The stream has already been transformed.", sdkStreamMixin2 = (stream2) => {
164564
+ var import_fetch_http_handler, import_util_hex_encoding5, ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED = "The stream has already been transformed.", sdkStreamMixin2 = (stream2) => {
164642
164565
  if (!isBlobInstance(stream2) && !isReadableStream2(stream2)) {
164643
164566
  const name = stream2?.__proto__?.constructor?.name || stream2;
164644
164567
  throw new Error(`Unexpected stream implementation, expect Blob or ReadableStream, got ${name}`);
@@ -164649,7 +164572,7 @@ var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED = "The stream has already been transform
164649
164572
  throw new Error(ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED);
164650
164573
  }
164651
164574
  transformed = true;
164652
- return await streamCollector2(stream2);
164575
+ return await import_fetch_http_handler.streamCollector(stream2);
164653
164576
  };
164654
164577
  const blobToWebStream = (blob) => {
164655
164578
  if (typeof blob.stream !== "function") {
@@ -164664,7 +164587,7 @@ var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED = "The stream has already been transform
164664
164587
  if (encoding === "base64") {
164665
164588
  return toBase643(buf);
164666
164589
  } else if (encoding === "hex") {
164667
- return toHex(buf);
164590
+ return import_util_hex_encoding5.toHex(buf);
164668
164591
  } else if (encoding === undefined || encoding === "utf8" || encoding === "utf-8") {
164669
164592
  return toUtf82(buf);
164670
164593
  } else if (typeof TextDecoder === "function") {
@@ -164689,9 +164612,9 @@ var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED = "The stream has already been transform
164689
164612
  });
164690
164613
  }, isBlobInstance = (stream2) => typeof Blob === "function" && stream2 instanceof Blob;
164691
164614
  var init_sdk_stream_mixin_browser = __esm(() => {
164692
- init_dist_es20();
164693
- init_dist_es17();
164694
- init_dist_es13();
164615
+ import_fetch_http_handler = __toESM(require_dist_cjs12(), 1);
164616
+ init_dist_es16();
164617
+ import_util_hex_encoding5 = __toESM(require_dist_cjs13(), 1);
164695
164618
  init_dist_es6();
164696
164619
  });
164697
164620
 
@@ -164742,7 +164665,7 @@ var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED2 = "The stream has already been transfor
164742
164665
  });
164743
164666
  };
164744
164667
  var init_sdk_stream_mixin = __esm(() => {
164745
- init_dist_es19();
164668
+ init_dist_es18();
164746
164669
  init_dist_es5();
164747
164670
  init_sdk_stream_mixin_browser();
164748
164671
  });
@@ -164848,7 +164771,7 @@ var init_headStream = __esm(() => {
164848
164771
 
164849
164772
  // ../../../../node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js
164850
164773
  var init_ChecksumStream = __esm(() => {
164851
- init_dist_es17();
164774
+ init_dist_es16();
164852
164775
  });
164853
164776
 
164854
164777
  // ../../../../node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js
@@ -164857,7 +164780,7 @@ var init_ChecksumStream_browser = () => {
164857
164780
 
164858
164781
  // ../../../../node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js
164859
164782
  var init_createChecksumStream_browser = __esm(() => {
164860
- init_dist_es17();
164783
+ init_dist_es16();
164861
164784
  init_ChecksumStream_browser();
164862
164785
  });
164863
164786
 
@@ -164868,7 +164791,7 @@ var init_createChecksumStream = __esm(() => {
164868
164791
  });
164869
164792
 
164870
164793
  // ../../../../node_modules/@smithy/util-stream/dist-es/index.js
164871
- var init_dist_es21 = __esm(() => {
164794
+ var init_dist_es19 = __esm(() => {
164872
164795
  init_Uint8ArrayBlobAdapter();
164873
164796
  init_getAwsChunkedEncodingStream();
164874
164797
  init_sdk_stream_mixin();
@@ -164929,7 +164852,7 @@ var THROW_IF_EMPTY_BODY, MAX_BYTES_TO_INSPECT = 3000, throw200ExceptionsMiddlewa
164929
164852
  });
164930
164853
  var init_throw_200_exceptions = __esm(() => {
164931
164854
  init_dist_es();
164932
- init_dist_es21();
164855
+ init_dist_es19();
164933
164856
  THROW_IF_EMPTY_BODY = {
164934
164857
  CopyObjectCommand: true,
164935
164858
  UploadPartCopyCommand: true,
@@ -165015,7 +164938,7 @@ var init_validate_bucket_name = __esm(() => {
165015
164938
  });
165016
164939
 
165017
164940
  // ../../../../node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js
165018
- var init_dist_es22 = __esm(() => {
164941
+ var init_dist_es20 = __esm(() => {
165019
164942
  init_check_content_length_header();
165020
164943
  init_region_redirect_endpoint_middleware();
165021
164944
  init_region_redirect_middleware();
@@ -165667,7 +165590,7 @@ var init_resolveEndpoint = __esm(() => {
165667
165590
  });
165668
165591
 
165669
165592
  // ../../../../node_modules/@smithy/util-endpoints/dist-es/index.js
165670
- var init_dist_es23 = __esm(() => {
165593
+ var init_dist_es21 = __esm(() => {
165671
165594
  init_isIpAddress();
165672
165595
  init_isValidHostLabel();
165673
165596
  init_customEndpointFunctions();
@@ -165677,7 +165600,7 @@ var init_dist_es23 = __esm(() => {
165677
165600
 
165678
165601
  // ../../../../node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js
165679
165602
  var init_isIpAddress2 = __esm(() => {
165680
- init_dist_es23();
165603
+ init_dist_es21();
165681
165604
  });
165682
165605
 
165683
165606
  // ../../../../node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js
@@ -165705,7 +165628,7 @@ var isVirtualHostableS3Bucket = (value, allowSubDomains = false) => {
165705
165628
  return true;
165706
165629
  };
165707
165630
  var init_isVirtualHostableS3Bucket = __esm(() => {
165708
- init_dist_es23();
165631
+ init_dist_es21();
165709
165632
  init_isIpAddress2();
165710
165633
  });
165711
165634
 
@@ -165993,7 +165916,7 @@ var init_partition = __esm(() => {
165993
165916
  // ../../../../node_modules/@aws-sdk/util-endpoints/dist-es/aws.js
165994
165917
  var awsEndpointFunctions;
165995
165918
  var init_aws = __esm(() => {
165996
- init_dist_es23();
165919
+ init_dist_es21();
165997
165920
  init_isVirtualHostableS3Bucket();
165998
165921
  init_partition();
165999
165922
  awsEndpointFunctions = {
@@ -166006,12 +165929,12 @@ var init_aws = __esm(() => {
166006
165929
 
166007
165930
  // ../../../../node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js
166008
165931
  var init_resolveEndpoint2 = __esm(() => {
166009
- init_dist_es23();
165932
+ init_dist_es21();
166010
165933
  });
166011
165934
 
166012
165935
  // ../../../../node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js
166013
165936
  var init_EndpointError2 = __esm(() => {
166014
- init_dist_es23();
165937
+ init_dist_es21();
166015
165938
  });
166016
165939
 
166017
165940
  // ../../../../node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js
@@ -166045,7 +165968,7 @@ var init_types8 = __esm(() => {
166045
165968
  });
166046
165969
 
166047
165970
  // ../../../../node_modules/@aws-sdk/util-endpoints/dist-es/index.js
166048
- var init_dist_es24 = __esm(() => {
165971
+ var init_dist_es22 = __esm(() => {
166049
165972
  init_aws();
166050
165973
  init_partition();
166051
165974
  init_isIpAddress2();
@@ -166191,7 +166114,7 @@ var userAgentMiddleware = (options3) => (next, context) => async (args) => {
166191
166114
  }
166192
166115
  });
166193
166116
  var init_user_agent_middleware = __esm(() => {
166194
- init_dist_es24();
166117
+ init_dist_es22();
166195
166118
  init_dist_es();
166196
166119
  init_check_features();
166197
166120
  init_constants5();
@@ -166205,7 +166128,7 @@ var init_user_agent_middleware = __esm(() => {
166205
166128
  });
166206
166129
 
166207
166130
  // ../../../../node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js
166208
- var init_dist_es25 = __esm(() => {
166131
+ var init_dist_es23 = __esm(() => {
166209
166132
  init_configurations();
166210
166133
  init_user_agent_middleware();
166211
166134
  });
@@ -166213,7 +166136,7 @@ var init_dist_es25 = __esm(() => {
166213
166136
  // ../../../../node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js
166214
166137
  var ENV_USE_DUALSTACK_ENDPOINT = "AWS_USE_DUALSTACK_ENDPOINT", CONFIG_USE_DUALSTACK_ENDPOINT = "use_dualstack_endpoint", NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS;
166215
166138
  var init_NodeUseDualstackEndpointConfigOptions = __esm(() => {
166216
- init_dist_es16();
166139
+ init_dist_es15();
166217
166140
  NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS = {
166218
166141
  environmentVariableSelector: (env6) => booleanSelector(env6, ENV_USE_DUALSTACK_ENDPOINT, SelectorType2.ENV),
166219
166142
  configFileSelector: (profile) => booleanSelector(profile, CONFIG_USE_DUALSTACK_ENDPOINT, SelectorType2.CONFIG),
@@ -166224,7 +166147,7 @@ var init_NodeUseDualstackEndpointConfigOptions = __esm(() => {
166224
166147
  // ../../../../node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js
166225
166148
  var ENV_USE_FIPS_ENDPOINT = "AWS_USE_FIPS_ENDPOINT", CONFIG_USE_FIPS_ENDPOINT = "use_fips_endpoint", NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS;
166226
166149
  var init_NodeUseFipsEndpointConfigOptions = __esm(() => {
166227
- init_dist_es16();
166150
+ init_dist_es15();
166228
166151
  NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS = {
166229
166152
  environmentVariableSelector: (env6) => booleanSelector(env6, ENV_USE_FIPS_ENDPOINT, SelectorType2.ENV),
166230
166153
  configFileSelector: (profile) => booleanSelector(profile, CONFIG_USE_FIPS_ENDPOINT, SelectorType2.CONFIG),
@@ -166327,7 +166250,7 @@ var init_regionInfo = __esm(() => {
166327
166250
  });
166328
166251
 
166329
166252
  // ../../../../node_modules/@smithy/config-resolver/dist-es/index.js
166330
- var init_dist_es26 = __esm(() => {
166253
+ var init_dist_es24 = __esm(() => {
166331
166254
  init_endpointsConfig();
166332
166255
  init_regionConfig();
166333
166256
  init_regionInfo();
@@ -166340,7 +166263,7 @@ var resolveEventStreamSerdeConfig = (input) => ({
166340
166263
  });
166341
166264
 
166342
166265
  // ../../../../node_modules/@smithy/eventstream-serde-config-resolver/dist-es/index.js
166343
- var init_dist_es27 = () => {
166266
+ var init_dist_es25 = () => {
166344
166267
  };
166345
166268
 
166346
166269
  // ../../../../node_modules/@smithy/middleware-content-length/dist-es/index.js
@@ -166371,7 +166294,7 @@ var CONTENT_LENGTH_HEADER2 = "content-length", contentLengthMiddlewareOptions, g
166371
166294
  clientStack.add(contentLengthMiddleware(options3.bodyLengthChecker), contentLengthMiddlewareOptions);
166372
166295
  }
166373
166296
  });
166374
- var init_dist_es28 = __esm(() => {
166297
+ var init_dist_es26 = __esm(() => {
166375
166298
  init_dist_es();
166376
166299
  contentLengthMiddlewareOptions = {
166377
166300
  step: "build",
@@ -166586,7 +166509,7 @@ var memoize2 = (provider, isExpired, requiresRefresh) => {
166586
166509
  };
166587
166510
 
166588
166511
  // ../../../../node_modules/@smithy/property-provider/dist-es/index.js
166589
- var init_dist_es29 = __esm(() => {
166512
+ var init_dist_es27 = __esm(() => {
166590
166513
  init_CredentialsProviderError();
166591
166514
  init_ProviderError();
166592
166515
  init_TokenProviderError();
@@ -166619,7 +166542,7 @@ var fromEnv = (envVarSelector, logger3) => async () => {
166619
166542
  }
166620
166543
  };
166621
166544
  var init_fromEnv = __esm(() => {
166622
- init_dist_es29();
166545
+ init_dist_es27();
166623
166546
  });
166624
166547
 
166625
166548
  // ../../../../node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js
@@ -166855,7 +166778,7 @@ var init_types9 = () => {
166855
166778
  };
166856
166779
 
166857
166780
  // ../../../../node_modules/@smithy/shared-ini-file-loader/dist-es/index.js
166858
- var init_dist_es30 = __esm(() => {
166781
+ var init_dist_es28 = __esm(() => {
166859
166782
  init_getHomeDir();
166860
166783
  init_getSSOTokenFilepath();
166861
166784
  init_getSSOTokenFromFile();
@@ -166884,27 +166807,27 @@ var fromSharedConfigFiles = (configSelector, { preferredFile = "config", ...init
166884
166807
  }
166885
166808
  };
166886
166809
  var init_fromSharedConfigFiles = __esm(() => {
166887
- init_dist_es29();
166888
- init_dist_es30();
166810
+ init_dist_es27();
166811
+ init_dist_es28();
166889
166812
  });
166890
166813
 
166891
166814
  // ../../../../node_modules/@smithy/node-config-provider/dist-es/fromStatic.js
166892
166815
  var isFunction3 = (func) => typeof func === "function", fromStatic3 = (defaultValue) => isFunction3(defaultValue) ? async () => await defaultValue() : fromStatic(defaultValue);
166893
166816
  var init_fromStatic = __esm(() => {
166894
- init_dist_es29();
166817
+ init_dist_es27();
166895
166818
  });
166896
166819
 
166897
166820
  // ../../../../node_modules/@smithy/node-config-provider/dist-es/configLoader.js
166898
166821
  var loadConfig = ({ environmentVariableSelector, configFileSelector, default: defaultValue }, configuration = {}) => memoize2(chain(fromEnv(environmentVariableSelector), fromSharedConfigFiles(configFileSelector, configuration), fromStatic3(defaultValue)));
166899
166822
  var init_configLoader = __esm(() => {
166900
- init_dist_es29();
166823
+ init_dist_es27();
166901
166824
  init_fromEnv();
166902
166825
  init_fromSharedConfigFiles();
166903
166826
  init_fromStatic();
166904
166827
  });
166905
166828
 
166906
166829
  // ../../../../node_modules/@smithy/node-config-provider/dist-es/index.js
166907
- var init_dist_es31 = __esm(() => {
166830
+ var init_dist_es29 = __esm(() => {
166908
166831
  init_configLoader();
166909
166832
  });
166910
166833
 
@@ -166938,13 +166861,13 @@ var ENV_ENDPOINT_URL = "AWS_ENDPOINT_URL", CONFIG_ENDPOINT_URL = "endpoint_url",
166938
166861
  default: undefined
166939
166862
  });
166940
166863
  var init_getEndpointUrlConfig = __esm(() => {
166941
- init_dist_es30();
166864
+ init_dist_es28();
166942
166865
  });
166943
166866
 
166944
166867
  // ../../../../node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js
166945
166868
  var getEndpointFromConfig = async (serviceId) => loadConfig(getEndpointUrlConfig(serviceId ?? ""))();
166946
166869
  var init_getEndpointFromConfig = __esm(() => {
166947
- init_dist_es31();
166870
+ init_dist_es29();
166948
166871
  init_getEndpointUrlConfig();
166949
166872
  });
166950
166873
 
@@ -166989,7 +166912,7 @@ var parseUrl = (url) => {
166989
166912
  query
166990
166913
  };
166991
166914
  };
166992
- var init_dist_es32 = () => {
166915
+ var init_dist_es30 = () => {
166993
166916
  };
166994
166917
 
166995
166918
  // ../../../../node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js
@@ -167003,7 +166926,7 @@ var toEndpointV1 = (endpoint) => {
167003
166926
  return parseUrl(endpoint);
167004
166927
  };
167005
166928
  var init_toEndpointV1 = __esm(() => {
167006
- init_dist_es32();
166929
+ init_dist_es30();
167007
166930
  });
167008
166931
 
167009
166932
  // ../../../../node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js
@@ -167169,7 +167092,7 @@ var init_serdePlugin = __esm(() => {
167169
167092
  });
167170
167093
 
167171
167094
  // ../../../../node_modules/@smithy/middleware-serde/dist-es/index.js
167172
- var init_dist_es33 = __esm(() => {
167095
+ var init_dist_es31 = __esm(() => {
167173
167096
  init_serdePlugin();
167174
167097
  });
167175
167098
 
@@ -167183,7 +167106,7 @@ var endpointMiddlewareOptions, getEndpointPlugin = (config7, instructions) => ({
167183
167106
  }
167184
167107
  });
167185
167108
  var init_getEndpointPlugin = __esm(() => {
167186
- init_dist_es33();
167109
+ init_dist_es31();
167187
167110
  init_endpointMiddleware();
167188
167111
  endpointMiddlewareOptions = {
167189
167112
  step: "serialize",
@@ -167229,7 +167152,7 @@ var init_types10 = () => {
167229
167152
  };
167230
167153
 
167231
167154
  // ../../../../node_modules/@smithy/middleware-endpoint/dist-es/index.js
167232
- var init_dist_es34 = __esm(() => {
167155
+ var init_dist_es32 = __esm(() => {
167233
167156
  init_adaptors();
167234
167157
  init_endpointMiddleware();
167235
167158
  init_getEndpointPlugin();
@@ -167282,7 +167205,7 @@ var isClockSkewCorrectedError = (error) => error.$metadata?.clockSkewCorrected,
167282
167205
  }
167283
167206
  return false;
167284
167207
  };
167285
- var init_dist_es35 = __esm(() => {
167208
+ var init_dist_es33 = __esm(() => {
167286
167209
  init_constants6();
167287
167210
  });
167288
167211
 
@@ -167385,7 +167308,7 @@ class DefaultRateLimiter {
167385
167308
  }
167386
167309
  }
167387
167310
  var init_DefaultRateLimiter = __esm(() => {
167388
- init_dist_es35();
167311
+ init_dist_es33();
167389
167312
  });
167390
167313
 
167391
167314
  // ../../../../node_modules/@smithy/util-retry/dist-es/constants.js
@@ -167530,7 +167453,7 @@ var init_types11 = () => {
167530
167453
  };
167531
167454
 
167532
167455
  // ../../../../node_modules/@smithy/util-retry/dist-es/index.js
167533
- var init_dist_es36 = __esm(() => {
167456
+ var init_dist_es34 = __esm(() => {
167534
167457
  init_AdaptiveRetryStrategy();
167535
167458
  init_ConfiguredRetryStrategy();
167536
167459
  init_DefaultRateLimiter();
@@ -168028,17 +167951,17 @@ var init_wrapper = __esm(() => {
168028
167951
 
168029
167952
  // ../../../../node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js
168030
167953
  var init_defaultRetryQuota = __esm(() => {
168031
- init_dist_es36();
167954
+ init_dist_es34();
168032
167955
  });
168033
167956
 
168034
167957
  // ../../../../node_modules/@smithy/middleware-retry/dist-es/delayDecider.js
168035
167958
  var init_delayDecider = __esm(() => {
168036
- init_dist_es36();
167959
+ init_dist_es34();
168037
167960
  });
168038
167961
 
168039
167962
  // ../../../../node_modules/@smithy/middleware-retry/dist-es/retryDecider.js
168040
167963
  var init_retryDecider = __esm(() => {
168041
- init_dist_es35();
167964
+ init_dist_es33();
168042
167965
  });
168043
167966
 
168044
167967
  // ../../../../node_modules/@smithy/middleware-retry/dist-es/util.js
@@ -168055,8 +167978,8 @@ var asSdkError = (error) => {
168055
167978
  // ../../../../node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js
168056
167979
  var init_StandardRetryStrategy2 = __esm(() => {
168057
167980
  init_dist_es();
168058
- init_dist_es35();
168059
- init_dist_es36();
167981
+ init_dist_es33();
167982
+ init_dist_es34();
168060
167983
  init_defaultRetryQuota();
168061
167984
  init_delayDecider();
168062
167985
  init_retryDecider();
@@ -168064,7 +167987,7 @@ var init_StandardRetryStrategy2 = __esm(() => {
168064
167987
 
168065
167988
  // ../../../../node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js
168066
167989
  var init_AdaptiveRetryStrategy2 = __esm(() => {
168067
- init_dist_es36();
167990
+ init_dist_es34();
168068
167991
  init_StandardRetryStrategy2();
168069
167992
  });
168070
167993
 
@@ -168089,7 +168012,7 @@ var import_util_middleware8, ENV_MAX_ATTEMPTS = "AWS_MAX_ATTEMPTS", CONFIG_MAX_A
168089
168012
  }, ENV_RETRY_MODE = "AWS_RETRY_MODE", CONFIG_RETRY_MODE = "retry_mode", NODE_RETRY_MODE_CONFIG_OPTIONS;
168090
168013
  var init_configurations2 = __esm(() => {
168091
168014
  import_util_middleware8 = __toESM(require_dist_cjs3(), 1);
168092
- init_dist_es36();
168015
+ init_dist_es34();
168093
168016
  NODE_MAX_ATTEMPT_CONFIG_OPTIONS = {
168094
168017
  environmentVariableSelector: (env6) => {
168095
168018
  const value = env6[ENV_MAX_ATTEMPTS];
@@ -168123,7 +168046,7 @@ var init_configurations2 = __esm(() => {
168123
168046
  // ../../../../node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js
168124
168047
  var init_omitRetryHeadersMiddleware = __esm(() => {
168125
168048
  init_dist_es();
168126
- init_dist_es36();
168049
+ init_dist_es34();
168127
168050
  });
168128
168051
 
168129
168052
  // ../../../../node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js
@@ -168223,9 +168146,9 @@ var retryMiddleware = (options3) => (next, context) => async (args) => {
168223
168146
  };
168224
168147
  var init_retryMiddleware = __esm(() => {
168225
168148
  init_dist_es();
168226
- init_dist_es35();
168149
+ init_dist_es33();
168227
168150
  init_dist_es12();
168228
- init_dist_es36();
168151
+ init_dist_es34();
168229
168152
  init_wrapper();
168230
168153
  init_isStreamingPayload();
168231
168154
  retryMiddlewareOptions = {
@@ -168238,7 +168161,7 @@ var init_retryMiddleware = __esm(() => {
168238
168161
  });
168239
168162
 
168240
168163
  // ../../../../node_modules/@smithy/middleware-retry/dist-es/index.js
168241
- var init_dist_es37 = __esm(() => {
168164
+ var init_dist_es35 = __esm(() => {
168242
168165
  init_AdaptiveRetryStrategy2();
168243
168166
  init_StandardRetryStrategy2();
168244
168167
  init_configurations2();
@@ -168312,12 +168235,12 @@ class SignatureV4MultiRegion {
168312
168235
  }
168313
168236
  }
168314
168237
  var init_SignatureV4MultiRegion = __esm(() => {
168315
- init_dist_es22();
168238
+ init_dist_es20();
168316
168239
  init_signature_v4_crt_container();
168317
168240
  });
168318
168241
 
168319
168242
  // ../../../../node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js
168320
- var init_dist_es38 = __esm(() => {
168243
+ var init_dist_es36 = __esm(() => {
168321
168244
  init_SignatureV4MultiRegion();
168322
168245
  init_signature_v4_crt_container();
168323
168246
  });
@@ -168453,8 +168376,8 @@ var cache3, defaultEndpointResolver = (endpointParams, context = {}) => {
168453
168376
  }));
168454
168377
  };
168455
168378
  var init_endpointResolver = __esm(() => {
168456
- init_dist_es24();
168457
- init_dist_es23();
168379
+ init_dist_es22();
168380
+ init_dist_es21();
168458
168381
  init_ruleset();
168459
168382
  cache3 = new EndpointCache({
168460
168383
  size: 50,
@@ -168586,8 +168509,8 @@ var import_core10, import_util_middleware9, createEndpointRuleSetHttpAuthSchemeP
168586
168509
  };
168587
168510
  var init_httpAuthSchemeProvider = __esm(() => {
168588
168511
  import_core10 = __toESM(require_dist_cjs20(), 1);
168589
- init_dist_es38();
168590
- init_dist_es34();
168512
+ init_dist_es36();
168513
+ init_dist_es32();
168591
168514
  import_util_middleware9 = __toESM(require_dist_cjs3(), 1);
168592
168515
  init_endpointResolver();
168593
168516
  defaultS3HttpAuthSchemeParametersProvider = createEndpointRuleSetHttpAuthSchemeParametersProvider(_defaultS3HttpAuthSchemeParametersProvider);
@@ -168989,7 +168912,7 @@ var init_XmlNode = __esm(() => {
168989
168912
  });
168990
168913
 
168991
168914
  // ../../../../node_modules/@aws-sdk/xml-builder/dist-es/index.js
168992
- var init_dist_es39 = __esm(() => {
168915
+ var init_dist_es37 = __esm(() => {
168993
168916
  init_XmlNode();
168994
168917
  init_XmlText();
168995
168918
  });
@@ -175155,7 +175078,7 @@ var import_core11, import_core12, se_AbortMultipartUploadCommand = async (input,
175155
175078
  }), collectBodyString = (streamBody, context) => import_protocols.collectBody(streamBody, context).then((body) => context.utf8Encoder(body)), _A = "And", _AAO = "AnalyticsAndOperator", _AC = "AnalyticsConfiguration", _ACL = "ACL", _ACLc = "AccessControlList", _ACLn = "AnalyticsConfigurationList", _ACP = "AccessControlPolicy", _ACT = "AccessControlTranslation", _ACc = "AccelerateConfiguration", _AD = "AbortDate", _AED = "AnalyticsExportDestination", _AF = "AnalyticsFilter", _AH = "AllowedHeader", _AHl = "AllowedHeaders", _AI = "AnalyticsId", _AIMU = "AbortIncompleteMultipartUpload", _AIc = "AccountId", _AKI = "AccessKeyId", _AM = "AllowedMethod", _AMl = "AllowedMethods", _AO = "AllowedOrigin", _AOl = "AllowedOrigins", _APA = "AccessPointAlias", _APAc = "AccessPointArn", _AQRD = "AllowQuotedRecordDelimiter", _AR = "AcceptRanges", _ARI = "AbortRuleId", _AS = "ArchiveStatus", _ASBD = "AnalyticsS3BucketDestination", _ASEFF = "AnalyticsS3ExportFileFormat", _ASSEBD = "ApplyServerSideEncryptionByDefault", _AT = "AccessTier", _Ac = "Account", _B = "Bucket", _BAI = "BucketAccountId", _BAS = "BucketAccelerateStatus", _BGR = "BypassGovernanceRetention", _BI = "BucketInfo", _BKE = "BucketKeyEnabled", _BLC = "BucketLifecycleConfiguration", _BLCu = "BucketLocationConstraint", _BLN = "BucketLocationName", _BLP = "BucketLogsPermission", _BLS = "BucketLoggingStatus", _BLT = "BucketLocationType", _BN = "BucketName", _BP = "BytesProcessed", _BPA = "BlockPublicAcls", _BPP = "BlockPublicPolicy", _BR = "BucketRegion", _BRy = "BytesReturned", _BS = "BytesScanned", _BT = "BucketType", _BVS = "BucketVersioningStatus", _Bu = "Buckets", _C = "Credentials", _CA = "ChecksumAlgorithm", _CACL = "CannedACL", _CBC = "CreateBucketConfiguration", _CC = "CacheControl", _CCRC = "ChecksumCRC32", _CCRCC = "ChecksumCRC32C", _CD = "ContentDisposition", _CDr = "CreationDate", _CE = "ContentEncoding", _CF = "CloudFunction", _CFC = "CloudFunctionConfiguration", _CL = "ContentLanguage", _CLo = "ContentLength", _CM = "ChecksumMode", _CMD = "ContentMD5", _CMU = "CompletedMultipartUpload", _CORSC = "CORSConfiguration", _CORSR = "CORSRule", _CORSRu = "CORSRules", _CP = "CommonPrefixes", _CPo = "CompletedPart", _CR = "ContentRange", _CRSBA = "ConfirmRemoveSelfBucketAccess", _CS = "CopySource", _CSHA = "ChecksumSHA1", _CSHAh = "ChecksumSHA256", _CSIM = "CopySourceIfMatch", _CSIMS = "CopySourceIfModifiedSince", _CSINM = "CopySourceIfNoneMatch", _CSIUS = "CopySourceIfUnmodifiedSince", _CSR = "CopySourceRange", _CSSSECA = "CopySourceSSECustomerAlgorithm", _CSSSECK = "CopySourceSSECustomerKey", _CSSSECKMD = "CopySourceSSECustomerKeyMD5", _CSV = "CSV", _CSVI = "CopySourceVersionId", _CSVIn = "CSVInput", _CSVO = "CSVOutput", _CT = "ContentType", _CTo = "ContinuationToken", _CTom = "CompressionType", _Ch = "Checksum", _Co = "Contents", _Cod = "Code", _Com = "Comments", _Con = "Condition", _D = "Delimiter", _DAI = "DaysAfterInitiation", _DE = "DataExport", _DM = "DeleteMarker", _DMR = "DeleteMarkerReplication", _DMRS = "DeleteMarkerReplicationStatus", _DMVI = "DeleteMarkerVersionId", _DMe = "DeleteMarkers", _DN = "DisplayName", _DR = "DataRedundancy", _DRe = "DefaultRetention", _Da = "Days", _Dat = "Date", _De = "Deleted", _Del = "Delete", _Des = "Destination", _Desc = "Description", _E = "Expires", _EA = "EmailAddress", _EBC = "EventBridgeConfiguration", _EBO = "ExpectedBucketOwner", _EC = "ErrorCode", _ECn = "EncryptionConfiguration", _ED = "ErrorDocument", _EH = "ExposeHeaders", _EHx = "ExposeHeader", _EM = "ErrorMessage", _EODM = "ExpiredObjectDeleteMarker", _EOR = "ExistingObjectReplication", _EORS = "ExistingObjectReplicationStatus", _ERP = "EnableRequestProgress", _ES = "ExpiresString", _ESBO = "ExpectedSourceBucketOwner", _ESx = "ExpirationStatus", _ET = "EncodingType", _ETa = "ETag", _ETn = "EncryptionType", _ETv = "EventThreshold", _ETx = "ExpressionType", _En = "Encryption", _Ena = "Enabled", _End = "End", _Er = "Error", _Err = "Errors", _Ev = "Event", _Eve = "Events", _Ex = "Expression", _Exp = "Expiration", _F = "Filter", _FD = "FieldDelimiter", _FHI = "FileHeaderInfo", _FO = "FetchOwner", _FR = "FilterRule", _FRN = "FilterRuleName", _FRV = "FilterRuleValue", _FRi = "FilterRules", _Fi = "Field", _Fo = "Format", _Fr = "Frequency", _G = "Grant", _GFC = "GrantFullControl", _GJP = "GlacierJobParameters", _GR = "GrantRead", _GRACP = "GrantReadACP", _GW = "GrantWrite", _GWACP = "GrantWriteACP", _Gr = "Grants", _Gra = "Grantee", _HECRE = "HttpErrorCodeReturnedEquals", _HN = "HostName", _HRC = "HttpRedirectCode", _I = "Id", _IC = "InventoryConfiguration", _ICL = "InventoryConfigurationList", _ID = "IndexDocument", _ID_ = "ID", _IDn = "InventoryDestination", _IE = "IsEnabled", _IEn = "InventoryEncryption", _IF = "InventoryFilter", _IFn = "InventoryFormat", _IFnv = "InventoryFrequency", _II = "InventoryId", _IIOV = "InventoryIncludedObjectVersions", _IL = "IsLatest", _IM = "IfMatch", _IMS = "IfModifiedSince", _INM = "IfNoneMatch", _IOF = "InventoryOptionalField", _IOV = "IncludedObjectVersions", _IP = "IsPublic", _IPA = "IgnorePublicAcls", _IRIP = "IsRestoreInProgress", _IS = "InputSerialization", _ISBD = "InventoryS3BucketDestination", _ISn = "InventorySchedule", _IT = "IsTruncated", _ITAO = "IntelligentTieringAndOperator", _ITAT = "IntelligentTieringAccessTier", _ITC = "IntelligentTieringConfiguration", _ITCL = "IntelligentTieringConfigurationList", _ITD = "IntelligentTieringDays", _ITF = "IntelligentTieringFilter", _ITI = "IntelligentTieringId", _ITS = "IntelligentTieringStatus", _IUS = "IfUnmodifiedSince", _In = "Initiator", _Ini = "Initiated", _JSON = "JSON", _JSONI = "JSONInput", _JSONO = "JSONOutput", _JSONT = "JSONType", _K = "Key", _KC = "KeyCount", _KI = "KeyId", _KM = "KeyMarker", _KMSC = "KMSContext", _KMSKI = "KMSKeyId", _KMSMKID = "KMSMasterKeyID", _KPE = "KeyPrefixEquals", _L = "Location", _LC = "LocationConstraint", _LE = "LoggingEnabled", _LEi = "LifecycleExpiration", _LFA = "LambdaFunctionArn", _LFC = "LambdaFunctionConfigurations", _LFCa = "LambdaFunctionConfiguration", _LI = "LocationInfo", _LM = "LastModified", _LNAS = "LocationNameAsString", _LP = "LocationPrefix", _LR = "LifecycleRule", _LRAO = "LifecycleRuleAndOperator", _LRF = "LifecycleRuleFilter", _LT = "LocationType", _M = "Marker", _MAO = "MetricsAndOperator", _MAS = "MaxAgeSeconds", _MB = "MaxBuckets", _MC = "MetricsConfiguration", _MCL = "MetricsConfigurationList", _MD = "MetadataDirective", _MDB = "MaxDirectoryBuckets", _MDf = "MfaDelete", _ME = "MetadataEntry", _MF = "MetricsFilter", _MFA = "MFA", _MFAD = "MFADelete", _MI = "MetricsId", _MK = "MaxKeys", _MKe = "MetadataKey", _MM = "MissingMeta", _MP = "MaxParts", _MS = "MetricsStatus", _MU = "MaxUploads", _MV = "MetadataValue", _Me = "Metrics", _Mes = "Message", _Mi = "Minutes", _Mo = "Mode", _N = "Name", _NC = "NotificationConfiguration", _NCF = "NotificationConfigurationFilter", _NCT = "NextContinuationToken", _ND = "NoncurrentDays", _NI = "NotificationId", _NKM = "NextKeyMarker", _NM = "NextMarker", _NNV = "NewerNoncurrentVersions", _NPNM = "NextPartNumberMarker", _NUIM = "NextUploadIdMarker", _NVE = "NoncurrentVersionExpiration", _NVIM = "NextVersionIdMarker", _NVT = "NoncurrentVersionTransitions", _NVTo = "NoncurrentVersionTransition", _O = "Owner", _OA = "ObjectAttributes", _OC = "OwnershipControls", _OCACL = "ObjectCannedACL", _OCR = "OwnershipControlsRule", _OF = "OptionalFields", _OI = "ObjectIdentifier", _OK = "ObjectKey", _OL = "OutputLocation", _OLC = "ObjectLockConfiguration", _OLE = "ObjectLockEnabled", _OLEFB = "ObjectLockEnabledForBucket", _OLLH = "ObjectLockLegalHold", _OLLHS = "ObjectLockLegalHoldStatus", _OLM = "ObjectLockMode", _OLR = "ObjectLockRetention", _OLRM = "ObjectLockRetentionMode", _OLRUD = "ObjectLockRetainUntilDate", _OLRb = "ObjectLockRule", _OO = "ObjectOwnership", _OOA = "OptionalObjectAttributes", _OOw = "OwnerOverride", _OP = "ObjectParts", _OS = "OutputSerialization", _OSGT = "ObjectSizeGreaterThan", _OSGTB = "ObjectSizeGreaterThanBytes", _OSLT = "ObjectSizeLessThan", _OSLTB = "ObjectSizeLessThanBytes", _OSV = "OutputSchemaVersion", _OSb = "ObjectSize", _OVI = "ObjectVersionId", _Ob = "Objects", _P = "Prefix", _PABC = "PublicAccessBlockConfiguration", _PC = "PartsCount", _PDS = "PartitionDateSource", _PI = "ParquetInput", _PN = "PartNumber", _PNM = "PartNumberMarker", _PP = "PartitionedPrefix", _Pa = "Payer", _Par = "Part", _Parq = "Parquet", _Part = "Parts", _Pe = "Permission", _Pr = "Protocol", _Pri = "Priority", _Q = "Quiet", _QA = "QueueArn", _QC = "QueueConfiguration", _QCu = "QueueConfigurations", _QCuo = "QuoteCharacter", _QEC = "QuoteEscapeCharacter", _QF = "QuoteFields", _Qu = "Queue", _R = "Range", _RART = "RedirectAllRequestsTo", _RC = "RequestCharged", _RCC = "ResponseCacheControl", _RCD = "ResponseContentDisposition", _RCE = "ResponseContentEncoding", _RCL = "ResponseContentLanguage", _RCT = "ResponseContentType", _RCe = "ReplicationConfiguration", _RD = "RecordDelimiter", _RE = "ResponseExpires", _RED = "RestoreExpiryDate", _RKKID = "ReplicaKmsKeyID", _RKPW = "ReplaceKeyPrefixWith", _RKW = "ReplaceKeyWith", _RM = "ReplicaModifications", _RMS = "ReplicaModificationsStatus", _ROP = "RestoreOutputPath", _RP = "RequestPayer", _RPB = "RestrictPublicBuckets", _RPC = "RequestPaymentConfiguration", _RPe = "RequestProgress", _RR = "RequestRoute", _RRAO = "ReplicationRuleAndOperator", _RRF = "ReplicationRuleFilter", _RRS = "ReplicationRuleStatus", _RRT = "RestoreRequestType", _RRe = "ReplicationRule", _RRes = "RestoreRequest", _RRo = "RoutingRules", _RRou = "RoutingRule", _RS = "ReplicationStatus", _RSe = "RestoreStatus", _RT = "RequestToken", _RTS = "ReplicationTimeStatus", _RTV = "ReplicationTimeValue", _RTe = "ReplicationTime", _RUD = "RetainUntilDate", _Re = "Restore", _Red = "Redirect", _Ro = "Role", _Ru = "Rule", _Rul = "Rules", _S = "Status", _SA = "StartAfter", _SAK = "SecretAccessKey", _SBD = "S3BucketDestination", _SC = "StorageClass", _SCA = "StorageClassAnalysis", _SCADE = "StorageClassAnalysisDataExport", _SCASV = "StorageClassAnalysisSchemaVersion", _SCt = "StatusCode", _SDV = "SkipDestinationValidation", _SK = "SSE-KMS", _SKEO = "SseKmsEncryptedObjects", _SKEOS = "SseKmsEncryptedObjectsStatus", _SKF = "S3KeyFilter", _SKe = "S3Key", _SL = "S3Location", _SM = "SessionMode", _SOCR = "SelectObjectContentRequest", _SP = "SelectParameters", _SPi = "SimplePrefix", _SR = "ScanRange", _SS = "SSE-S3", _SSC = "SourceSelectionCriteria", _SSE = "ServerSideEncryption", _SSEA = "SSEAlgorithm", _SSEBD = "ServerSideEncryptionByDefault", _SSEC = "ServerSideEncryptionConfiguration", _SSECA = "SSECustomerAlgorithm", _SSECK = "SSECustomerKey", _SSECKMD = "SSECustomerKeyMD5", _SSEKMS = "SSEKMS", _SSEKMSEC = "SSEKMSEncryptionContext", _SSEKMSKI = "SSEKMSKeyId", _SSER = "ServerSideEncryptionRule", _SSES = "SSES3", _ST = "SessionToken", _S_ = "S3", _Sc = "Schedule", _Se = "Setting", _Si = "Size", _St = "Start", _Su = "Suffix", _T = "Tagging", _TA = "TopicArn", _TB = "TargetBucket", _TC = "TagCount", _TCo = "TopicConfiguration", _TCop = "TopicConfigurations", _TD = "TaggingDirective", _TDMOS = "TransitionDefaultMinimumObjectSize", _TG = "TargetGrants", _TGa = "TargetGrant", _TOKF = "TargetObjectKeyFormat", _TP = "TargetPrefix", _TPC = "TotalPartsCount", _TS = "TagSet", _TSC = "TransitionStorageClass", _Ta = "Tag", _Tag = "Tags", _Ti = "Tier", _Tie = "Tierings", _Tier = "Tiering", _Tim = "Time", _To = "Token", _Top = "Topic", _Tr = "Transitions", _Tra = "Transition", _Ty = "Type", _U = "Upload", _UI = "UploadId", _UIM = "UploadIdMarker", _UM = "UserMetadata", _URI = "URI", _Up = "Uploads", _V = "Version", _VC = "VersionCount", _VCe = "VersioningConfiguration", _VI = "VersionId", _VIM = "VersionIdMarker", _Va = "Value", _Ve = "Versions", _WC = "WebsiteConfiguration", _WRL = "WebsiteRedirectLocation", _Y = "Years", _a = "analytics", _ac = "accelerate", _acl = "acl", _ar = "accept-ranges", _at = "attributes", _br = "bucket-region", _c = "cors", _cc = "cache-control", _cd = "content-disposition", _ce = "content-encoding", _cl = "content-language", _cl_ = "content-length", _cm = "content-md5", _cr = "content-range", _ct = "content-type", _ct_ = "continuation-token", _d = "delete", _de = "delimiter", _e = "expires", _en = "encryption", _et = "encoding-type", _eta = "etag", _ex = "expiresstring", _fo = "fetch-owner", _i = "id", _im = "if-match", _ims = "if-modified-since", _in = "inventory", _inm = "if-none-match", _it = "intelligent-tiering", _ius = "if-unmodified-since", _km = "key-marker", _l = "lifecycle", _lh = "legal-hold", _lm = "last-modified", _lo = "location", _log = "logging", _lt = "list-type", _m = "metrics", _ma = "marker", _mb = "max-buckets", _mdb = "max-directory-buckets", _me = "member", _mk = "max-keys", _mp = "max-parts", _mu = "max-uploads", _n = "notification", _oC = "ownershipControls", _ol = "object-lock", _p = "policy", _pAB = "publicAccessBlock", _pN = "partNumber", _pS = "policyStatus", _pnm = "part-number-marker", _pr = "prefix", _r = "replication", _rP = "requestPayment", _ra = "range", _rcc = "response-cache-control", _rcd = "response-content-disposition", _rce = "response-content-encoding", _rcl = "response-content-language", _rct = "response-content-type", _re = "response-expires", _res = "restore", _ret = "retention", _s = "session", _sa = "start-after", _se = "select", _st = "select-type", _t = "tagging", _to = "torrent", _u = "uploads", _uI = "uploadId", _uim = "upload-id-marker", _v = "versioning", _vI = "versionId", _ve = '<?xml version="1.0" encoding="UTF-8"?>', _ver = "versions", _vim = "version-id-marker", _w = "website", _x = "xsi:type", _xaa = "x-amz-acl", _xaad = "x-amz-abort-date", _xaapa = "x-amz-access-point-alias", _xaari = "x-amz-abort-rule-id", _xaas = "x-amz-archive-status", _xabgr = "x-amz-bypass-governance-retention", _xabln = "x-amz-bucket-location-name", _xablt = "x-amz-bucket-location-type", _xabole = "x-amz-bucket-object-lock-enabled", _xabolt = "x-amz-bucket-object-lock-token", _xabr = "x-amz-bucket-region", _xaca = "x-amz-checksum-algorithm", _xacc = "x-amz-checksum-crc32", _xacc_ = "x-amz-checksum-crc32c", _xacm = "x-amz-checksum-mode", _xacrsba = "x-amz-confirm-remove-self-bucket-access", _xacs = "x-amz-checksum-sha1", _xacs_ = "x-amz-checksum-sha256", _xacs__ = "x-amz-copy-source", _xacsim = "x-amz-copy-source-if-match", _xacsims = "x-amz-copy-source-if-modified-since", _xacsinm = "x-amz-copy-source-if-none-match", _xacsius = "x-amz-copy-source-if-unmodified-since", _xacsm = "x-amz-create-session-mode", _xacsr = "x-amz-copy-source-range", _xacssseca = "x-amz-copy-source-server-side-encryption-customer-algorithm", _xacssseck = "x-amz-copy-source-server-side-encryption-customer-key", _xacssseckm = "x-amz-copy-source-server-side-encryption-customer-key-md5", _xacsvi = "x-amz-copy-source-version-id", _xadm = "x-amz-delete-marker", _xae = "x-amz-expiration", _xaebo = "x-amz-expected-bucket-owner", _xafec = "x-amz-fwd-error-code", _xafem = "x-amz-fwd-error-message", _xafhar = "x-amz-fwd-header-accept-ranges", _xafhcc = "x-amz-fwd-header-cache-control", _xafhcd = "x-amz-fwd-header-content-disposition", _xafhce = "x-amz-fwd-header-content-encoding", _xafhcl = "x-amz-fwd-header-content-language", _xafhcr = "x-amz-fwd-header-content-range", _xafhct = "x-amz-fwd-header-content-type", _xafhe = "x-amz-fwd-header-etag", _xafhe_ = "x-amz-fwd-header-expires", _xafhlm = "x-amz-fwd-header-last-modified", _xafhxacc = "x-amz-fwd-header-x-amz-checksum-crc32", _xafhxacc_ = "x-amz-fwd-header-x-amz-checksum-crc32c", _xafhxacs = "x-amz-fwd-header-x-amz-checksum-sha1", _xafhxacs_ = "x-amz-fwd-header-x-amz-checksum-sha256", _xafhxadm = "x-amz-fwd-header-x-amz-delete-marker", _xafhxae = "x-amz-fwd-header-x-amz-expiration", _xafhxamm = "x-amz-fwd-header-x-amz-missing-meta", _xafhxampc = "x-amz-fwd-header-x-amz-mp-parts-count", _xafhxaollh = "x-amz-fwd-header-x-amz-object-lock-legal-hold", _xafhxaolm = "x-amz-fwd-header-x-amz-object-lock-mode", _xafhxaolrud = "x-amz-fwd-header-x-amz-object-lock-retain-until-date", _xafhxar = "x-amz-fwd-header-x-amz-restore", _xafhxarc = "x-amz-fwd-header-x-amz-request-charged", _xafhxars = "x-amz-fwd-header-x-amz-replication-status", _xafhxasc = "x-amz-fwd-header-x-amz-storage-class", _xafhxasse = "x-amz-fwd-header-x-amz-server-side-encryption", _xafhxasseakki = "x-amz-fwd-header-x-amz-server-side-encryption-aws-kms-key-id", _xafhxassebke = "x-amz-fwd-header-x-amz-server-side-encryption-bucket-key-enabled", _xafhxasseca = "x-amz-fwd-header-x-amz-server-side-encryption-customer-algorithm", _xafhxasseckm = "x-amz-fwd-header-x-amz-server-side-encryption-customer-key-md5", _xafhxatc = "x-amz-fwd-header-x-amz-tagging-count", _xafhxavi = "x-amz-fwd-header-x-amz-version-id", _xafs = "x-amz-fwd-status", _xagfc = "x-amz-grant-full-control", _xagr = "x-amz-grant-read", _xagra = "x-amz-grant-read-acp", _xagw = "x-amz-grant-write", _xagwa = "x-amz-grant-write-acp", _xam = "x-amz-mfa", _xamd = "x-amz-metadata-directive", _xamm = "x-amz-missing-meta", _xamp = "x-amz-max-parts", _xampc = "x-amz-mp-parts-count", _xaoa = "x-amz-object-attributes", _xaollh = "x-amz-object-lock-legal-hold", _xaolm = "x-amz-object-lock-mode", _xaolrud = "x-amz-object-lock-retain-until-date", _xaoo = "x-amz-object-ownership", _xaooa = "x-amz-optional-object-attributes", _xapnm = "x-amz-part-number-marker", _xar = "x-amz-restore", _xarc = "x-amz-request-charged", _xarop = "x-amz-restore-output-path", _xarp = "x-amz-request-payer", _xarr = "x-amz-request-route", _xars = "x-amz-replication-status", _xart = "x-amz-request-token", _xasc = "x-amz-storage-class", _xasca = "x-amz-sdk-checksum-algorithm", _xasdv = "x-amz-skip-destination-validation", _xasebo = "x-amz-source-expected-bucket-owner", _xasse = "x-amz-server-side-encryption", _xasseakki = "x-amz-server-side-encryption-aws-kms-key-id", _xassebke = "x-amz-server-side-encryption-bucket-key-enabled", _xassec = "x-amz-server-side-encryption-context", _xasseca = "x-amz-server-side-encryption-customer-algorithm", _xasseck = "x-amz-server-side-encryption-customer-key", _xasseckm = "x-amz-server-side-encryption-customer-key-md5", _xat = "x-amz-tagging", _xatc = "x-amz-tagging-count", _xatd = "x-amz-tagging-directive", _xatdmos = "x-amz-transition-default-minimum-object-size", _xavi = "x-amz-version-id", _xawrl = "x-amz-website-redirect-location", _xi = "x-id";
175156
175079
  var init_Aws_restXml = __esm(() => {
175157
175080
  import_core11 = __toESM(require_dist_cjs20(), 1);
175158
- init_dist_es39();
175081
+ init_dist_es37();
175159
175082
  import_core12 = __toESM(require_dist_cjs15(), 1);
175160
175083
  init_dist_es();
175161
175084
  init_dist_es12();
@@ -175168,9 +175091,9 @@ var init_Aws_restXml = __esm(() => {
175168
175091
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js
175169
175092
  var CreateSessionCommand;
175170
175093
  var init_CreateSessionCommand = __esm(() => {
175171
- init_dist_es22();
175172
- init_dist_es34();
175173
- init_dist_es33();
175094
+ init_dist_es20();
175095
+ init_dist_es32();
175096
+ init_dist_es31();
175174
175097
  init_dist_es12();
175175
175098
  init_EndpointParameters();
175176
175099
  init_models_0();
@@ -175346,7 +175269,7 @@ var import_client, ENV_KEY = "AWS_ACCESS_KEY_ID", ENV_SECRET = "AWS_SECRET_ACCES
175346
175269
  };
175347
175270
  var init_fromEnv2 = __esm(() => {
175348
175271
  import_client = __toESM(require_client4(), 1);
175349
- init_dist_es29();
175272
+ init_dist_es27();
175350
175273
  });
175351
175274
 
175352
175275
  // ../../../../node_modules/@aws-sdk/credential-provider-env/dist-es/index.js
@@ -175360,7 +175283,7 @@ __export(exports_dist_es, {
175360
175283
  ENV_CREDENTIAL_SCOPE: () => ENV_CREDENTIAL_SCOPE,
175361
175284
  ENV_ACCOUNT_ID: () => ENV_ACCOUNT_ID
175362
175285
  });
175363
- var init_dist_es40 = __esm(() => {
175286
+ var init_dist_es38 = __esm(() => {
175364
175287
  init_fromEnv2();
175365
175288
  });
175366
175289
 
@@ -175401,7 +175324,7 @@ function httpRequest2(options3) {
175401
175324
  });
175402
175325
  }
175403
175326
  var init_httpRequest = __esm(() => {
175404
- init_dist_es29();
175327
+ init_dist_es27();
175405
175328
  });
175406
175329
 
175407
175330
  // ../../../../node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js
@@ -175483,7 +175406,7 @@ var ENV_CMDS_FULL_URI = "AWS_CONTAINER_CREDENTIALS_FULL_URI", ENV_CMDS_RELATIVE_
175483
175406
  });
175484
175407
  };
175485
175408
  var init_fromContainerMetadata = __esm(() => {
175486
- init_dist_es29();
175409
+ init_dist_es27();
175487
175410
  init_httpRequest();
175488
175411
  GREENGRASS_HOSTS = {
175489
175412
  localhost: true,
@@ -175498,7 +175421,7 @@ var init_fromContainerMetadata = __esm(() => {
175498
175421
  // ../../../../node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js
175499
175422
  var InstanceMetadataV1FallbackError;
175500
175423
  var init_InstanceMetadataV1FallbackError = __esm(() => {
175501
- init_dist_es29();
175424
+ init_dist_es27();
175502
175425
  InstanceMetadataV1FallbackError = class InstanceMetadataV1FallbackError extends CredentialsProviderError {
175503
175426
  constructor(message, tryNextLink = true) {
175504
175427
  super(message, tryNextLink);
@@ -175561,8 +175484,8 @@ var getInstanceMetadataEndpoint = async () => parseUrl(await getFromEndpointConf
175561
175484
  }
175562
175485
  };
175563
175486
  var init_getInstanceMetadataEndpoint = __esm(() => {
175564
- init_dist_es31();
175565
- init_dist_es32();
175487
+ init_dist_es29();
175488
+ init_dist_es30();
175566
175489
  init_Endpoint();
175567
175490
  init_EndpointConfigOptions();
175568
175491
  init_EndpointMode();
@@ -175726,8 +175649,8 @@ var IMDS_PATH = "/latest/meta-data/iam/security-credentials/", IMDS_TOKEN_PATH =
175726
175649
  return fromImdsCredentials(credentialsResponse);
175727
175650
  };
175728
175651
  var init_fromInstanceMetadata = __esm(() => {
175729
- init_dist_es31();
175730
175652
  init_dist_es29();
175653
+ init_dist_es27();
175731
175654
  init_InstanceMetadataV1FallbackError();
175732
175655
  init_httpRequest();
175733
175656
  init_getInstanceMetadataEndpoint();
@@ -175753,7 +175676,7 @@ __export(exports_dist_es2, {
175753
175676
  DEFAULT_TIMEOUT: () => DEFAULT_TIMEOUT,
175754
175677
  DEFAULT_MAX_RETRIES: () => DEFAULT_MAX_RETRIES
175755
175678
  });
175756
- var init_dist_es41 = __esm(() => {
175679
+ var init_dist_es39 = __esm(() => {
175757
175680
  init_fromContainerMetadata();
175758
175681
  init_fromInstanceMetadata();
175759
175682
  init_types12();
@@ -175793,7 +175716,7 @@ var ECS_CONTAINER_HOST = "169.254.170.2", EKS_CONTAINER_HOST_IPv4 = "169.254.170
175793
175716
  - EKS container host 169.254.170.23 or [fd00:ec2::23]`, { logger: logger3 });
175794
175717
  };
175795
175718
  var init_checkUrl = __esm(() => {
175796
- init_dist_es29();
175719
+ init_dist_es27();
175797
175720
  });
175798
175721
 
175799
175722
  // ../../../../node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js
@@ -175839,10 +175762,10 @@ async function getCredentials(response, logger3) {
175839
175762
  throw new CredentialsProviderError(`Server responded with status: ${response.statusCode}`, { logger: logger3 });
175840
175763
  }
175841
175764
  var init_requestHelpers = __esm(() => {
175842
- init_dist_es29();
175765
+ init_dist_es27();
175843
175766
  init_dist_es();
175844
175767
  init_dist_es12();
175845
- init_dist_es21();
175768
+ init_dist_es19();
175846
175769
  });
175847
175770
 
175848
175771
  // ../../../../node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js
@@ -175908,8 +175831,8 @@ Set AWS_CONTAINER_CREDENTIALS_FULL_URI or AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
175908
175831
  };
175909
175832
  var init_fromHttp = __esm(() => {
175910
175833
  import_client2 = __toESM(require_client4(), 1);
175911
- init_dist_es19();
175912
- init_dist_es29();
175834
+ init_dist_es18();
175835
+ init_dist_es27();
175913
175836
  init_checkUrl();
175914
175837
  init_requestHelpers();
175915
175838
  });
@@ -175919,16 +175842,16 @@ var exports_dist_es3 = {};
175919
175842
  __export(exports_dist_es3, {
175920
175843
  fromHttp: () => fromHttp
175921
175844
  });
175922
- var init_dist_es42 = __esm(() => {
175845
+ var init_dist_es40 = __esm(() => {
175923
175846
  init_fromHttp();
175924
175847
  });
175925
175848
 
175926
175849
  // ../../../../node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js
175927
175850
  var ENV_IMDS_DISABLED = "AWS_EC2_METADATA_DISABLED", remoteProvider = async (init3) => {
175928
- const { ENV_CMDS_FULL_URI: ENV_CMDS_FULL_URI2, ENV_CMDS_RELATIVE_URI: ENV_CMDS_RELATIVE_URI2, fromContainerMetadata: fromContainerMetadata3, fromInstanceMetadata: fromInstanceMetadata3 } = await Promise.resolve().then(() => (init_dist_es41(), exports_dist_es2));
175851
+ const { ENV_CMDS_FULL_URI: ENV_CMDS_FULL_URI2, ENV_CMDS_RELATIVE_URI: ENV_CMDS_RELATIVE_URI2, fromContainerMetadata: fromContainerMetadata3, fromInstanceMetadata: fromInstanceMetadata3 } = await Promise.resolve().then(() => (init_dist_es39(), exports_dist_es2));
175929
175852
  if (process.env[ENV_CMDS_RELATIVE_URI2] || process.env[ENV_CMDS_FULL_URI2]) {
175930
175853
  init3.logger?.debug("@aws-sdk/credential-provider-node - remoteProvider::fromHttp/fromContainerMetadata");
175931
- const { fromHttp: fromHttp2 } = await Promise.resolve().then(() => (init_dist_es42(), exports_dist_es3));
175854
+ const { fromHttp: fromHttp2 } = await Promise.resolve().then(() => (init_dist_es40(), exports_dist_es3));
175932
175855
  return chain(fromHttp2(init3), fromContainerMetadata3(init3));
175933
175856
  }
175934
175857
  if (process.env[ENV_IMDS_DISABLED]) {
@@ -175940,7 +175863,7 @@ var ENV_IMDS_DISABLED = "AWS_EC2_METADATA_DISABLED", remoteProvider = async (ini
175940
175863
  return fromInstanceMetadata3(init3);
175941
175864
  };
175942
175865
  var init_remoteProvider = __esm(() => {
175943
- init_dist_es29();
175866
+ init_dist_es27();
175944
175867
  });
175945
175868
 
175946
175869
  // ../../../../node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js
@@ -176190,7 +176113,7 @@ var init_defaultUserAgent = __esm(() => {
176190
176113
  // ../../../../node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js
176191
176114
  var UA_APP_ID_ENV_NAME = "AWS_SDK_UA_APP_ID", UA_APP_ID_INI_NAME = "sdk-ua-app-id", NODE_APP_ID_CONFIG_OPTIONS;
176192
176115
  var init_nodeAppIdConfigOptions = __esm(() => {
176193
- init_dist_es25();
176116
+ init_dist_es23();
176194
176117
  NODE_APP_ID_CONFIG_OPTIONS = {
176195
176118
  environmentVariableSelector: (env7) => env7[UA_APP_ID_ENV_NAME],
176196
176119
  configFileSelector: (profile) => profile[UA_APP_ID_INI_NAME],
@@ -176199,7 +176122,7 @@ var init_nodeAppIdConfigOptions = __esm(() => {
176199
176122
  });
176200
176123
 
176201
176124
  // ../../../../node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js
176202
- var init_dist_es43 = __esm(() => {
176125
+ var init_dist_es41 = __esm(() => {
176203
176126
  init_defaultUserAgent();
176204
176127
  init_nodeAppIdConfigOptions();
176205
176128
  });
@@ -176236,7 +176159,7 @@ function castSourceData(toCast, encoding) {
176236
176159
  }
176237
176160
  return fromArrayBuffer2(toCast);
176238
176161
  }
176239
- var init_dist_es44 = __esm(() => {
176162
+ var init_dist_es42 = __esm(() => {
176240
176163
  init_dist_es5();
176241
176164
  init_dist_es6();
176242
176165
  });
@@ -176266,7 +176189,7 @@ var init_calculateBodyLength = () => {
176266
176189
  };
176267
176190
 
176268
176191
  // ../../../../node_modules/@smithy/util-body-length-node/dist-es/index.js
176269
- var init_dist_es45 = __esm(() => {
176192
+ var init_dist_es43 = __esm(() => {
176270
176193
  init_calculateBodyLength();
176271
176194
  });
176272
176195
 
@@ -176297,8 +176220,8 @@ var cache4, defaultEndpointResolver2 = (endpointParams, context = {}) => {
176297
176220
  }));
176298
176221
  };
176299
176222
  var init_endpointResolver2 = __esm(() => {
176300
- init_dist_es24();
176301
- init_dist_es23();
176223
+ init_dist_es22();
176224
+ init_dist_es21();
176302
176225
  init_ruleset2();
176303
176226
  cache4 = new EndpointCache({
176304
176227
  size: 50,
@@ -176340,8 +176263,8 @@ var init_runtimeConfig_shared = __esm(() => {
176340
176263
  import_core14 = __toESM(require_dist_cjs20(), 1);
176341
176264
  import_core15 = __toESM(require_dist_cjs15(), 1);
176342
176265
  init_dist_es12();
176343
- init_dist_es32();
176344
- init_dist_es17();
176266
+ init_dist_es30();
176267
+ init_dist_es16();
176345
176268
  init_dist_es6();
176346
176269
  init_httpAuthSchemeProvider2();
176347
176270
  init_endpointResolver2();
@@ -176404,7 +176327,7 @@ var resolveDefaultsModeConfig = ({ region = loadConfig(NODE_REGION_CONFIG_OPTION
176404
176327
  }
176405
176328
  if (!process.env[ENV_IMDS_DISABLED2]) {
176406
176329
  try {
176407
- const { getInstanceMetadataEndpoint: getInstanceMetadataEndpoint2, httpRequest: httpRequest3 } = await Promise.resolve().then(() => (init_dist_es41(), exports_dist_es2));
176330
+ const { getInstanceMetadataEndpoint: getInstanceMetadataEndpoint2, httpRequest: httpRequest3 } = await Promise.resolve().then(() => (init_dist_es39(), exports_dist_es2));
176408
176331
  const endpoint = await getInstanceMetadataEndpoint2();
176409
176332
  return (await httpRequest3({ ...endpoint, path: IMDS_REGION_PATH })).toString();
176410
176333
  } catch (e3) {
@@ -176412,15 +176335,15 @@ var resolveDefaultsModeConfig = ({ region = loadConfig(NODE_REGION_CONFIG_OPTION
176412
176335
  }
176413
176336
  };
176414
176337
  var init_resolveDefaultsModeConfig = __esm(() => {
176415
- init_dist_es26();
176416
- init_dist_es31();
176338
+ init_dist_es24();
176417
176339
  init_dist_es29();
176340
+ init_dist_es27();
176418
176341
  init_constants9();
176419
176342
  init_defaultsModeConfig();
176420
176343
  });
176421
176344
 
176422
176345
  // ../../../../node_modules/@smithy/util-defaults-mode-node/dist-es/index.js
176423
- var init_dist_es46 = __esm(() => {
176346
+ var init_dist_es44 = __esm(() => {
176424
176347
  init_resolveDefaultsModeConfig();
176425
176348
  });
176426
176349
 
@@ -176456,18 +176379,18 @@ var import_core16, getRuntimeConfig2 = (config8) => {
176456
176379
  var init_runtimeConfig = __esm(() => {
176457
176380
  init_package4();
176458
176381
  import_core16 = __toESM(require_dist_cjs20(), 1);
176459
- init_dist_es56();
176382
+ init_dist_es54();
176383
+ init_dist_es41();
176384
+ init_dist_es24();
176385
+ init_dist_es42();
176386
+ init_dist_es35();
176387
+ init_dist_es29();
176388
+ init_dist_es18();
176460
176389
  init_dist_es43();
176461
- init_dist_es26();
176462
- init_dist_es44();
176463
- init_dist_es37();
176464
- init_dist_es31();
176465
- init_dist_es19();
176466
- init_dist_es45();
176467
- init_dist_es36();
176390
+ init_dist_es34();
176468
176391
  init_runtimeConfig_shared();
176469
176392
  init_dist_es12();
176470
- init_dist_es46();
176393
+ init_dist_es44();
176471
176394
  init_dist_es12();
176472
176395
  });
176473
176396
 
@@ -176516,7 +176439,7 @@ var init_regionConfig2 = __esm(() => {
176516
176439
  });
176517
176440
 
176518
176441
  // ../../../../node_modules/@aws-sdk/region-config-resolver/dist-es/index.js
176519
- var init_dist_es47 = __esm(() => {
176442
+ var init_dist_es45 = __esm(() => {
176520
176443
  init_regionConfig2();
176521
176444
  });
176522
176445
 
@@ -176576,7 +176499,7 @@ var asPartial = (t3) => t3, resolveRuntimeExtensions = (runtimeConfig, extension
176576
176499
  };
176577
176500
  };
176578
176501
  var init_runtimeExtensions = __esm(() => {
176579
- init_dist_es47();
176502
+ init_dist_es45();
176580
176503
  init_dist_es();
176581
176504
  init_dist_es12();
176582
176505
  });
@@ -176587,12 +176510,12 @@ var init_SSOOIDCClient = __esm(() => {
176587
176510
  init_dist_es8();
176588
176511
  init_dist_es9();
176589
176512
  init_dist_es10();
176590
- init_dist_es25();
176591
- init_dist_es26();
176513
+ init_dist_es23();
176514
+ init_dist_es24();
176592
176515
  import_core17 = __toESM(require_dist_cjs15(), 1);
176593
- init_dist_es28();
176594
- init_dist_es34();
176595
- init_dist_es37();
176516
+ init_dist_es26();
176517
+ init_dist_es32();
176518
+ init_dist_es35();
176596
176519
  init_dist_es12();
176597
176520
  init_httpAuthSchemeProvider2();
176598
176521
  init_EndpointParameters2();
@@ -177284,8 +177207,8 @@ var init_Aws_restJson1 = __esm(() => {
177284
177207
  // ../../../../node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js
177285
177208
  var CreateTokenCommand;
177286
177209
  var init_CreateTokenCommand = __esm(() => {
177287
- init_dist_es34();
177288
- init_dist_es33();
177210
+ init_dist_es32();
177211
+ init_dist_es31();
177289
177212
  init_dist_es12();
177290
177213
  init_EndpointParameters2();
177291
177214
  init_models_02();
@@ -177302,8 +177225,8 @@ var init_CreateTokenCommand = __esm(() => {
177302
177225
  // ../../../../node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenWithIAMCommand.js
177303
177226
  var CreateTokenWithIAMCommand;
177304
177227
  var init_CreateTokenWithIAMCommand = __esm(() => {
177305
- init_dist_es34();
177306
- init_dist_es33();
177228
+ init_dist_es32();
177229
+ init_dist_es31();
177307
177230
  init_dist_es12();
177308
177231
  init_EndpointParameters2();
177309
177232
  init_models_02();
@@ -177320,8 +177243,8 @@ var init_CreateTokenWithIAMCommand = __esm(() => {
177320
177243
  // ../../../../node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js
177321
177244
  var RegisterClientCommand;
177322
177245
  var init_RegisterClientCommand = __esm(() => {
177323
- init_dist_es34();
177324
- init_dist_es33();
177246
+ init_dist_es32();
177247
+ init_dist_es31();
177325
177248
  init_dist_es12();
177326
177249
  init_EndpointParameters2();
177327
177250
  init_models_02();
@@ -177338,8 +177261,8 @@ var init_RegisterClientCommand = __esm(() => {
177338
177261
  // ../../../../node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js
177339
177262
  var StartDeviceAuthorizationCommand;
177340
177263
  var init_StartDeviceAuthorizationCommand = __esm(() => {
177341
- init_dist_es34();
177342
- init_dist_es33();
177264
+ init_dist_es32();
177265
+ init_dist_es31();
177343
177266
  init_dist_es12();
177344
177267
  init_EndpointParameters2();
177345
177268
  init_models_02();
@@ -177419,7 +177342,7 @@ __export(exports_dist_es4, {
177419
177342
  AccessDeniedException: () => AccessDeniedException,
177420
177343
  $Command: () => Command
177421
177344
  });
177422
- var init_dist_es48 = __esm(() => {
177345
+ var init_dist_es46 = __esm(() => {
177423
177346
  init_SSOOIDCClient();
177424
177347
  init_SSOOIDC();
177425
177348
  init_commands();
@@ -177429,7 +177352,7 @@ var init_dist_es48 = __esm(() => {
177429
177352
 
177430
177353
  // ../../../../node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js
177431
177354
  var ssoOidcClientsHash, getSsoOidcClient = async (ssoRegion) => {
177432
- const { SSOOIDCClient: SSOOIDCClient3 } = await Promise.resolve().then(() => (init_dist_es48(), exports_dist_es4));
177355
+ const { SSOOIDCClient: SSOOIDCClient3 } = await Promise.resolve().then(() => (init_dist_es46(), exports_dist_es4));
177433
177356
  if (ssoOidcClientsHash[ssoRegion]) {
177434
177357
  return ssoOidcClientsHash[ssoRegion];
177435
177358
  }
@@ -177443,7 +177366,7 @@ var init_getSsoOidcClient = __esm(() => {
177443
177366
 
177444
177367
  // ../../../../node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js
177445
177368
  var getNewSsoOidcToken = async (ssoToken, ssoRegion) => {
177446
- const { CreateTokenCommand: CreateTokenCommand3 } = await Promise.resolve().then(() => (init_dist_es48(), exports_dist_es4));
177369
+ const { CreateTokenCommand: CreateTokenCommand3 } = await Promise.resolve().then(() => (init_dist_es46(), exports_dist_es4));
177447
177370
  const ssoOidcClient = await getSsoOidcClient(ssoRegion);
177448
177371
  return ssoOidcClient.send(new CreateTokenCommand3({
177449
177372
  clientId: ssoToken.clientId,
@@ -177463,7 +177386,7 @@ var validateTokenExpiry = (token) => {
177463
177386
  }
177464
177387
  };
177465
177388
  var init_validateTokenExpiry = __esm(() => {
177466
- init_dist_es29();
177389
+ init_dist_es27();
177467
177390
  init_constants8();
177468
177391
  });
177469
177392
 
@@ -177474,7 +177397,7 @@ var validateTokenKey = (key2, value, forRefresh = false) => {
177474
177397
  }
177475
177398
  };
177476
177399
  var init_validateTokenKey = __esm(() => {
177477
- init_dist_es29();
177400
+ init_dist_es27();
177478
177401
  init_constants8();
177479
177402
  });
177480
177403
 
@@ -177486,7 +177409,7 @@ var writeFile2, writeSSOTokenToFile = (id, ssoToken) => {
177486
177409
  return writeFile2(tokenFilepath, tokenString);
177487
177410
  };
177488
177411
  var init_writeSSOTokenToFile = __esm(() => {
177489
- init_dist_es30();
177412
+ init_dist_es28();
177490
177413
  ({ writeFile: writeFile2 } = fsPromises3);
177491
177414
  });
177492
177415
 
@@ -177559,8 +177482,8 @@ var lastRefreshAttemptTime, fromSso = (init3 = {}) => async () => {
177559
177482
  }
177560
177483
  };
177561
177484
  var init_fromSso = __esm(() => {
177562
- init_dist_es29();
177563
- init_dist_es30();
177485
+ init_dist_es27();
177486
+ init_dist_es28();
177564
177487
  init_constants8();
177565
177488
  init_getNewSsoOidcToken();
177566
177489
  init_validateTokenExpiry();
@@ -177571,16 +177494,16 @@ var init_fromSso = __esm(() => {
177571
177494
 
177572
177495
  // ../../../../node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js
177573
177496
  var init_fromStatic2 = __esm(() => {
177574
- init_dist_es29();
177497
+ init_dist_es27();
177575
177498
  });
177576
177499
 
177577
177500
  // ../../../../node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js
177578
177501
  var init_nodeProvider = __esm(() => {
177579
- init_dist_es29();
177502
+ init_dist_es27();
177580
177503
  });
177581
177504
 
177582
177505
  // ../../../../node_modules/@aws-sdk/token-providers/dist-es/index.js
177583
- var init_dist_es49 = __esm(() => {
177506
+ var init_dist_es47 = __esm(() => {
177584
177507
  init_fromSso();
177585
177508
  init_fromStatic2();
177586
177509
  init_nodeProvider();
@@ -177797,8 +177720,8 @@ var cache5, defaultEndpointResolver3 = (endpointParams, context = {}) => {
177797
177720
  }));
177798
177721
  };
177799
177722
  var init_endpointResolver3 = __esm(() => {
177800
- init_dist_es24();
177801
- init_dist_es23();
177723
+ init_dist_es22();
177724
+ init_dist_es21();
177802
177725
  init_ruleset3();
177803
177726
  cache5 = new EndpointCache({
177804
177727
  size: 50,
@@ -177840,8 +177763,8 @@ var init_runtimeConfig_shared2 = __esm(() => {
177840
177763
  import_core21 = __toESM(require_dist_cjs20(), 1);
177841
177764
  import_core22 = __toESM(require_dist_cjs15(), 1);
177842
177765
  init_dist_es12();
177843
- init_dist_es32();
177844
- init_dist_es17();
177766
+ init_dist_es30();
177767
+ init_dist_es16();
177845
177768
  init_dist_es6();
177846
177769
  init_httpAuthSchemeProvider3();
177847
177770
  init_endpointResolver3();
@@ -177878,17 +177801,17 @@ var import_core23, getRuntimeConfig4 = (config9) => {
177878
177801
  var init_runtimeConfig2 = __esm(() => {
177879
177802
  init_package5();
177880
177803
  import_core23 = __toESM(require_dist_cjs20(), 1);
177804
+ init_dist_es41();
177805
+ init_dist_es24();
177806
+ init_dist_es42();
177807
+ init_dist_es35();
177808
+ init_dist_es29();
177809
+ init_dist_es18();
177881
177810
  init_dist_es43();
177882
- init_dist_es26();
177883
- init_dist_es44();
177884
- init_dist_es37();
177885
- init_dist_es31();
177886
- init_dist_es19();
177887
- init_dist_es45();
177888
- init_dist_es36();
177811
+ init_dist_es34();
177889
177812
  init_runtimeConfig_shared2();
177890
177813
  init_dist_es12();
177891
- init_dist_es46();
177814
+ init_dist_es44();
177892
177815
  init_dist_es12();
177893
177816
  });
177894
177817
 
@@ -177948,7 +177871,7 @@ var asPartial2 = (t4) => t4, resolveRuntimeExtensions2 = (runtimeConfig, extensi
177948
177871
  };
177949
177872
  };
177950
177873
  var init_runtimeExtensions2 = __esm(() => {
177951
- init_dist_es47();
177874
+ init_dist_es45();
177952
177875
  init_dist_es();
177953
177876
  init_dist_es12();
177954
177877
  });
@@ -177959,12 +177882,12 @@ var init_SSOClient = __esm(() => {
177959
177882
  init_dist_es8();
177960
177883
  init_dist_es9();
177961
177884
  init_dist_es10();
177962
- init_dist_es25();
177963
- init_dist_es26();
177885
+ init_dist_es23();
177886
+ init_dist_es24();
177964
177887
  import_core24 = __toESM(require_dist_cjs15(), 1);
177965
- init_dist_es28();
177966
- init_dist_es34();
177967
- init_dist_es37();
177888
+ init_dist_es26();
177889
+ init_dist_es32();
177890
+ init_dist_es35();
177968
177891
  init_dist_es12();
177969
177892
  init_httpAuthSchemeProvider3();
177970
177893
  init_EndpointParameters3();
@@ -178282,8 +178205,8 @@ var init_Aws_restJson12 = __esm(() => {
178282
178205
  // ../../../../node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js
178283
178206
  var GetRoleCredentialsCommand;
178284
178207
  var init_GetRoleCredentialsCommand = __esm(() => {
178285
- init_dist_es34();
178286
- init_dist_es33();
178208
+ init_dist_es32();
178209
+ init_dist_es31();
178287
178210
  init_dist_es12();
178288
178211
  init_EndpointParameters3();
178289
178212
  init_models_03();
@@ -178300,8 +178223,8 @@ var init_GetRoleCredentialsCommand = __esm(() => {
178300
178223
  // ../../../../node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js
178301
178224
  var ListAccountRolesCommand;
178302
178225
  var init_ListAccountRolesCommand = __esm(() => {
178303
- init_dist_es34();
178304
- init_dist_es33();
178226
+ init_dist_es32();
178227
+ init_dist_es31();
178305
178228
  init_dist_es12();
178306
178229
  init_EndpointParameters3();
178307
178230
  init_models_03();
@@ -178318,8 +178241,8 @@ var init_ListAccountRolesCommand = __esm(() => {
178318
178241
  // ../../../../node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js
178319
178242
  var ListAccountsCommand;
178320
178243
  var init_ListAccountsCommand = __esm(() => {
178321
- init_dist_es34();
178322
- init_dist_es33();
178244
+ init_dist_es32();
178245
+ init_dist_es31();
178323
178246
  init_dist_es12();
178324
178247
  init_EndpointParameters3();
178325
178248
  init_models_03();
@@ -178336,8 +178259,8 @@ var init_ListAccountsCommand = __esm(() => {
178336
178259
  // ../../../../node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js
178337
178260
  var LogoutCommand;
178338
178261
  var init_LogoutCommand = __esm(() => {
178339
- init_dist_es34();
178340
- init_dist_es33();
178262
+ init_dist_es32();
178263
+ init_dist_es31();
178341
178264
  init_dist_es12();
178342
178265
  init_EndpointParameters3();
178343
178266
  init_models_03();
@@ -178414,7 +178337,7 @@ var init_models2 = __esm(() => {
178414
178337
  });
178415
178338
 
178416
178339
  // ../../../../node_modules/@aws-sdk/client-sso/dist-es/index.js
178417
- var init_dist_es50 = __esm(() => {
178340
+ var init_dist_es48 = __esm(() => {
178418
178341
  init_SSOClient();
178419
178342
  init_SSO();
178420
178343
  init_commands2();
@@ -178429,7 +178352,7 @@ __export(exports_loadSso, {
178429
178352
  GetRoleCredentialsCommand: () => GetRoleCredentialsCommand
178430
178353
  });
178431
178354
  var init_loadSso = __esm(() => {
178432
- init_dist_es50();
178355
+ init_dist_es48();
178433
178356
  });
178434
178357
 
178435
178358
  // ../../../../node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js
@@ -178507,9 +178430,9 @@ var import_client3, SHOULD_FAIL_CREDENTIAL_CHAIN = false, resolveSSOCredentials
178507
178430
  };
178508
178431
  var init_resolveSSOCredentials = __esm(() => {
178509
178432
  import_client3 = __toESM(require_client4(), 1);
178510
- init_dist_es49();
178511
- init_dist_es29();
178512
- init_dist_es30();
178433
+ init_dist_es47();
178434
+ init_dist_es27();
178435
+ init_dist_es28();
178513
178436
  });
178514
178437
 
178515
178438
  // ../../../../node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js
@@ -178521,7 +178444,7 @@ var validateSsoProfile = (profile, logger3) => {
178521
178444
  return profile;
178522
178445
  };
178523
178446
  var init_validateSsoProfile = __esm(() => {
178524
- init_dist_es29();
178447
+ init_dist_es27();
178525
178448
  });
178526
178449
 
178527
178450
  // ../../../../node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js
@@ -178587,8 +178510,8 @@ var fromSSO = (init3 = {}) => async () => {
178587
178510
  }
178588
178511
  };
178589
178512
  var init_fromSSO = __esm(() => {
178590
- init_dist_es29();
178591
- init_dist_es30();
178513
+ init_dist_es27();
178514
+ init_dist_es28();
178592
178515
  init_resolveSSOCredentials();
178593
178516
  init_validateSsoProfile();
178594
178517
  });
@@ -178604,7 +178527,7 @@ __export(exports_dist_es5, {
178604
178527
  isSsoProfile: () => isSsoProfile,
178605
178528
  fromSSO: () => fromSSO
178606
178529
  });
178607
- var init_dist_es51 = __esm(() => {
178530
+ var init_dist_es49 = __esm(() => {
178608
178531
  init_fromSSO();
178609
178532
  init_types13();
178610
178533
  init_validateSsoProfile();
@@ -178614,19 +178537,19 @@ var init_dist_es51 = __esm(() => {
178614
178537
  var import_client4, resolveCredentialSource = (credentialSource, profileName, logger3) => {
178615
178538
  const sourceProvidersMap = {
178616
178539
  EcsContainer: async (options3) => {
178617
- const { fromHttp: fromHttp2 } = await Promise.resolve().then(() => (init_dist_es42(), exports_dist_es3));
178618
- const { fromContainerMetadata: fromContainerMetadata3 } = await Promise.resolve().then(() => (init_dist_es41(), exports_dist_es2));
178540
+ const { fromHttp: fromHttp2 } = await Promise.resolve().then(() => (init_dist_es40(), exports_dist_es3));
178541
+ const { fromContainerMetadata: fromContainerMetadata3 } = await Promise.resolve().then(() => (init_dist_es39(), exports_dist_es2));
178619
178542
  logger3?.debug("@aws-sdk/credential-provider-ini - credential_source is EcsContainer");
178620
178543
  return async () => chain(fromHttp2(options3 ?? {}), fromContainerMetadata3(options3))().then(setNamedProvider);
178621
178544
  },
178622
178545
  Ec2InstanceMetadata: async (options3) => {
178623
178546
  logger3?.debug("@aws-sdk/credential-provider-ini - credential_source is Ec2InstanceMetadata");
178624
- const { fromInstanceMetadata: fromInstanceMetadata3 } = await Promise.resolve().then(() => (init_dist_es41(), exports_dist_es2));
178547
+ const { fromInstanceMetadata: fromInstanceMetadata3 } = await Promise.resolve().then(() => (init_dist_es39(), exports_dist_es2));
178625
178548
  return async () => fromInstanceMetadata3(options3)().then(setNamedProvider);
178626
178549
  },
178627
178550
  Environment: async (options3) => {
178628
178551
  logger3?.debug("@aws-sdk/credential-provider-ini - credential_source is Environment");
178629
- const { fromEnv: fromEnv4 } = await Promise.resolve().then(() => (init_dist_es40(), exports_dist_es));
178552
+ const { fromEnv: fromEnv4 } = await Promise.resolve().then(() => (init_dist_es38(), exports_dist_es));
178630
178553
  return async () => fromEnv4(options3)().then(setNamedProvider);
178631
178554
  }
178632
178555
  };
@@ -178638,7 +178561,7 @@ var import_client4, resolveCredentialSource = (credentialSource, profileName, lo
178638
178561
  }, setNamedProvider = (creds) => import_client4.setCredentialFeature(creds, "CREDENTIALS_PROFILE_NAMED_PROVIDER", "p");
178639
178562
  var init_resolveCredentialSource = __esm(() => {
178640
178563
  import_client4 = __toESM(require_client4(), 1);
178641
- init_dist_es29();
178564
+ init_dist_es27();
178642
178565
  });
178643
178566
 
178644
178567
  // ../../../../node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthSchemeProvider.js
@@ -178862,8 +178785,8 @@ var cache6, defaultEndpointResolver4 = (endpointParams, context = {}) => {
178862
178785
  }));
178863
178786
  };
178864
178787
  var init_endpointResolver4 = __esm(() => {
178865
- init_dist_es24();
178866
- init_dist_es23();
178788
+ init_dist_es22();
178789
+ init_dist_es21();
178867
178790
  init_ruleset4();
178868
178791
  cache6 = new EndpointCache({
178869
178792
  size: 50,
@@ -178905,8 +178828,8 @@ var init_runtimeConfig_shared3 = __esm(() => {
178905
178828
  import_core30 = __toESM(require_dist_cjs20(), 1);
178906
178829
  import_core31 = __toESM(require_dist_cjs15(), 1);
178907
178830
  init_dist_es12();
178908
- init_dist_es32();
178909
- init_dist_es17();
178831
+ init_dist_es30();
178832
+ init_dist_es16();
178910
178833
  init_dist_es6();
178911
178834
  init_httpAuthSchemeProvider4();
178912
178835
  init_endpointResolver4();
@@ -178956,19 +178879,19 @@ var import_core32, import_core33, getRuntimeConfig6 = (config9) => {
178956
178879
  var init_runtimeConfig3 = __esm(() => {
178957
178880
  init_package6();
178958
178881
  import_core32 = __toESM(require_dist_cjs20(), 1);
178959
- init_dist_es56();
178960
- init_dist_es43();
178961
- init_dist_es26();
178882
+ init_dist_es54();
178883
+ init_dist_es41();
178884
+ init_dist_es24();
178962
178885
  import_core33 = __toESM(require_dist_cjs15(), 1);
178963
- init_dist_es44();
178964
- init_dist_es37();
178965
- init_dist_es31();
178966
- init_dist_es19();
178967
- init_dist_es45();
178968
- init_dist_es36();
178886
+ init_dist_es42();
178887
+ init_dist_es35();
178888
+ init_dist_es29();
178889
+ init_dist_es18();
178890
+ init_dist_es43();
178891
+ init_dist_es34();
178969
178892
  init_runtimeConfig_shared3();
178970
178893
  init_dist_es12();
178971
- init_dist_es46();
178894
+ init_dist_es44();
178972
178895
  init_dist_es12();
178973
178896
  });
178974
178897
 
@@ -179028,7 +178951,7 @@ var asPartial3 = (t5) => t5, resolveRuntimeExtensions3 = (runtimeConfig, extensi
179028
178951
  };
179029
178952
  };
179030
178953
  var init_runtimeExtensions3 = __esm(() => {
179031
- init_dist_es47();
178954
+ init_dist_es45();
179032
178955
  init_dist_es();
179033
178956
  init_dist_es12();
179034
178957
  });
@@ -179039,12 +178962,12 @@ var init_STSClient = __esm(() => {
179039
178962
  init_dist_es8();
179040
178963
  init_dist_es9();
179041
178964
  init_dist_es10();
179042
- init_dist_es25();
179043
- init_dist_es26();
178965
+ init_dist_es23();
178966
+ init_dist_es24();
179044
178967
  import_core34 = __toESM(require_dist_cjs15(), 1);
179045
- init_dist_es28();
179046
- init_dist_es34();
179047
- init_dist_es37();
178968
+ init_dist_es26();
178969
+ init_dist_es32();
178970
+ init_dist_es35();
179048
178971
  init_dist_es12();
179049
178972
  init_httpAuthSchemeProvider4();
179050
178973
  init_EndpointParameters4();
@@ -179993,8 +179916,8 @@ var init_Aws_query = __esm(() => {
179993
179916
  // ../../../../node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js
179994
179917
  var AssumeRoleCommand;
179995
179918
  var init_AssumeRoleCommand = __esm(() => {
179996
- init_dist_es34();
179997
- init_dist_es33();
179919
+ init_dist_es32();
179920
+ init_dist_es31();
179998
179921
  init_dist_es12();
179999
179922
  init_EndpointParameters4();
180000
179923
  init_models_04();
@@ -180011,8 +179934,8 @@ var init_AssumeRoleCommand = __esm(() => {
180011
179934
  // ../../../../node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js
180012
179935
  var AssumeRoleWithSAMLCommand;
180013
179936
  var init_AssumeRoleWithSAMLCommand = __esm(() => {
180014
- init_dist_es34();
180015
- init_dist_es33();
179937
+ init_dist_es32();
179938
+ init_dist_es31();
180016
179939
  init_dist_es12();
180017
179940
  init_EndpointParameters4();
180018
179941
  init_models_04();
@@ -180029,8 +179952,8 @@ var init_AssumeRoleWithSAMLCommand = __esm(() => {
180029
179952
  // ../../../../node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js
180030
179953
  var AssumeRoleWithWebIdentityCommand;
180031
179954
  var init_AssumeRoleWithWebIdentityCommand = __esm(() => {
180032
- init_dist_es34();
180033
- init_dist_es33();
179955
+ init_dist_es32();
179956
+ init_dist_es31();
180034
179957
  init_dist_es12();
180035
179958
  init_EndpointParameters4();
180036
179959
  init_models_04();
@@ -180047,8 +179970,8 @@ var init_AssumeRoleWithWebIdentityCommand = __esm(() => {
180047
179970
  // ../../../../node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js
180048
179971
  var DecodeAuthorizationMessageCommand;
180049
179972
  var init_DecodeAuthorizationMessageCommand = __esm(() => {
180050
- init_dist_es34();
180051
- init_dist_es33();
179973
+ init_dist_es32();
179974
+ init_dist_es31();
180052
179975
  init_dist_es12();
180053
179976
  init_EndpointParameters4();
180054
179977
  init_Aws_query();
@@ -180064,8 +179987,8 @@ var init_DecodeAuthorizationMessageCommand = __esm(() => {
180064
179987
  // ../../../../node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js
180065
179988
  var GetAccessKeyInfoCommand;
180066
179989
  var init_GetAccessKeyInfoCommand = __esm(() => {
180067
- init_dist_es34();
180068
- init_dist_es33();
179990
+ init_dist_es32();
179991
+ init_dist_es31();
180069
179992
  init_dist_es12();
180070
179993
  init_EndpointParameters4();
180071
179994
  init_Aws_query();
@@ -180081,8 +180004,8 @@ var init_GetAccessKeyInfoCommand = __esm(() => {
180081
180004
  // ../../../../node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js
180082
180005
  var GetCallerIdentityCommand;
180083
180006
  var init_GetCallerIdentityCommand = __esm(() => {
180084
- init_dist_es34();
180085
- init_dist_es33();
180007
+ init_dist_es32();
180008
+ init_dist_es31();
180086
180009
  init_dist_es12();
180087
180010
  init_EndpointParameters4();
180088
180011
  init_Aws_query();
@@ -180098,8 +180021,8 @@ var init_GetCallerIdentityCommand = __esm(() => {
180098
180021
  // ../../../../node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js
180099
180022
  var GetFederationTokenCommand;
180100
180023
  var init_GetFederationTokenCommand = __esm(() => {
180101
- init_dist_es34();
180102
- init_dist_es33();
180024
+ init_dist_es32();
180025
+ init_dist_es31();
180103
180026
  init_dist_es12();
180104
180027
  init_EndpointParameters4();
180105
180028
  init_models_04();
@@ -180116,8 +180039,8 @@ var init_GetFederationTokenCommand = __esm(() => {
180116
180039
  // ../../../../node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js
180117
180040
  var GetSessionTokenCommand;
180118
180041
  var init_GetSessionTokenCommand = __esm(() => {
180119
- init_dist_es34();
180120
- init_dist_es33();
180042
+ init_dist_es32();
180043
+ init_dist_es31();
180121
180044
  init_dist_es12();
180122
180045
  init_EndpointParameters4();
180123
180046
  init_models_04();
@@ -180322,7 +180245,7 @@ __export(exports_dist_es6, {
180322
180245
  AssumeRoleCommand: () => AssumeRoleCommand,
180323
180246
  $Command: () => Command
180324
180247
  });
180325
- var init_dist_es52 = __esm(() => {
180248
+ var init_dist_es50 = __esm(() => {
180326
180249
  init_STSClient();
180327
180250
  init_STS();
180328
180251
  init_commands3();
@@ -180350,7 +180273,7 @@ var import_client6, isAssumeRoleProfile = (arg, { profile = "default", logger: l
180350
180273
  options3.logger?.debug("@aws-sdk/credential-provider-ini - resolveAssumeRoleCredentials (STS)");
180351
180274
  const data2 = profiles[profileName];
180352
180275
  if (!options3.roleAssumer) {
180353
- const { getDefaultRoleAssumer: getDefaultRoleAssumer3 } = await Promise.resolve().then(() => (init_dist_es52(), exports_dist_es6));
180276
+ const { getDefaultRoleAssumer: getDefaultRoleAssumer3 } = await Promise.resolve().then(() => (init_dist_es50(), exports_dist_es6));
180354
180277
  options3.roleAssumer = getDefaultRoleAssumer3({
180355
180278
  ...options3.clientConfig,
180356
180279
  credentialProviderLogger: options3.logger,
@@ -180391,8 +180314,8 @@ var import_client6, isAssumeRoleProfile = (arg, { profile = "default", logger: l
180391
180314
  };
180392
180315
  var init_resolveAssumeRoleCredentials = __esm(() => {
180393
180316
  import_client6 = __toESM(require_client4(), 1);
180394
- init_dist_es29();
180395
- init_dist_es30();
180317
+ init_dist_es27();
180318
+ init_dist_es28();
180396
180319
  init_resolveCredentialSource();
180397
180320
  init_resolveProfileData();
180398
180321
  });
@@ -180462,7 +180385,7 @@ var resolveProcessCredentials = async (profileName, profiles, logger3) => {
180462
180385
  }
180463
180386
  };
180464
180387
  var init_resolveProcessCredentials = __esm(() => {
180465
- init_dist_es29();
180388
+ init_dist_es27();
180466
180389
  init_getValidatedProcessCredentials();
180467
180390
  });
180468
180391
 
@@ -180473,7 +180396,7 @@ var fromProcess = (init3 = {}) => async () => {
180473
180396
  return resolveProcessCredentials(getProfileName(init3), profiles, init3.logger);
180474
180397
  };
180475
180398
  var init_fromProcess = __esm(() => {
180476
- init_dist_es30();
180399
+ init_dist_es28();
180477
180400
  init_resolveProcessCredentials();
180478
180401
  });
180479
180402
 
@@ -180482,12 +180405,12 @@ var exports_dist_es7 = {};
180482
180405
  __export(exports_dist_es7, {
180483
180406
  fromProcess: () => fromProcess
180484
180407
  });
180485
- var init_dist_es53 = __esm(() => {
180408
+ var init_dist_es51 = __esm(() => {
180486
180409
  init_fromProcess();
180487
180410
  });
180488
180411
 
180489
180412
  // ../../../../node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js
180490
- var import_client8, isProcessProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.credential_process === "string", resolveProcessCredentials2 = async (options3, profile) => Promise.resolve().then(() => (init_dist_es53(), exports_dist_es7)).then(({ fromProcess: fromProcess3 }) => fromProcess3({
180413
+ var import_client8, isProcessProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.credential_process === "string", resolveProcessCredentials2 = async (options3, profile) => Promise.resolve().then(() => (init_dist_es51(), exports_dist_es7)).then(({ fromProcess: fromProcess3 }) => fromProcess3({
180491
180414
  ...options3,
180492
180415
  profile
180493
180416
  })().then((creds) => import_client8.setCredentialFeature(creds, "CREDENTIALS_PROFILE_PROCESS", "v")));
@@ -180497,7 +180420,7 @@ var init_resolveProcessCredentials2 = __esm(() => {
180497
180420
 
180498
180421
  // ../../../../node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js
180499
180422
  var import_client9, resolveSsoCredentials = async (profile, profileData, options3 = {}) => {
180500
- const { fromSSO: fromSSO3 } = await Promise.resolve().then(() => (init_dist_es51(), exports_dist_es5));
180423
+ const { fromSSO: fromSSO3 } = await Promise.resolve().then(() => (init_dist_es49(), exports_dist_es5));
180501
180424
  return fromSSO3({
180502
180425
  profile,
180503
180426
  logger: options3.logger
@@ -180535,7 +180458,7 @@ var fromWebToken = (init3) => async () => {
180535
180458
  const { roleArn, roleSessionName, webIdentityToken, providerId, policyArns, policy, durationSeconds } = init3;
180536
180459
  let { roleAssumerWithWebIdentity } = init3;
180537
180460
  if (!roleAssumerWithWebIdentity) {
180538
- const { getDefaultRoleAssumerWithWebIdentity: getDefaultRoleAssumerWithWebIdentity3 } = await Promise.resolve().then(() => (init_dist_es52(), exports_dist_es6));
180461
+ const { getDefaultRoleAssumerWithWebIdentity: getDefaultRoleAssumerWithWebIdentity3 } = await Promise.resolve().then(() => (init_dist_es50(), exports_dist_es6));
180539
180462
  roleAssumerWithWebIdentity = getDefaultRoleAssumerWithWebIdentity3({
180540
180463
  ...init3.clientConfig,
180541
180464
  credentialProviderLogger: init3.logger,
@@ -180578,7 +180501,7 @@ var import_client11, ENV_TOKEN_FILE = "AWS_WEB_IDENTITY_TOKEN_FILE", ENV_ROLE_AR
180578
180501
  };
180579
180502
  var init_fromTokenFile = __esm(() => {
180580
180503
  import_client11 = __toESM(require_client4(), 1);
180581
- init_dist_es29();
180504
+ init_dist_es27();
180582
180505
  });
180583
180506
 
180584
180507
  // ../../../../node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js
@@ -180587,12 +180510,12 @@ __export(exports_dist_es8, {
180587
180510
  fromWebToken: () => fromWebToken,
180588
180511
  fromTokenFile: () => fromTokenFile
180589
180512
  });
180590
- var init_dist_es54 = __esm(() => {
180513
+ var init_dist_es52 = __esm(() => {
180591
180514
  init_fromTokenFile();
180592
180515
  });
180593
180516
 
180594
180517
  // ../../../../node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js
180595
- var import_client12, isWebIdentityProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.web_identity_token_file === "string" && typeof arg.role_arn === "string" && ["undefined", "string"].indexOf(typeof arg.role_session_name) > -1, resolveWebIdentityCredentials = async (profile, options3) => Promise.resolve().then(() => (init_dist_es54(), exports_dist_es8)).then(({ fromTokenFile: fromTokenFile3 }) => fromTokenFile3({
180518
+ var import_client12, isWebIdentityProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.web_identity_token_file === "string" && typeof arg.role_arn === "string" && ["undefined", "string"].indexOf(typeof arg.role_session_name) > -1, resolveWebIdentityCredentials = async (profile, options3) => Promise.resolve().then(() => (init_dist_es52(), exports_dist_es8)).then(({ fromTokenFile: fromTokenFile3 }) => fromTokenFile3({
180596
180519
  webIdentityTokenFile: profile.web_identity_token_file,
180597
180520
  roleArn: profile.role_arn,
180598
180521
  roleSessionName: profile.role_session_name,
@@ -180628,7 +180551,7 @@ var resolveProfileData = async (profileName, profiles, options3, visitedProfiles
180628
180551
  throw new CredentialsProviderError(`Could not resolve credentials using profile: [${profileName}] in configuration/credentials file(s).`, { logger: options3.logger });
180629
180552
  };
180630
180553
  var init_resolveProfileData = __esm(() => {
180631
- init_dist_es29();
180554
+ init_dist_es27();
180632
180555
  init_resolveAssumeRoleCredentials();
180633
180556
  init_resolveProcessCredentials2();
180634
180557
  init_resolveSsoCredentials();
@@ -180643,7 +180566,7 @@ var fromIni = (init3 = {}) => async () => {
180643
180566
  return resolveProfileData(getProfileName(init3), profiles, init3);
180644
180567
  };
180645
180568
  var init_fromIni = __esm(() => {
180646
- init_dist_es30();
180569
+ init_dist_es28();
180647
180570
  init_resolveProfileData();
180648
180571
  });
180649
180572
 
@@ -180652,7 +180575,7 @@ var exports_dist_es9 = {};
180652
180575
  __export(exports_dist_es9, {
180653
180576
  fromIni: () => fromIni
180654
180577
  });
180655
- var init_dist_es55 = __esm(() => {
180578
+ var init_dist_es53 = __esm(() => {
180656
180579
  init_fromIni();
180657
180580
  });
180658
180581
 
@@ -180689,19 +180612,19 @@ var multipleCredentialSourceWarningEmitted = false, defaultProvider = (init3 = {
180689
180612
  if (!ssoStartUrl && !ssoAccountId && !ssoRegion && !ssoRoleName && !ssoSession) {
180690
180613
  throw new CredentialsProviderError("Skipping SSO provider in default chain (inputs do not include SSO fields).", { logger: init3.logger });
180691
180614
  }
180692
- const { fromSSO: fromSSO3 } = await Promise.resolve().then(() => (init_dist_es51(), exports_dist_es5));
180615
+ const { fromSSO: fromSSO3 } = await Promise.resolve().then(() => (init_dist_es49(), exports_dist_es5));
180693
180616
  return fromSSO3(init3)();
180694
180617
  }, async () => {
180695
180618
  init3.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromIni");
180696
- const { fromIni: fromIni3 } = await Promise.resolve().then(() => (init_dist_es55(), exports_dist_es9));
180619
+ const { fromIni: fromIni3 } = await Promise.resolve().then(() => (init_dist_es53(), exports_dist_es9));
180697
180620
  return fromIni3(init3)();
180698
180621
  }, async () => {
180699
180622
  init3.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromProcess");
180700
- const { fromProcess: fromProcess3 } = await Promise.resolve().then(() => (init_dist_es53(), exports_dist_es7));
180623
+ const { fromProcess: fromProcess3 } = await Promise.resolve().then(() => (init_dist_es51(), exports_dist_es7));
180701
180624
  return fromProcess3(init3)();
180702
180625
  }, async () => {
180703
180626
  init3.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::fromTokenFile");
180704
- const { fromTokenFile: fromTokenFile3 } = await Promise.resolve().then(() => (init_dist_es54(), exports_dist_es8));
180627
+ const { fromTokenFile: fromTokenFile3 } = await Promise.resolve().then(() => (init_dist_es52(), exports_dist_es8));
180705
180628
  return fromTokenFile3(init3)();
180706
180629
  }, async () => {
180707
180630
  init3.logger?.debug("@aws-sdk/credential-provider-node - defaultProvider::remoteProvider");
@@ -180713,26 +180636,26 @@ var multipleCredentialSourceWarningEmitted = false, defaultProvider = (init3 = {
180713
180636
  });
180714
180637
  }), credentialsTreatedAsExpired, credentialsWillNeedRefresh), credentialsWillNeedRefresh = (credentials) => credentials?.expiration !== undefined, credentialsTreatedAsExpired = (credentials) => credentials?.expiration !== undefined && credentials.expiration.getTime() - Date.now() < 300000;
180715
180638
  var init_defaultProvider = __esm(() => {
180716
- init_dist_es40();
180717
- init_dist_es29();
180718
- init_dist_es30();
180639
+ init_dist_es38();
180640
+ init_dist_es27();
180641
+ init_dist_es28();
180719
180642
  init_remoteProvider();
180720
180643
  });
180721
180644
 
180722
180645
  // ../../../../node_modules/@aws-sdk/credential-provider-node/dist-es/index.js
180723
- var init_dist_es56 = __esm(() => {
180646
+ var init_dist_es54 = __esm(() => {
180724
180647
  init_defaultProvider();
180725
180648
  });
180726
180649
 
180727
180650
  // ../../../../node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeDisableMultiregionAccessPointConfigOptions.js
180728
180651
  var init_NodeDisableMultiregionAccessPointConfigOptions = __esm(() => {
180729
- init_dist_es16();
180652
+ init_dist_es15();
180730
180653
  });
180731
180654
 
180732
180655
  // ../../../../node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeUseArnRegionConfigOptions.js
180733
180656
  var NODE_USE_ARN_REGION_ENV_NAME = "AWS_S3_USE_ARN_REGION", NODE_USE_ARN_REGION_INI_NAME = "s3_use_arn_region", NODE_USE_ARN_REGION_CONFIG_OPTIONS;
180734
180657
  var init_NodeUseArnRegionConfigOptions = __esm(() => {
180735
- init_dist_es16();
180658
+ init_dist_es15();
180736
180659
  NODE_USE_ARN_REGION_CONFIG_OPTIONS = {
180737
180660
  environmentVariableSelector: (env7) => booleanSelector(env7, NODE_USE_ARN_REGION_ENV_NAME, SelectorType2.ENV),
180738
180661
  configFileSelector: (profile) => booleanSelector(profile, NODE_USE_ARN_REGION_INI_NAME, SelectorType2.CONFIG),
@@ -180755,7 +180678,7 @@ var init_bucketEndpointMiddleware = __esm(() => {
180755
180678
  init_bucketHostname();
180756
180679
  });
180757
180680
  // ../../../../node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/index.js
180758
- var init_dist_es57 = __esm(() => {
180681
+ var init_dist_es55 = __esm(() => {
180759
180682
  init_NodeDisableMultiregionAccessPointConfigOptions();
180760
180683
  init_NodeUseArnRegionConfigOptions();
180761
180684
  init_bucketEndpointMiddleware();
@@ -180790,7 +180713,7 @@ class Int642 {
180790
180713
  if (negative) {
180791
180714
  negate2(bytes);
180792
180715
  }
180793
- return parseInt(toHex(bytes), 16) * (negative ? -1 : 1);
180716
+ return parseInt(import_util_hex_encoding6.toHex(bytes), 16) * (negative ? -1 : 1);
180794
180717
  }
180795
180718
  toString() {
180796
180719
  return String(this.valueOf());
@@ -180806,8 +180729,9 @@ function negate2(bytes) {
180806
180729
  break;
180807
180730
  }
180808
180731
  }
180732
+ var import_util_hex_encoding6;
180809
180733
  var init_Int64 = __esm(() => {
180810
- init_dist_es13();
180734
+ import_util_hex_encoding6 = __toESM(require_dist_cjs13(), 1);
180811
180735
  });
180812
180736
 
180813
180737
  // ../../../../node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js
@@ -180877,7 +180801,7 @@ class HeaderMarshaller {
180877
180801
  }
180878
180802
  const uuidBytes = new Uint8Array(17);
180879
180803
  uuidBytes[0] = 9;
180880
- uuidBytes.set(fromHex(header.value.replace(/\-/g, "")), 1);
180804
+ uuidBytes.set(import_util_hex_encoding7.fromHex(header.value.replace(/\-/g, "")), 1);
180881
180805
  return uuidBytes;
180882
180806
  }
180883
180807
  }
@@ -180958,7 +180882,7 @@ class HeaderMarshaller {
180958
180882
  position += 16;
180959
180883
  out[name] = {
180960
180884
  type: UUID_TAG,
180961
- value: `${toHex(uuidBytes.subarray(0, 4))}-${toHex(uuidBytes.subarray(4, 6))}-${toHex(uuidBytes.subarray(6, 8))}-${toHex(uuidBytes.subarray(8, 10))}-${toHex(uuidBytes.subarray(10))}`
180885
+ value: `${import_util_hex_encoding7.toHex(uuidBytes.subarray(0, 4))}-${import_util_hex_encoding7.toHex(uuidBytes.subarray(4, 6))}-${import_util_hex_encoding7.toHex(uuidBytes.subarray(6, 8))}-${import_util_hex_encoding7.toHex(uuidBytes.subarray(8, 10))}-${import_util_hex_encoding7.toHex(uuidBytes.subarray(10))}`
180962
180886
  };
180963
180887
  break;
180964
180888
  default:
@@ -180968,9 +180892,9 @@ class HeaderMarshaller {
180968
180892
  return out;
180969
180893
  }
180970
180894
  }
180971
- var HEADER_VALUE_TYPE2, BOOLEAN_TAG = "boolean", BYTE_TAG = "byte", SHORT_TAG = "short", INT_TAG = "integer", LONG_TAG = "long", BINARY_TAG = "binary", STRING_TAG = "string", TIMESTAMP_TAG = "timestamp", UUID_TAG = "uuid", UUID_PATTERN2;
180895
+ var import_util_hex_encoding7, HEADER_VALUE_TYPE2, BOOLEAN_TAG = "boolean", BYTE_TAG = "byte", SHORT_TAG = "short", INT_TAG = "integer", LONG_TAG = "long", BINARY_TAG = "binary", STRING_TAG = "string", TIMESTAMP_TAG = "timestamp", UUID_TAG = "uuid", UUID_PATTERN2;
180972
180896
  var init_HeaderMarshaller = __esm(() => {
180973
- init_dist_es13();
180897
+ import_util_hex_encoding7 = __toESM(require_dist_cjs13(), 1);
180974
180898
  init_Int64();
180975
180899
  (function(HEADER_VALUE_TYPE3) {
180976
180900
  HEADER_VALUE_TYPE3[HEADER_VALUE_TYPE3["boolTrue"] = 0] = "boolTrue";
@@ -181172,7 +181096,7 @@ var init_SmithyMessageEncoderStream = __esm(() => {
181172
181096
  });
181173
181097
 
181174
181098
  // ../../../../node_modules/@smithy/eventstream-codec/dist-es/index.js
181175
- var init_dist_es58 = __esm(() => {
181099
+ var init_dist_es56 = __esm(() => {
181176
181100
  init_EventStreamCodec();
181177
181101
  init_HeaderMarshaller();
181178
181102
  init_Int64();
@@ -181303,7 +181227,7 @@ class EventStreamMarshaller {
181303
181227
  }
181304
181228
  }
181305
181229
  var init_EventStreamMarshaller = __esm(() => {
181306
- init_dist_es58();
181230
+ init_dist_es56();
181307
181231
  });
181308
181232
 
181309
181233
  // ../../../../node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js
@@ -181312,7 +181236,7 @@ var init_provider = __esm(() => {
181312
181236
  });
181313
181237
 
181314
181238
  // ../../../../node_modules/@smithy/eventstream-serde-universal/dist-es/index.js
181315
- var init_dist_es59 = __esm(() => {
181239
+ var init_dist_es57 = __esm(() => {
181316
181240
  init_EventStreamMarshaller();
181317
181241
  init_provider();
181318
181242
  });
@@ -181364,7 +181288,7 @@ class EventStreamMarshaller3 {
181364
181288
  }
181365
181289
  }
181366
181290
  var init_EventStreamMarshaller2 = __esm(() => {
181367
- init_dist_es59();
181291
+ init_dist_es57();
181368
181292
  });
181369
181293
 
181370
181294
  // ../../../../node_modules/@smithy/eventstream-serde-node/dist-es/provider.js
@@ -181374,7 +181298,7 @@ var init_provider2 = __esm(() => {
181374
181298
  });
181375
181299
 
181376
181300
  // ../../../../node_modules/@smithy/eventstream-serde-node/dist-es/index.js
181377
- var init_dist_es60 = __esm(() => {
181301
+ var init_dist_es58 = __esm(() => {
181378
181302
  init_EventStreamMarshaller2();
181379
181303
  init_provider2();
181380
181304
  });
@@ -181429,7 +181353,7 @@ var init_readableStreamHasher = __esm(() => {
181429
181353
  });
181430
181354
 
181431
181355
  // ../../../../node_modules/@smithy/hash-stream-node/dist-es/index.js
181432
- var init_dist_es61 = __esm(() => {
181356
+ var init_dist_es59 = __esm(() => {
181433
181357
  init_fileStreamHasher();
181434
181358
  init_readableStreamHasher();
181435
181359
  });
@@ -181470,11 +181394,11 @@ var import_core36, getRuntimeConfig7 = (config9) => {
181470
181394
  };
181471
181395
  var init_runtimeConfig_shared4 = __esm(() => {
181472
181396
  import_core36 = __toESM(require_dist_cjs20(), 1);
181473
- init_dist_es38();
181397
+ init_dist_es36();
181474
181398
  init_dist_es12();
181475
- init_dist_es32();
181476
- init_dist_es17();
181477
- init_dist_es21();
181399
+ init_dist_es30();
181400
+ init_dist_es16();
181401
+ init_dist_es19();
181478
181402
  init_dist_es6();
181479
181403
  init_httpAuthSchemeProvider();
181480
181404
  init_endpointResolver();
@@ -181521,23 +181445,23 @@ var import_core37, getRuntimeConfig8 = (config9) => {
181521
181445
  var init_runtimeConfig4 = __esm(() => {
181522
181446
  init_package3();
181523
181447
  import_core37 = __toESM(require_dist_cjs20(), 1);
181524
- init_dist_es56();
181525
- init_dist_es57();
181448
+ init_dist_es54();
181449
+ init_dist_es55();
181526
181450
  init_dist_es7();
181527
- init_dist_es22();
181451
+ init_dist_es20();
181452
+ init_dist_es41();
181453
+ init_dist_es24();
181454
+ init_dist_es58();
181455
+ init_dist_es42();
181456
+ init_dist_es59();
181457
+ init_dist_es35();
181458
+ init_dist_es29();
181459
+ init_dist_es18();
181528
181460
  init_dist_es43();
181529
- init_dist_es26();
181530
- init_dist_es60();
181531
- init_dist_es44();
181532
- init_dist_es61();
181533
- init_dist_es37();
181534
- init_dist_es31();
181535
- init_dist_es19();
181536
- init_dist_es45();
181537
- init_dist_es36();
181461
+ init_dist_es34();
181538
181462
  init_runtimeConfig_shared4();
181539
181463
  init_dist_es12();
181540
- init_dist_es46();
181464
+ init_dist_es44();
181541
181465
  init_dist_es12();
181542
181466
  });
181543
181467
 
@@ -181597,7 +181521,7 @@ var asPartial4 = (t5) => t5, resolveRuntimeExtensions4 = (runtimeConfig, extensi
181597
181521
  };
181598
181522
  };
181599
181523
  var init_runtimeExtensions4 = __esm(() => {
181600
- init_dist_es47();
181524
+ init_dist_es45();
181601
181525
  init_dist_es();
181602
181526
  init_dist_es12();
181603
181527
  });
@@ -181610,14 +181534,14 @@ var init_S3Client = __esm(() => {
181610
181534
  init_dist_es8();
181611
181535
  init_dist_es9();
181612
181536
  init_dist_es10();
181613
- init_dist_es22();
181537
+ init_dist_es20();
181538
+ init_dist_es23();
181539
+ init_dist_es24();
181540
+ import_core38 = __toESM(require_dist_cjs15(), 1);
181614
181541
  init_dist_es25();
181615
181542
  init_dist_es26();
181616
- import_core38 = __toESM(require_dist_cjs15(), 1);
181617
- init_dist_es27();
181618
- init_dist_es28();
181619
- init_dist_es34();
181620
- init_dist_es37();
181543
+ init_dist_es32();
181544
+ init_dist_es35();
181621
181545
  init_dist_es12();
181622
181546
  init_httpAuthSchemeProvider();
181623
181547
  init_CreateSessionCommand();
@@ -181669,9 +181593,9 @@ var init_S3Client = __esm(() => {
181669
181593
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js
181670
181594
  var AbortMultipartUploadCommand;
181671
181595
  var init_AbortMultipartUploadCommand = __esm(() => {
181672
- init_dist_es22();
181673
- init_dist_es34();
181674
- init_dist_es33();
181596
+ init_dist_es20();
181597
+ init_dist_es32();
181598
+ init_dist_es31();
181675
181599
  init_dist_es12();
181676
181600
  init_EndpointParameters();
181677
181601
  init_Aws_restXml();
@@ -181745,7 +181669,7 @@ var ssecMiddlewareOptions, getSsecPlugin = (config9) => ({
181745
181669
  clientStack.add(ssecMiddleware(config9), ssecMiddlewareOptions);
181746
181670
  }
181747
181671
  });
181748
- var init_dist_es62 = __esm(() => {
181672
+ var init_dist_es60 = __esm(() => {
181749
181673
  ssecMiddlewareOptions = {
181750
181674
  name: "ssecMiddleware",
181751
181675
  step: "initialize",
@@ -181757,10 +181681,10 @@ var init_dist_es62 = __esm(() => {
181757
181681
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js
181758
181682
  var CompleteMultipartUploadCommand;
181759
181683
  var init_CompleteMultipartUploadCommand = __esm(() => {
181760
- init_dist_es22();
181761
- init_dist_es62();
181762
- init_dist_es34();
181763
- init_dist_es33();
181684
+ init_dist_es20();
181685
+ init_dist_es60();
181686
+ init_dist_es32();
181687
+ init_dist_es31();
181764
181688
  init_dist_es12();
181765
181689
  init_EndpointParameters();
181766
181690
  init_models_0();
@@ -181783,10 +181707,10 @@ var init_CompleteMultipartUploadCommand = __esm(() => {
181783
181707
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js
181784
181708
  var CopyObjectCommand;
181785
181709
  var init_CopyObjectCommand = __esm(() => {
181786
- init_dist_es22();
181787
- init_dist_es62();
181788
- init_dist_es34();
181789
- init_dist_es33();
181710
+ init_dist_es20();
181711
+ init_dist_es60();
181712
+ init_dist_es32();
181713
+ init_dist_es31();
181790
181714
  init_dist_es12();
181791
181715
  init_EndpointParameters();
181792
181716
  init_models_0();
@@ -181830,7 +181754,7 @@ var locationConstraintMiddlewareOptions, getLocationConstraintPlugin = (config9)
181830
181754
  clientStack.add(locationConstraintMiddleware(config9), locationConstraintMiddlewareOptions);
181831
181755
  }
181832
181756
  });
181833
- var init_dist_es63 = __esm(() => {
181757
+ var init_dist_es61 = __esm(() => {
181834
181758
  locationConstraintMiddlewareOptions = {
181835
181759
  step: "initialize",
181836
181760
  tags: ["LOCATION_CONSTRAINT", "CREATE_BUCKET_CONFIGURATION"],
@@ -181842,10 +181766,10 @@ var init_dist_es63 = __esm(() => {
181842
181766
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js
181843
181767
  var CreateBucketCommand;
181844
181768
  var init_CreateBucketCommand = __esm(() => {
181845
- init_dist_es63();
181846
- init_dist_es22();
181847
- init_dist_es34();
181848
- init_dist_es33();
181769
+ init_dist_es61();
181770
+ init_dist_es20();
181771
+ init_dist_es32();
181772
+ init_dist_es31();
181849
181773
  init_dist_es12();
181850
181774
  init_EndpointParameters();
181851
181775
  init_Aws_restXml();
@@ -181868,10 +181792,10 @@ var init_CreateBucketCommand = __esm(() => {
181868
181792
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js
181869
181793
  var CreateMultipartUploadCommand;
181870
181794
  var init_CreateMultipartUploadCommand = __esm(() => {
181871
- init_dist_es22();
181872
- init_dist_es62();
181873
- init_dist_es34();
181874
- init_dist_es33();
181795
+ init_dist_es20();
181796
+ init_dist_es60();
181797
+ init_dist_es32();
181798
+ init_dist_es31();
181875
181799
  init_dist_es12();
181876
181800
  init_EndpointParameters();
181877
181801
  init_models_0();
@@ -181894,8 +181818,8 @@ var init_CreateMultipartUploadCommand = __esm(() => {
181894
181818
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js
181895
181819
  var DeleteBucketAnalyticsConfigurationCommand;
181896
181820
  var init_DeleteBucketAnalyticsConfigurationCommand = __esm(() => {
181897
- init_dist_es34();
181898
- init_dist_es33();
181821
+ init_dist_es32();
181822
+ init_dist_es31();
181899
181823
  init_dist_es12();
181900
181824
  init_EndpointParameters();
181901
181825
  init_Aws_restXml();
@@ -181915,8 +181839,8 @@ var init_DeleteBucketAnalyticsConfigurationCommand = __esm(() => {
181915
181839
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js
181916
181840
  var DeleteBucketCommand;
181917
181841
  var init_DeleteBucketCommand = __esm(() => {
181918
- init_dist_es34();
181919
- init_dist_es33();
181842
+ init_dist_es32();
181843
+ init_dist_es31();
181920
181844
  init_dist_es12();
181921
181845
  init_EndpointParameters();
181922
181846
  init_Aws_restXml();
@@ -181936,8 +181860,8 @@ var init_DeleteBucketCommand = __esm(() => {
181936
181860
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js
181937
181861
  var DeleteBucketCorsCommand;
181938
181862
  var init_DeleteBucketCorsCommand = __esm(() => {
181939
- init_dist_es34();
181940
- init_dist_es33();
181863
+ init_dist_es32();
181864
+ init_dist_es31();
181941
181865
  init_dist_es12();
181942
181866
  init_EndpointParameters();
181943
181867
  init_Aws_restXml();
@@ -181957,8 +181881,8 @@ var init_DeleteBucketCorsCommand = __esm(() => {
181957
181881
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js
181958
181882
  var DeleteBucketEncryptionCommand;
181959
181883
  var init_DeleteBucketEncryptionCommand = __esm(() => {
181960
- init_dist_es34();
181961
- init_dist_es33();
181884
+ init_dist_es32();
181885
+ init_dist_es31();
181962
181886
  init_dist_es12();
181963
181887
  init_EndpointParameters();
181964
181888
  init_Aws_restXml();
@@ -181978,8 +181902,8 @@ var init_DeleteBucketEncryptionCommand = __esm(() => {
181978
181902
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js
181979
181903
  var DeleteBucketIntelligentTieringConfigurationCommand;
181980
181904
  var init_DeleteBucketIntelligentTieringConfigurationCommand = __esm(() => {
181981
- init_dist_es34();
181982
- init_dist_es33();
181905
+ init_dist_es32();
181906
+ init_dist_es31();
181983
181907
  init_dist_es12();
181984
181908
  init_EndpointParameters();
181985
181909
  init_Aws_restXml();
@@ -181999,8 +181923,8 @@ var init_DeleteBucketIntelligentTieringConfigurationCommand = __esm(() => {
181999
181923
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js
182000
181924
  var DeleteBucketInventoryConfigurationCommand;
182001
181925
  var init_DeleteBucketInventoryConfigurationCommand = __esm(() => {
182002
- init_dist_es34();
182003
- init_dist_es33();
181926
+ init_dist_es32();
181927
+ init_dist_es31();
182004
181928
  init_dist_es12();
182005
181929
  init_EndpointParameters();
182006
181930
  init_Aws_restXml();
@@ -182020,8 +181944,8 @@ var init_DeleteBucketInventoryConfigurationCommand = __esm(() => {
182020
181944
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js
182021
181945
  var DeleteBucketLifecycleCommand;
182022
181946
  var init_DeleteBucketLifecycleCommand = __esm(() => {
182023
- init_dist_es34();
182024
- init_dist_es33();
181947
+ init_dist_es32();
181948
+ init_dist_es31();
182025
181949
  init_dist_es12();
182026
181950
  init_EndpointParameters();
182027
181951
  init_Aws_restXml();
@@ -182041,8 +181965,8 @@ var init_DeleteBucketLifecycleCommand = __esm(() => {
182041
181965
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js
182042
181966
  var DeleteBucketMetricsConfigurationCommand;
182043
181967
  var init_DeleteBucketMetricsConfigurationCommand = __esm(() => {
182044
- init_dist_es34();
182045
- init_dist_es33();
181968
+ init_dist_es32();
181969
+ init_dist_es31();
182046
181970
  init_dist_es12();
182047
181971
  init_EndpointParameters();
182048
181972
  init_Aws_restXml();
@@ -182062,8 +181986,8 @@ var init_DeleteBucketMetricsConfigurationCommand = __esm(() => {
182062
181986
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js
182063
181987
  var DeleteBucketOwnershipControlsCommand;
182064
181988
  var init_DeleteBucketOwnershipControlsCommand = __esm(() => {
182065
- init_dist_es34();
182066
- init_dist_es33();
181989
+ init_dist_es32();
181990
+ init_dist_es31();
182067
181991
  init_dist_es12();
182068
181992
  init_EndpointParameters();
182069
181993
  init_Aws_restXml();
@@ -182083,8 +182007,8 @@ var init_DeleteBucketOwnershipControlsCommand = __esm(() => {
182083
182007
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js
182084
182008
  var DeleteBucketPolicyCommand;
182085
182009
  var init_DeleteBucketPolicyCommand = __esm(() => {
182086
- init_dist_es34();
182087
- init_dist_es33();
182010
+ init_dist_es32();
182011
+ init_dist_es31();
182088
182012
  init_dist_es12();
182089
182013
  init_EndpointParameters();
182090
182014
  init_Aws_restXml();
@@ -182104,8 +182028,8 @@ var init_DeleteBucketPolicyCommand = __esm(() => {
182104
182028
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js
182105
182029
  var DeleteBucketReplicationCommand;
182106
182030
  var init_DeleteBucketReplicationCommand = __esm(() => {
182107
- init_dist_es34();
182108
- init_dist_es33();
182031
+ init_dist_es32();
182032
+ init_dist_es31();
182109
182033
  init_dist_es12();
182110
182034
  init_EndpointParameters();
182111
182035
  init_Aws_restXml();
@@ -182125,8 +182049,8 @@ var init_DeleteBucketReplicationCommand = __esm(() => {
182125
182049
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js
182126
182050
  var DeleteBucketTaggingCommand;
182127
182051
  var init_DeleteBucketTaggingCommand = __esm(() => {
182128
- init_dist_es34();
182129
- init_dist_es33();
182052
+ init_dist_es32();
182053
+ init_dist_es31();
182130
182054
  init_dist_es12();
182131
182055
  init_EndpointParameters();
182132
182056
  init_Aws_restXml();
@@ -182146,8 +182070,8 @@ var init_DeleteBucketTaggingCommand = __esm(() => {
182146
182070
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js
182147
182071
  var DeleteBucketWebsiteCommand;
182148
182072
  var init_DeleteBucketWebsiteCommand = __esm(() => {
182149
- init_dist_es34();
182150
- init_dist_es33();
182073
+ init_dist_es32();
182074
+ init_dist_es31();
182151
182075
  init_dist_es12();
182152
182076
  init_EndpointParameters();
182153
182077
  init_Aws_restXml();
@@ -182167,9 +182091,9 @@ var init_DeleteBucketWebsiteCommand = __esm(() => {
182167
182091
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js
182168
182092
  var DeleteObjectCommand;
182169
182093
  var init_DeleteObjectCommand = __esm(() => {
182170
- init_dist_es22();
182171
- init_dist_es34();
182172
- init_dist_es33();
182094
+ init_dist_es20();
182095
+ init_dist_es32();
182096
+ init_dist_es31();
182173
182097
  init_dist_es12();
182174
182098
  init_EndpointParameters();
182175
182099
  init_Aws_restXml();
@@ -182191,9 +182115,9 @@ var init_DeleteObjectCommand = __esm(() => {
182191
182115
  var DeleteObjectsCommand;
182192
182116
  var init_DeleteObjectsCommand = __esm(() => {
182193
182117
  init_dist_es7();
182194
- init_dist_es22();
182195
- init_dist_es34();
182196
- init_dist_es33();
182118
+ init_dist_es20();
182119
+ init_dist_es32();
182120
+ init_dist_es31();
182197
182121
  init_dist_es12();
182198
182122
  init_EndpointParameters();
182199
182123
  init_Aws_restXml();
@@ -182218,9 +182142,9 @@ var init_DeleteObjectsCommand = __esm(() => {
182218
182142
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js
182219
182143
  var DeleteObjectTaggingCommand;
182220
182144
  var init_DeleteObjectTaggingCommand = __esm(() => {
182221
- init_dist_es22();
182222
- init_dist_es34();
182223
- init_dist_es33();
182145
+ init_dist_es20();
182146
+ init_dist_es32();
182147
+ init_dist_es31();
182224
182148
  init_dist_es12();
182225
182149
  init_EndpointParameters();
182226
182150
  init_Aws_restXml();
@@ -182240,8 +182164,8 @@ var init_DeleteObjectTaggingCommand = __esm(() => {
182240
182164
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js
182241
182165
  var DeletePublicAccessBlockCommand;
182242
182166
  var init_DeletePublicAccessBlockCommand = __esm(() => {
182243
- init_dist_es34();
182244
- init_dist_es33();
182167
+ init_dist_es32();
182168
+ init_dist_es31();
182245
182169
  init_dist_es12();
182246
182170
  init_EndpointParameters();
182247
182171
  init_Aws_restXml();
@@ -182261,9 +182185,9 @@ var init_DeletePublicAccessBlockCommand = __esm(() => {
182261
182185
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js
182262
182186
  var GetBucketAccelerateConfigurationCommand;
182263
182187
  var init_GetBucketAccelerateConfigurationCommand = __esm(() => {
182264
- init_dist_es22();
182265
- init_dist_es34();
182266
- init_dist_es33();
182188
+ init_dist_es20();
182189
+ init_dist_es32();
182190
+ init_dist_es31();
182267
182191
  init_dist_es12();
182268
182192
  init_EndpointParameters();
182269
182193
  init_Aws_restXml();
@@ -182284,9 +182208,9 @@ var init_GetBucketAccelerateConfigurationCommand = __esm(() => {
182284
182208
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js
182285
182209
  var GetBucketAclCommand;
182286
182210
  var init_GetBucketAclCommand = __esm(() => {
182287
- init_dist_es22();
182288
- init_dist_es34();
182289
- init_dist_es33();
182211
+ init_dist_es20();
182212
+ init_dist_es32();
182213
+ init_dist_es31();
182290
182214
  init_dist_es12();
182291
182215
  init_EndpointParameters();
182292
182216
  init_Aws_restXml();
@@ -182307,9 +182231,9 @@ var init_GetBucketAclCommand = __esm(() => {
182307
182231
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js
182308
182232
  var GetBucketAnalyticsConfigurationCommand;
182309
182233
  var init_GetBucketAnalyticsConfigurationCommand = __esm(() => {
182310
- init_dist_es22();
182311
- init_dist_es34();
182312
- init_dist_es33();
182234
+ init_dist_es20();
182235
+ init_dist_es32();
182236
+ init_dist_es31();
182313
182237
  init_dist_es12();
182314
182238
  init_EndpointParameters();
182315
182239
  init_Aws_restXml();
@@ -182330,9 +182254,9 @@ var init_GetBucketAnalyticsConfigurationCommand = __esm(() => {
182330
182254
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js
182331
182255
  var GetBucketCorsCommand;
182332
182256
  var init_GetBucketCorsCommand = __esm(() => {
182333
- init_dist_es22();
182334
- init_dist_es34();
182335
- init_dist_es33();
182257
+ init_dist_es20();
182258
+ init_dist_es32();
182259
+ init_dist_es31();
182336
182260
  init_dist_es12();
182337
182261
  init_EndpointParameters();
182338
182262
  init_Aws_restXml();
@@ -182353,9 +182277,9 @@ var init_GetBucketCorsCommand = __esm(() => {
182353
182277
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js
182354
182278
  var GetBucketEncryptionCommand;
182355
182279
  var init_GetBucketEncryptionCommand = __esm(() => {
182356
- init_dist_es22();
182357
- init_dist_es34();
182358
- init_dist_es33();
182280
+ init_dist_es20();
182281
+ init_dist_es32();
182282
+ init_dist_es31();
182359
182283
  init_dist_es12();
182360
182284
  init_EndpointParameters();
182361
182285
  init_models_0();
@@ -182377,9 +182301,9 @@ var init_GetBucketEncryptionCommand = __esm(() => {
182377
182301
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js
182378
182302
  var GetBucketIntelligentTieringConfigurationCommand;
182379
182303
  var init_GetBucketIntelligentTieringConfigurationCommand = __esm(() => {
182380
- init_dist_es22();
182381
- init_dist_es34();
182382
- init_dist_es33();
182304
+ init_dist_es20();
182305
+ init_dist_es32();
182306
+ init_dist_es31();
182383
182307
  init_dist_es12();
182384
182308
  init_EndpointParameters();
182385
182309
  init_Aws_restXml();
@@ -182400,9 +182324,9 @@ var init_GetBucketIntelligentTieringConfigurationCommand = __esm(() => {
182400
182324
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js
182401
182325
  var GetBucketInventoryConfigurationCommand;
182402
182326
  var init_GetBucketInventoryConfigurationCommand = __esm(() => {
182403
- init_dist_es22();
182404
- init_dist_es34();
182405
- init_dist_es33();
182327
+ init_dist_es20();
182328
+ init_dist_es32();
182329
+ init_dist_es31();
182406
182330
  init_dist_es12();
182407
182331
  init_EndpointParameters();
182408
182332
  init_models_0();
@@ -182424,9 +182348,9 @@ var init_GetBucketInventoryConfigurationCommand = __esm(() => {
182424
182348
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js
182425
182349
  var GetBucketLifecycleConfigurationCommand;
182426
182350
  var init_GetBucketLifecycleConfigurationCommand = __esm(() => {
182427
- init_dist_es22();
182428
- init_dist_es34();
182429
- init_dist_es33();
182351
+ init_dist_es20();
182352
+ init_dist_es32();
182353
+ init_dist_es31();
182430
182354
  init_dist_es12();
182431
182355
  init_EndpointParameters();
182432
182356
  init_Aws_restXml();
@@ -182447,9 +182371,9 @@ var init_GetBucketLifecycleConfigurationCommand = __esm(() => {
182447
182371
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js
182448
182372
  var GetBucketLocationCommand;
182449
182373
  var init_GetBucketLocationCommand = __esm(() => {
182450
- init_dist_es22();
182451
- init_dist_es34();
182452
- init_dist_es33();
182374
+ init_dist_es20();
182375
+ init_dist_es32();
182376
+ init_dist_es31();
182453
182377
  init_dist_es12();
182454
182378
  init_EndpointParameters();
182455
182379
  init_Aws_restXml();
@@ -182470,9 +182394,9 @@ var init_GetBucketLocationCommand = __esm(() => {
182470
182394
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js
182471
182395
  var GetBucketLoggingCommand;
182472
182396
  var init_GetBucketLoggingCommand = __esm(() => {
182473
- init_dist_es22();
182474
- init_dist_es34();
182475
- init_dist_es33();
182397
+ init_dist_es20();
182398
+ init_dist_es32();
182399
+ init_dist_es31();
182476
182400
  init_dist_es12();
182477
182401
  init_EndpointParameters();
182478
182402
  init_Aws_restXml();
@@ -182493,9 +182417,9 @@ var init_GetBucketLoggingCommand = __esm(() => {
182493
182417
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js
182494
182418
  var GetBucketMetricsConfigurationCommand;
182495
182419
  var init_GetBucketMetricsConfigurationCommand = __esm(() => {
182496
- init_dist_es22();
182497
- init_dist_es34();
182498
- init_dist_es33();
182420
+ init_dist_es20();
182421
+ init_dist_es32();
182422
+ init_dist_es31();
182499
182423
  init_dist_es12();
182500
182424
  init_EndpointParameters();
182501
182425
  init_Aws_restXml();
@@ -182516,9 +182440,9 @@ var init_GetBucketMetricsConfigurationCommand = __esm(() => {
182516
182440
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js
182517
182441
  var GetBucketNotificationConfigurationCommand;
182518
182442
  var init_GetBucketNotificationConfigurationCommand = __esm(() => {
182519
- init_dist_es22();
182520
- init_dist_es34();
182521
- init_dist_es33();
182443
+ init_dist_es20();
182444
+ init_dist_es32();
182445
+ init_dist_es31();
182522
182446
  init_dist_es12();
182523
182447
  init_EndpointParameters();
182524
182448
  init_Aws_restXml();
@@ -182539,9 +182463,9 @@ var init_GetBucketNotificationConfigurationCommand = __esm(() => {
182539
182463
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js
182540
182464
  var GetBucketOwnershipControlsCommand;
182541
182465
  var init_GetBucketOwnershipControlsCommand = __esm(() => {
182542
- init_dist_es22();
182543
- init_dist_es34();
182544
- init_dist_es33();
182466
+ init_dist_es20();
182467
+ init_dist_es32();
182468
+ init_dist_es31();
182545
182469
  init_dist_es12();
182546
182470
  init_EndpointParameters();
182547
182471
  init_Aws_restXml();
@@ -182562,9 +182486,9 @@ var init_GetBucketOwnershipControlsCommand = __esm(() => {
182562
182486
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js
182563
182487
  var GetBucketPolicyCommand;
182564
182488
  var init_GetBucketPolicyCommand = __esm(() => {
182565
- init_dist_es22();
182566
- init_dist_es34();
182567
- init_dist_es33();
182489
+ init_dist_es20();
182490
+ init_dist_es32();
182491
+ init_dist_es31();
182568
182492
  init_dist_es12();
182569
182493
  init_EndpointParameters();
182570
182494
  init_Aws_restXml();
@@ -182585,9 +182509,9 @@ var init_GetBucketPolicyCommand = __esm(() => {
182585
182509
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js
182586
182510
  var GetBucketPolicyStatusCommand;
182587
182511
  var init_GetBucketPolicyStatusCommand = __esm(() => {
182588
- init_dist_es22();
182589
- init_dist_es34();
182590
- init_dist_es33();
182512
+ init_dist_es20();
182513
+ init_dist_es32();
182514
+ init_dist_es31();
182591
182515
  init_dist_es12();
182592
182516
  init_EndpointParameters();
182593
182517
  init_Aws_restXml();
@@ -182608,9 +182532,9 @@ var init_GetBucketPolicyStatusCommand = __esm(() => {
182608
182532
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js
182609
182533
  var GetBucketReplicationCommand;
182610
182534
  var init_GetBucketReplicationCommand = __esm(() => {
182611
- init_dist_es22();
182612
- init_dist_es34();
182613
- init_dist_es33();
182535
+ init_dist_es20();
182536
+ init_dist_es32();
182537
+ init_dist_es31();
182614
182538
  init_dist_es12();
182615
182539
  init_EndpointParameters();
182616
182540
  init_Aws_restXml();
@@ -182631,9 +182555,9 @@ var init_GetBucketReplicationCommand = __esm(() => {
182631
182555
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js
182632
182556
  var GetBucketRequestPaymentCommand;
182633
182557
  var init_GetBucketRequestPaymentCommand = __esm(() => {
182634
- init_dist_es22();
182635
- init_dist_es34();
182636
- init_dist_es33();
182558
+ init_dist_es20();
182559
+ init_dist_es32();
182560
+ init_dist_es31();
182637
182561
  init_dist_es12();
182638
182562
  init_EndpointParameters();
182639
182563
  init_Aws_restXml();
@@ -182654,9 +182578,9 @@ var init_GetBucketRequestPaymentCommand = __esm(() => {
182654
182578
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js
182655
182579
  var GetBucketTaggingCommand;
182656
182580
  var init_GetBucketTaggingCommand = __esm(() => {
182657
- init_dist_es22();
182658
- init_dist_es34();
182659
- init_dist_es33();
182581
+ init_dist_es20();
182582
+ init_dist_es32();
182583
+ init_dist_es31();
182660
182584
  init_dist_es12();
182661
182585
  init_EndpointParameters();
182662
182586
  init_Aws_restXml();
@@ -182677,9 +182601,9 @@ var init_GetBucketTaggingCommand = __esm(() => {
182677
182601
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js
182678
182602
  var GetBucketVersioningCommand;
182679
182603
  var init_GetBucketVersioningCommand = __esm(() => {
182680
- init_dist_es22();
182681
- init_dist_es34();
182682
- init_dist_es33();
182604
+ init_dist_es20();
182605
+ init_dist_es32();
182606
+ init_dist_es31();
182683
182607
  init_dist_es12();
182684
182608
  init_EndpointParameters();
182685
182609
  init_Aws_restXml();
@@ -182700,9 +182624,9 @@ var init_GetBucketVersioningCommand = __esm(() => {
182700
182624
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js
182701
182625
  var GetBucketWebsiteCommand;
182702
182626
  var init_GetBucketWebsiteCommand = __esm(() => {
182703
- init_dist_es22();
182704
- init_dist_es34();
182705
- init_dist_es33();
182627
+ init_dist_es20();
182628
+ init_dist_es32();
182629
+ init_dist_es31();
182706
182630
  init_dist_es12();
182707
182631
  init_EndpointParameters();
182708
182632
  init_Aws_restXml();
@@ -182723,9 +182647,9 @@ var init_GetBucketWebsiteCommand = __esm(() => {
182723
182647
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js
182724
182648
  var GetObjectAclCommand;
182725
182649
  var init_GetObjectAclCommand = __esm(() => {
182726
- init_dist_es22();
182727
- init_dist_es34();
182728
- init_dist_es33();
182650
+ init_dist_es20();
182651
+ init_dist_es32();
182652
+ init_dist_es31();
182729
182653
  init_dist_es12();
182730
182654
  init_EndpointParameters();
182731
182655
  init_Aws_restXml();
@@ -182746,10 +182670,10 @@ var init_GetObjectAclCommand = __esm(() => {
182746
182670
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js
182747
182671
  var GetObjectAttributesCommand;
182748
182672
  var init_GetObjectAttributesCommand = __esm(() => {
182749
- init_dist_es22();
182750
- init_dist_es62();
182751
- init_dist_es34();
182752
- init_dist_es33();
182673
+ init_dist_es20();
182674
+ init_dist_es60();
182675
+ init_dist_es32();
182676
+ init_dist_es31();
182753
182677
  init_dist_es12();
182754
182678
  init_EndpointParameters();
182755
182679
  init_models_0();
@@ -182772,10 +182696,10 @@ var init_GetObjectAttributesCommand = __esm(() => {
182772
182696
  var GetObjectCommand;
182773
182697
  var init_GetObjectCommand = __esm(() => {
182774
182698
  init_dist_es7();
182775
- init_dist_es22();
182776
- init_dist_es62();
182777
- init_dist_es34();
182778
- init_dist_es33();
182699
+ init_dist_es20();
182700
+ init_dist_es60();
182701
+ init_dist_es32();
182702
+ init_dist_es31();
182779
182703
  init_dist_es12();
182780
182704
  init_EndpointParameters();
182781
182705
  init_models_0();
@@ -182804,9 +182728,9 @@ var init_GetObjectCommand = __esm(() => {
182804
182728
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js
182805
182729
  var GetObjectLegalHoldCommand;
182806
182730
  var init_GetObjectLegalHoldCommand = __esm(() => {
182807
- init_dist_es22();
182808
- init_dist_es34();
182809
- init_dist_es33();
182731
+ init_dist_es20();
182732
+ init_dist_es32();
182733
+ init_dist_es31();
182810
182734
  init_dist_es12();
182811
182735
  init_EndpointParameters();
182812
182736
  init_Aws_restXml();
@@ -182826,9 +182750,9 @@ var init_GetObjectLegalHoldCommand = __esm(() => {
182826
182750
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js
182827
182751
  var GetObjectLockConfigurationCommand;
182828
182752
  var init_GetObjectLockConfigurationCommand = __esm(() => {
182829
- init_dist_es22();
182830
- init_dist_es34();
182831
- init_dist_es33();
182753
+ init_dist_es20();
182754
+ init_dist_es32();
182755
+ init_dist_es31();
182832
182756
  init_dist_es12();
182833
182757
  init_EndpointParameters();
182834
182758
  init_Aws_restXml();
@@ -182848,9 +182772,9 @@ var init_GetObjectLockConfigurationCommand = __esm(() => {
182848
182772
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js
182849
182773
  var GetObjectRetentionCommand;
182850
182774
  var init_GetObjectRetentionCommand = __esm(() => {
182851
- init_dist_es22();
182852
- init_dist_es34();
182853
- init_dist_es33();
182775
+ init_dist_es20();
182776
+ init_dist_es32();
182777
+ init_dist_es31();
182854
182778
  init_dist_es12();
182855
182779
  init_EndpointParameters();
182856
182780
  init_Aws_restXml();
@@ -182870,9 +182794,9 @@ var init_GetObjectRetentionCommand = __esm(() => {
182870
182794
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js
182871
182795
  var GetObjectTaggingCommand;
182872
182796
  var init_GetObjectTaggingCommand = __esm(() => {
182873
- init_dist_es22();
182874
- init_dist_es34();
182875
- init_dist_es33();
182797
+ init_dist_es20();
182798
+ init_dist_es32();
182799
+ init_dist_es31();
182876
182800
  init_dist_es12();
182877
182801
  init_EndpointParameters();
182878
182802
  init_Aws_restXml();
@@ -182892,8 +182816,8 @@ var init_GetObjectTaggingCommand = __esm(() => {
182892
182816
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js
182893
182817
  var GetObjectTorrentCommand;
182894
182818
  var init_GetObjectTorrentCommand = __esm(() => {
182895
- init_dist_es34();
182896
- init_dist_es33();
182819
+ init_dist_es32();
182820
+ init_dist_es31();
182897
182821
  init_dist_es12();
182898
182822
  init_EndpointParameters();
182899
182823
  init_models_0();
@@ -182913,9 +182837,9 @@ var init_GetObjectTorrentCommand = __esm(() => {
182913
182837
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js
182914
182838
  var GetPublicAccessBlockCommand;
182915
182839
  var init_GetPublicAccessBlockCommand = __esm(() => {
182916
- init_dist_es22();
182917
- init_dist_es34();
182918
- init_dist_es33();
182840
+ init_dist_es20();
182841
+ init_dist_es32();
182842
+ init_dist_es31();
182919
182843
  init_dist_es12();
182920
182844
  init_EndpointParameters();
182921
182845
  init_Aws_restXml();
@@ -182936,9 +182860,9 @@ var init_GetPublicAccessBlockCommand = __esm(() => {
182936
182860
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js
182937
182861
  var HeadBucketCommand;
182938
182862
  var init_HeadBucketCommand = __esm(() => {
182939
- init_dist_es22();
182940
- init_dist_es34();
182941
- init_dist_es33();
182863
+ init_dist_es20();
182864
+ init_dist_es32();
182865
+ init_dist_es31();
182942
182866
  init_dist_es12();
182943
182867
  init_EndpointParameters();
182944
182868
  init_Aws_restXml();
@@ -182958,10 +182882,10 @@ var init_HeadBucketCommand = __esm(() => {
182958
182882
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js
182959
182883
  var HeadObjectCommand;
182960
182884
  var init_HeadObjectCommand = __esm(() => {
182961
- init_dist_es22();
182962
- init_dist_es62();
182963
- init_dist_es34();
182964
- init_dist_es33();
182885
+ init_dist_es20();
182886
+ init_dist_es60();
182887
+ init_dist_es32();
182888
+ init_dist_es31();
182965
182889
  init_dist_es12();
182966
182890
  init_EndpointParameters();
182967
182891
  init_models_0();
@@ -182985,9 +182909,9 @@ var init_HeadObjectCommand = __esm(() => {
182985
182909
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js
182986
182910
  var ListBucketAnalyticsConfigurationsCommand;
182987
182911
  var init_ListBucketAnalyticsConfigurationsCommand = __esm(() => {
182988
- init_dist_es22();
182989
- init_dist_es34();
182990
- init_dist_es33();
182912
+ init_dist_es20();
182913
+ init_dist_es32();
182914
+ init_dist_es31();
182991
182915
  init_dist_es12();
182992
182916
  init_EndpointParameters();
182993
182917
  init_Aws_restXml();
@@ -183008,9 +182932,9 @@ var init_ListBucketAnalyticsConfigurationsCommand = __esm(() => {
183008
182932
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js
183009
182933
  var ListBucketIntelligentTieringConfigurationsCommand;
183010
182934
  var init_ListBucketIntelligentTieringConfigurationsCommand = __esm(() => {
183011
- init_dist_es22();
183012
- init_dist_es34();
183013
- init_dist_es33();
182935
+ init_dist_es20();
182936
+ init_dist_es32();
182937
+ init_dist_es31();
183014
182938
  init_dist_es12();
183015
182939
  init_EndpointParameters();
183016
182940
  init_Aws_restXml();
@@ -183031,9 +182955,9 @@ var init_ListBucketIntelligentTieringConfigurationsCommand = __esm(() => {
183031
182955
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js
183032
182956
  var ListBucketInventoryConfigurationsCommand;
183033
182957
  var init_ListBucketInventoryConfigurationsCommand = __esm(() => {
183034
- init_dist_es22();
183035
- init_dist_es34();
183036
- init_dist_es33();
182958
+ init_dist_es20();
182959
+ init_dist_es32();
182960
+ init_dist_es31();
183037
182961
  init_dist_es12();
183038
182962
  init_EndpointParameters();
183039
182963
  init_models_0();
@@ -183055,9 +182979,9 @@ var init_ListBucketInventoryConfigurationsCommand = __esm(() => {
183055
182979
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js
183056
182980
  var ListBucketMetricsConfigurationsCommand;
183057
182981
  var init_ListBucketMetricsConfigurationsCommand = __esm(() => {
183058
- init_dist_es22();
183059
- init_dist_es34();
183060
- init_dist_es33();
182982
+ init_dist_es20();
182983
+ init_dist_es32();
182984
+ init_dist_es31();
183061
182985
  init_dist_es12();
183062
182986
  init_EndpointParameters();
183063
182987
  init_Aws_restXml();
@@ -183077,9 +183001,9 @@ var init_ListBucketMetricsConfigurationsCommand = __esm(() => {
183077
183001
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js
183078
183002
  var ListBucketsCommand;
183079
183003
  var init_ListBucketsCommand = __esm(() => {
183080
- init_dist_es22();
183081
- init_dist_es34();
183082
- init_dist_es33();
183004
+ init_dist_es20();
183005
+ init_dist_es32();
183006
+ init_dist_es31();
183083
183007
  init_dist_es12();
183084
183008
  init_EndpointParameters();
183085
183009
  init_Aws_restXml();
@@ -183096,9 +183020,9 @@ var init_ListBucketsCommand = __esm(() => {
183096
183020
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js
183097
183021
  var ListDirectoryBucketsCommand;
183098
183022
  var init_ListDirectoryBucketsCommand = __esm(() => {
183099
- init_dist_es22();
183100
- init_dist_es34();
183101
- init_dist_es33();
183023
+ init_dist_es20();
183024
+ init_dist_es32();
183025
+ init_dist_es31();
183102
183026
  init_dist_es12();
183103
183027
  init_EndpointParameters();
183104
183028
  init_Aws_restXml();
@@ -183118,9 +183042,9 @@ var init_ListDirectoryBucketsCommand = __esm(() => {
183118
183042
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js
183119
183043
  var ListMultipartUploadsCommand;
183120
183044
  var init_ListMultipartUploadsCommand = __esm(() => {
183121
- init_dist_es22();
183122
- init_dist_es34();
183123
- init_dist_es33();
183045
+ init_dist_es20();
183046
+ init_dist_es32();
183047
+ init_dist_es31();
183124
183048
  init_dist_es12();
183125
183049
  init_EndpointParameters();
183126
183050
  init_Aws_restXml();
@@ -183141,9 +183065,9 @@ var init_ListMultipartUploadsCommand = __esm(() => {
183141
183065
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js
183142
183066
  var ListObjectsCommand;
183143
183067
  var init_ListObjectsCommand = __esm(() => {
183144
- init_dist_es22();
183145
- init_dist_es34();
183146
- init_dist_es33();
183068
+ init_dist_es20();
183069
+ init_dist_es32();
183070
+ init_dist_es31();
183147
183071
  init_dist_es12();
183148
183072
  init_EndpointParameters();
183149
183073
  init_Aws_restXml();
@@ -183164,9 +183088,9 @@ var init_ListObjectsCommand = __esm(() => {
183164
183088
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js
183165
183089
  var ListObjectsV2Command;
183166
183090
  var init_ListObjectsV2Command = __esm(() => {
183167
- init_dist_es22();
183168
- init_dist_es34();
183169
- init_dist_es33();
183091
+ init_dist_es20();
183092
+ init_dist_es32();
183093
+ init_dist_es31();
183170
183094
  init_dist_es12();
183171
183095
  init_EndpointParameters();
183172
183096
  init_Aws_restXml();
@@ -183187,9 +183111,9 @@ var init_ListObjectsV2Command = __esm(() => {
183187
183111
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js
183188
183112
  var ListObjectVersionsCommand;
183189
183113
  var init_ListObjectVersionsCommand = __esm(() => {
183190
- init_dist_es22();
183191
- init_dist_es34();
183192
- init_dist_es33();
183114
+ init_dist_es20();
183115
+ init_dist_es32();
183116
+ init_dist_es31();
183193
183117
  init_dist_es12();
183194
183118
  init_EndpointParameters();
183195
183119
  init_Aws_restXml();
@@ -183210,10 +183134,10 @@ var init_ListObjectVersionsCommand = __esm(() => {
183210
183134
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js
183211
183135
  var ListPartsCommand;
183212
183136
  var init_ListPartsCommand = __esm(() => {
183213
- init_dist_es22();
183214
- init_dist_es62();
183215
- init_dist_es34();
183216
- init_dist_es33();
183137
+ init_dist_es20();
183138
+ init_dist_es60();
183139
+ init_dist_es32();
183140
+ init_dist_es31();
183217
183141
  init_dist_es12();
183218
183142
  init_EndpointParameters();
183219
183143
  init_models_0();
@@ -183237,8 +183161,8 @@ var init_ListPartsCommand = __esm(() => {
183237
183161
  var PutBucketAccelerateConfigurationCommand;
183238
183162
  var init_PutBucketAccelerateConfigurationCommand = __esm(() => {
183239
183163
  init_dist_es7();
183240
- init_dist_es34();
183241
- init_dist_es33();
183164
+ init_dist_es32();
183165
+ init_dist_es31();
183242
183166
  init_dist_es12();
183243
183167
  init_EndpointParameters();
183244
183168
  init_Aws_restXml();
@@ -183264,8 +183188,8 @@ var init_PutBucketAccelerateConfigurationCommand = __esm(() => {
183264
183188
  var PutBucketAclCommand;
183265
183189
  var init_PutBucketAclCommand = __esm(() => {
183266
183190
  init_dist_es7();
183267
- init_dist_es34();
183268
- init_dist_es33();
183191
+ init_dist_es32();
183192
+ init_dist_es31();
183269
183193
  init_dist_es12();
183270
183194
  init_EndpointParameters();
183271
183195
  init_Aws_restXml();
@@ -183290,8 +183214,8 @@ var init_PutBucketAclCommand = __esm(() => {
183290
183214
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js
183291
183215
  var PutBucketAnalyticsConfigurationCommand;
183292
183216
  var init_PutBucketAnalyticsConfigurationCommand = __esm(() => {
183293
- init_dist_es34();
183294
- init_dist_es33();
183217
+ init_dist_es32();
183218
+ init_dist_es31();
183295
183219
  init_dist_es12();
183296
183220
  init_EndpointParameters();
183297
183221
  init_Aws_restXml();
@@ -183312,8 +183236,8 @@ var init_PutBucketAnalyticsConfigurationCommand = __esm(() => {
183312
183236
  var PutBucketCorsCommand;
183313
183237
  var init_PutBucketCorsCommand = __esm(() => {
183314
183238
  init_dist_es7();
183315
- init_dist_es34();
183316
- init_dist_es33();
183239
+ init_dist_es32();
183240
+ init_dist_es31();
183317
183241
  init_dist_es12();
183318
183242
  init_EndpointParameters();
183319
183243
  init_Aws_restXml();
@@ -183339,8 +183263,8 @@ var init_PutBucketCorsCommand = __esm(() => {
183339
183263
  var PutBucketEncryptionCommand;
183340
183264
  var init_PutBucketEncryptionCommand = __esm(() => {
183341
183265
  init_dist_es7();
183342
- init_dist_es34();
183343
- init_dist_es33();
183266
+ init_dist_es32();
183267
+ init_dist_es31();
183344
183268
  init_dist_es12();
183345
183269
  init_EndpointParameters();
183346
183270
  init_models_0();
@@ -183366,8 +183290,8 @@ var init_PutBucketEncryptionCommand = __esm(() => {
183366
183290
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js
183367
183291
  var PutBucketIntelligentTieringConfigurationCommand;
183368
183292
  var init_PutBucketIntelligentTieringConfigurationCommand = __esm(() => {
183369
- init_dist_es34();
183370
- init_dist_es33();
183293
+ init_dist_es32();
183294
+ init_dist_es31();
183371
183295
  init_dist_es12();
183372
183296
  init_EndpointParameters();
183373
183297
  init_Aws_restXml();
@@ -183387,8 +183311,8 @@ var init_PutBucketIntelligentTieringConfigurationCommand = __esm(() => {
183387
183311
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js
183388
183312
  var PutBucketInventoryConfigurationCommand;
183389
183313
  var init_PutBucketInventoryConfigurationCommand = __esm(() => {
183390
- init_dist_es34();
183391
- init_dist_es33();
183314
+ init_dist_es32();
183315
+ init_dist_es31();
183392
183316
  init_dist_es12();
183393
183317
  init_EndpointParameters();
183394
183318
  init_models_0();
@@ -183410,9 +183334,9 @@ var init_PutBucketInventoryConfigurationCommand = __esm(() => {
183410
183334
  var PutBucketLifecycleConfigurationCommand;
183411
183335
  var init_PutBucketLifecycleConfigurationCommand = __esm(() => {
183412
183336
  init_dist_es7();
183413
- init_dist_es22();
183414
- init_dist_es34();
183415
- init_dist_es33();
183337
+ init_dist_es20();
183338
+ init_dist_es32();
183339
+ init_dist_es31();
183416
183340
  init_dist_es12();
183417
183341
  init_EndpointParameters();
183418
183342
  init_Aws_restXml();
@@ -183439,8 +183363,8 @@ var init_PutBucketLifecycleConfigurationCommand = __esm(() => {
183439
183363
  var PutBucketLoggingCommand;
183440
183364
  var init_PutBucketLoggingCommand = __esm(() => {
183441
183365
  init_dist_es7();
183442
- init_dist_es34();
183443
- init_dist_es33();
183366
+ init_dist_es32();
183367
+ init_dist_es31();
183444
183368
  init_dist_es12();
183445
183369
  init_EndpointParameters();
183446
183370
  init_Aws_restXml();
@@ -183465,8 +183389,8 @@ var init_PutBucketLoggingCommand = __esm(() => {
183465
183389
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js
183466
183390
  var PutBucketMetricsConfigurationCommand;
183467
183391
  var init_PutBucketMetricsConfigurationCommand = __esm(() => {
183468
- init_dist_es34();
183469
- init_dist_es33();
183392
+ init_dist_es32();
183393
+ init_dist_es31();
183470
183394
  init_dist_es12();
183471
183395
  init_EndpointParameters();
183472
183396
  init_Aws_restXml();
@@ -183486,8 +183410,8 @@ var init_PutBucketMetricsConfigurationCommand = __esm(() => {
183486
183410
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js
183487
183411
  var PutBucketNotificationConfigurationCommand;
183488
183412
  var init_PutBucketNotificationConfigurationCommand = __esm(() => {
183489
- init_dist_es34();
183490
- init_dist_es33();
183413
+ init_dist_es32();
183414
+ init_dist_es31();
183491
183415
  init_dist_es12();
183492
183416
  init_EndpointParameters();
183493
183417
  init_Aws_restXml();
@@ -183508,8 +183432,8 @@ var init_PutBucketNotificationConfigurationCommand = __esm(() => {
183508
183432
  var PutBucketOwnershipControlsCommand;
183509
183433
  var init_PutBucketOwnershipControlsCommand = __esm(() => {
183510
183434
  init_dist_es7();
183511
- init_dist_es34();
183512
- init_dist_es33();
183435
+ init_dist_es32();
183436
+ init_dist_es31();
183513
183437
  init_dist_es12();
183514
183438
  init_EndpointParameters();
183515
183439
  init_Aws_restXml();
@@ -183534,8 +183458,8 @@ var init_PutBucketOwnershipControlsCommand = __esm(() => {
183534
183458
  var PutBucketPolicyCommand;
183535
183459
  var init_PutBucketPolicyCommand = __esm(() => {
183536
183460
  init_dist_es7();
183537
- init_dist_es34();
183538
- init_dist_es33();
183461
+ init_dist_es32();
183462
+ init_dist_es31();
183539
183463
  init_dist_es12();
183540
183464
  init_EndpointParameters();
183541
183465
  init_Aws_restXml();
@@ -183561,8 +183485,8 @@ var init_PutBucketPolicyCommand = __esm(() => {
183561
183485
  var PutBucketReplicationCommand;
183562
183486
  var init_PutBucketReplicationCommand = __esm(() => {
183563
183487
  init_dist_es7();
183564
- init_dist_es34();
183565
- init_dist_es33();
183488
+ init_dist_es32();
183489
+ init_dist_es31();
183566
183490
  init_dist_es12();
183567
183491
  init_EndpointParameters();
183568
183492
  init_Aws_restXml();
@@ -183588,8 +183512,8 @@ var init_PutBucketReplicationCommand = __esm(() => {
183588
183512
  var PutBucketRequestPaymentCommand;
183589
183513
  var init_PutBucketRequestPaymentCommand = __esm(() => {
183590
183514
  init_dist_es7();
183591
- init_dist_es34();
183592
- init_dist_es33();
183515
+ init_dist_es32();
183516
+ init_dist_es31();
183593
183517
  init_dist_es12();
183594
183518
  init_EndpointParameters();
183595
183519
  init_Aws_restXml();
@@ -183615,8 +183539,8 @@ var init_PutBucketRequestPaymentCommand = __esm(() => {
183615
183539
  var PutBucketTaggingCommand;
183616
183540
  var init_PutBucketTaggingCommand = __esm(() => {
183617
183541
  init_dist_es7();
183618
- init_dist_es34();
183619
- init_dist_es33();
183542
+ init_dist_es32();
183543
+ init_dist_es31();
183620
183544
  init_dist_es12();
183621
183545
  init_EndpointParameters();
183622
183546
  init_Aws_restXml();
@@ -183642,8 +183566,8 @@ var init_PutBucketTaggingCommand = __esm(() => {
183642
183566
  var PutBucketVersioningCommand;
183643
183567
  var init_PutBucketVersioningCommand = __esm(() => {
183644
183568
  init_dist_es7();
183645
- init_dist_es34();
183646
- init_dist_es33();
183569
+ init_dist_es32();
183570
+ init_dist_es31();
183647
183571
  init_dist_es12();
183648
183572
  init_EndpointParameters();
183649
183573
  init_Aws_restXml();
@@ -183669,8 +183593,8 @@ var init_PutBucketVersioningCommand = __esm(() => {
183669
183593
  var PutBucketWebsiteCommand;
183670
183594
  var init_PutBucketWebsiteCommand = __esm(() => {
183671
183595
  init_dist_es7();
183672
- init_dist_es34();
183673
- init_dist_es33();
183596
+ init_dist_es32();
183597
+ init_dist_es31();
183674
183598
  init_dist_es12();
183675
183599
  init_EndpointParameters();
183676
183600
  init_Aws_restXml();
@@ -183696,9 +183620,9 @@ var init_PutBucketWebsiteCommand = __esm(() => {
183696
183620
  var PutObjectAclCommand;
183697
183621
  var init_PutObjectAclCommand = __esm(() => {
183698
183622
  init_dist_es7();
183699
- init_dist_es22();
183700
- init_dist_es34();
183701
- init_dist_es33();
183623
+ init_dist_es20();
183624
+ init_dist_es32();
183625
+ init_dist_es31();
183702
183626
  init_dist_es12();
183703
183627
  init_EndpointParameters();
183704
183628
  init_Aws_restXml();
@@ -183725,10 +183649,10 @@ var init_PutObjectAclCommand = __esm(() => {
183725
183649
  var PutObjectCommand;
183726
183650
  var init_PutObjectCommand = __esm(() => {
183727
183651
  init_dist_es7();
183728
- init_dist_es22();
183729
- init_dist_es62();
183730
- init_dist_es34();
183731
- init_dist_es33();
183652
+ init_dist_es20();
183653
+ init_dist_es60();
183654
+ init_dist_es32();
183655
+ init_dist_es31();
183732
183656
  init_dist_es12();
183733
183657
  init_EndpointParameters();
183734
183658
  init_models_1();
@@ -183758,9 +183682,9 @@ var init_PutObjectCommand = __esm(() => {
183758
183682
  var PutObjectLegalHoldCommand;
183759
183683
  var init_PutObjectLegalHoldCommand = __esm(() => {
183760
183684
  init_dist_es7();
183761
- init_dist_es22();
183762
- init_dist_es34();
183763
- init_dist_es33();
183685
+ init_dist_es20();
183686
+ init_dist_es32();
183687
+ init_dist_es31();
183764
183688
  init_dist_es12();
183765
183689
  init_EndpointParameters();
183766
183690
  init_Aws_restXml();
@@ -183786,9 +183710,9 @@ var init_PutObjectLegalHoldCommand = __esm(() => {
183786
183710
  var PutObjectLockConfigurationCommand;
183787
183711
  var init_PutObjectLockConfigurationCommand = __esm(() => {
183788
183712
  init_dist_es7();
183789
- init_dist_es22();
183790
- init_dist_es34();
183791
- init_dist_es33();
183713
+ init_dist_es20();
183714
+ init_dist_es32();
183715
+ init_dist_es31();
183792
183716
  init_dist_es12();
183793
183717
  init_EndpointParameters();
183794
183718
  init_Aws_restXml();
@@ -183814,9 +183738,9 @@ var init_PutObjectLockConfigurationCommand = __esm(() => {
183814
183738
  var PutObjectRetentionCommand;
183815
183739
  var init_PutObjectRetentionCommand = __esm(() => {
183816
183740
  init_dist_es7();
183817
- init_dist_es22();
183818
- init_dist_es34();
183819
- init_dist_es33();
183741
+ init_dist_es20();
183742
+ init_dist_es32();
183743
+ init_dist_es31();
183820
183744
  init_dist_es12();
183821
183745
  init_EndpointParameters();
183822
183746
  init_Aws_restXml();
@@ -183842,9 +183766,9 @@ var init_PutObjectRetentionCommand = __esm(() => {
183842
183766
  var PutObjectTaggingCommand;
183843
183767
  var init_PutObjectTaggingCommand = __esm(() => {
183844
183768
  init_dist_es7();
183845
- init_dist_es22();
183846
- init_dist_es34();
183847
- init_dist_es33();
183769
+ init_dist_es20();
183770
+ init_dist_es32();
183771
+ init_dist_es31();
183848
183772
  init_dist_es12();
183849
183773
  init_EndpointParameters();
183850
183774
  init_Aws_restXml();
@@ -183870,8 +183794,8 @@ var init_PutObjectTaggingCommand = __esm(() => {
183870
183794
  var PutPublicAccessBlockCommand;
183871
183795
  var init_PutPublicAccessBlockCommand = __esm(() => {
183872
183796
  init_dist_es7();
183873
- init_dist_es34();
183874
- init_dist_es33();
183797
+ init_dist_es32();
183798
+ init_dist_es31();
183875
183799
  init_dist_es12();
183876
183800
  init_EndpointParameters();
183877
183801
  init_Aws_restXml();
@@ -183897,9 +183821,9 @@ var init_PutPublicAccessBlockCommand = __esm(() => {
183897
183821
  var RestoreObjectCommand;
183898
183822
  var init_RestoreObjectCommand = __esm(() => {
183899
183823
  init_dist_es7();
183900
- init_dist_es22();
183901
- init_dist_es34();
183902
- init_dist_es33();
183824
+ init_dist_es20();
183825
+ init_dist_es32();
183826
+ init_dist_es31();
183903
183827
  init_dist_es12();
183904
183828
  init_EndpointParameters();
183905
183829
  init_models_1();
@@ -183925,10 +183849,10 @@ var init_RestoreObjectCommand = __esm(() => {
183925
183849
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js
183926
183850
  var SelectObjectContentCommand;
183927
183851
  var init_SelectObjectContentCommand = __esm(() => {
183928
- init_dist_es22();
183929
- init_dist_es62();
183930
- init_dist_es34();
183931
- init_dist_es33();
183852
+ init_dist_es20();
183853
+ init_dist_es60();
183854
+ init_dist_es32();
183855
+ init_dist_es31();
183932
183856
  init_dist_es12();
183933
183857
  init_EndpointParameters();
183934
183858
  init_models_1();
@@ -183955,10 +183879,10 @@ var init_SelectObjectContentCommand = __esm(() => {
183955
183879
  var UploadPartCommand;
183956
183880
  var init_UploadPartCommand = __esm(() => {
183957
183881
  init_dist_es7();
183958
- init_dist_es22();
183959
- init_dist_es62();
183960
- init_dist_es34();
183961
- init_dist_es33();
183882
+ init_dist_es20();
183883
+ init_dist_es60();
183884
+ init_dist_es32();
183885
+ init_dist_es31();
183962
183886
  init_dist_es12();
183963
183887
  init_EndpointParameters();
183964
183888
  init_models_1();
@@ -183986,10 +183910,10 @@ var init_UploadPartCommand = __esm(() => {
183986
183910
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js
183987
183911
  var UploadPartCopyCommand;
183988
183912
  var init_UploadPartCopyCommand = __esm(() => {
183989
- init_dist_es22();
183990
- init_dist_es62();
183991
- init_dist_es34();
183992
- init_dist_es33();
183913
+ init_dist_es20();
183914
+ init_dist_es60();
183915
+ init_dist_es32();
183916
+ init_dist_es31();
183993
183917
  init_dist_es12();
183994
183918
  init_EndpointParameters();
183995
183919
  init_models_1();
@@ -184012,8 +183936,8 @@ var init_UploadPartCopyCommand = __esm(() => {
184012
183936
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js
184013
183937
  var WriteGetObjectResponseCommand;
184014
183938
  var init_WriteGetObjectResponseCommand = __esm(() => {
184015
- init_dist_es34();
184016
- init_dist_es33();
183939
+ init_dist_es32();
183940
+ init_dist_es31();
184017
183941
  init_dist_es12();
184018
183942
  init_EndpointParameters();
184019
183943
  init_models_1();
@@ -184407,29 +184331,29 @@ var init_createWaiter = __esm(() => {
184407
184331
  });
184408
184332
 
184409
184333
  // ../../../../node_modules/@smithy/util-waiter/dist-es/index.js
184410
- var init_dist_es64 = __esm(() => {
184334
+ var init_dist_es62 = __esm(() => {
184411
184335
  init_createWaiter();
184412
184336
  init_waiter();
184413
184337
  });
184414
184338
 
184415
184339
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js
184416
184340
  var init_waitForBucketExists = __esm(() => {
184417
- init_dist_es64();
184341
+ init_dist_es62();
184418
184342
  });
184419
184343
 
184420
184344
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js
184421
184345
  var init_waitForBucketNotExists = __esm(() => {
184422
- init_dist_es64();
184346
+ init_dist_es62();
184423
184347
  });
184424
184348
 
184425
184349
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js
184426
184350
  var init_waitForObjectExists = __esm(() => {
184427
- init_dist_es64();
184351
+ init_dist_es62();
184428
184352
  });
184429
184353
 
184430
184354
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js
184431
184355
  var init_waitForObjectNotExists = __esm(() => {
184432
- init_dist_es64();
184356
+ init_dist_es62();
184433
184357
  });
184434
184358
 
184435
184359
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/waiters/index.js
@@ -184447,7 +184371,7 @@ var init_models4 = __esm(() => {
184447
184371
  });
184448
184372
 
184449
184373
  // ../../../../node_modules/@aws-sdk/client-s3/dist-es/index.js
184450
- var init_dist_es65 = __esm(() => {
184374
+ var init_dist_es63 = __esm(() => {
184451
184375
  init_S3Client();
184452
184376
  init_S3();
184453
184377
  init_commands4();
@@ -184492,7 +184416,7 @@ var init_AbortController = () => {
184492
184416
  };
184493
184417
 
184494
184418
  // ../../../../node_modules/@smithy/abort-controller/dist-es/index.js
184495
- var init_dist_es66 = __esm(() => {
184419
+ var init_dist_es64 = __esm(() => {
184496
184420
  init_AbortController();
184497
184421
  });
184498
184422
 
@@ -184663,9 +184587,9 @@ var init_chunker = __esm(() => {
184663
184587
  import { EventEmitter as EventEmitter2 } from "events";
184664
184588
  var Upload;
184665
184589
  var init_Upload = __esm(() => {
184666
- init_dist_es65();
184667
- init_dist_es66();
184668
- init_dist_es34();
184590
+ init_dist_es63();
184591
+ init_dist_es64();
184592
+ init_dist_es32();
184669
184593
  init_dist_es12();
184670
184594
  init_bytelength();
184671
184595
  init_chunker();
@@ -184954,7 +184878,7 @@ var init_types14 = () => {
184954
184878
  };
184955
184879
 
184956
184880
  // ../../../../node_modules/@aws-sdk/lib-storage/dist-es/index.js
184957
- var init_dist_es67 = __esm(() => {
184881
+ var init_dist_es65 = __esm(() => {
184958
184882
  init_Upload();
184959
184883
  init_types14();
184960
184884
  });
@@ -184988,8 +184912,8 @@ function formatUrl(request5) {
184988
184912
  }
184989
184913
  return `${protocol}//${auth}${hostname}${path5}${queryString}${fragment}`;
184990
184914
  }
184991
- var init_dist_es68 = __esm(() => {
184992
- init_dist_es18();
184915
+ var init_dist_es66 = __esm(() => {
184916
+ init_dist_es17();
184993
184917
  });
184994
184918
 
184995
184919
  // ../../../../node_modules/@aws-sdk/s3-request-presigner/dist-es/constants.js
@@ -185049,7 +184973,7 @@ class S3RequestPresigner {
185049
184973
  }
185050
184974
  }
185051
184975
  var init_presigner = __esm(() => {
185052
- init_dist_es38();
184976
+ init_dist_es36();
185053
184977
  });
185054
184978
 
185055
184979
  // ../../../../node_modules/@aws-sdk/s3-request-presigner/dist-es/getSignedUrl.js
@@ -185113,14 +185037,14 @@ var getSignedUrl = async (client2, command3, options3 = {}) => {
185113
185037
  return formatUrl(presigned);
185114
185038
  };
185115
185039
  var init_getSignedUrl = __esm(() => {
185116
- init_dist_es68();
185117
- init_dist_es34();
185040
+ init_dist_es66();
185041
+ init_dist_es32();
185118
185042
  init_dist_es();
185119
185043
  init_presigner();
185120
185044
  });
185121
185045
 
185122
185046
  // ../../../../node_modules/@aws-sdk/s3-request-presigner/dist-es/index.js
185123
- var init_dist_es69 = __esm(() => {
185047
+ var init_dist_es67 = __esm(() => {
185124
185048
  init_getSignedUrl();
185125
185049
  init_presigner();
185126
185050
  });
@@ -194611,9 +194535,9 @@ class AwsS3StorageAdapter {
194611
194535
  }
194612
194536
  var possibleChecksumAlgos, HostStyleAwsPublicUrlGenerator;
194613
194537
  var init_aws_s3_storage_adapter = __esm(() => {
194538
+ init_dist_es63();
194614
194539
  init_dist_es65();
194615
194540
  init_dist_es67();
194616
- init_dist_es69();
194617
194541
  init_esm3();
194618
194542
  init_esm4();
194619
194543
  init_esm3();