@ariestools/cli 0.1.10 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -82782,7 +82782,7 @@ var require_data = /* @__PURE__ */ __commonJSMin(((exports, module) => {
82782
82782
  };
82783
82783
  }));
82784
82784
  //#endregion
82785
- //#region ../../node_modules/.pnpm/fast-uri@3.1.3/node_modules/fast-uri/lib/utils.js
82785
+ //#region ../../node_modules/.pnpm/fast-uri@3.1.4/node_modules/fast-uri/lib/utils.js
82786
82786
  var require_utils$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
82787
82787
  /** @type {(value: string) => boolean} */
82788
82788
  const isUUID = RegExp.prototype.test.bind(/^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$/iu);
@@ -83154,7 +83154,7 @@ var require_utils$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
83154
83154
  };
83155
83155
  }));
83156
83156
  //#endregion
83157
- //#region ../../node_modules/.pnpm/fast-uri@3.1.3/node_modules/fast-uri/lib/schemes.js
83157
+ //#region ../../node_modules/.pnpm/fast-uri@3.1.4/node_modules/fast-uri/lib/schemes.js
83158
83158
  var require_schemes = /* @__PURE__ */ __commonJSMin(((exports, module) => {
83159
83159
  const { isUUID } = require_utils$1();
83160
83160
  const URN_REG = /([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu;
@@ -83337,7 +83337,7 @@ var require_schemes = /* @__PURE__ */ __commonJSMin(((exports, module) => {
83337
83337
  };
83338
83338
  }));
83339
83339
  //#endregion
83340
- //#region ../../node_modules/.pnpm/fast-uri@3.1.3/node_modules/fast-uri/index.js
83340
+ //#region ../../node_modules/.pnpm/fast-uri@3.1.4/node_modules/fast-uri/index.js
83341
83341
  var require_fast_uri = /* @__PURE__ */ __commonJSMin(((exports, module) => {
83342
83342
  const { normalizeIPv6, removeDotSegments, recomposeAuthority, normalizePercentEncoding, normalizePathEncoding, escapePreservingEscapes, reescapeHostDelimiters, isIPv4, nonSimpleDomain } = require_utils$1();
83343
83343
  const { SCHEMES, getSchemeHandler } = require_schemes();
@@ -83476,6 +83476,7 @@ var require_fast_uri = /* @__PURE__ */ __commonJSMin(((exports, module) => {
83476
83476
  return uriTokens.join("");
83477
83477
  }
83478
83478
  const URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
83479
+ const AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
83479
83480
  /**
83480
83481
  * @param {import('./types/index').URIComponent} parsed
83481
83482
  * @param {RegExpMatchArray} matches
@@ -83506,6 +83507,11 @@ var require_fast_uri = /* @__PURE__ */ __commonJSMin(((exports, module) => {
83506
83507
  let isIP = false;
83507
83508
  if (options.reference === "suffix") if (options.scheme) uri = options.scheme + ":" + uri;
83508
83509
  else uri = "//" + uri;
83510
+ const authorityMatch = uri.match(AUTHORITY_PREFIX);
83511
+ if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
83512
+ parsed.error = "URI authority must not contain a literal backslash.";
83513
+ malformedAuthorityOrPort = true;
83514
+ }
83509
83515
  const matches = uri.match(URI_PARSE);
83510
83516
  if (matches) {
83511
83517
  parsed.scheme = matches[1];
@@ -244175,7 +244181,7 @@ var init_dist_node = __esmMin((() => {
244175
244181
  init_version();
244176
244182
  }));
244177
244183
  //#endregion
244178
- //#region ../../node_modules/.pnpm/@metamask+superstruct@3.3.0/node_modules/@metamask/superstruct/dist/error.mjs
244184
+ //#region ../../node_modules/.pnpm/@metamask+superstruct@3.4.1/node_modules/@metamask/superstruct/dist/error.mjs
244179
244185
  var StructError;
244180
244186
  var init_error = __esmMin((() => {
244181
244187
  StructError = class extends TypeError {
@@ -244195,7 +244201,7 @@ var init_error = __esmMin((() => {
244195
244201
  };
244196
244202
  }));
244197
244203
  //#endregion
244198
- //#region ../../node_modules/.pnpm/@metamask+superstruct@3.3.0/node_modules/@metamask/superstruct/dist/utils.mjs
244204
+ //#region ../../node_modules/.pnpm/@metamask+superstruct@3.4.1/node_modules/@metamask/superstruct/dist/utils.mjs
244199
244205
  /**
244200
244206
  * Check if a value is an iterator.
244201
244207
  *
@@ -244344,7 +244350,7 @@ function* run(value, struct, options = {}) {
244344
244350
  }
244345
244351
  var init_utils$6 = __esmMin((() => {}));
244346
244352
  //#endregion
244347
- //#region ../../node_modules/.pnpm/@metamask+superstruct@3.3.0/node_modules/@metamask/superstruct/dist/struct.mjs
244353
+ //#region ../../node_modules/.pnpm/@metamask+superstruct@3.4.1/node_modules/@metamask/superstruct/dist/struct.mjs
244348
244354
  /**
244349
244355
  * Assert that a value passes a struct, throwing if it doesn't.
244350
244356
  *
@@ -244438,6 +244444,7 @@ var init_struct = __esmMin((() => {
244438
244444
  return toFailures(refiner(value, context), context, this, value);
244439
244445
  };
244440
244446
  else this.refiner = () => [];
244447
+ for (const sym of Object.getOwnPropertySymbols(props)) Object.defineProperty(this, sym, Object.getOwnPropertyDescriptor(props, sym));
244441
244448
  }
244442
244449
  /**
244443
244450
  * Assert that a value passes the struct's validation, throwing if it doesn't.
@@ -244491,7 +244498,124 @@ var init_struct = __esmMin((() => {
244491
244498
  };
244492
244499
  }));
244493
244500
  //#endregion
244494
- //#region ../../node_modules/.pnpm/@metamask+superstruct@3.3.0/node_modules/@metamask/superstruct/dist/structs/utilities.mjs
244501
+ //#region ../../node_modules/.pnpm/@metamask+superstruct@3.4.1/node_modules/@metamask/superstruct/dist/structs/sensitive.mjs
244502
+ /**
244503
+ * Check whether a struct was created by `sensitive()`, or wraps one.
244504
+ *
244505
+ * @param struct - The struct to check.
244506
+ * @returns `true` if the struct carries the sensitive brand.
244507
+ */
244508
+ function isSensitiveStruct(struct) {
244509
+ return Object.prototype.hasOwnProperty.call(struct, SENSITIVE_BRAND);
244510
+ }
244511
+ /**
244512
+ * Return a shallow copy of `sourceObj` with each key in `keys` replaced by
244513
+ * the redaction placeholder.
244514
+ *
244515
+ * @param sourceObj - The source object to copy and redact.
244516
+ * @param keys - The property names to redact.
244517
+ * @returns A shallow copy with the specified keys replaced.
244518
+ */
244519
+ function redactKeys(sourceObj, keys) {
244520
+ const redacted = { ...sourceObj };
244521
+ for (const key of keys) if (key in redacted) redacted[key] = SENSITIVE_REDACTED;
244522
+ return redacted;
244523
+ }
244524
+ /**
244525
+ * Wrap a struct so that every failure it emits has any occurrence of
244526
+ * `parentObj` in `failure.branch` replaced with a sanitised copy where
244527
+ * `sensitiveKeys` are redacted. This prevents the parent object (which holds
244528
+ * secret field values) from leaking through sibling-field failures.
244529
+ *
244530
+ * The wrapping propagates recursively through `entries` so that failures from
244531
+ * deeply nested sibling structs are covered too.
244532
+ *
244533
+ * @param struct - The struct whose failures should be patched.
244534
+ * @param parentObj - The parent-object reference to look for in branch arrays.
244535
+ * @param sensitiveKeys - Keys to redact from `parentObj` when it appears.
244536
+ * @returns The wrapped struct.
244537
+ */
244538
+ function withRedactedBranch(struct, parentObj, sensitiveKeys) {
244539
+ function* redactBranch(failures) {
244540
+ for (const failure of failures) {
244541
+ if (!isObject$1(parentObj)) {
244542
+ yield failure;
244543
+ continue;
244544
+ }
244545
+ const parentIndex = failure.branch.indexOf(parentObj);
244546
+ if (parentIndex === -1) {
244547
+ yield failure;
244548
+ continue;
244549
+ }
244550
+ const branch = [...failure.branch];
244551
+ branch[parentIndex] = redactKeys(parentObj, sensitiveKeys);
244552
+ for (let ancestorIndex = parentIndex - 1; ancestorIndex >= 0; ancestorIndex--) {
244553
+ const ancestor = branch[ancestorIndex];
244554
+ if (!isObject$1(ancestor)) break;
244555
+ const child = failure.branch[ancestorIndex + 1];
244556
+ const childSanitized = branch[ancestorIndex + 1];
244557
+ if (Array.isArray(ancestor)) {
244558
+ const childIndex = ancestor.indexOf(child);
244559
+ if (childIndex === -1) break;
244560
+ const copy = [...ancestor];
244561
+ copy[childIndex] = childSanitized;
244562
+ branch[ancestorIndex] = copy;
244563
+ } else if (ancestor instanceof Map) {
244564
+ let childFound = false;
244565
+ let childKey;
244566
+ for (const [entryKey, entryValue] of ancestor) if (entryValue === child) {
244567
+ childKey = entryKey;
244568
+ childFound = true;
244569
+ break;
244570
+ }
244571
+ if (!childFound) break;
244572
+ const copy = new Map(ancestor);
244573
+ copy.set(childKey, childSanitized);
244574
+ branch[ancestorIndex] = copy;
244575
+ } else {
244576
+ const childKey = Object.keys(ancestor).find((key) => ancestor[key] === child);
244577
+ if (childKey === void 0) break;
244578
+ branch[ancestorIndex] = {
244579
+ ...ancestor,
244580
+ [childKey]: childSanitized
244581
+ };
244582
+ }
244583
+ }
244584
+ yield {
244585
+ ...failure,
244586
+ branch
244587
+ };
244588
+ }
244589
+ }
244590
+ return new Struct({
244591
+ ...struct,
244592
+ validator(value, context) {
244593
+ return redactBranch(struct.validator(value, context));
244594
+ },
244595
+ refiner(value, context) {
244596
+ return redactBranch(struct.refiner(value, context));
244597
+ },
244598
+ *entries(value, context) {
244599
+ for (const entry of struct.entries(value, context)) {
244600
+ const [fieldKey, fieldValue, fieldStruct] = entry;
244601
+ yield [
244602
+ fieldKey,
244603
+ fieldValue,
244604
+ withRedactedBranch(fieldStruct, parentObj, sensitiveKeys)
244605
+ ];
244606
+ }
244607
+ }
244608
+ });
244609
+ }
244610
+ var SENSITIVE_REDACTED, SENSITIVE_BRAND;
244611
+ var init_sensitive = __esmMin((() => {
244612
+ init_struct();
244613
+ init_utils$6();
244614
+ SENSITIVE_REDACTED = "***";
244615
+ SENSITIVE_BRAND = Symbol.for("superstruct.sensitive");
244616
+ }));
244617
+ //#endregion
244618
+ //#region ../../node_modules/.pnpm/@metamask+superstruct@3.4.1/node_modules/@metamask/superstruct/dist/structs/utilities.mjs
244495
244619
  /**
244496
244620
  * Define a new struct type with a custom validation function.
244497
244621
  *
@@ -244511,7 +244635,39 @@ var init_utilities = __esmMin((() => {
244511
244635
  init_types$3();
244512
244636
  }));
244513
244637
  //#endregion
244514
- //#region ../../node_modules/.pnpm/@metamask+superstruct@3.3.0/node_modules/@metamask/superstruct/dist/structs/types.mjs
244638
+ //#region ../../node_modules/.pnpm/@metamask+superstruct@3.4.1/node_modules/@metamask/superstruct/dist/structs/types.mjs
244639
+ /**
244640
+ * Wrap a base struct so that entry-level failures from sibling fields have the
244641
+ * parent object's sensitive keys redacted from their branch. If `schema`
244642
+ * contains no sensitive-marked fields, `base` is returned as-is to avoid the
244643
+ * overhead of wrapping every entry.
244644
+ *
244645
+ * Used by both `object()` and `type()` to share the sensitive-entry wrapping
244646
+ * logic without duplication.
244647
+ *
244648
+ * @param base - The base struct to potentially wrap.
244649
+ * @param schema - The object schema to inspect for sensitive fields.
244650
+ * @returns The wrapped struct, or `base` unchanged when no sensitive fields
244651
+ * are present.
244652
+ */
244653
+ function withSensitiveEntries(base, schema) {
244654
+ const sensitiveKeys = Object.keys(schema).filter((key) => schema[key] !== void 0 && isSensitiveStruct(schema[key]));
244655
+ if (sensitiveKeys.length === 0) return base;
244656
+ return new Struct({
244657
+ ...base,
244658
+ *entries(value, context) {
244659
+ const parentInBranch = context.branch[context.branch.length - 1] ?? value;
244660
+ for (const entry of base.entries(value, context)) {
244661
+ const [fieldKey, fieldValue, fieldStruct] = entry;
244662
+ yield [
244663
+ fieldKey,
244664
+ fieldValue,
244665
+ withRedactedBranch(fieldStruct, parentInBranch, sensitiveKeys)
244666
+ ];
244667
+ }
244668
+ }
244669
+ });
244670
+ }
244515
244671
  /**
244516
244672
  * Ensure that any value passes validation.
244517
244673
  *
@@ -244640,7 +244796,7 @@ function number() {
244640
244796
  function object$1(schema) {
244641
244797
  const knowns = schema ? Object.keys(schema) : [];
244642
244798
  const Never = never();
244643
- return new Struct({
244799
+ const base = new Struct({
244644
244800
  type: "object",
244645
244801
  schema: schema ?? null,
244646
244802
  *entries(value) {
@@ -244670,6 +244826,8 @@ function object$1(schema) {
244670
244826
  return isObject$1(value) ? { ...value } : value;
244671
244827
  }
244672
244828
  });
244829
+ if (!schema) return base;
244830
+ return withSensitiveEntries(base, schema);
244673
244831
  }
244674
244832
  /**
244675
244833
  * Augment a struct to allow `undefined` values.
@@ -244774,10 +244932,11 @@ function unknown() {
244774
244932
  var init_types$3 = __esmMin((() => {
244775
244933
  init_struct();
244776
244934
  init_utils$6();
244935
+ init_sensitive();
244777
244936
  init_utilities();
244778
244937
  }));
244779
244938
  //#endregion
244780
- //#region ../../node_modules/.pnpm/@metamask+superstruct@3.3.0/node_modules/@metamask/superstruct/dist/structs/coercions.mjs
244939
+ //#region ../../node_modules/.pnpm/@metamask+superstruct@3.4.1/node_modules/@metamask/superstruct/dist/structs/coercions.mjs
244781
244940
  /**
244782
244941
  * Augment a `Struct` to add an additional coercion step to its input.
244783
244942
  *
@@ -244808,7 +244967,7 @@ var init_coercions = __esmMin((() => {
244808
244967
  init_types$3();
244809
244968
  }));
244810
244969
  //#endregion
244811
- //#region ../../node_modules/.pnpm/@metamask+superstruct@3.3.0/node_modules/@metamask/superstruct/dist/structs/refinements.mjs
244970
+ //#region ../../node_modules/.pnpm/@metamask+superstruct@3.4.1/node_modules/@metamask/superstruct/dist/structs/refinements.mjs
244812
244971
  /**
244813
244972
  * Ensure that a string matches a regular expression.
244814
244973
  *
@@ -244876,12 +245035,13 @@ var init_refinements = __esmMin((() => {
244876
245035
  init_utils$6();
244877
245036
  }));
244878
245037
  //#endregion
244879
- //#region ../../node_modules/.pnpm/@metamask+superstruct@3.3.0/node_modules/@metamask/superstruct/dist/index.mjs
245038
+ //#region ../../node_modules/.pnpm/@metamask+superstruct@3.4.1/node_modules/@metamask/superstruct/dist/index.mjs
244880
245039
  var init_dist$5 = __esmMin((() => {
244881
245040
  init_error();
244882
245041
  init_struct();
244883
245042
  init_coercions();
244884
245043
  init_refinements();
245044
+ init_sensitive();
244885
245045
  init_types$3();
244886
245046
  init_utilities();
244887
245047
  }));
@@ -298593,7 +298753,7 @@ var StdioServerTransport = class {
298593
298753
  }
298594
298754
  };
298595
298755
  //#endregion
298596
- //#region ../../node_modules/.pnpm/@hono+node-server@1.19.14_hono@4.12.28/node_modules/@hono/node-server/dist/index.mjs
298756
+ //#region ../../node_modules/.pnpm/@hono+node-server@1.19.14_hono@4.12.31/node_modules/@hono/node-server/dist/index.mjs
298597
298757
  var RequestError = class extends Error {
298598
298758
  constructor(message, options) {
298599
298759
  super(message, options);
@@ -305882,13 +306042,13 @@ function setCredentialFeature(credentials, feature, value) {
305882
306042
  }
305883
306043
  var init_setCredentialFeature = __esmMin((() => {}));
305884
306044
  //#endregion
305885
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.js
306045
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.js
305886
306046
  var isStreamingPayload;
305887
306047
  var init_isStreamingPayload = __esmMin((() => {
305888
306048
  isStreamingPayload = (request) => request?.body instanceof Readable$1 || typeof ReadableStream !== "undefined" && request?.body instanceof ReadableStream;
305889
306049
  }));
305890
306050
  //#endregion
305891
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/middleware-stack/MiddlewareStack.js
306051
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/middleware-stack/MiddlewareStack.js
305892
306052
  var getAllAliases, getMiddlewareNameWithAliases, constructStack, stepWeights, priorityWeights;
305893
306053
  var init_MiddlewareStack = __esmMin((() => {
305894
306054
  getAllAliases = (name, aliases) => {
@@ -306157,14 +306317,14 @@ var require_dist_cjs$21 = /* @__PURE__ */ __commonJSMin(((exports) => {
306157
306317
  exports.SMITHY_CONTEXT_KEY = SMITHY_CONTEXT_KEY;
306158
306318
  }));
306159
306319
  //#endregion
306160
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/getSmithyContext.js
306320
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/getSmithyContext.js
306161
306321
  var import_dist_cjs$23, getSmithyContext;
306162
306322
  var init_getSmithyContext = __esmMin((() => {
306163
306323
  import_dist_cjs$23 = require_dist_cjs$21();
306164
306324
  getSmithyContext = (context) => context[import_dist_cjs$23.SMITHY_CONTEXT_KEY] || (context[import_dist_cjs$23.SMITHY_CONTEXT_KEY] = {});
306165
306325
  }));
306166
306326
  //#endregion
306167
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/httpRequest.js
306327
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/httpRequest.js
306168
306328
  function cloneQuery(query) {
306169
306329
  return Object.keys(query).reduce((carry, paramName) => {
306170
306330
  const param = query[paramName];
@@ -306220,7 +306380,7 @@ var init_httpRequest = __esmMin((() => {
306220
306380
  };
306221
306381
  }));
306222
306382
  //#endregion
306223
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/httpResponse.js
306383
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/httpResponse.js
306224
306384
  var HttpResponse;
306225
306385
  var init_httpResponse = __esmMin((() => {
306226
306386
  HttpResponse = class {
@@ -306242,7 +306402,7 @@ var init_httpResponse = __esmMin((() => {
306242
306402
  };
306243
306403
  }));
306244
306404
  //#endregion
306245
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/isValidHostLabel.js
306405
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/isValidHostLabel.js
306246
306406
  var VALID_HOST_LABEL_REGEX, isValidHostLabel;
306247
306407
  var init_isValidHostLabel = __esmMin((() => {
306248
306408
  VALID_HOST_LABEL_REGEX = new RegExp(`^(?!.*-$)(?!-)[a-zA-Z0-9-]{1,63}$`);
@@ -306254,13 +306414,13 @@ var init_isValidHostLabel = __esmMin((() => {
306254
306414
  };
306255
306415
  }));
306256
306416
  //#endregion
306257
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/isValidHostname.js
306417
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/isValidHostname.js
306258
306418
  function isValidHostname(hostname) {
306259
306419
  return /^[a-z0-9][a-z0-9.-]*[a-z0-9]$/.test(hostname);
306260
306420
  }
306261
306421
  var init_isValidHostname = __esmMin((() => {}));
306262
306422
  //#endregion
306263
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/normalizeProvider.js
306423
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/normalizeProvider.js
306264
306424
  var normalizeProvider$1;
306265
306425
  var init_normalizeProvider$1 = __esmMin((() => {
306266
306426
  normalizeProvider$1 = (input) => {
@@ -306270,7 +306430,7 @@ var init_normalizeProvider$1 = __esmMin((() => {
306270
306430
  };
306271
306431
  }));
306272
306432
  //#endregion
306273
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/parseQueryString.js
306433
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/parseQueryString.js
306274
306434
  function parseQueryString(querystring) {
306275
306435
  const query = {};
306276
306436
  querystring = querystring.replace(/^\?/, "");
@@ -306286,7 +306446,7 @@ function parseQueryString(querystring) {
306286
306446
  }
306287
306447
  var init_parseQueryString = __esmMin((() => {}));
306288
306448
  //#endregion
306289
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/parseUrl.js
306449
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/parseUrl.js
306290
306450
  var parseUrl;
306291
306451
  var init_parseUrl = __esmMin((() => {
306292
306452
  init_parseQueryString();
@@ -306305,7 +306465,7 @@ var init_parseUrl = __esmMin((() => {
306305
306465
  };
306306
306466
  }));
306307
306467
  //#endregion
306308
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/toEndpointV1.js
306468
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/toEndpointV1.js
306309
306469
  var toEndpointV1$1;
306310
306470
  var init_toEndpointV1$1 = __esmMin((() => {
306311
306471
  init_parseUrl();
@@ -306325,7 +306485,7 @@ var init_toEndpointV1$1 = __esmMin((() => {
306325
306485
  };
306326
306486
  }));
306327
306487
  //#endregion
306328
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/transport/index.js
306488
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/transport/index.js
306329
306489
  var init_transport = __esmMin((() => {
306330
306490
  init_getSmithyContext();
306331
306491
  init_httpRequest();
@@ -306338,7 +306498,7 @@ var init_transport = __esmMin((() => {
306338
306498
  init_toEndpointV1$1();
306339
306499
  }));
306340
306500
  //#endregion
306341
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/invalid-dependency/invalidFunction.js
306501
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/invalid-dependency/invalidFunction.js
306342
306502
  var invalidFunction;
306343
306503
  var init_invalidFunction = __esmMin((() => {
306344
306504
  invalidFunction = (message) => () => {
@@ -306346,13 +306506,13 @@ var init_invalidFunction = __esmMin((() => {
306346
306506
  };
306347
306507
  }));
306348
306508
  //#endregion
306349
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/invalid-dependency/invalidProvider.js
306509
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/invalid-dependency/invalidProvider.js
306350
306510
  var invalidProvider;
306351
306511
  var init_invalidProvider = __esmMin((() => {
306352
306512
  invalidProvider = (message) => () => Promise.reject(message);
306353
306513
  }));
306354
306514
  //#endregion
306355
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/circularReplacer.js
306515
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/circularReplacer.js
306356
306516
  var getCircularReplacer;
306357
306517
  var init_circularReplacer = __esmMin((() => {
306358
306518
  getCircularReplacer = () => {
@@ -306367,7 +306527,7 @@ var init_circularReplacer = __esmMin((() => {
306367
306527
  };
306368
306528
  }));
306369
306529
  //#endregion
306370
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/sleep.js
306530
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/sleep.js
306371
306531
  var sleep$1;
306372
306532
  var init_sleep = __esmMin((() => {
306373
306533
  sleep$1 = (seconds) => {
@@ -306375,7 +306535,7 @@ var init_sleep = __esmMin((() => {
306375
306535
  };
306376
306536
  }));
306377
306537
  //#endregion
306378
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/waiter.js
306538
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/waiter.js
306379
306539
  var waiterServiceDefaults, WaiterState, checkExceptions;
306380
306540
  var init_waiter = __esmMin((() => {
306381
306541
  init_circularReplacer();
@@ -306410,7 +306570,7 @@ var init_waiter = __esmMin((() => {
306410
306570
  };
306411
306571
  }));
306412
306572
  //#endregion
306413
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js
306573
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js
306414
306574
  var runPolling, checkWarn403, createMessageFromResponse, exponentialBackoffWithJitter, randomInRange;
306415
306575
  var init_poller = __esmMin((() => {
306416
306576
  init_circularReplacer();
@@ -306495,7 +306655,7 @@ var init_poller = __esmMin((() => {
306495
306655
  randomInRange = (min, max) => min + Math.random() * (max - min);
306496
306656
  }));
306497
306657
  //#endregion
306498
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/validate.js
306658
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/utils/validate.js
306499
306659
  var validateWaiterOptions;
306500
306660
  var init_validate = __esmMin((() => {
306501
306661
  validateWaiterOptions = (options) => {
@@ -306507,7 +306667,7 @@ var init_validate = __esmMin((() => {
306507
306667
  };
306508
306668
  }));
306509
306669
  //#endregion
306510
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js
306670
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js
306511
306671
  var abortTimeout, createWaiter;
306512
306672
  var init_createWaiter = __esmMin((() => {
306513
306673
  init_poller();
@@ -306551,7 +306711,7 @@ var init_createWaiter = __esmMin((() => {
306551
306711
  };
306552
306712
  }));
306553
306713
  //#endregion
306554
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js
306714
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js
306555
306715
  var Client;
306556
306716
  var init_client$2 = __esmMin((() => {
306557
306717
  init_MiddlewareStack();
@@ -306594,7 +306754,7 @@ var init_client$2 = __esmMin((() => {
306594
306754
  };
306595
306755
  }));
306596
306756
  //#endregion
306597
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/deref.js
306757
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/deref.js
306598
306758
  var deref;
306599
306759
  var init_deref = __esmMin((() => {
306600
306760
  deref = (schemaRef) => {
@@ -306603,7 +306763,7 @@ var init_deref = __esmMin((() => {
306603
306763
  };
306604
306764
  }));
306605
306765
  //#endregion
306606
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js
306766
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js
306607
306767
  var operation;
306608
306768
  var init_operation = __esmMin((() => {
306609
306769
  operation = (namespace, name, traits, input, output) => ({
@@ -306615,7 +306775,7 @@ var init_operation = __esmMin((() => {
306615
306775
  });
306616
306776
  }));
306617
306777
  //#endregion
306618
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js
306778
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js
306619
306779
  var schemaDeserializationMiddleware, findHeader$1;
306620
306780
  var init_schemaDeserializationMiddleware = __esmMin((() => {
306621
306781
  init_transport();
@@ -306673,7 +306833,7 @@ var init_schemaDeserializationMiddleware = __esmMin((() => {
306673
306833
  };
306674
306834
  }));
306675
306835
  //#endregion
306676
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js
306836
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js
306677
306837
  var schemaSerializationMiddleware;
306678
306838
  var init_schemaSerializationMiddleware = __esmMin((() => {
306679
306839
  init_transport();
@@ -306694,7 +306854,7 @@ var init_schemaSerializationMiddleware = __esmMin((() => {
306694
306854
  };
306695
306855
  }));
306696
306856
  //#endregion
306697
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js
306857
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js
306698
306858
  function getSchemaSerdePlugin(config) {
306699
306859
  return { applyToStack: (commandStack) => {
306700
306860
  commandStack.add(schemaSerializationMiddleware(config), serializerMiddlewareOption$2);
@@ -306720,7 +306880,7 @@ var init_getSchemaSerdePlugin = __esmMin((() => {
306720
306880
  };
306721
306881
  }));
306722
306882
  //#endregion
306723
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js
306883
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js
306724
306884
  var Schema;
306725
306885
  var init_Schema = __esmMin((() => {
306726
306886
  Schema = class {
@@ -306741,7 +306901,7 @@ var init_Schema = __esmMin((() => {
306741
306901
  };
306742
306902
  }));
306743
306903
  //#endregion
306744
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js
306904
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js
306745
306905
  var ListSchema, list;
306746
306906
  var init_ListSchema = __esmMin((() => {
306747
306907
  init_Schema();
@@ -306760,7 +306920,7 @@ var init_ListSchema = __esmMin((() => {
306760
306920
  });
306761
306921
  }));
306762
306922
  //#endregion
306763
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js
306923
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js
306764
306924
  var MapSchema, map$1;
306765
306925
  var init_MapSchema = __esmMin((() => {
306766
306926
  init_Schema();
@@ -306781,7 +306941,7 @@ var init_MapSchema = __esmMin((() => {
306781
306941
  });
306782
306942
  }));
306783
306943
  //#endregion
306784
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js
306944
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js
306785
306945
  var OperationSchema, op;
306786
306946
  var init_OperationSchema = __esmMin((() => {
306787
306947
  init_Schema();
@@ -306802,7 +306962,7 @@ var init_OperationSchema = __esmMin((() => {
306802
306962
  });
306803
306963
  }));
306804
306964
  //#endregion
306805
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js
306965
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js
306806
306966
  var StructureSchema, struct;
306807
306967
  var init_StructureSchema = __esmMin((() => {
306808
306968
  init_Schema();
@@ -306823,7 +306983,7 @@ var init_StructureSchema = __esmMin((() => {
306823
306983
  });
306824
306984
  }));
306825
306985
  //#endregion
306826
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js
306986
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js
306827
306987
  var ErrorSchema, error;
306828
306988
  var init_ErrorSchema = __esmMin((() => {
306829
306989
  init_Schema();
@@ -306843,7 +307003,7 @@ var init_ErrorSchema = __esmMin((() => {
306843
307003
  });
306844
307004
  }));
306845
307005
  //#endregion
306846
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js
307006
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js
306847
307007
  function translateTraits(indicator) {
306848
307008
  if (typeof indicator === "object") return indicator;
306849
307009
  indicator = indicator | 0;
@@ -306866,7 +307026,7 @@ var init_translateTraits = __esmMin((() => {
306866
307026
  traitsCache = [];
306867
307027
  }));
306868
307028
  //#endregion
306869
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js
307029
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js
306870
307030
  function member(memberSchema, memberName) {
306871
307031
  if (memberSchema instanceof NormalizedSchema) return Object.assign(memberSchema, {
306872
307032
  memberName,
@@ -307108,7 +307268,7 @@ var init_NormalizedSchema = __esmMin((() => {
307108
307268
  isStaticSchema = (sc) => Array.isArray(sc) && sc.length >= 5;
307109
307269
  }));
307110
307270
  //#endregion
307111
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js
307271
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js
307112
307272
  var SimpleSchema, sim, simAdapter;
307113
307273
  var init_SimpleSchema = __esmMin((() => {
307114
307274
  init_Schema();
@@ -307133,7 +307293,7 @@ var init_SimpleSchema = __esmMin((() => {
307133
307293
  });
307134
307294
  }));
307135
307295
  //#endregion
307136
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js
307296
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js
307137
307297
  var SCHEMA;
307138
307298
  var init_sentinels = __esmMin((() => {
307139
307299
  SCHEMA = {
@@ -307154,7 +307314,7 @@ var init_sentinels = __esmMin((() => {
307154
307314
  };
307155
307315
  }));
307156
307316
  //#endregion
307157
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js
307317
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js
307158
307318
  var TypeRegistry;
307159
307319
  var init_TypeRegistry = __esmMin((() => {
307160
307320
  TypeRegistry = class TypeRegistry {
@@ -307227,7 +307387,7 @@ var init_TypeRegistry = __esmMin((() => {
307227
307387
  };
307228
307388
  }));
307229
307389
  //#endregion
307230
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/schema/index.js
307390
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/schema/index.js
307231
307391
  var schema_exports = /* @__PURE__ */ __exportAll({
307232
307392
  ErrorSchema: () => ErrorSchema,
307233
307393
  ListSchema: () => ListSchema,
@@ -307274,7 +307434,7 @@ var init_schema = __esmMin((() => {
307274
307434
  init_TypeRegistry();
307275
307435
  }));
307276
307436
  //#endregion
307277
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/schemaLogFilter.js
307437
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/schemaLogFilter.js
307278
307438
  function schemaLogFilter(schema, data) {
307279
307439
  if (data == null) return data;
307280
307440
  const ns = NormalizedSchema.of(schema);
@@ -307297,7 +307457,7 @@ var init_schemaLogFilter = __esmMin((() => {
307297
307457
  SENSITIVE_STRING$1 = "***SensitiveInformation***";
307298
307458
  }));
307299
307459
  //#endregion
307300
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js
307460
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js
307301
307461
  var import_dist_cjs$22, Command, ClassBuilder;
307302
307462
  var init_command = __esmMin((() => {
307303
307463
  import_dist_cjs$22 = require_dist_cjs$21();
@@ -307429,13 +307589,13 @@ var init_command = __esmMin((() => {
307429
307589
  };
307430
307590
  }));
307431
307591
  //#endregion
307432
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/constants.js
307592
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/constants.js
307433
307593
  var SENSITIVE_STRING;
307434
307594
  var init_constants$6 = __esmMin((() => {
307435
307595
  SENSITIVE_STRING = "***SensitiveInformation***";
307436
307596
  }));
307437
307597
  //#endregion
307438
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/create-aggregated-client.js
307598
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/create-aggregated-client.js
307439
307599
  var createAggregatedClient;
307440
307600
  var init_create_aggregated_client = __esmMin((() => {
307441
307601
  createAggregatedClient = (commands, Client, options) => {
@@ -307469,7 +307629,7 @@ var init_create_aggregated_client = __esmMin((() => {
307469
307629
  };
307470
307630
  }));
307471
307631
  //#endregion
307472
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/exceptions.js
307632
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/exceptions.js
307473
307633
  var ServiceException, decorateServiceException;
307474
307634
  var init_exceptions = __esmMin((() => {
307475
307635
  ServiceException = class ServiceException extends Error {
@@ -307510,7 +307670,7 @@ var init_exceptions = __esmMin((() => {
307510
307670
  };
307511
307671
  }));
307512
307672
  //#endregion
307513
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/default-error-handler.js
307673
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/default-error-handler.js
307514
307674
  var throwDefaultError, withBaseException, deserializeMetadata;
307515
307675
  var init_default_error_handler = __esmMin((() => {
307516
307676
  init_exceptions();
@@ -307541,7 +307701,7 @@ var init_default_error_handler = __esmMin((() => {
307541
307701
  });
307542
307702
  }));
307543
307703
  //#endregion
307544
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/defaults-mode.js
307704
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/defaults-mode.js
307545
307705
  var loadConfigsForDefaultMode;
307546
307706
  var init_defaults_mode = __esmMin((() => {
307547
307707
  loadConfigsForDefaultMode = (mode) => {
@@ -307567,7 +307727,7 @@ var init_defaults_mode = __esmMin((() => {
307567
307727
  };
307568
307728
  }));
307569
307729
  //#endregion
307570
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.js
307730
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.js
307571
307731
  var warningEmitted, emitWarningIfUnsupportedVersion;
307572
307732
  var init_emitWarningIfUnsupportedVersion = __esmMin((() => {
307573
307733
  warningEmitted = false;
@@ -307576,7 +307736,7 @@ var init_emitWarningIfUnsupportedVersion = __esmMin((() => {
307576
307736
  };
307577
307737
  }));
307578
307738
  //#endregion
307579
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js
307739
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js
307580
307740
  var import_dist_cjs$21, knownAlgorithms, getChecksumConfiguration, resolveChecksumRuntimeConfig;
307581
307741
  var init_checksum$1 = __esmMin((() => {
307582
307742
  import_dist_cjs$21 = require_dist_cjs$21();
@@ -307619,7 +307779,7 @@ var init_checksum$1 = __esmMin((() => {
307619
307779
  };
307620
307780
  }));
307621
307781
  //#endregion
307622
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/retry.js
307782
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/retry.js
307623
307783
  var getRetryConfiguration, resolveRetryRuntimeConfig;
307624
307784
  var init_retry$1 = __esmMin((() => {
307625
307785
  getRetryConfiguration = (runtimeConfig) => {
@@ -307639,7 +307799,7 @@ var init_retry$1 = __esmMin((() => {
307639
307799
  };
307640
307800
  }));
307641
307801
  //#endregion
307642
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js
307802
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js
307643
307803
  var getDefaultExtensionConfiguration, getDefaultClientConfiguration, resolveDefaultRuntimeConfig;
307644
307804
  var init_defaultExtensionConfiguration = __esmMin((() => {
307645
307805
  init_checksum$1();
@@ -307653,13 +307813,13 @@ var init_defaultExtensionConfiguration = __esmMin((() => {
307653
307813
  };
307654
307814
  }));
307655
307815
  //#endregion
307656
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-array-if-single-item.js
307816
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-array-if-single-item.js
307657
307817
  var getArrayIfSingleItem;
307658
307818
  var init_get_array_if_single_item = __esmMin((() => {
307659
307819
  getArrayIfSingleItem = (mayBeArray) => Array.isArray(mayBeArray) ? mayBeArray : [mayBeArray];
307660
307820
  }));
307661
307821
  //#endregion
307662
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js
307822
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js
307663
307823
  var getValueFromTextNode;
307664
307824
  var init_get_value_from_text_node = __esmMin((() => {
307665
307825
  getValueFromTextNode = (obj) => {
@@ -307670,7 +307830,7 @@ var init_get_value_from_text_node = __esmMin((() => {
307670
307830
  };
307671
307831
  }));
307672
307832
  //#endregion
307673
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/is-serializable-header-value.js
307833
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/is-serializable-header-value.js
307674
307834
  var isSerializableHeaderValue;
307675
307835
  var init_is_serializable_header_value = __esmMin((() => {
307676
307836
  isSerializableHeaderValue = (value) => {
@@ -307678,7 +307838,7 @@ var init_is_serializable_header_value = __esmMin((() => {
307678
307838
  };
307679
307839
  }));
307680
307840
  //#endregion
307681
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/NoOpLogger.js
307841
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/NoOpLogger.js
307682
307842
  var NoOpLogger;
307683
307843
  var init_NoOpLogger = __esmMin((() => {
307684
307844
  NoOpLogger = class {
@@ -307690,7 +307850,7 @@ var init_NoOpLogger = __esmMin((() => {
307690
307850
  };
307691
307851
  }));
307692
307852
  //#endregion
307693
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/object-mapping.js
307853
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/object-mapping.js
307694
307854
  function map(arg0, arg1, arg2) {
307695
307855
  let target;
307696
307856
  let filter;
@@ -307760,7 +307920,7 @@ var init_object_mapping = __esmMin((() => {
307760
307920
  pass = (_) => _;
307761
307921
  }));
307762
307922
  //#endregion
307763
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/ser-utils.js
307923
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/ser-utils.js
307764
307924
  var serializeFloat, serializeDateTime;
307765
307925
  var init_ser_utils = __esmMin((() => {
307766
307926
  serializeFloat = (value) => {
@@ -307774,7 +307934,7 @@ var init_ser_utils = __esmMin((() => {
307774
307934
  serializeDateTime = (date) => date.toISOString().replace(".000Z", "Z");
307775
307935
  }));
307776
307936
  //#endregion
307777
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/serde-json.js
307937
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/serde-json.js
307778
307938
  var _json;
307779
307939
  var init_serde_json = __esmMin((() => {
307780
307940
  _json = (obj) => {
@@ -307792,7 +307952,7 @@ var init_serde_json = __esmMin((() => {
307792
307952
  };
307793
307953
  }));
307794
307954
  //#endregion
307795
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js
307955
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js
307796
307956
  function makeBuilder(common, service, name, ep) {
307797
307957
  return function makeCommand(added, plugins, op, $, smithyContext = {}) {
307798
307958
  const epMerged = Object.assign({}, common, added);
@@ -307807,7 +307967,7 @@ var init_client_command_builder = __esmMin((() => {
307807
307967
  init_command();
307808
307968
  }));
307809
307969
  //#endregion
307810
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/client/index.js
307970
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/client/index.js
307811
307971
  var client_exports$1 = /* @__PURE__ */ __exportAll({
307812
307972
  AlgorithmId: () => import_dist_cjs$21.AlgorithmId,
307813
307973
  Client: () => Client,
@@ -307878,13 +308038,13 @@ var init_client$1 = __esmMin((() => {
307878
308038
  init_client_command_builder();
307879
308039
  }));
307880
308040
  //#endregion
307881
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/is-array-buffer/is-array-buffer.js
308041
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/is-array-buffer/is-array-buffer.js
307882
308042
  var isArrayBuffer;
307883
308043
  var init_is_array_buffer = __esmMin((() => {
307884
308044
  isArrayBuffer = (arg) => typeof ArrayBuffer === "function" && arg instanceof ArrayBuffer || Object.prototype.toString.call(arg) === "[object ArrayBuffer]";
307885
308045
  }));
307886
308046
  //#endregion
307887
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js
308047
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js
307888
308048
  var fromArrayBuffer, fromString;
307889
308049
  var init_buffer_from = __esmMin((() => {
307890
308050
  init_is_array_buffer();
@@ -307898,7 +308058,7 @@ var init_buffer_from = __esmMin((() => {
307898
308058
  };
307899
308059
  }));
307900
308060
  //#endregion
307901
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js
308061
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js
307902
308062
  var BASE64_REGEX, fromBase64;
307903
308063
  var init_fromBase64 = __esmMin((() => {
307904
308064
  init_buffer_from();
@@ -307911,7 +308071,7 @@ var init_fromBase64 = __esmMin((() => {
307911
308071
  };
307912
308072
  }));
307913
308073
  //#endregion
307914
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js
308074
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js
307915
308075
  var fromUtf8$1;
307916
308076
  var init_fromUtf8 = __esmMin((() => {
307917
308077
  init_buffer_from();
@@ -307921,7 +308081,7 @@ var init_fromUtf8 = __esmMin((() => {
307921
308081
  };
307922
308082
  }));
307923
308083
  //#endregion
307924
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js
308084
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js
307925
308085
  var toBase64$1;
307926
308086
  var init_toBase64 = __esmMin((() => {
307927
308087
  init_buffer_from();
@@ -307935,7 +308095,7 @@ var init_toBase64 = __esmMin((() => {
307935
308095
  };
307936
308096
  }));
307937
308097
  //#endregion
307938
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js
308098
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js
307939
308099
  function bindUint8ArrayBlobAdapter(toUtf8, fromUtf8, toBase64, fromBase64) {
307940
308100
  return class Uint8ArrayBlobAdapter extends Uint8Array {
307941
308101
  static fromString(source, encoding = "utf-8") {
@@ -307957,7 +308117,7 @@ function bindUint8ArrayBlobAdapter(toUtf8, fromUtf8, toBase64, fromBase64) {
307957
308117
  }
307958
308118
  var init_Uint8ArrayBlobAdapter = __esmMin((() => {}));
307959
308119
  //#endregion
307960
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js
308120
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js
307961
308121
  var toUtf8$1;
307962
308122
  var init_toUtf8 = __esmMin((() => {
307963
308123
  init_buffer_from();
@@ -307968,7 +308128,7 @@ var init_toUtf8 = __esmMin((() => {
307968
308128
  };
307969
308129
  }));
307970
308130
  //#endregion
307971
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js
308131
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js
307972
308132
  function bindV4(getRandomValues) {
307973
308133
  if (typeof crypto !== "undefined" && typeof crypto.randomUUID === "function") return () => crypto.randomUUID();
307974
308134
  return () => {
@@ -307984,13 +308144,13 @@ var init_v4 = __esmMin((() => {
307984
308144
  decimalToHex = Array.from({ length: 256 }, (_, i) => i.toString(16).padStart(2, "0"));
307985
308145
  }));
307986
308146
  //#endregion
307987
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js
308147
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js
307988
308148
  var copyDocumentWithTransform;
307989
308149
  var init_copyDocumentWithTransform = __esmMin((() => {
307990
308150
  copyDocumentWithTransform = (source, _schemaRef, _transform = (_) => _) => source;
307991
308151
  }));
307992
308152
  //#endregion
307993
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js
308153
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js
307994
308154
  var parseBoolean$1, expectBoolean, expectNumber, MAX_FLOAT, expectFloat32, expectLong, expectInt, expectInt32, expectShort, expectByte, expectSizedInt, castInt, expectNonNull, expectObject, expectString, expectUnion, strictParseDouble, strictParseFloat, strictParseFloat32, NUMBER_REGEX, parseNumber$1, limitedParseDouble, handleFloat, limitedParseFloat, limitedParseFloat32, parseFloatString, strictParseLong, strictParseInt, strictParseInt32, strictParseShort, strictParseByte, stackTraceWarning, logger;
307995
308155
  var init_parse_utils = __esmMin((() => {
307996
308156
  parseBoolean$1 = (value) => {
@@ -308147,7 +308307,7 @@ var init_parse_utils = __esmMin((() => {
308147
308307
  logger = { warn: console.warn };
308148
308308
  }));
308149
308309
  //#endregion
308150
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js
308310
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js
308151
308311
  function dateToUtcString(date) {
308152
308312
  const year = date.getUTCFullYear();
308153
308313
  const month = date.getUTCMonth();
@@ -308342,7 +308502,7 @@ var init_date_utils = __esmMin((() => {
308342
308502
  };
308343
308503
  }));
308344
308504
  //#endregion
308345
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js
308505
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js
308346
308506
  var LazyJsonString;
308347
308507
  var init_lazy_json = __esmMin((() => {
308348
308508
  LazyJsonString = function LazyJsonString(val) {
@@ -308366,14 +308526,14 @@ var init_lazy_json = __esmMin((() => {
308366
308526
  LazyJsonString.fromObject = LazyJsonString.from;
308367
308527
  }));
308368
308528
  //#endregion
308369
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js
308529
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js
308370
308530
  function quoteHeader(part) {
308371
308531
  if (part.includes(",") || part.includes("\"")) part = `"${part.replace(/"/g, "\\\"")}"`;
308372
308532
  return part;
308373
308533
  }
308374
308534
  var init_quote_header = __esmMin((() => {}));
308375
308535
  //#endregion
308376
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js
308536
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js
308377
308537
  function range(v, min, max) {
308378
308538
  const _v = Number(v);
308379
308539
  if (_v < min || _v > max) throw new Error(`Value ${_v} out of range [${min}, ${max}]`);
@@ -308469,7 +308629,7 @@ var init_schema_date_utils = __esmMin((() => {
308469
308629
  };
308470
308630
  }));
308471
308631
  //#endregion
308472
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js
308632
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js
308473
308633
  function splitEvery(value, delimiter, numDelimiters) {
308474
308634
  if (numDelimiters <= 0 || !Number.isInteger(numDelimiters)) throw new Error("Invalid number of delimiters (" + numDelimiters + ") for splitEvery.");
308475
308635
  const segments = value.split(delimiter);
@@ -308489,7 +308649,7 @@ function splitEvery(value, delimiter, numDelimiters) {
308489
308649
  }
308490
308650
  var init_split_every = __esmMin((() => {}));
308491
308651
  //#endregion
308492
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js
308652
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js
308493
308653
  var splitHeader;
308494
308654
  var init_split_header = __esmMin((() => {
308495
308655
  splitHeader = (value) => {
@@ -308525,7 +308685,7 @@ var init_split_header = __esmMin((() => {
308525
308685
  };
308526
308686
  }));
308527
308687
  //#endregion
308528
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js
308688
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js
308529
308689
  function nv(input) {
308530
308690
  return new NumericValue(String(input), "bigDecimal");
308531
308691
  }
@@ -308551,7 +308711,7 @@ var init_NumericValue = __esmMin((() => {
308551
308711
  };
308552
308712
  }));
308553
308713
  //#endregion
308554
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js
308714
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js
308555
308715
  function fromHex(encoded) {
308556
308716
  if (encoded.length % 2 !== 0) throw new Error("Hex encoded strings must have an even number length");
308557
308717
  const out = new Uint8Array(encoded.length / 2);
@@ -308579,7 +308739,7 @@ var init_hex_encoding = __esmMin((() => {
308579
308739
  }
308580
308740
  }));
308581
308741
  //#endregion
308582
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js
308742
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js
308583
308743
  var calculateBodyLength;
308584
308744
  var init_calculateBodyLength = __esmMin((() => {
308585
308745
  calculateBodyLength = (body) => {
@@ -308596,7 +308756,7 @@ var init_calculateBodyLength = __esmMin((() => {
308596
308756
  };
308597
308757
  }));
308598
308758
  //#endregion
308599
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.js
308759
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.js
308600
308760
  var toUint8Array$1;
308601
308761
  var init_toUint8Array = __esmMin((() => {
308602
308762
  init_fromUtf8();
@@ -308608,7 +308768,7 @@ var init_toUint8Array = __esmMin((() => {
308608
308768
  };
308609
308769
  }));
308610
308770
  //#endregion
308611
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/concatBytes.js
308771
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/concatBytes.js
308612
308772
  function concatBytes(arrays, length) {
308613
308773
  if (length === void 0) {
308614
308774
  length = 0;
@@ -308624,7 +308784,7 @@ function concatBytes(arrays, length) {
308624
308784
  }
308625
308785
  var init_concatBytes = __esmMin((() => {}));
308626
308786
  //#endregion
308627
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js
308787
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js
308628
308788
  var deserializerMiddleware, findHeader;
308629
308789
  var init_deserializerMiddleware = __esmMin((() => {
308630
308790
  init_transport();
@@ -308676,7 +308836,7 @@ var init_deserializerMiddleware = __esmMin((() => {
308676
308836
  };
308677
308837
  }));
308678
308838
  //#endregion
308679
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/property-provider/ProviderError.js
308839
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/property-provider/ProviderError.js
308680
308840
  var ProviderError;
308681
308841
  var init_ProviderError = __esmMin((() => {
308682
308842
  ProviderError = class ProviderError extends Error {
@@ -308703,7 +308863,7 @@ var init_ProviderError = __esmMin((() => {
308703
308863
  };
308704
308864
  }));
308705
308865
  //#endregion
308706
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/property-provider/CredentialsProviderError.js
308866
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/property-provider/CredentialsProviderError.js
308707
308867
  var CredentialsProviderError;
308708
308868
  var init_CredentialsProviderError = __esmMin((() => {
308709
308869
  init_ProviderError();
@@ -308716,7 +308876,7 @@ var init_CredentialsProviderError = __esmMin((() => {
308716
308876
  };
308717
308877
  }));
308718
308878
  //#endregion
308719
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/property-provider/TokenProviderError.js
308879
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/property-provider/TokenProviderError.js
308720
308880
  var TokenProviderError;
308721
308881
  var init_TokenProviderError = __esmMin((() => {
308722
308882
  init_ProviderError();
@@ -308729,7 +308889,7 @@ var init_TokenProviderError = __esmMin((() => {
308729
308889
  };
308730
308890
  }));
308731
308891
  //#endregion
308732
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/property-provider/chain.js
308892
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/property-provider/chain.js
308733
308893
  var chain;
308734
308894
  var init_chain = __esmMin((() => {
308735
308895
  init_ProviderError();
@@ -308747,13 +308907,13 @@ var init_chain = __esmMin((() => {
308747
308907
  };
308748
308908
  }));
308749
308909
  //#endregion
308750
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js
308910
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js
308751
308911
  var fromValue;
308752
308912
  var init_fromValue = __esmMin((() => {
308753
308913
  fromValue = (staticValue) => () => Promise.resolve(staticValue);
308754
308914
  }));
308755
308915
  //#endregion
308756
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/property-provider/memoize.js
308916
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/property-provider/memoize.js
308757
308917
  var memoize;
308758
308918
  var init_memoize = __esmMin((() => {
308759
308919
  memoize = (provider, isExpired, requiresRefresh) => {
@@ -308792,7 +308952,7 @@ var init_memoize = __esmMin((() => {
308792
308952
  };
308793
308953
  }));
308794
308954
  //#endregion
308795
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/booleanSelector.js
308955
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/booleanSelector.js
308796
308956
  var booleanSelector;
308797
308957
  var init_booleanSelector = __esmMin((() => {
308798
308958
  booleanSelector = (obj, key, type) => {
@@ -308803,7 +308963,7 @@ var init_booleanSelector = __esmMin((() => {
308803
308963
  };
308804
308964
  }));
308805
308965
  //#endregion
308806
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/numberSelector.js
308966
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/numberSelector.js
308807
308967
  var numberSelector;
308808
308968
  var init_numberSelector = __esmMin((() => {
308809
308969
  numberSelector = (obj, key, type) => {
@@ -308814,7 +308974,7 @@ var init_numberSelector = __esmMin((() => {
308814
308974
  };
308815
308975
  }));
308816
308976
  //#endregion
308817
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/types.js
308977
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/util-config-provider/types.js
308818
308978
  var SelectorType;
308819
308979
  var init_types$2 = __esmMin((() => {
308820
308980
  (function(SelectorType) {
@@ -308823,7 +308983,7 @@ var init_types$2 = __esmMin((() => {
308823
308983
  })(SelectorType || (SelectorType = {}));
308824
308984
  }));
308825
308985
  //#endregion
308826
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js
308986
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js
308827
308987
  var homeDirCache, getHomeDirCacheKey, getHomeDir;
308828
308988
  var init_getHomeDir = __esmMin((() => {
308829
308989
  homeDirCache = {};
@@ -308842,7 +309002,7 @@ var init_getHomeDir = __esmMin((() => {
308842
309002
  };
308843
309003
  }));
308844
309004
  //#endregion
308845
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getProfileName.js
309005
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getProfileName.js
308846
309006
  var ENV_PROFILE, DEFAULT_PROFILE, getProfileName;
308847
309007
  var init_getProfileName = __esmMin((() => {
308848
309008
  ENV_PROFILE = "AWS_PROFILE";
@@ -308850,7 +309010,7 @@ var init_getProfileName = __esmMin((() => {
308850
309010
  getProfileName = (init) => init.profile || process.env["AWS_PROFILE"] || "default";
308851
309011
  }));
308852
309012
  //#endregion
308853
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js
309013
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js
308854
309014
  var getSSOTokenFilepath;
308855
309015
  var init_getSSOTokenFilepath = __esmMin((() => {
308856
309016
  init_getHomeDir();
@@ -308860,7 +309020,7 @@ var init_getSSOTokenFilepath = __esmMin((() => {
308860
309020
  };
308861
309021
  }));
308862
309022
  //#endregion
308863
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js
309023
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js
308864
309024
  var tokenIntercept, getSSOTokenFromFile;
308865
309025
  var init_getSSOTokenFromFile = __esmMin((() => {
308866
309026
  init_getSSOTokenFilepath();
@@ -308872,10 +309032,10 @@ var init_getSSOTokenFromFile = __esmMin((() => {
308872
309032
  };
308873
309033
  }));
308874
309034
  //#endregion
308875
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/constants.js
309035
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/constants.js
308876
309036
  var init_constants$5 = __esmMin((() => {}));
308877
309037
  //#endregion
308878
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigData.js
309038
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigData.js
308879
309039
  var import_dist_cjs$20, getConfigData;
308880
309040
  var init_getConfigData = __esmMin((() => {
308881
309041
  import_dist_cjs$20 = require_dist_cjs$21();
@@ -308900,7 +309060,7 @@ var init_getCredentialsFilepath = __esmMin((() => {
308900
309060
  getCredentialsFilepath = () => process.env["AWS_SHARED_CREDENTIALS_FILE"] || join(getHomeDir(), ".aws", "credentials");
308901
309061
  }));
308902
309062
  //#endregion
308903
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/parseIni.js
309063
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/parseIni.js
308904
309064
  var import_dist_cjs$19, prefixKeyRegex, profileNameBlockList, parseIni;
308905
309065
  var init_parseIni = __esmMin((() => {
308906
309066
  import_dist_cjs$19 = require_dist_cjs$21();
@@ -308941,7 +309101,7 @@ var init_parseIni = __esmMin((() => {
308941
309101
  };
308942
309102
  }));
308943
309103
  //#endregion
308944
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/readFile.js
309104
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/readFile.js
308945
309105
  var filePromises, fileIntercept, readFile$1;
308946
309106
  var init_readFile = __esmMin((() => {
308947
309107
  filePromises = {};
@@ -308953,7 +309113,7 @@ var init_readFile = __esmMin((() => {
308953
309113
  };
308954
309114
  }));
308955
309115
  //#endregion
308956
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js
309116
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js
308957
309117
  var swallowError$1, loadSharedConfigFiles;
308958
309118
  var init_loadSharedConfigFiles = __esmMin((() => {
308959
309119
  init_getConfigData();
@@ -308980,7 +309140,7 @@ var init_loadSharedConfigFiles = __esmMin((() => {
308980
309140
  };
308981
309141
  }));
308982
309142
  //#endregion
308983
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSsoSessionData.js
309143
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSsoSessionData.js
308984
309144
  var import_dist_cjs$18, getSsoSessionData;
308985
309145
  var init_getSsoSessionData = __esmMin((() => {
308986
309146
  import_dist_cjs$18 = require_dist_cjs$21();
@@ -308991,7 +309151,7 @@ var init_getSsoSessionData = __esmMin((() => {
308991
309151
  }), {});
308992
309152
  }));
308993
309153
  //#endregion
308994
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSsoSessionData.js
309154
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSsoSessionData.js
308995
309155
  var swallowError, loadSsoSessionData;
308996
309156
  var init_loadSsoSessionData = __esmMin((() => {
308997
309157
  init_getConfigFilepath();
@@ -309002,7 +309162,7 @@ var init_loadSsoSessionData = __esmMin((() => {
309002
309162
  loadSsoSessionData = async (init = {}) => readFile$1(init.configFilepath ?? getConfigFilepath()).then(parseIni).then(getSsoSessionData).catch(swallowError);
309003
309163
  }));
309004
309164
  //#endregion
309005
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/mergeConfigFiles.js
309165
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/mergeConfigFiles.js
309006
309166
  var mergeConfigFiles;
309007
309167
  var init_mergeConfigFiles = __esmMin((() => {
309008
309168
  mergeConfigFiles = (...files) => {
@@ -309013,7 +309173,7 @@ var init_mergeConfigFiles = __esmMin((() => {
309013
309173
  };
309014
309174
  }));
309015
309175
  //#endregion
309016
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/parseKnownFiles.js
309176
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/parseKnownFiles.js
309017
309177
  var parseKnownFiles;
309018
309178
  var init_parseKnownFiles = __esmMin((() => {
309019
309179
  init_loadSharedConfigFiles();
@@ -309024,7 +309184,7 @@ var init_parseKnownFiles = __esmMin((() => {
309024
309184
  };
309025
309185
  }));
309026
309186
  //#endregion
309027
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/externalDataInterceptor.js
309187
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/externalDataInterceptor.js
309028
309188
  var externalDataInterceptor;
309029
309189
  var init_externalDataInterceptor = __esmMin((() => {
309030
309190
  init_getSSOTokenFromFile();
@@ -309045,7 +309205,7 @@ var init_externalDataInterceptor = __esmMin((() => {
309045
309205
  };
309046
309206
  }));
309047
309207
  //#endregion
309048
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/getSelectorName.js
309208
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/getSelectorName.js
309049
309209
  function getSelectorName(functionString) {
309050
309210
  try {
309051
309211
  const constants = new Set(Array.from(functionString.match(/([A-Z_]){3,}/g) ?? []));
@@ -309059,7 +309219,7 @@ function getSelectorName(functionString) {
309059
309219
  }
309060
309220
  var init_getSelectorName = __esmMin((() => {}));
309061
309221
  //#endregion
309062
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js
309222
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js
309063
309223
  var fromEnv;
309064
309224
  var init_fromEnv = __esmMin((() => {
309065
309225
  init_CredentialsProviderError();
@@ -309075,7 +309235,7 @@ var init_fromEnv = __esmMin((() => {
309075
309235
  };
309076
309236
  }));
309077
309237
  //#endregion
309078
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js
309238
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js
309079
309239
  var fromSharedConfigFiles;
309080
309240
  var init_fromSharedConfigFiles = __esmMin((() => {
309081
309241
  init_CredentialsProviderError();
@@ -309104,7 +309264,7 @@ var init_fromSharedConfigFiles = __esmMin((() => {
309104
309264
  };
309105
309265
  }));
309106
309266
  //#endregion
309107
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js
309267
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js
309108
309268
  var isFunction, fromStatic;
309109
309269
  var init_fromStatic = __esmMin((() => {
309110
309270
  init_fromValue();
@@ -309112,7 +309272,7 @@ var init_fromStatic = __esmMin((() => {
309112
309272
  fromStatic = (defaultValue) => isFunction(defaultValue) ? async () => await defaultValue() : fromValue(defaultValue);
309113
309273
  }));
309114
309274
  //#endregion
309115
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js
309275
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js
309116
309276
  var loadConfig;
309117
309277
  var init_configLoader = __esmMin((() => {
309118
309278
  init_chain();
@@ -309129,7 +309289,7 @@ var init_configLoader = __esmMin((() => {
309129
309289
  };
309130
309290
  }));
309131
309291
  //#endregion
309132
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js
309292
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js
309133
309293
  var ENV_USE_DUALSTACK_ENDPOINT, CONFIG_USE_DUALSTACK_ENDPOINT, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, nodeDualstackConfigSelectors;
309134
309294
  var init_NodeUseDualstackEndpointConfigOptions = __esmMin((() => {
309135
309295
  init_booleanSelector();
@@ -309148,7 +309308,7 @@ var init_NodeUseDualstackEndpointConfigOptions = __esmMin((() => {
309148
309308
  };
309149
309309
  }));
309150
309310
  //#endregion
309151
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js
309311
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js
309152
309312
  var ENV_USE_FIPS_ENDPOINT, CONFIG_USE_FIPS_ENDPOINT, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, nodeFipsConfigSelectors;
309153
309313
  var init_NodeUseFipsEndpointConfigOptions = __esmMin((() => {
309154
309314
  init_booleanSelector();
@@ -309167,7 +309327,7 @@ var init_NodeUseFipsEndpointConfigOptions = __esmMin((() => {
309167
309327
  };
309168
309328
  }));
309169
309329
  //#endregion
309170
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js
309330
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js
309171
309331
  var resolveCustomEndpointsConfig;
309172
309332
  var init_resolveCustomEndpointsConfig = __esmMin((() => {
309173
309333
  init_client$1();
@@ -309182,7 +309342,7 @@ var init_resolveCustomEndpointsConfig = __esmMin((() => {
309182
309342
  };
309183
309343
  }));
309184
309344
  //#endregion
309185
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/utils/getEndpointFromRegion.js
309345
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/utils/getEndpointFromRegion.js
309186
309346
  var getEndpointFromRegion;
309187
309347
  var init_getEndpointFromRegion = __esmMin((() => {
309188
309348
  getEndpointFromRegion = async (input) => {
@@ -309200,7 +309360,7 @@ var init_getEndpointFromRegion = __esmMin((() => {
309200
309360
  };
309201
309361
  }));
309202
309362
  //#endregion
309203
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js
309363
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js
309204
309364
  var resolveEndpointsConfig;
309205
309365
  var init_resolveEndpointsConfig = __esmMin((() => {
309206
309366
  init_client$1();
@@ -309232,7 +309392,7 @@ var init_constants$4 = __esmMin((() => {
309232
309392
  X_AWS_EC2_METADATA_TOKEN_TTL = "x-aws-ec2-metadata-token-ttl-seconds";
309233
309393
  }));
309234
309394
  //#endregion
309235
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js
309395
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js
309236
309396
  var TIMEOUT_MS, NEG_CACHE_TTL_MS, negativeCacheUntil, getInstanceMetadataRegion, cacheNegativeAndReturnUndefined, resolveImdsEndpoint, imdsRequest;
309237
309397
  var init_getInstanceMetadataRegion = __esmMin((() => {
309238
309398
  init_constants$4();
@@ -309314,7 +309474,7 @@ var init_getInstanceMetadataRegion = __esmMin((() => {
309314
309474
  };
309315
309475
  }));
309316
309476
  //#endregion
309317
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js
309477
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js
309318
309478
  var REGION_ENV_NAME, REGION_INI_NAME, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS;
309319
309479
  var init_config$2 = __esmMin((() => {
309320
309480
  init_getInstanceMetadataRegion();
@@ -309332,7 +309492,7 @@ var init_config$2 = __esmMin((() => {
309332
309492
  NODE_REGION_CONFIG_FILE_OPTIONS = { preferredFile: "credentials" };
309333
309493
  }));
309334
309494
  //#endregion
309335
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js
309495
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js
309336
309496
  var validRegions, checkRegion;
309337
309497
  var init_checkRegion = __esmMin((() => {
309338
309498
  init_transport();
@@ -309344,20 +309504,20 @@ var init_checkRegion = __esmMin((() => {
309344
309504
  };
309345
309505
  }));
309346
309506
  //#endregion
309347
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/isFipsRegion.js
309507
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/isFipsRegion.js
309348
309508
  var isFipsRegion;
309349
309509
  var init_isFipsRegion = __esmMin((() => {
309350
309510
  isFipsRegion = (region) => typeof region === "string" && (region.startsWith("fips-") || region.endsWith("-fips"));
309351
309511
  }));
309352
309512
  //#endregion
309353
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getRealRegion.js
309513
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getRealRegion.js
309354
309514
  var getRealRegion;
309355
309515
  var init_getRealRegion = __esmMin((() => {
309356
309516
  init_isFipsRegion();
309357
309517
  getRealRegion = (region) => isFipsRegion(region) ? ["fips-aws-global", "aws-fips"].includes(region) ? "us-east-1" : region.replace(/fips-(dkr-|prod-)?|-fips/, "") : region;
309358
309518
  }));
309359
309519
  //#endregion
309360
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/resolveRegionConfig.js
309520
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/resolveRegionConfig.js
309361
309521
  var resolveRegionConfig;
309362
309522
  var init_resolveRegionConfig = __esmMin((() => {
309363
309523
  init_checkRegion();
@@ -309380,25 +309540,25 @@ var init_resolveRegionConfig = __esmMin((() => {
309380
309540
  };
309381
309541
  }));
309382
309542
  //#endregion
309383
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getHostnameFromVariants.js
309543
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getHostnameFromVariants.js
309384
309544
  var getHostnameFromVariants;
309385
309545
  var init_getHostnameFromVariants = __esmMin((() => {
309386
309546
  getHostnameFromVariants = (variants = [], { useFipsEndpoint, useDualstackEndpoint }) => variants.find(({ tags }) => useFipsEndpoint === tags.includes("fips") && useDualstackEndpoint === tags.includes("dualstack"))?.hostname;
309387
309547
  }));
309388
309548
  //#endregion
309389
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedHostname.js
309549
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedHostname.js
309390
309550
  var getResolvedHostname;
309391
309551
  var init_getResolvedHostname = __esmMin((() => {
309392
309552
  getResolvedHostname = (resolvedRegion, { regionHostname, partitionHostname }) => regionHostname ? regionHostname : partitionHostname ? partitionHostname.replace("{region}", resolvedRegion) : void 0;
309393
309553
  }));
309394
309554
  //#endregion
309395
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedPartition.js
309555
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedPartition.js
309396
309556
  var getResolvedPartition;
309397
309557
  var init_getResolvedPartition = __esmMin((() => {
309398
309558
  getResolvedPartition = (region, { partitionHash }) => Object.keys(partitionHash || {}).find((key) => partitionHash[key].regions.includes(region)) ?? "aws";
309399
309559
  }));
309400
309560
  //#endregion
309401
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedSigningRegion.js
309561
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getResolvedSigningRegion.js
309402
309562
  var getResolvedSigningRegion;
309403
309563
  var init_getResolvedSigningRegion = __esmMin((() => {
309404
309564
  getResolvedSigningRegion = (hostname, { signingRegion, regionRegex, useFipsEndpoint }) => {
@@ -309411,7 +309571,7 @@ var init_getResolvedSigningRegion = __esmMin((() => {
309411
309571
  };
309412
309572
  }));
309413
309573
  //#endregion
309414
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getRegionInfo.js
309574
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionInfo/getRegionInfo.js
309415
309575
  var getRegionInfo;
309416
309576
  var init_getRegionInfo = __esmMin((() => {
309417
309577
  init_getHostnameFromVariants();
@@ -309445,7 +309605,7 @@ var init_getRegionInfo = __esmMin((() => {
309445
309605
  };
309446
309606
  }));
309447
309607
  //#endregion
309448
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/defaultsModeConfig.js
309608
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/defaultsModeConfig.js
309449
309609
  var AWS_DEFAULTS_MODE_ENV, AWS_DEFAULTS_MODE_CONFIG, NODE_DEFAULTS_MODE_CONFIG_OPTIONS;
309450
309610
  var init_defaultsModeConfig = __esmMin((() => {
309451
309611
  AWS_DEFAULTS_MODE_ENV = "AWS_DEFAULTS_MODE";
@@ -309461,7 +309621,7 @@ var init_defaultsModeConfig = __esmMin((() => {
309461
309621
  };
309462
309622
  }));
309463
309623
  //#endregion
309464
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js
309624
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js
309465
309625
  var resolveDefaultsModeConfig, resolveNodeDefaultsModeAuto, inferPhysicalRegion;
309466
309626
  var init_resolveDefaultsModeConfig = __esmMin((() => {
309467
309627
  init_config$2();
@@ -309499,7 +309659,7 @@ var init_resolveDefaultsModeConfig = __esmMin((() => {
309499
309659
  };
309500
309660
  }));
309501
309661
  //#endregion
309502
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/config/index.js
309662
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/config/index.js
309503
309663
  var config_exports = /* @__PURE__ */ __exportAll({
309504
309664
  CONFIG_PREFIX_SEPARATOR: () => ".",
309505
309665
  CONFIG_USE_DUALSTACK_ENDPOINT: () => CONFIG_USE_DUALSTACK_ENDPOINT,
@@ -309576,7 +309736,7 @@ var init_config$1 = __esmMin((() => {
309576
309736
  init_resolveDefaultsModeConfig();
309577
309737
  }));
309578
309738
  //#endregion
309579
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js
309739
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js
309580
309740
  var ENV_ENDPOINT_URL, CONFIG_ENDPOINT_URL, getEndpointUrlConfig;
309581
309741
  var init_getEndpointUrlConfig = __esmMin((() => {
309582
309742
  init_config$1();
@@ -309605,7 +309765,7 @@ var init_getEndpointUrlConfig = __esmMin((() => {
309605
309765
  });
309606
309766
  }));
309607
309767
  //#endregion
309608
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js
309768
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js
309609
309769
  var getEndpointFromConfig;
309610
309770
  var init_getEndpointFromConfig = __esmMin((() => {
309611
309771
  init_config$1();
@@ -309613,7 +309773,7 @@ var init_getEndpointFromConfig = __esmMin((() => {
309613
309773
  getEndpointFromConfig = async (serviceId) => loadConfig(getEndpointUrlConfig(serviceId ?? ""))();
309614
309774
  }));
309615
309775
  //#endregion
309616
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/s3.js
309776
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/s3.js
309617
309777
  var resolveParamsForS3, DOMAIN_PATTERN$1, IP_ADDRESS_PATTERN$1, DOTS_PATTERN$1, isDnsCompatibleBucketName$1, isArnBucketName;
309618
309778
  var init_s3$1 = __esmMin((() => {
309619
309779
  resolveParamsForS3 = async (endpointParams) => {
@@ -309641,12 +309801,12 @@ var init_s3$1 = __esmMin((() => {
309641
309801
  };
309642
309802
  }));
309643
309803
  //#endregion
309644
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js
309804
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js
309645
309805
  var init_service_customizations = __esmMin((() => {
309646
309806
  init_s3$1();
309647
309807
  }));
309648
309808
  //#endregion
309649
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/createConfigValueProvider.js
309809
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/createConfigValueProvider.js
309650
309810
  var createConfigValueProvider;
309651
309811
  var init_createConfigValueProvider = __esmMin((() => {
309652
309812
  createConfigValueProvider = (configKey, canonicalEndpointParamKey, config, isClientContextParam = false) => {
@@ -309681,12 +309841,12 @@ var init_createConfigValueProvider = __esmMin((() => {
309681
309841
  };
309682
309842
  }));
309683
309843
  //#endregion
309684
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js
309844
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js
309685
309845
  var init_toEndpointV1 = __esmMin((() => {
309686
309846
  init_transport();
309687
309847
  }));
309688
309848
  //#endregion
309689
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js
309849
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js
309690
309850
  function bindGetEndpointFromInstructions(getEndpointFromConfig) {
309691
309851
  return async (commandInput, instructionsSupplier, clientConfig, context) => {
309692
309852
  if (!clientConfig.isCustomEndpoint) {
@@ -309741,7 +309901,7 @@ var init_getEndpointFromInstructions = __esmMin((() => {
309741
309901
  };
309742
309902
  }));
309743
309903
  //#endregion
309744
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js
309904
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js
309745
309905
  function setFeature$2(context, feature, value) {
309746
309906
  if (!context.__smithy_context) context.__smithy_context = { features: {} };
309747
309907
  else if (!context.__smithy_context.features) context.__smithy_context.features = {};
@@ -309779,7 +309939,7 @@ var init_endpointMiddleware = __esmMin((() => {
309779
309939
  init_getEndpointFromInstructions();
309780
309940
  }));
309781
309941
  //#endregion
309782
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js
309942
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js
309783
309943
  function bindGetEndpointPlugin(getEndpointFromConfig) {
309784
309944
  const endpointMiddleware = bindEndpointMiddleware(getEndpointFromConfig);
309785
309945
  return (config, instructions) => ({ applyToStack: (clientStack) => {
@@ -309812,7 +309972,7 @@ var init_getEndpointPlugin = __esmMin((() => {
309812
309972
  };
309813
309973
  }));
309814
309974
  //#endregion
309815
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js
309975
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js
309816
309976
  function bindResolveEndpointConfig(getEndpointFromConfig) {
309817
309977
  return (input) => {
309818
309978
  const tls = input.tls ?? true;
@@ -309837,7 +309997,7 @@ var init_resolveEndpointConfig = __esmMin((() => {
309837
309997
  init_toEndpointV1();
309838
309998
  }));
309839
309999
  //#endregion
309840
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.js
310000
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.js
309841
310001
  var BinaryDecisionDiagram;
309842
310002
  var init_BinaryDecisionDiagram = __esmMin((() => {
309843
310003
  BinaryDecisionDiagram = class BinaryDecisionDiagram {
@@ -309857,7 +310017,7 @@ var init_BinaryDecisionDiagram = __esmMin((() => {
309857
310017
  };
309858
310018
  }));
309859
310019
  //#endregion
309860
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/cache/EndpointCache.js
310020
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/cache/EndpointCache.js
309861
310021
  var EndpointCache;
309862
310022
  var init_EndpointCache = __esmMin((() => {
309863
310023
  EndpointCache = class {
@@ -309902,7 +310062,7 @@ var init_EndpointCache = __esmMin((() => {
309902
310062
  };
309903
310063
  }));
309904
310064
  //#endregion
309905
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/EndpointError.js
310065
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/EndpointError.js
309906
310066
  var EndpointError;
309907
310067
  var init_EndpointError$1 = __esmMin((() => {
309908
310068
  EndpointError = class extends Error {
@@ -309913,18 +310073,18 @@ var init_EndpointError$1 = __esmMin((() => {
309913
310073
  };
309914
310074
  }));
309915
310075
  //#endregion
309916
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js
310076
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js
309917
310077
  var init_types$1 = __esmMin((() => {
309918
310078
  init_EndpointError$1();
309919
310079
  }));
309920
310080
  //#endregion
309921
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/debugId.js
310081
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/debugId.js
309922
310082
  var debugId;
309923
310083
  var init_debugId = __esmMin((() => {
309924
310084
  debugId = "endpoints";
309925
310085
  }));
309926
310086
  //#endregion
309927
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/toDebugString.js
310087
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/toDebugString.js
309928
310088
  function toDebugString(input) {
309929
310089
  if (typeof input !== "object" || input == null) return input;
309930
310090
  if ("ref" in input) return `$${toDebugString(input.ref)}`;
@@ -309933,31 +310093,31 @@ function toDebugString(input) {
309933
310093
  }
309934
310094
  var init_toDebugString = __esmMin((() => {}));
309935
310095
  //#endregion
309936
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js
310096
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js
309937
310097
  var init_debug = __esmMin((() => {
309938
310098
  init_debugId();
309939
310099
  init_toDebugString();
309940
310100
  }));
309941
310101
  //#endregion
309942
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/customEndpointFunctions.js
310102
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/customEndpointFunctions.js
309943
310103
  var customEndpointFunctions;
309944
310104
  var init_customEndpointFunctions = __esmMin((() => {
309945
310105
  customEndpointFunctions = {};
309946
310106
  }));
309947
310107
  //#endregion
309948
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/booleanEquals.js
310108
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/booleanEquals.js
309949
310109
  var booleanEquals;
309950
310110
  var init_booleanEquals = __esmMin((() => {
309951
310111
  booleanEquals = (value1, value2) => value1 === value2;
309952
310112
  }));
309953
310113
  //#endregion
309954
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/coalesce.js
310114
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/coalesce.js
309955
310115
  function coalesce(...args) {
309956
310116
  for (const arg of args) if (arg != null) return arg;
309957
310117
  }
309958
310118
  var init_coalesce = __esmMin((() => {}));
309959
310119
  //#endregion
309960
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttrPathList.js
310120
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttrPathList.js
309961
310121
  var getAttrPathList;
309962
310122
  var init_getAttrPathList = __esmMin((() => {
309963
310123
  init_types$1();
@@ -309978,7 +310138,7 @@ var init_getAttrPathList = __esmMin((() => {
309978
310138
  };
309979
310139
  }));
309980
310140
  //#endregion
309981
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttr.js
310141
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttr.js
309982
310142
  var getAttr;
309983
310143
  var init_getAttr = __esmMin((() => {
309984
310144
  init_types$1();
@@ -309993,32 +310153,32 @@ var init_getAttr = __esmMin((() => {
309993
310153
  }, value);
309994
310154
  }));
309995
310155
  //#endregion
309996
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/isSet.js
310156
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/isSet.js
309997
310157
  var isSet;
309998
310158
  var init_isSet = __esmMin((() => {
309999
310159
  isSet = (value) => value != null;
310000
310160
  }));
310001
310161
  //#endregion
310002
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/ite.js
310162
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/ite.js
310003
310163
  function ite(condition, trueValue, falseValue) {
310004
310164
  return condition ? trueValue : falseValue;
310005
310165
  }
310006
310166
  var init_ite = __esmMin((() => {}));
310007
310167
  //#endregion
310008
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/not.js
310168
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/not.js
310009
310169
  var not;
310010
310170
  var init_not = __esmMin((() => {
310011
310171
  not = (value) => !value;
310012
310172
  }));
310013
310173
  //#endregion
310014
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/isIpAddress.js
310174
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/isIpAddress.js
310015
310175
  var IP_V4_REGEX, isIpAddress;
310016
310176
  var init_isIpAddress$1 = __esmMin((() => {
310017
310177
  IP_V4_REGEX = new RegExp(`^(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}$`);
310018
310178
  isIpAddress = (value) => IP_V4_REGEX.test(value) || value.startsWith("[") && value.endsWith("]");
310019
310179
  }));
310020
310180
  //#endregion
310021
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/parseURL.js
310181
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/parseURL.js
310022
310182
  var import_dist_cjs$17, DEFAULT_PORTS, parseURL;
310023
310183
  var init_parseURL = __esmMin((() => {
310024
310184
  import_dist_cjs$17 = require_dist_cjs$21();
@@ -310062,7 +310222,7 @@ var init_parseURL = __esmMin((() => {
310062
310222
  };
310063
310223
  }));
310064
310224
  //#endregion
310065
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/split.js
310225
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/split.js
310066
310226
  function split(value, delimiter, limit) {
310067
310227
  if (limit === 1) return [value];
310068
310228
  if (value === "") return [""];
@@ -310072,13 +310232,13 @@ function split(value, delimiter, limit) {
310072
310232
  }
310073
310233
  var init_split = __esmMin((() => {}));
310074
310234
  //#endregion
310075
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/stringEquals.js
310235
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/stringEquals.js
310076
310236
  var stringEquals;
310077
310237
  var init_stringEquals = __esmMin((() => {
310078
310238
  stringEquals = (value1, value2) => value1 === value2;
310079
310239
  }));
310080
310240
  //#endregion
310081
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/substring.js
310241
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/substring.js
310082
310242
  var substring;
310083
310243
  var init_substring = __esmMin((() => {
310084
310244
  substring = (input, start, stop, reverse) => {
@@ -310088,13 +310248,13 @@ var init_substring = __esmMin((() => {
310088
310248
  };
310089
310249
  }));
310090
310250
  //#endregion
310091
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/uriEncode.js
310251
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/uriEncode.js
310092
310252
  var uriEncode;
310093
310253
  var init_uriEncode = __esmMin((() => {
310094
310254
  uriEncode = (value) => encodeURIComponent(value).replace(/[!*'()]/g, (c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`);
310095
310255
  }));
310096
310256
  //#endregion
310097
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js
310257
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js
310098
310258
  var init_lib = __esmMin((() => {
310099
310259
  init_booleanEquals();
310100
310260
  init_coalesce();
@@ -310110,7 +310270,7 @@ var init_lib = __esmMin((() => {
310110
310270
  init_uriEncode();
310111
310271
  }));
310112
310272
  //#endregion
310113
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/endpointFunctions.js
310273
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/endpointFunctions.js
310114
310274
  var endpointFunctions;
310115
310275
  var init_endpointFunctions = __esmMin((() => {
310116
310276
  init_lib();
@@ -310130,7 +310290,7 @@ var init_endpointFunctions = __esmMin((() => {
310130
310290
  };
310131
310291
  }));
310132
310292
  //#endregion
310133
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateTemplate.js
310293
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateTemplate.js
310134
310294
  var evaluateTemplate;
310135
310295
  var init_evaluateTemplate = __esmMin((() => {
310136
310296
  init_lib();
@@ -310165,7 +310325,7 @@ var init_evaluateTemplate = __esmMin((() => {
310165
310325
  };
310166
310326
  }));
310167
310327
  //#endregion
310168
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getReferenceValue.js
310328
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getReferenceValue.js
310169
310329
  var getReferenceValue;
310170
310330
  var init_getReferenceValue = __esmMin((() => {
310171
310331
  getReferenceValue = ({ ref }, options) => {
@@ -310173,7 +310333,7 @@ var init_getReferenceValue = __esmMin((() => {
310173
310333
  };
310174
310334
  }));
310175
310335
  //#endregion
310176
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js
310336
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js
310177
310337
  var evaluateExpression, callFunction, group$2;
310178
310338
  var init_evaluateExpression = __esmMin((() => {
310179
310339
  init_types$1();
@@ -310209,12 +310369,12 @@ var init_evaluateExpression = __esmMin((() => {
310209
310369
  };
310210
310370
  }));
310211
310371
  //#endregion
310212
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/callFunction.js
310372
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/callFunction.js
310213
310373
  var init_callFunction = __esmMin((() => {
310214
310374
  init_evaluateExpression();
310215
310375
  }));
310216
310376
  //#endregion
310217
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateCondition.js
310377
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateCondition.js
310218
310378
  var evaluateCondition;
310219
310379
  var init_evaluateCondition = __esmMin((() => {
310220
310380
  init_debug();
@@ -310237,7 +310397,7 @@ var init_evaluateCondition = __esmMin((() => {
310237
310397
  };
310238
310398
  }));
310239
310399
  //#endregion
310240
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.js
310400
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.js
310241
310401
  var getEndpointHeaders;
310242
310402
  var init_getEndpointHeaders = __esmMin((() => {
310243
310403
  init_types$1();
@@ -310252,7 +310412,7 @@ var init_getEndpointHeaders = __esmMin((() => {
310252
310412
  }, {});
310253
310413
  }));
310254
310414
  //#endregion
310255
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointProperties.js
310415
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointProperties.js
310256
310416
  var getEndpointProperties, getEndpointProperty, group$1;
310257
310417
  var init_getEndpointProperties = __esmMin((() => {
310258
310418
  init_types$1();
@@ -310278,7 +310438,7 @@ var init_getEndpointProperties = __esmMin((() => {
310278
310438
  };
310279
310439
  }));
310280
310440
  //#endregion
310281
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointUrl.js
310441
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointUrl.js
310282
310442
  var getEndpointUrl;
310283
310443
  var init_getEndpointUrl = __esmMin((() => {
310284
310444
  init_types$1();
@@ -310295,7 +310455,7 @@ var init_getEndpointUrl = __esmMin((() => {
310295
310455
  };
310296
310456
  }));
310297
310457
  //#endregion
310298
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/decideEndpoint.js
310458
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/decideEndpoint.js
310299
310459
  var RESULT, decideEndpoint;
310300
310460
  var init_decideEndpoint = __esmMin((() => {
310301
310461
  init_types$1();
@@ -310350,7 +310510,7 @@ var init_decideEndpoint = __esmMin((() => {
310350
310510
  };
310351
310511
  }));
310352
310512
  //#endregion
310353
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateConditions.js
310513
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateConditions.js
310354
310514
  var evaluateConditions;
310355
310515
  var init_evaluateConditions = __esmMin((() => {
310356
310516
  init_debug();
@@ -310380,7 +310540,7 @@ var init_evaluateConditions = __esmMin((() => {
310380
310540
  };
310381
310541
  }));
310382
310542
  //#endregion
310383
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.js
310543
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.js
310384
310544
  var evaluateEndpointRule;
310385
310545
  var init_evaluateEndpointRule = __esmMin((() => {
310386
310546
  init_debug();
@@ -310408,7 +310568,7 @@ var init_evaluateEndpointRule = __esmMin((() => {
310408
310568
  };
310409
310569
  }));
310410
310570
  //#endregion
310411
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.js
310571
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.js
310412
310572
  var evaluateErrorRule;
310413
310573
  var init_evaluateErrorRule = __esmMin((() => {
310414
310574
  init_types$1();
@@ -310428,7 +310588,7 @@ var init_evaluateErrorRule = __esmMin((() => {
310428
310588
  };
310429
310589
  }));
310430
310590
  //#endregion
310431
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateRules.js
310591
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateRules.js
310432
310592
  var evaluateRules, evaluateTreeRule, group;
310433
310593
  var init_evaluateRules = __esmMin((() => {
310434
310594
  init_types$1();
@@ -310465,13 +310625,13 @@ var init_evaluateRules = __esmMin((() => {
310465
310625
  };
310466
310626
  }));
310467
310627
  //#endregion
310468
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js
310628
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js
310469
310629
  var init_utils$2 = __esmMin((() => {
310470
310630
  init_customEndpointFunctions();
310471
310631
  init_evaluateRules();
310472
310632
  }));
310473
310633
  //#endregion
310474
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/resolveEndpoint.js
310634
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/resolveEndpoint.js
310475
310635
  var resolveEndpoint;
310476
310636
  var init_resolveEndpoint$1 = __esmMin((() => {
310477
310637
  init_debug();
@@ -310500,7 +310660,7 @@ var init_resolveEndpoint$1 = __esmMin((() => {
310500
310660
  };
310501
310661
  }));
310502
310662
  //#endregion
310503
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointRequiredConfig.js
310663
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointRequiredConfig.js
310504
310664
  var resolveEndpointRequiredConfig;
310505
310665
  var init_resolveEndpointRequiredConfig = __esmMin((() => {
310506
310666
  resolveEndpointRequiredConfig = (input) => {
@@ -310512,7 +310672,7 @@ var init_resolveEndpointRequiredConfig = __esmMin((() => {
310512
310672
  };
310513
310673
  }));
310514
310674
  //#endregion
310515
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js
310675
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js
310516
310676
  var endpoints_exports = /* @__PURE__ */ __exportAll({
310517
310677
  BinaryDecisionDiagram: () => BinaryDecisionDiagram,
310518
310678
  EndpointCache: () => EndpointCache,
@@ -310555,7 +310715,7 @@ var init_endpoints = __esmMin((() => {
310555
310715
  getEndpointPlugin = bindGetEndpointPlugin(getEndpointFromConfig);
310556
310716
  }));
310557
310717
  //#endregion
310558
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/serializerMiddleware.js
310718
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/serializerMiddleware.js
310559
310719
  var serializerMiddleware;
310560
310720
  var init_serializerMiddleware = __esmMin((() => {
310561
310721
  init_endpoints();
@@ -310574,7 +310734,7 @@ var init_serializerMiddleware = __esmMin((() => {
310574
310734
  };
310575
310735
  }));
310576
310736
  //#endregion
310577
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/serdePlugin.js
310737
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/serdePlugin.js
310578
310738
  function getSerdePlugin(config, serializer, deserializer) {
310579
310739
  return { applyToStack: (commandStack) => {
310580
310740
  commandStack.add(deserializerMiddleware(config, deserializer), deserializerMiddlewareOption);
@@ -310599,7 +310759,7 @@ var init_serdePlugin = __esmMin((() => {
310599
310759
  };
310600
310760
  }));
310601
310761
  //#endregion
310602
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js
310762
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js
310603
310763
  function castSourceData(toCast, encoding) {
310604
310764
  if (Buffer.isBuffer(toCast)) return toCast;
310605
310765
  if (typeof toCast === "string") return fromString(toCast, encoding);
@@ -310631,7 +310791,7 @@ var init_hash_node = __esmMin((() => {
310631
310791
  };
310632
310792
  }));
310633
310793
  //#endregion
310634
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js
310794
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js
310635
310795
  var ChecksumStream$1;
310636
310796
  var init_ChecksumStream = __esmMin((() => {
310637
310797
  init_toBase64();
@@ -310652,6 +310812,7 @@ var init_ChecksumStream = __esmMin((() => {
310652
310812
  this.source.on("data", this.onSourceData);
310653
310813
  this.source.on("end", this.onSourceEnd);
310654
310814
  this.source.on("error", this.onSourceError);
310815
+ this.source.on("close", this.onSourceClose);
310655
310816
  this.source.pause();
310656
310817
  }
310657
310818
  onSourceData = (chunk) => {
@@ -310682,17 +310843,24 @@ var init_ChecksumStream = __esmMin((() => {
310682
310843
  onSourceError = (error) => {
310683
310844
  this.destroy(error);
310684
310845
  };
310685
- _read(size) {
310846
+ onSourceClose = () => {
310847
+ if (!this.destroyed && !this.source.readableEnded) this.destroy(/* @__PURE__ */ new Error("Connection lost or stream closed before all data was received."));
310848
+ };
310849
+ _read(_size) {
310686
310850
  this.source.resume();
310687
310851
  }
310688
310852
  _destroy(error, callback) {
310853
+ this.source?.removeListener("data", this.onSourceData);
310854
+ this.source?.removeListener("end", this.onSourceEnd);
310855
+ this.source?.removeListener("error", this.onSourceError);
310856
+ this.source?.removeListener("close", this.onSourceClose);
310689
310857
  this.source?.destroy();
310690
310858
  callback(error);
310691
310859
  }
310692
310860
  };
310693
310861
  }));
310694
310862
  //#endregion
310695
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-type-check.js
310863
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-type-check.js
310696
310864
  var isReadableStream, isBlob;
310697
310865
  var init_stream_type_check = __esmMin((() => {
310698
310866
  isReadableStream = (stream) => typeof ReadableStream === "function" && (stream?.constructor?.name === ReadableStream.name || stream instanceof ReadableStream);
@@ -310701,7 +310869,7 @@ var init_stream_type_check = __esmMin((() => {
310701
310869
  };
310702
310870
  }));
310703
310871
  //#endregion
310704
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.browser.js
310872
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.browser.js
310705
310873
  var fromUtf8;
310706
310874
  var init_fromUtf8_browser = __esmMin((() => {
310707
310875
  fromUtf8 = (input) => new TextEncoder().encode(input);
@@ -310715,7 +310883,7 @@ var init_constants_for_browser = __esmMin((() => {
310715
310883
  alphabetByValue = chars.split("");
310716
310884
  }));
310717
310885
  //#endregion
310718
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js
310886
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js
310719
310887
  function toBase64(_input) {
310720
310888
  let input;
310721
310889
  if (typeof _input === "string") input = fromUtf8(_input);
@@ -310746,14 +310914,14 @@ var init_toBase64_browser = __esmMin((() => {
310746
310914
  init_constants_for_browser();
310747
310915
  }));
310748
310916
  //#endregion
310749
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.browser.js
310917
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.browser.js
310750
310918
  var ReadableStreamRef, ChecksumStream;
310751
310919
  var init_ChecksumStream_browser = __esmMin((() => {
310752
310920
  ReadableStreamRef = typeof ReadableStream === "function" ? ReadableStream : function() {};
310753
310921
  ChecksumStream = class extends ReadableStreamRef {};
310754
310922
  }));
310755
310923
  //#endregion
310756
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js
310924
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js
310757
310925
  var createChecksumStream$1;
310758
310926
  var init_createChecksumStream_browser = __esmMin((() => {
310759
310927
  init_toBase64_browser();
@@ -310785,7 +310953,7 @@ var init_createChecksumStream_browser = __esmMin((() => {
310785
310953
  };
310786
310954
  }));
310787
310955
  //#endregion
310788
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js
310956
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js
310789
310957
  function createChecksumStream(init) {
310790
310958
  if (typeof ReadableStream === "function" && isReadableStream(init.source)) return createChecksumStream$1(init);
310791
310959
  return new ChecksumStream$1(init);
@@ -310796,7 +310964,7 @@ var init_createChecksumStream = __esmMin((() => {
310796
310964
  init_createChecksumStream_browser();
310797
310965
  }));
310798
310966
  //#endregion
310799
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/ByteArrayCollector.js
310967
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/ByteArrayCollector.js
310800
310968
  var ByteArrayCollector;
310801
310969
  var init_ByteArrayCollector = __esmMin((() => {
310802
310970
  ByteArrayCollector = class {
@@ -310833,7 +311001,7 @@ var init_ByteArrayCollector = __esmMin((() => {
310833
311001
  };
310834
311002
  }));
310835
311003
  //#endregion
310836
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js
311004
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js
310837
311005
  function createBufferedReadableStream(upstream, size, logger) {
310838
311006
  const reader = upstream.getReader();
310839
311007
  let streamBufferingLoggedWarning = false;
@@ -310911,7 +311079,7 @@ var init_createBufferedReadable_browser = __esmMin((() => {
310911
311079
  init_ByteArrayCollector();
310912
311080
  }));
310913
311081
  //#endregion
310914
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js
311082
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js
310915
311083
  function createBufferedReadable(upstream, size, logger) {
310916
311084
  if (isReadableStream(upstream)) return createBufferedReadableStream(upstream, size, logger);
310917
311085
  const downstream = new Readable$1({ read() {} });
@@ -310961,7 +311129,7 @@ var init_createBufferedReadable = __esmMin((() => {
310961
311129
  init_stream_type_check();
310962
311130
  }));
310963
311131
  //#endregion
310964
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/getAwsChunkedEncodingStream.browser.js
311132
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/getAwsChunkedEncodingStream.browser.js
310965
311133
  var getAwsChunkedEncodingStream$1;
310966
311134
  var init_getAwsChunkedEncodingStream_browser = __esmMin((() => {
310967
311135
  getAwsChunkedEncodingStream$1 = (readableStream, options) => {
@@ -310984,7 +311152,7 @@ var init_getAwsChunkedEncodingStream_browser = __esmMin((() => {
310984
311152
  };
310985
311153
  }));
310986
311154
  //#endregion
310987
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/getAwsChunkedEncodingStream.js
311155
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/getAwsChunkedEncodingStream.js
310988
311156
  function getAwsChunkedEncodingStream(stream, options) {
310989
311157
  const readable = stream;
310990
311158
  const readableStream = stream;
@@ -311016,7 +311184,7 @@ var init_getAwsChunkedEncodingStream = __esmMin((() => {
311016
311184
  init_stream_type_check();
311017
311185
  }));
311018
311186
  //#endregion
311019
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.browser.js
311187
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.browser.js
311020
311188
  async function headStream$1(stream, bytes) {
311021
311189
  let byteLengthCounter = 0;
311022
311190
  const chunks = [];
@@ -311045,7 +311213,7 @@ async function headStream$1(stream, bytes) {
311045
311213
  }
311046
311214
  var init_headStream_browser = __esmMin((() => {}));
311047
311215
  //#endregion
311048
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js
311216
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js
311049
311217
  var headStream, Collector$1;
311050
311218
  var init_headStream = __esmMin((() => {
311051
311219
  init_concatBytes();
@@ -311085,7 +311253,7 @@ var init_headStream = __esmMin((() => {
311085
311253
  };
311086
311254
  }));
311087
311255
  //#endregion
311088
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.browser.js
311256
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.browser.js
311089
311257
  var toUtf8;
311090
311258
  var init_toUtf8_browser = __esmMin((() => {
311091
311259
  toUtf8 = (input) => {
@@ -311095,7 +311263,7 @@ var init_toUtf8_browser = __esmMin((() => {
311095
311263
  };
311096
311264
  }));
311097
311265
  //#endregion
311098
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js
311266
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js
311099
311267
  async function collectBlob(blob) {
311100
311268
  return blob.arrayBuffer().then((ab) => new Uint8Array(ab));
311101
311269
  }
@@ -311123,7 +311291,7 @@ var init_stream_collector_browser = __esmMin((() => {
311123
311291
  };
311124
311292
  }));
311125
311293
  //#endregion
311126
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js
311294
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js
311127
311295
  var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED$1, sdkStreamMixin$1, isBlobInstance;
311128
311296
  var init_sdk_stream_mixin_browser = __esmMin((() => {
311129
311297
  init_toBase64_browser();
@@ -311169,7 +311337,7 @@ var init_sdk_stream_mixin_browser = __esmMin((() => {
311169
311337
  isBlobInstance = (stream) => typeof Blob === "function" && stream instanceof Blob;
311170
311338
  }));
311171
311339
  //#endregion
311172
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js
311340
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js
311173
311341
  var streamCollector$4, Collector;
311174
311342
  var init_stream_collector = __esmMin((() => {
311175
311343
  init_concatBytes();
@@ -311201,7 +311369,7 @@ var init_stream_collector = __esmMin((() => {
311201
311369
  };
311202
311370
  }));
311203
311371
  //#endregion
311204
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js
311372
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js
311205
311373
  var ERR_MSG_STREAM_HAS_BEEN_TRANSFORMED, sdkStreamMixin;
311206
311374
  var init_sdk_stream_mixin = __esmMin((() => {
311207
311375
  init_buffer_from();
@@ -311239,14 +311407,14 @@ var init_sdk_stream_mixin = __esmMin((() => {
311239
311407
  };
311240
311408
  }));
311241
311409
  //#endregion
311242
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.browser.js
311410
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.browser.js
311243
311411
  async function splitStream$1(stream) {
311244
311412
  if (typeof stream.stream === "function") stream = stream.stream();
311245
311413
  return stream.tee();
311246
311414
  }
311247
311415
  var init_splitStream_browser = __esmMin((() => {}));
311248
311416
  //#endregion
311249
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js
311417
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js
311250
311418
  async function splitStream(stream) {
311251
311419
  if (isReadableStream(stream) || isBlob(stream)) return splitStream$1(stream);
311252
311420
  const stream1 = new PassThrough();
@@ -311260,7 +311428,7 @@ var init_splitStream = __esmMin((() => {
311260
311428
  init_stream_type_check();
311261
311429
  }));
311262
311430
  //#endregion
311263
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/serde/index.js
311431
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/serde/index.js
311264
311432
  var serde_exports = /* @__PURE__ */ __exportAll({
311265
311433
  ChecksumStream: () => ChecksumStream$1,
311266
311434
  Hash: () => Hash,
@@ -311377,7 +311545,7 @@ var init_serde = __esmMin((() => {
311377
311545
  generateIdempotencyToken = v4;
311378
311546
  }));
311379
311547
  //#endregion
311380
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js
311548
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js
311381
311549
  var collectBody$1;
311382
311550
  var init_collect_stream_body = __esmMin((() => {
311383
311551
  init_serde();
@@ -311389,7 +311557,7 @@ var init_collect_stream_body = __esmMin((() => {
311389
311557
  };
311390
311558
  }));
311391
311559
  //#endregion
311392
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js
311560
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js
311393
311561
  function extendedEncodeURIComponent(str) {
311394
311562
  return encodeURIComponent(str).replace(/[!'()*]/g, function(c) {
311395
311563
  return "%" + c.charCodeAt(0).toString(16).toUpperCase();
@@ -311397,7 +311565,7 @@ function extendedEncodeURIComponent(str) {
311397
311565
  }
311398
311566
  var init_extended_encode_uri_component = __esmMin((() => {}));
311399
311567
  //#endregion
311400
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js
311568
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js
311401
311569
  var SerdeContext;
311402
311570
  var init_SerdeContext = __esmMin((() => {
311403
311571
  SerdeContext = class {
@@ -311408,7 +311576,7 @@ var init_SerdeContext = __esmMin((() => {
311408
311576
  };
311409
311577
  }));
311410
311578
  //#endregion
311411
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js
311579
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js
311412
311580
  async function blobReader(blob, onChunk, chunkSize = 1024 * 1024) {
311413
311581
  const size = blob.size;
311414
311582
  let totalBytesRead = 0;
@@ -311420,7 +311588,7 @@ async function blobReader(blob, onChunk, chunkSize = 1024 * 1024) {
311420
311588
  }
311421
311589
  var init_chunked_blob_reader = __esmMin((() => {}));
311422
311590
  //#endregion
311423
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js
311591
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js
311424
311592
  var blobHasher;
311425
311593
  var init_blobHasher = __esmMin((() => {
311426
311594
  init_chunked_blob_reader();
@@ -311433,7 +311601,7 @@ var init_blobHasher = __esmMin((() => {
311433
311601
  };
311434
311602
  }));
311435
311603
  //#endregion
311436
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js
311604
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js
311437
311605
  var HashCalculator;
311438
311606
  var init_HashCalculator = __esmMin((() => {
311439
311607
  init_serde();
@@ -311454,7 +311622,7 @@ var init_HashCalculator = __esmMin((() => {
311454
311622
  };
311455
311623
  }));
311456
311624
  //#endregion
311457
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js
311625
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js
311458
311626
  var fileStreamHasher, isReadStream;
311459
311627
  var init_fileStreamHasher = __esmMin((() => {
311460
311628
  init_HashCalculator();
@@ -311482,7 +311650,7 @@ var init_fileStreamHasher = __esmMin((() => {
311482
311650
  isReadStream = (stream) => typeof stream.path === "string";
311483
311651
  }));
311484
311652
  //#endregion
311485
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/readableStreamHasher.js
311653
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/readableStreamHasher.js
311486
311654
  var readableStreamHasher;
311487
311655
  var init_readableStreamHasher = __esmMin((() => {
311488
311656
  init_HashCalculator();
@@ -311504,7 +311672,7 @@ var init_readableStreamHasher = __esmMin((() => {
311504
311672
  };
311505
311673
  }));
311506
311674
  //#endregion
311507
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Js.js
311675
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Js.js
311508
311676
  function compress(state, block) {
311509
311677
  let a = state[0], b = state[1], c = state[2], d = state[3];
311510
311678
  for (let i = 0; i < 64; ++i) {
@@ -311597,7 +311765,7 @@ var init_Md5Js = __esmMin((() => {
311597
311765
  T$1 = Array.from({ length: 64 }, (_, i) => Math.abs(Math.sin(i + 1)) * 2 ** 32 >>> 0);
311598
311766
  }));
311599
311767
  //#endregion
311600
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Node.js
311768
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Node.js
311601
311769
  function buildNativeClass$3() {
311602
311770
  return class Md5Node {
311603
311771
  digestLength = 16;
@@ -311629,7 +311797,7 @@ var init_Md5Node = __esmMin((() => {
311629
311797
  Md5Node = hasNativeCrypto$2 ? buildNativeClass$3() : Md5Js;
311630
311798
  }));
311631
311799
  //#endregion
311632
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js
311800
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js
311633
311801
  var CRC32_TABLE, ONES, Crc32Js;
311634
311802
  var init_Crc32Js = __esmMin((() => {
311635
311803
  CRC32_TABLE = /* @__PURE__ */ new Uint32Array(256);
@@ -311660,7 +311828,7 @@ var init_Crc32Js = __esmMin((() => {
311660
311828
  };
311661
311829
  }));
311662
311830
  //#endregion
311663
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js
311831
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js
311664
311832
  function buildNativeClass$2(nativeCrc32) {
311665
311833
  return class Crc32Node {
311666
311834
  digestLength = 4;
@@ -311688,7 +311856,7 @@ var init_Crc32Node = __esmMin((() => {
311688
311856
  Crc32Node = zlibCrc32 ? buildNativeClass$2(zlibCrc32) : Crc32Js;
311689
311857
  }));
311690
311858
  //#endregion
311691
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Js.js
311859
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Js.js
311692
311860
  var BLOCK$1, DIGEST_LENGTH$1, MAX_HASHABLE_LENGTH, Sha256Js, INIT$1, K$1;
311693
311861
  var init_Sha256Js = __esmMin((() => {
311694
311862
  init_serde();
@@ -311913,7 +312081,7 @@ var init_Sha256Js = __esmMin((() => {
311913
312081
  ]);
311914
312082
  }));
311915
312083
  //#endregion
311916
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Node.js
312084
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Node.js
311917
312085
  function buildNativeClass$1() {
311918
312086
  return class Sha256Node {
311919
312087
  digestLength = 32;
@@ -311966,7 +312134,7 @@ var init_Sha256Node = __esmMin((() => {
311966
312134
  Sha256Node = hasNativeCrypto$1 ? buildNativeClass$1() : Sha256Js;
311967
312135
  }));
311968
312136
  //#endregion
311969
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256WebCrypto.js
312137
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256WebCrypto.js
311970
312138
  var digest$1, sign$2, importKey$1, subtle$1, MAX_PENDING_BYTES$1, Sha256WebCrypto;
311971
312139
  var init_Sha256WebCrypto = __esmMin((() => {
311972
312140
  init_serde();
@@ -312031,7 +312199,7 @@ var init_Sha256WebCrypto = __esmMin((() => {
312031
312199
  };
312032
312200
  }));
312033
312201
  //#endregion
312034
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/checksum/index.js
312202
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/checksum/index.js
312035
312203
  var checksum_exports = /* @__PURE__ */ __exportAll({
312036
312204
  Crc32: () => Crc32Node,
312037
312205
  Crc32Js: () => Crc32Js,
@@ -312062,7 +312230,7 @@ var init_checksum = __esmMin((() => {
312062
312230
  init_chunked_blob_reader();
312063
312231
  }));
312064
312232
  //#endregion
312065
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js
312233
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js
312066
312234
  function negate(bytes) {
312067
312235
  for (let i = 0; i < 8; i++) bytes[i] ^= 255;
312068
312236
  for (let i = 7; i > -1; i--) {
@@ -312098,7 +312266,7 @@ var init_Int64 = __esmMin((() => {
312098
312266
  };
312099
312267
  }));
312100
312268
  //#endregion
312101
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js
312269
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js
312102
312270
  var HeaderMarshaller, HEADER_VALUE_TYPE, BOOLEAN_TAG, BYTE_TAG, SHORT_TAG, INT_TAG, LONG_TAG, BINARY_TAG, STRING_TAG, TIMESTAMP_TAG, UUID_TAG, UUID_PATTERN;
312103
312271
  var init_HeaderMarshaller = __esmMin((() => {
312104
312272
  init_serde();
@@ -312281,7 +312449,7 @@ var init_HeaderMarshaller = __esmMin((() => {
312281
312449
  UUID_PATTERN = /^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$/;
312282
312450
  }));
312283
312451
  //#endregion
312284
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/splitMessage.js
312452
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/splitMessage.js
312285
312453
  function splitMessage({ byteLength, byteOffset, buffer }) {
312286
312454
  if (byteLength < MINIMUM_MESSAGE_LENGTH) throw new Error("Provided message too short to accommodate event stream message overhead");
312287
312455
  const view = new DataView(buffer, byteOffset, byteLength);
@@ -312309,7 +312477,7 @@ var init_splitMessage = __esmMin((() => {
312309
312477
  MINIMUM_MESSAGE_LENGTH = 16;
312310
312478
  }));
312311
312479
  //#endregion
312312
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/EventStreamCodec.js
312480
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/EventStreamCodec.js
312313
312481
  var EventStreamCodec;
312314
312482
  var init_EventStreamCodec = __esmMin((() => {
312315
312483
  init_checksum();
@@ -312384,7 +312552,7 @@ var init_EventStreamCodec = __esmMin((() => {
312384
312552
  };
312385
312553
  }));
312386
312554
  //#endregion
312387
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/MessageDecoderStream.js
312555
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/MessageDecoderStream.js
312388
312556
  var MessageDecoderStream;
312389
312557
  var init_MessageDecoderStream = __esmMin((() => {
312390
312558
  MessageDecoderStream = class {
@@ -312401,7 +312569,7 @@ var init_MessageDecoderStream = __esmMin((() => {
312401
312569
  };
312402
312570
  }));
312403
312571
  //#endregion
312404
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/MessageEncoderStream.js
312572
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/MessageEncoderStream.js
312405
312573
  var MessageEncoderStream;
312406
312574
  var init_MessageEncoderStream = __esmMin((() => {
312407
312575
  MessageEncoderStream = class {
@@ -312419,7 +312587,7 @@ var init_MessageEncoderStream = __esmMin((() => {
312419
312587
  };
312420
312588
  }));
312421
312589
  //#endregion
312422
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/SmithyMessageDecoderStream.js
312590
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/SmithyMessageDecoderStream.js
312423
312591
  var SmithyMessageDecoderStream;
312424
312592
  var init_SmithyMessageDecoderStream = __esmMin((() => {
312425
312593
  SmithyMessageDecoderStream = class {
@@ -312440,7 +312608,7 @@ var init_SmithyMessageDecoderStream = __esmMin((() => {
312440
312608
  };
312441
312609
  }));
312442
312610
  //#endregion
312443
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/SmithyMessageEncoderStream.js
312611
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/SmithyMessageEncoderStream.js
312444
312612
  var SmithyMessageEncoderStream;
312445
312613
  var init_SmithyMessageEncoderStream = __esmMin((() => {
312446
312614
  SmithyMessageEncoderStream = class {
@@ -312457,7 +312625,7 @@ var init_SmithyMessageEncoderStream = __esmMin((() => {
312457
312625
  };
312458
312626
  }));
312459
312627
  //#endregion
312460
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/getChunkedStream.js
312628
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/getChunkedStream.js
312461
312629
  function getChunkedStream(source) {
312462
312630
  let currentMessageTotalLength = 0;
312463
312631
  let currentMessagePendingLength = 0;
@@ -312511,7 +312679,7 @@ function getChunkedStream(source) {
312511
312679
  }
312512
312680
  var init_getChunkedStream = __esmMin((() => {}));
312513
312681
  //#endregion
312514
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.js
312682
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.js
312515
312683
  function getUnmarshalledStream(source, options) {
312516
312684
  const messageUnmarshaller = getMessageUnmarshaller(options.deserializer, options.toUtf8);
312517
312685
  return { [Symbol.asyncIterator]: async function* () {
@@ -312548,7 +312716,7 @@ function getMessageUnmarshaller(deserializer, toUtf8) {
312548
312716
  }
312549
312717
  var init_getUnmarshalledStream = __esmMin((() => {}));
312550
312718
  //#endregion
312551
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js
312719
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js
312552
312720
  var EventStreamMarshaller$1, eventStreamSerdeProvider$1;
312553
312721
  var init_EventStreamMarshaller$1 = __esmMin((() => {
312554
312722
  init_EventStreamCodec();
@@ -312588,7 +312756,7 @@ var init_EventStreamMarshaller$1 = __esmMin((() => {
312588
312756
  eventStreamSerdeProvider$1 = (options) => new EventStreamMarshaller$1(options);
312589
312757
  }));
312590
312758
  //#endregion
312591
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js
312759
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js
312592
312760
  async function* readableToIterable(readStream) {
312593
312761
  let streamEnded = false;
312594
312762
  let generationEnded = false;
@@ -312631,7 +312799,7 @@ var init_EventStreamMarshaller = __esmMin((() => {
312631
312799
  eventStreamSerdeProvider = (options) => new EventStreamMarshaller(options);
312632
312800
  }));
312633
312801
  //#endregion
312634
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js
312802
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js
312635
312803
  var readableStreamToIterable, iterableToReadableStream;
312636
312804
  var init_utils$1 = __esmMin((() => {
312637
312805
  readableStreamToIterable = (readableStream) => ({ [Symbol.asyncIterator]: async function* () {
@@ -312656,13 +312824,13 @@ var init_utils$1 = __esmMin((() => {
312656
312824
  };
312657
312825
  }));
312658
312826
  //#endregion
312659
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-config-resolver/EventStreamSerdeConfig.js
312827
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-config-resolver/EventStreamSerdeConfig.js
312660
312828
  var resolveEventStreamSerdeConfig;
312661
312829
  var init_EventStreamSerdeConfig = __esmMin((() => {
312662
312830
  resolveEventStreamSerdeConfig = (input) => Object.assign(input, { eventStreamMarshaller: input.eventStreamSerdeProvider(input) });
312663
312831
  }));
312664
312832
  //#endregion
312665
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js
312833
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js
312666
312834
  var EventStreamSerde;
312667
312835
  var init_EventStreamSerde = __esmMin((() => {
312668
312836
  init_serde();
@@ -312859,7 +313027,7 @@ var init_EventStreamSerde = __esmMin((() => {
312859
313027
  };
312860
313028
  }));
312861
313029
  //#endregion
312862
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js
313030
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js
312863
313031
  var event_streams_exports = /* @__PURE__ */ __exportAll({
312864
313032
  EventStreamCodec: () => EventStreamCodec,
312865
313033
  EventStreamMarshaller: () => EventStreamMarshaller,
@@ -312897,7 +313065,7 @@ var init_event_streams = __esmMin((() => {
312897
313065
  init_EventStreamSerde();
312898
313066
  }));
312899
313067
  //#endregion
312900
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js
313068
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js
312901
313069
  var HttpProtocol;
312902
313070
  var init_HttpProtocol = __esmMin((() => {
312903
313071
  init_schema();
@@ -313016,7 +313184,7 @@ var init_HttpProtocol = __esmMin((() => {
313016
313184
  };
313017
313185
  }));
313018
313186
  //#endregion
313019
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js
313187
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js
313020
313188
  var HttpBindingProtocol;
313021
313189
  var init_HttpBindingProtocol = __esmMin((() => {
313022
313190
  init_schema();
@@ -313229,7 +313397,7 @@ var init_HttpBindingProtocol = __esmMin((() => {
313229
313397
  };
313230
313398
  }));
313231
313399
  //#endregion
313232
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js
313400
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js
313233
313401
  var RpcProtocol;
313234
313402
  var init_RpcProtocol = __esmMin((() => {
313235
313403
  init_schema();
@@ -313317,7 +313485,7 @@ var init_RpcProtocol = __esmMin((() => {
313317
313485
  };
313318
313486
  }));
313319
313487
  //#endregion
313320
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js
313488
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js
313321
313489
  var resolvedPath;
313322
313490
  var init_resolve_path = __esmMin((() => {
313323
313491
  init_extended_encode_uri_component();
@@ -313331,7 +313499,7 @@ var init_resolve_path = __esmMin((() => {
313331
313499
  };
313332
313500
  }));
313333
313501
  //#endregion
313334
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js
313502
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js
313335
313503
  function requestBuilder(input, context) {
313336
313504
  return new RequestBuilder(input, context);
313337
313505
  }
@@ -313403,7 +313571,7 @@ var init_requestBuilder = __esmMin((() => {
313403
313571
  };
313404
313572
  }));
313405
313573
  //#endregion
313406
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js
313574
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js
313407
313575
  function determineTimestampFormat(ns, settings) {
313408
313576
  if (settings.timestampFormat.useTrait) {
313409
313577
  if (ns.isTimestampSchema() && (ns.getSchema() === 5 || ns.getSchema() === 6 || ns.getSchema() === 7)) return ns.getSchema();
@@ -313413,7 +313581,7 @@ function determineTimestampFormat(ns, settings) {
313413
313581
  }
313414
313582
  var init_determineTimestampFormat = __esmMin((() => {}));
313415
313583
  //#endregion
313416
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js
313584
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js
313417
313585
  var FromStringShapeDeserializer;
313418
313586
  var init_FromStringShapeDeserializer = __esmMin((() => {
313419
313587
  init_schema();
@@ -313459,7 +313627,7 @@ var init_FromStringShapeDeserializer = __esmMin((() => {
313459
313627
  };
313460
313628
  }));
313461
313629
  //#endregion
313462
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js
313630
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js
313463
313631
  var HttpInterceptingShapeDeserializer;
313464
313632
  var init_HttpInterceptingShapeDeserializer = __esmMin((() => {
313465
313633
  init_schema();
@@ -313499,7 +313667,7 @@ var init_HttpInterceptingShapeDeserializer = __esmMin((() => {
313499
313667
  };
313500
313668
  }));
313501
313669
  //#endregion
313502
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js
313670
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js
313503
313671
  var ToStringShapeSerializer;
313504
313672
  var init_ToStringShapeSerializer = __esmMin((() => {
313505
313673
  init_schema();
@@ -313581,7 +313749,7 @@ var init_ToStringShapeSerializer = __esmMin((() => {
313581
313749
  };
313582
313750
  }));
313583
313751
  //#endregion
313584
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js
313752
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js
313585
313753
  var HttpInterceptingShapeSerializer;
313586
313754
  var init_HttpInterceptingShapeSerializer = __esmMin((() => {
313587
313755
  init_schema();
@@ -313619,7 +313787,7 @@ var init_HttpInterceptingShapeSerializer = __esmMin((() => {
313619
313787
  };
313620
313788
  }));
313621
313789
  //#endregion
313622
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/protocol-http/Field.js
313790
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/protocol-http/Field.js
313623
313791
  var import_dist_cjs$16, Field;
313624
313792
  var init_Field = __esmMin((() => {
313625
313793
  import_dist_cjs$16 = require_dist_cjs$21();
@@ -313650,7 +313818,7 @@ var init_Field = __esmMin((() => {
313650
313818
  };
313651
313819
  }));
313652
313820
  //#endregion
313653
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/protocol-http/Fields.js
313821
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/protocol-http/Fields.js
313654
313822
  var Fields;
313655
313823
  var init_Fields = __esmMin((() => {
313656
313824
  Fields = class {
@@ -313675,7 +313843,7 @@ var init_Fields = __esmMin((() => {
313675
313843
  };
313676
313844
  }));
313677
313845
  //#endregion
313678
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.js
313846
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.js
313679
313847
  var getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig;
313680
313848
  var init_httpExtensionConfiguration = __esmMin((() => {
313681
313849
  getHttpHandlerExtensionConfiguration = (runtimeConfig) => {
@@ -313699,7 +313867,7 @@ var init_httpExtensionConfiguration = __esmMin((() => {
313699
313867
  };
313700
313868
  }));
313701
313869
  //#endregion
313702
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js
313870
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js
313703
313871
  function contentLengthMiddleware(bodyLengthChecker) {
313704
313872
  return (next) => async (args) => {
313705
313873
  const request = args.request;
@@ -313734,21 +313902,21 @@ var init_contentLengthMiddleware = __esmMin((() => {
313734
313902
  } });
313735
313903
  }));
313736
313904
  //#endregion
313737
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/util-uri-escape/escape-uri.js
313905
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/util-uri-escape/escape-uri.js
313738
313906
  var escapeUri, hexEncode;
313739
313907
  var init_escape_uri = __esmMin((() => {
313740
313908
  escapeUri = (uri) => encodeURIComponent(uri).replace(/[!'()*]/g, hexEncode);
313741
313909
  hexEncode = (c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`;
313742
313910
  }));
313743
313911
  //#endregion
313744
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/util-uri-escape/escape-uri-path.js
313912
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/util-uri-escape/escape-uri-path.js
313745
313913
  var escapeUriPath;
313746
313914
  var init_escape_uri_path = __esmMin((() => {
313747
313915
  init_escape_uri();
313748
313916
  escapeUriPath = (uri) => uri.split("/").map(escapeUri).join("/");
313749
313917
  }));
313750
313918
  //#endregion
313751
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/querystring-builder/buildQueryString.js
313919
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/querystring-builder/buildQueryString.js
313752
313920
  function buildQueryString(query) {
313753
313921
  const parts = [];
313754
313922
  for (let key of Object.keys(query).sort()) {
@@ -313767,7 +313935,7 @@ var init_buildQueryString = __esmMin((() => {
313767
313935
  init_escape_uri();
313768
313936
  }));
313769
313937
  //#endregion
313770
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/protocols/index.js
313938
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/protocols/index.js
313771
313939
  var protocols_exports$1 = /* @__PURE__ */ __exportAll({
313772
313940
  Field: () => Field,
313773
313941
  Fields: () => Fields,
@@ -313823,7 +313991,7 @@ var init_protocols$1 = __esmMin((() => {
313823
313991
  init_buildQueryString();
313824
313992
  }));
313825
313993
  //#endregion
313826
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/constants.js
313994
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/constants.js
313827
313995
  var CLOCK_SKEW_ERROR_CODES, THROTTLING_ERROR_CODES, TRANSIENT_ERROR_CODES, TRANSIENT_ERROR_STATUS_CODES, NODEJS_TIMEOUT_ERROR_CODES, NODEJS_NETWORK_ERROR_CODES;
313828
313996
  var init_constants$3 = __esmMin((() => {
313829
313997
  CLOCK_SKEW_ERROR_CODES = [
@@ -313875,7 +314043,7 @@ var init_constants$3 = __esmMin((() => {
313875
314043
  ];
313876
314044
  }));
313877
314045
  //#endregion
313878
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/service-error-classification.js
314046
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/service-error-classification.js
313879
314047
  function isNodeJsHttp2TransientError(error) {
313880
314048
  return error.code === "ERR_HTTP2_STREAM_ERROR" && error.message.includes("NGHTTP2_REFUSED_STREAM");
313881
314049
  }
@@ -313908,7 +314076,7 @@ var init_service_error_classification = __esmMin((() => {
313908
314076
  };
313909
314077
  }));
313910
314078
  //#endregion
313911
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/constants.js
314079
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/constants.js
313912
314080
  var MAXIMUM_RETRY_DELAY, INVOCATION_ID_HEADER, REQUEST_HEADER;
313913
314081
  var init_constants$2 = __esmMin((() => {
313914
314082
  MAXIMUM_RETRY_DELAY = 20 * 1e3;
@@ -313916,7 +314084,7 @@ var init_constants$2 = __esmMin((() => {
313916
314084
  REQUEST_HEADER = "amz-sdk-request";
313917
314085
  }));
313918
314086
  //#endregion
313919
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/parseRetryAfterHeader.js
314087
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/parseRetryAfterHeader.js
313920
314088
  function parseRetryAfterHeader(response, logger) {
313921
314089
  if (!HttpResponse.isInstance(response)) return;
313922
314090
  for (const header of Object.keys(response.headers)) {
@@ -313954,7 +314122,7 @@ var init_parseRetryAfterHeader = __esmMin((() => {
313954
314122
  init_serde();
313955
314123
  }));
313956
314124
  //#endregion
313957
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/util.js
314125
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/util.js
313958
314126
  var asSdkError;
313959
314127
  var init_util$1 = __esmMin((() => {
313960
314128
  asSdkError = (error) => {
@@ -313965,7 +314133,7 @@ var init_util$1 = __esmMin((() => {
313965
314133
  };
313966
314134
  }));
313967
314135
  //#endregion
313968
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js
314136
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js
313969
314137
  function bindRetryMiddleware(isStreamingPayload) {
313970
314138
  return (options) => (next, context) => async (args) => {
313971
314139
  let retryStrategy = await options.retryStrategy();
@@ -314057,7 +314225,7 @@ var init_retryMiddleware = __esmMin((() => {
314057
314225
  };
314058
314226
  }));
314059
314227
  //#endregion
314060
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js
314228
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js
314061
314229
  var DefaultRateLimiter;
314062
314230
  var init_DefaultRateLimiter = __esmMin((() => {
314063
314231
  init_service_error_classification();
@@ -314169,7 +314337,7 @@ var init_DefaultRateLimiter = __esmMin((() => {
314169
314337
  };
314170
314338
  }));
314171
314339
  //#endregion
314172
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/retries-2026-config.js
314340
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/retries-2026-config.js
314173
314341
  var Retry;
314174
314342
  var init_retries_2026_config = __esmMin((() => {
314175
314343
  Retry = class Retry {
@@ -314192,7 +314360,7 @@ var init_retries_2026_config = __esmMin((() => {
314192
314360
  };
314193
314361
  }));
314194
314362
  //#endregion
314195
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryBackoffStrategy.js
314363
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryBackoffStrategy.js
314196
314364
  var DefaultRetryBackoffStrategy;
314197
314365
  var init_DefaultRetryBackoffStrategy = __esmMin((() => {
314198
314366
  init_constants$2();
@@ -314209,7 +314377,7 @@ var init_DefaultRetryBackoffStrategy = __esmMin((() => {
314209
314377
  };
314210
314378
  }));
314211
314379
  //#endregion
314212
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryToken.js
314380
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryToken.js
314213
314381
  var DefaultRetryToken;
314214
314382
  var init_DefaultRetryToken = __esmMin((() => {
314215
314383
  init_constants$2();
@@ -314240,7 +314408,7 @@ var init_DefaultRetryToken = __esmMin((() => {
314240
314408
  };
314241
314409
  }));
314242
314410
  //#endregion
314243
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/config.js
314411
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/config.js
314244
314412
  var RETRY_MODES, DEFAULT_RETRY_MODE;
314245
314413
  var init_config = __esmMin((() => {
314246
314414
  (function(RETRY_MODES) {
@@ -314250,7 +314418,7 @@ var init_config = __esmMin((() => {
314250
314418
  DEFAULT_RETRY_MODE = RETRY_MODES.STANDARD;
314251
314419
  }));
314252
314420
  //#endregion
314253
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js
314421
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js
314254
314422
  var refusal, StandardRetryStrategy$1;
314255
314423
  var init_StandardRetryStrategy$1 = __esmMin((() => {
314256
314424
  init_DefaultRetryBackoffStrategy();
@@ -314342,7 +314510,7 @@ var init_StandardRetryStrategy$1 = __esmMin((() => {
314342
314510
  };
314343
314511
  }));
314344
314512
  //#endregion
314345
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/AdaptiveRetryStrategy.js
314513
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/AdaptiveRetryStrategy.js
314346
314514
  var AdaptiveRetryStrategy$1;
314347
314515
  var init_AdaptiveRetryStrategy$1 = __esmMin((() => {
314348
314516
  init_DefaultRateLimiter();
@@ -314381,7 +314549,7 @@ var init_AdaptiveRetryStrategy$1 = __esmMin((() => {
314381
314549
  };
314382
314550
  }));
314383
314551
  //#endregion
314384
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js
314552
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js
314385
314553
  var ConfiguredRetryStrategy;
314386
314554
  var init_ConfiguredRetryStrategy = __esmMin((() => {
314387
314555
  init_StandardRetryStrategy$1();
@@ -314400,7 +314568,7 @@ var init_ConfiguredRetryStrategy = __esmMin((() => {
314400
314568
  };
314401
314569
  }));
314402
314570
  //#endregion
314403
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.js
314571
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.js
314404
314572
  var getDefaultRetryQuota;
314405
314573
  var init_defaultRetryQuota = __esmMin((() => {
314406
314574
  init_constants$2();
@@ -314430,14 +314598,14 @@ var init_defaultRetryQuota = __esmMin((() => {
314430
314598
  };
314431
314599
  }));
314432
314600
  //#endregion
314433
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.js
314601
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.js
314434
314602
  var defaultDelayDecider;
314435
314603
  var init_delayDecider = __esmMin((() => {
314436
314604
  init_constants$2();
314437
314605
  defaultDelayDecider = (delayBase, attempts) => Math.floor(Math.min(MAXIMUM_RETRY_DELAY, Math.random() * 2 ** attempts * delayBase));
314438
314606
  }));
314439
314607
  //#endregion
314440
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.js
314608
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.js
314441
314609
  var defaultRetryDecider;
314442
314610
  var init_retryDecider = __esmMin((() => {
314443
314611
  init_service_error_classification();
@@ -314447,7 +314615,7 @@ var init_retryDecider = __esmMin((() => {
314447
314615
  };
314448
314616
  }));
314449
314617
  //#endregion
314450
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js
314618
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js
314451
314619
  var StandardRetryStrategy, getDelayFromRetryAfterHeader;
314452
314620
  var init_StandardRetryStrategy = __esmMin((() => {
314453
314621
  init_protocols$1();
@@ -314533,7 +314701,7 @@ var init_StandardRetryStrategy = __esmMin((() => {
314533
314701
  };
314534
314702
  }));
314535
314703
  //#endregion
314536
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js
314704
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js
314537
314705
  var AdaptiveRetryStrategy;
314538
314706
  var init_AdaptiveRetryStrategy = __esmMin((() => {
314539
314707
  init_DefaultRateLimiter();
@@ -314560,7 +314728,7 @@ var init_AdaptiveRetryStrategy = __esmMin((() => {
314560
314728
  };
314561
314729
  }));
314562
314730
  //#endregion
314563
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js
314731
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js
314564
314732
  var ENV_MAX_ATTEMPTS, CONFIG_MAX_ATTEMPTS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, ENV_RETRY_MODE, CONFIG_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS;
314565
314733
  var init_configurations$2 = __esmMin((() => {
314566
314734
  init_client$1();
@@ -314617,7 +314785,7 @@ var init_configurations$2 = __esmMin((() => {
314617
314785
  };
314618
314786
  }));
314619
314787
  //#endregion
314620
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.js
314788
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.js
314621
314789
  var omitRetryHeadersMiddleware, omitRetryHeadersMiddlewareOptions, getOmitRetryHeadersPlugin;
314622
314790
  var init_omitRetryHeadersMiddleware = __esmMin((() => {
314623
314791
  init_protocols$1();
@@ -314646,7 +314814,7 @@ var init_omitRetryHeadersMiddleware = __esmMin((() => {
314646
314814
  } });
314647
314815
  }));
314648
314816
  //#endregion
314649
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/retry/index.js
314817
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/retry/index.js
314650
314818
  var retry_exports = /* @__PURE__ */ __exportAll({
314651
314819
  AdaptiveRetryStrategy: () => AdaptiveRetryStrategy$1,
314652
314820
  CONFIG_MAX_ATTEMPTS: () => CONFIG_MAX_ATTEMPTS,
@@ -314989,7 +315157,7 @@ var init_getRecursionDetectionPlugin = __esmMin((() => {
314989
315157
  } });
314990
315158
  }));
314991
315159
  //#endregion
314992
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/resolveAuthOptions.js
315160
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/resolveAuthOptions.js
314993
315161
  var resolveAuthOptions;
314994
315162
  var init_resolveAuthOptions = __esmMin((() => {
314995
315163
  resolveAuthOptions = (candidateAuthOptions, authSchemePreference) => {
@@ -315001,7 +315169,7 @@ var init_resolveAuthOptions = __esmMin((() => {
315001
315169
  };
315002
315170
  }));
315003
315171
  //#endregion
315004
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js
315172
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js
315005
315173
  function convertHttpAuthSchemesToMap(httpAuthSchemes) {
315006
315174
  const map = /* @__PURE__ */ new Map();
315007
315175
  for (const scheme of httpAuthSchemes) map.set(scheme.schemeId, scheme);
@@ -315042,7 +315210,7 @@ var init_httpAuthSchemeMiddleware = __esmMin((() => {
315042
315210
  };
315043
315211
  }));
315044
315212
  //#endregion
315045
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js
315213
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js
315046
315214
  var httpAuthSchemeEndpointRuleSetMiddlewareOptions, getHttpAuthSchemeEndpointRuleSetPlugin;
315047
315215
  var init_getHttpAuthSchemeEndpointRuleSetPlugin = __esmMin((() => {
315048
315216
  init_httpAuthSchemeMiddleware();
@@ -315062,7 +315230,7 @@ var init_getHttpAuthSchemeEndpointRuleSetPlugin = __esmMin((() => {
315062
315230
  } });
315063
315231
  }));
315064
315232
  //#endregion
315065
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js
315233
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js
315066
315234
  var httpAuthSchemeMiddlewareOptions, getHttpAuthSchemePlugin;
315067
315235
  var init_getHttpAuthSchemePlugin = __esmMin((() => {
315068
315236
  init_httpAuthSchemeMiddleware();
@@ -315082,14 +315250,14 @@ var init_getHttpAuthSchemePlugin = __esmMin((() => {
315082
315250
  } });
315083
315251
  }));
315084
315252
  //#endregion
315085
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/index.js
315253
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/index.js
315086
315254
  var init_middleware_http_auth_scheme = __esmMin((() => {
315087
315255
  init_httpAuthSchemeMiddleware();
315088
315256
  init_getHttpAuthSchemeEndpointRuleSetPlugin();
315089
315257
  init_getHttpAuthSchemePlugin();
315090
315258
  }));
315091
315259
  //#endregion
315092
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js
315260
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js
315093
315261
  var defaultErrorHandler$1, defaultSuccessHandler$1, httpSigningMiddleware;
315094
315262
  var init_httpSigningMiddleware = __esmMin((() => {
315095
315263
  init_protocols$1();
@@ -315112,7 +315280,7 @@ var init_httpSigningMiddleware = __esmMin((() => {
315112
315280
  };
315113
315281
  }));
315114
315282
  //#endregion
315115
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/getHttpSigningMiddleware.js
315283
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/getHttpSigningMiddleware.js
315116
315284
  var httpSigningMiddlewareOptions, getHttpSigningPlugin;
315117
315285
  var init_getHttpSigningMiddleware = __esmMin((() => {
315118
315286
  init_httpSigningMiddleware();
@@ -315134,13 +315302,13 @@ var init_getHttpSigningMiddleware = __esmMin((() => {
315134
315302
  } });
315135
315303
  }));
315136
315304
  //#endregion
315137
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/index.js
315305
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/index.js
315138
315306
  var init_middleware_http_signing = __esmMin((() => {
315139
315307
  init_httpSigningMiddleware();
315140
315308
  init_getHttpSigningMiddleware();
315141
315309
  }));
315142
315310
  //#endregion
315143
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/normalizeProvider.js
315311
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/normalizeProvider.js
315144
315312
  var normalizeProvider;
315145
315313
  var init_normalizeProvider = __esmMin((() => {
315146
315314
  normalizeProvider = (input) => {
@@ -315150,7 +315318,7 @@ var init_normalizeProvider = __esmMin((() => {
315150
315318
  };
315151
315319
  }));
315152
315320
  //#endregion
315153
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/pagination/createPaginator.js
315321
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/pagination/createPaginator.js
315154
315322
  function createPaginator(ClientCtor, CommandCtor, inputTokenName, outputTokenName, pageSizeTokenName) {
315155
315323
  return async function* paginateOperation(config, input, ...additionalArguments) {
315156
315324
  const _input = input;
@@ -315188,7 +315356,7 @@ var init_createPaginator = __esmMin((() => {
315188
315356
  };
315189
315357
  }));
315190
315358
  //#endregion
315191
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/setFeature.js
315359
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/setFeature.js
315192
315360
  function setFeature(context, feature, value) {
315193
315361
  if (!context.__smithy_context) context.__smithy_context = { features: {} };
315194
315362
  else if (!context.__smithy_context.features) context.__smithy_context.features = {};
@@ -315196,7 +315364,7 @@ function setFeature(context, feature, value) {
315196
315364
  }
315197
315365
  var init_setFeature = __esmMin((() => {}));
315198
315366
  //#endregion
315199
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/DefaultIdentityProviderConfig.js
315367
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/DefaultIdentityProviderConfig.js
315200
315368
  var DefaultIdentityProviderConfig;
315201
315369
  var init_DefaultIdentityProviderConfig = __esmMin((() => {
315202
315370
  DefaultIdentityProviderConfig = class {
@@ -315213,7 +315381,7 @@ var init_DefaultIdentityProviderConfig = __esmMin((() => {
315213
315381
  };
315214
315382
  }));
315215
315383
  //#endregion
315216
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js
315384
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js
315217
315385
  var import_dist_cjs$15, HttpApiKeyAuthSigner;
315218
315386
  var init_httpApiKeyAuth = __esmMin((() => {
315219
315387
  init_protocols$1();
@@ -315233,7 +315401,7 @@ var init_httpApiKeyAuth = __esmMin((() => {
315233
315401
  };
315234
315402
  }));
315235
315403
  //#endregion
315236
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js
315404
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js
315237
315405
  var HttpBearerAuthSigner;
315238
315406
  var init_httpBearerAuth = __esmMin((() => {
315239
315407
  init_protocols$1();
@@ -315247,7 +315415,7 @@ var init_httpBearerAuth = __esmMin((() => {
315247
315415
  };
315248
315416
  }));
315249
315417
  //#endregion
315250
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/noAuth.js
315418
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/noAuth.js
315251
315419
  var NoAuthSigner;
315252
315420
  var init_noAuth = __esmMin((() => {
315253
315421
  NoAuthSigner = class {
@@ -315257,14 +315425,14 @@ var init_noAuth = __esmMin((() => {
315257
315425
  };
315258
315426
  }));
315259
315427
  //#endregion
315260
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.js
315428
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.js
315261
315429
  var init_httpAuthSchemes$1 = __esmMin((() => {
315262
315430
  init_httpApiKeyAuth();
315263
315431
  init_httpBearerAuth();
315264
315432
  init_noAuth();
315265
315433
  }));
315266
315434
  //#endregion
315267
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/memoizeIdentityProvider.js
315435
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/memoizeIdentityProvider.js
315268
315436
  var createIsIdentityExpiredFunction, EXPIRATION_MS, isIdentityExpired, doesIdentityRequireRefresh, memoizeIdentityProvider;
315269
315437
  var init_memoizeIdentityProvider = __esmMin((() => {
315270
315438
  createIsIdentityExpiredFunction = (expirationMs) => function isIdentityExpired(identity) {
@@ -315311,14 +315479,14 @@ var init_memoizeIdentityProvider = __esmMin((() => {
315311
315479
  };
315312
315480
  }));
315313
315481
  //#endregion
315314
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/index.js
315482
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/index.js
315315
315483
  var init_util_identity_and_auth = __esmMin((() => {
315316
315484
  init_DefaultIdentityProviderConfig();
315317
315485
  init_httpAuthSchemes$1();
315318
315486
  init_memoizeIdentityProvider();
315319
315487
  }));
315320
315488
  //#endregion
315321
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/index.js
315489
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/index.js
315322
315490
  var dist_es_exports = /* @__PURE__ */ __exportAll({
315323
315491
  DefaultIdentityProviderConfig: () => DefaultIdentityProviderConfig,
315324
315492
  EXPIRATION_MS: () => EXPIRATION_MS,
@@ -318629,7 +318797,7 @@ var init_s3_expires_middleware = __esmMin((() => {
318629
318797
  } });
318630
318798
  }));
318631
318799
  //#endregion
318632
- //#region ../../node_modules/.pnpm/@smithy+signature-v4@5.6.5/node_modules/@smithy/signature-v4/dist-cjs/index.js
318800
+ //#region ../../node_modules/.pnpm/@smithy+signature-v4@5.6.6/node_modules/@smithy/signature-v4/dist-cjs/index.js
318633
318801
  var require_dist_cjs$20 = /* @__PURE__ */ __commonJSMin(((exports) => {
318634
318802
  const { fromUtf8, fromHex, toHex, toUint8Array, isArrayBuffer } = (init_serde(), __toCommonJS(serde_exports));
318635
318803
  const { normalizeProvider } = (init_client$1(), __toCommonJS(client_exports$1));
@@ -319451,7 +319619,7 @@ var init_validate_bucket_name = __esmMin((() => {
319451
319619
  } });
319452
319620
  }));
319453
319621
  //#endregion
319454
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js
319622
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js
319455
319623
  function alloc(size) {
319456
319624
  return typeof Buffer !== "undefined" ? Buffer.alloc(size) : new Uint8Array(size);
319457
319625
  }
@@ -319464,7 +319632,7 @@ var init_cbor_types = __esmMin((() => {
319464
319632
  tagSymbol = Symbol("@smithy/core/cbor::tagSymbol");
319465
319633
  }));
319466
319634
  //#endregion
319467
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js
319635
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js
319468
319636
  function setPayload(bytes) {
319469
319637
  payload = bytes;
319470
319638
  isBuffer = USE_BUFFER$1 && payload instanceof Buffer;
@@ -319837,7 +320005,7 @@ var init_cbor_decode = __esmMin((() => {
319837
320005
  cacheEpoch = 0;
319838
320006
  }));
319839
320007
  //#endregion
319840
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js
320008
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js
319841
320009
  function encode(_input) {
319842
320010
  const encodeStack = [_input];
319843
320011
  while (encodeStack.length) {
@@ -320080,7 +320248,7 @@ var init_cbor_encode = __esmMin((() => {
320080
320248
  cursor = 0;
320081
320249
  }));
320082
320250
  //#endregion
320083
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js
320251
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js
320084
320252
  var cbor;
320085
320253
  var init_cbor$1 = __esmMin((() => {
320086
320254
  init_cbor_decode();
@@ -320107,7 +320275,7 @@ var init_cbor$1 = __esmMin((() => {
320107
320275
  };
320108
320276
  }));
320109
320277
  //#endregion
320110
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js
320278
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js
320111
320279
  var dateToTag, loadSmithyRpcV2CborErrorCode;
320112
320280
  var init_parseCborBody = __esmMin((() => {
320113
320281
  init_protocols$1();
@@ -320139,7 +320307,7 @@ var init_parseCborBody = __esmMin((() => {
320139
320307
  };
320140
320308
  }));
320141
320309
  //#endregion
320142
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js
320310
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js
320143
320311
  var CborCodec, CborShapeSerializer, CborShapeDeserializer;
320144
320312
  var init_CborCodec = __esmMin((() => {
320145
320313
  init_protocols$1();
@@ -320288,7 +320456,7 @@ var init_CborCodec = __esmMin((() => {
320288
320456
  };
320289
320457
  }));
320290
320458
  //#endregion
320291
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js
320459
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js
320292
320460
  var SmithyRpcV2CborProtocol;
320293
320461
  var init_SmithyRpcV2CborProtocol = __esmMin((() => {
320294
320462
  init_protocols$1();
@@ -320382,7 +320550,7 @@ var init_SmithyRpcV2CborProtocol = __esmMin((() => {
320382
320550
  };
320383
320551
  }));
320384
320552
  //#endregion
320385
- //#region ../../node_modules/.pnpm/@smithy+core@3.29.4/node_modules/@smithy/core/dist-es/submodules/cbor/index.js
320553
+ //#region ../../node_modules/.pnpm/@smithy+core@3.29.5/node_modules/@smithy/core/dist-es/submodules/cbor/index.js
320386
320554
  var init_cbor = __esmMin((() => {
320387
320555
  init_cbor$1();
320388
320556
  init_cbor_types();
@@ -323262,7 +323430,7 @@ var require_dist_cjs$17 = /* @__PURE__ */ __commonJSMin(((exports) => {
323262
323430
  exports.fromEnv = fromEnv;
323263
323431
  }));
323264
323432
  //#endregion
323265
- //#region ../../node_modules/.pnpm/@smithy+credential-provider-imds@4.4.9/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js
323433
+ //#region ../../node_modules/.pnpm/@smithy+credential-provider-imds@4.4.10/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js
323266
323434
  var require_dist_cjs$16 = /* @__PURE__ */ __commonJSMin(((exports) => {
323267
323435
  const { ProviderError, CredentialsProviderError, loadConfig } = (init_config$1(), __toCommonJS(config_exports));
323268
323436
  const node_http = __require("node:http");
@@ -323577,7 +323745,7 @@ var require_dist_cjs$16 = /* @__PURE__ */ __commonJSMin(((exports) => {
323577
323745
  exports.providerConfigFromInit = providerConfigFromInit;
323578
323746
  }));
323579
323747
  //#endregion
323580
- //#region ../../node_modules/.pnpm/@smithy+node-http-handler@4.9.6/node_modules/@smithy/node-http-handler/dist-cjs/index.js
323748
+ //#region ../../node_modules/.pnpm/@smithy+node-http-handler@4.9.7/node_modules/@smithy/node-http-handler/dist-cjs/index.js
323581
323749
  var require_dist_cjs$15 = /* @__PURE__ */ __commonJSMin(((exports) => {
323582
323750
  const { buildQueryString, HttpResponse } = (init_protocols$1(), __toCommonJS(protocols_exports$1));
323583
323751
  const node_https = __require("node:https");