@remotion/lambda-client 4.0.314 → 4.0.316

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/.turbo/turbo-make.log +2 -2
  2. package/dist/aws-clients.d.ts +6 -5
  3. package/dist/aws-clients.js +10 -5
  4. package/dist/aws-provider.d.ts +2 -0
  5. package/dist/bucket-exists.js +2 -1
  6. package/dist/call-lambda-async.js +1 -1
  7. package/dist/call-lambda-streaming.js +1 -1
  8. package/dist/call-lambda-sync.js +1 -1
  9. package/dist/clean-items.d.ts +2 -1
  10. package/dist/clean-items.js +2 -1
  11. package/dist/create-bucket.js +25 -5
  12. package/dist/delete-file.js +7 -2
  13. package/dist/delete-function.d.ts +4 -1
  14. package/dist/delete-function.js +2 -2
  15. package/dist/delete-render.d.ts +2 -0
  16. package/dist/delete-render.js +7 -1
  17. package/dist/esm/index.mjs +858 -823
  18. package/dist/get-account-id.js +1 -1
  19. package/dist/get-aws-client.d.ts +3 -1
  20. package/dist/get-aws-client.js +2 -1
  21. package/dist/get-buckets.js +3 -1
  22. package/dist/get-compositions-on-lambda.d.ts +3 -1
  23. package/dist/get-compositions-on-lambda.js +3 -1
  24. package/dist/get-function-version.d.ts +3 -1
  25. package/dist/get-function-version.js +4 -1
  26. package/dist/get-functions.d.ts +2 -0
  27. package/dist/get-functions.js +5 -2
  28. package/dist/get-render-progress.d.ts +2 -0
  29. package/dist/get-render-progress.js +2 -0
  30. package/dist/get-s3-client.d.ts +3 -1
  31. package/dist/get-s3-client.js +2 -1
  32. package/dist/get-service-client.d.ts +3 -1
  33. package/dist/get-service-client.js +13 -5
  34. package/dist/get-sites.d.ts +4 -2
  35. package/dist/get-sites.js +6 -2
  36. package/dist/head-file.js +2 -1
  37. package/dist/index.d.ts +14 -10
  38. package/dist/is-flaky-error.js +2 -1
  39. package/dist/lifecycle-rules.d.ts +3 -1
  40. package/dist/lifecycle-rules.js +17 -5
  41. package/dist/list-objects.js +4 -1
  42. package/dist/make-lambda-payload.d.ts +4 -2
  43. package/dist/make-lambda-payload.js +4 -2
  44. package/dist/presign-url.d.ts +5 -2
  45. package/dist/presign-url.js +4 -2
  46. package/dist/read-file.d.ts +3 -1
  47. package/dist/read-file.js +2 -1
  48. package/dist/render-media-on-lambda.d.ts +2 -0
  49. package/dist/render-media-on-lambda.js +3 -1
  50. package/dist/render-still-on-lambda.d.ts +5 -1
  51. package/dist/render-still-on-lambda.js +3 -1
  52. package/dist/test/request-handler.test.d.ts +1 -0
  53. package/dist/test/request-handler.test.js +36 -0
  54. package/dist/types.d.ts +4 -0
  55. package/dist/types.js +2 -0
  56. package/dist/write-file.js +2 -1
  57. package/package.json +3 -3
  58. package/src/aws-clients.ts +18 -3
  59. package/src/aws-provider.ts +2 -0
  60. package/src/bucket-exists.ts +8 -1
  61. package/src/call-lambda-async.ts +5 -1
  62. package/src/call-lambda-streaming.ts +5 -1
  63. package/src/call-lambda-sync.ts +5 -1
  64. package/src/clean-items.ts +3 -0
  65. package/src/create-bucket.ts +25 -5
  66. package/src/delete-file.ts +9 -1
  67. package/src/delete-function.ts +6 -2
  68. package/src/delete-render.ts +8 -1
  69. package/src/get-account-id.ts +1 -1
  70. package/src/get-aws-client.ts +4 -0
  71. package/src/get-buckets.ts +3 -0
  72. package/src/get-compositions-on-lambda.ts +5 -0
  73. package/src/get-function-version.ts +6 -0
  74. package/src/get-functions.ts +12 -1
  75. package/src/get-render-progress.ts +4 -0
  76. package/src/get-s3-client.ts +4 -0
  77. package/src/get-service-client.ts +17 -3
  78. package/src/get-sites.ts +8 -0
  79. package/src/head-file.ts +2 -0
  80. package/src/index.ts +1 -0
  81. package/src/is-flaky-error.ts +4 -1
  82. package/src/lifecycle-rules.ts +21 -6
  83. package/src/list-objects.ts +4 -0
  84. package/src/make-lambda-payload.ts +6 -0
  85. package/src/presign-url.ts +13 -2
  86. package/src/read-file.ts +4 -0
  87. package/src/render-media-on-lambda.ts +4 -0
  88. package/src/render-still-on-lambda.ts +7 -1
  89. package/src/test/request-handler.test.ts +42 -0
  90. package/src/types.ts +7 -0
  91. package/src/write-file.ts +2 -0
  92. package/tsconfig.tsbuildinfo +1 -1
  93. package/.turbo/turbo-test.log +0 -23
@@ -79,24 +79,24 @@ var require_getSSOTokenFromFile = __commonJS((exports) => {
79
79
 
80
80
  // ../../node_modules/.pnpm/@smithy+types@4.2.0/node_modules/@smithy/types/dist-cjs/index.js
81
81
  var require_dist_cjs = __commonJS((exports, module) => {
82
- var __defProp3 = Object.defineProperty;
82
+ var __defProp2 = Object.defineProperty;
83
83
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
84
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
85
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
86
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
84
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
85
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
86
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
87
87
  var __export = (target, all) => {
88
88
  for (var name in all)
89
- __defProp3(target, name, { get: all[name], enumerable: true });
89
+ __defProp2(target, name, { get: all[name], enumerable: true });
90
90
  };
91
91
  var __copyProps = (to, from, except, desc) => {
92
92
  if (from && typeof from === "object" || typeof from === "function") {
93
- for (let key of __getOwnPropNames3(from))
94
- if (!__hasOwnProp3.call(to, key) && key !== except)
95
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
93
+ for (let key of __getOwnPropNames2(from))
94
+ if (!__hasOwnProp2.call(to, key) && key !== except)
95
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
96
96
  }
97
97
  return to;
98
98
  };
99
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
99
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
100
100
  var src_exports = {};
101
101
  __export(src_exports, {
102
102
  AlgorithmId: () => AlgorithmId,
@@ -208,25 +208,25 @@ var require_slurpFile = __commonJS((exports) => {
208
208
 
209
209
  // ../../node_modules/.pnpm/@smithy+shared-ini-file-loader@4.0.2/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js
210
210
  var require_dist_cjs2 = __commonJS((exports, module) => {
211
- var __defProp3 = Object.defineProperty;
211
+ var __defProp2 = Object.defineProperty;
212
212
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
213
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
214
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
215
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
213
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
214
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
215
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
216
216
  var __export = (target, all) => {
217
217
  for (var name in all)
218
- __defProp3(target, name, { get: all[name], enumerable: true });
218
+ __defProp2(target, name, { get: all[name], enumerable: true });
219
219
  };
220
220
  var __copyProps = (to, from, except, desc) => {
221
221
  if (from && typeof from === "object" || typeof from === "function") {
222
- for (let key of __getOwnPropNames3(from))
223
- if (!__hasOwnProp3.call(to, key) && key !== except)
224
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
222
+ for (let key of __getOwnPropNames2(from))
223
+ if (!__hasOwnProp2.call(to, key) && key !== except)
224
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
225
225
  }
226
226
  return to;
227
227
  };
228
228
  var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
229
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
229
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
230
230
  var src_exports = {};
231
231
  __export(src_exports, {
232
232
  CONFIG_PREFIX_SEPARATOR: () => CONFIG_PREFIX_SEPARATOR,
@@ -367,24 +367,24 @@ var require_dist_cjs2 = __commonJS((exports, module) => {
367
367
 
368
368
  // ../../node_modules/.pnpm/@aws-sdk+core@3.775.0/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js
369
369
  var require_client = __commonJS((exports, module) => {
370
- var __defProp3 = Object.defineProperty;
370
+ var __defProp2 = Object.defineProperty;
371
371
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
372
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
373
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
374
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
372
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
373
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
374
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
375
375
  var __export = (target, all) => {
376
376
  for (var name in all)
377
- __defProp3(target, name, { get: all[name], enumerable: true });
377
+ __defProp2(target, name, { get: all[name], enumerable: true });
378
378
  };
379
379
  var __copyProps = (to, from, except, desc) => {
380
380
  if (from && typeof from === "object" || typeof from === "function") {
381
- for (let key of __getOwnPropNames3(from))
382
- if (!__hasOwnProp3.call(to, key) && key !== except)
383
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
381
+ for (let key of __getOwnPropNames2(from))
382
+ if (!__hasOwnProp2.call(to, key) && key !== except)
383
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
384
384
  }
385
385
  return to;
386
386
  };
387
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
387
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
388
388
  var index_exports = {};
389
389
  __export(index_exports, {
390
390
  emitWarningIfUnsupportedVersion: () => emitWarningIfUnsupportedVersion,
@@ -431,24 +431,24 @@ More information can be found at: https://a.co/74kJMmI`);
431
431
 
432
432
  // ../../node_modules/.pnpm/@smithy+property-provider@4.0.2/node_modules/@smithy/property-provider/dist-cjs/index.js
433
433
  var require_dist_cjs3 = __commonJS((exports, module) => {
434
- var __defProp3 = Object.defineProperty;
434
+ var __defProp2 = Object.defineProperty;
435
435
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
436
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
437
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
438
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
436
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
437
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
438
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
439
439
  var __export = (target, all) => {
440
440
  for (var name in all)
441
- __defProp3(target, name, { get: all[name], enumerable: true });
441
+ __defProp2(target, name, { get: all[name], enumerable: true });
442
442
  };
443
443
  var __copyProps = (to, from, except, desc) => {
444
444
  if (from && typeof from === "object" || typeof from === "function") {
445
- for (let key of __getOwnPropNames3(from))
446
- if (!__hasOwnProp3.call(to, key) && key !== except)
447
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
445
+ for (let key of __getOwnPropNames2(from))
446
+ if (!__hasOwnProp2.call(to, key) && key !== except)
447
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
448
448
  }
449
449
  return to;
450
450
  };
451
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
451
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
452
452
  var src_exports = {};
453
453
  __export(src_exports, {
454
454
  CredentialsProviderError: () => CredentialsProviderError,
@@ -1176,24 +1176,24 @@ var require_tslib = __commonJS((exports, module) => {
1176
1176
 
1177
1177
  // ../../node_modules/.pnpm/@smithy+protocol-http@5.1.0/node_modules/@smithy/protocol-http/dist-cjs/index.js
1178
1178
  var require_dist_cjs4 = __commonJS((exports, module) => {
1179
- var __defProp3 = Object.defineProperty;
1179
+ var __defProp2 = Object.defineProperty;
1180
1180
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
1181
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
1182
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
1183
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
1181
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
1182
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
1183
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
1184
1184
  var __export = (target, all) => {
1185
1185
  for (var name in all)
1186
- __defProp3(target, name, { get: all[name], enumerable: true });
1186
+ __defProp2(target, name, { get: all[name], enumerable: true });
1187
1187
  };
1188
1188
  var __copyProps = (to, from, except, desc) => {
1189
1189
  if (from && typeof from === "object" || typeof from === "function") {
1190
- for (let key of __getOwnPropNames3(from))
1191
- if (!__hasOwnProp3.call(to, key) && key !== except)
1192
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
1190
+ for (let key of __getOwnPropNames2(from))
1191
+ if (!__hasOwnProp2.call(to, key) && key !== except)
1192
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
1193
1193
  }
1194
1194
  return to;
1195
1195
  };
1196
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
1196
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
1197
1197
  var src_exports = {};
1198
1198
  __export(src_exports, {
1199
1199
  Field: () => Field,
@@ -1349,24 +1349,24 @@ var require_dist_cjs4 = __commonJS((exports, module) => {
1349
1349
 
1350
1350
  // ../../node_modules/.pnpm/@smithy+util-uri-escape@4.0.0/node_modules/@smithy/util-uri-escape/dist-cjs/index.js
1351
1351
  var require_dist_cjs5 = __commonJS((exports, module) => {
1352
- var __defProp3 = Object.defineProperty;
1352
+ var __defProp2 = Object.defineProperty;
1353
1353
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
1354
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
1355
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
1356
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
1354
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
1355
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
1356
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
1357
1357
  var __export = (target, all) => {
1358
1358
  for (var name in all)
1359
- __defProp3(target, name, { get: all[name], enumerable: true });
1359
+ __defProp2(target, name, { get: all[name], enumerable: true });
1360
1360
  };
1361
1361
  var __copyProps = (to, from, except, desc) => {
1362
1362
  if (from && typeof from === "object" || typeof from === "function") {
1363
- for (let key of __getOwnPropNames3(from))
1364
- if (!__hasOwnProp3.call(to, key) && key !== except)
1365
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
1363
+ for (let key of __getOwnPropNames2(from))
1364
+ if (!__hasOwnProp2.call(to, key) && key !== except)
1365
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
1366
1366
  }
1367
1367
  return to;
1368
1368
  };
1369
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
1369
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
1370
1370
  var src_exports = {};
1371
1371
  __export(src_exports, {
1372
1372
  escapeUri: () => escapeUri,
@@ -1380,24 +1380,24 @@ var require_dist_cjs5 = __commonJS((exports, module) => {
1380
1380
 
1381
1381
  // ../../node_modules/.pnpm/@smithy+querystring-builder@4.0.2/node_modules/@smithy/querystring-builder/dist-cjs/index.js
1382
1382
  var require_dist_cjs6 = __commonJS((exports, module) => {
1383
- var __defProp3 = Object.defineProperty;
1383
+ var __defProp2 = Object.defineProperty;
1384
1384
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
1385
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
1386
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
1387
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
1385
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
1386
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
1387
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
1388
1388
  var __export = (target, all) => {
1389
1389
  for (var name in all)
1390
- __defProp3(target, name, { get: all[name], enumerable: true });
1390
+ __defProp2(target, name, { get: all[name], enumerable: true });
1391
1391
  };
1392
1392
  var __copyProps = (to, from, except, desc) => {
1393
1393
  if (from && typeof from === "object" || typeof from === "function") {
1394
- for (let key of __getOwnPropNames3(from))
1395
- if (!__hasOwnProp3.call(to, key) && key !== except)
1396
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
1394
+ for (let key of __getOwnPropNames2(from))
1395
+ if (!__hasOwnProp2.call(to, key) && key !== except)
1396
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
1397
1397
  }
1398
1398
  return to;
1399
1399
  };
1400
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
1400
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
1401
1401
  var src_exports = {};
1402
1402
  __export(src_exports, {
1403
1403
  buildQueryString: () => buildQueryString
@@ -1428,27 +1428,27 @@ var require_dist_cjs6 = __commonJS((exports, module) => {
1428
1428
 
1429
1429
  // ../../node_modules/.pnpm/@smithy+node-http-handler@4.0.4/node_modules/@smithy/node-http-handler/dist-cjs/index.js
1430
1430
  var require_dist_cjs7 = __commonJS((exports, module) => {
1431
- var __create3 = Object.create;
1432
- var __defProp3 = Object.defineProperty;
1431
+ var __create2 = Object.create;
1432
+ var __defProp2 = Object.defineProperty;
1433
1433
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
1434
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
1435
- var __getProtoOf3 = Object.getPrototypeOf;
1436
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
1437
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
1434
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
1435
+ var __getProtoOf2 = Object.getPrototypeOf;
1436
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
1437
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
1438
1438
  var __export = (target, all) => {
1439
1439
  for (var name in all)
1440
- __defProp3(target, name, { get: all[name], enumerable: true });
1440
+ __defProp2(target, name, { get: all[name], enumerable: true });
1441
1441
  };
1442
1442
  var __copyProps = (to, from, except, desc) => {
1443
1443
  if (from && typeof from === "object" || typeof from === "function") {
1444
- for (let key of __getOwnPropNames3(from))
1445
- if (!__hasOwnProp3.call(to, key) && key !== except)
1446
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
1444
+ for (let key of __getOwnPropNames2(from))
1445
+ if (!__hasOwnProp2.call(to, key) && key !== except)
1446
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
1447
1447
  }
1448
1448
  return to;
1449
1449
  };
1450
- var __toESM3 = (mod, isNodeMode, target) => (target = mod != null ? __create3(__getProtoOf3(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp3(target, "default", { value: mod, enumerable: true }) : target, mod));
1451
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
1450
+ var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp2(target, "default", { value: mod, enumerable: true }) : target, mod));
1451
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
1452
1452
  var src_exports = {};
1453
1453
  __export(src_exports, {
1454
1454
  DEFAULT_REQUEST_TIMEOUT: () => DEFAULT_REQUEST_TIMEOUT,
@@ -1797,7 +1797,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
1797
1797
  }
1798
1798
  };
1799
1799
  var import_http22 = __require("http2");
1800
- var import_http2 = __toESM3(__require("http2"));
1800
+ var import_http2 = __toESM2(__require("http2"));
1801
1801
  var NodeHttp2ConnectionPool = class {
1802
1802
  constructor(sessions) {
1803
1803
  this.sessions = [];
@@ -2175,24 +2175,24 @@ var require_checkUrl = __commonJS((exports) => {
2175
2175
 
2176
2176
  // ../../node_modules/.pnpm/@smithy+middleware-stack@4.0.2/node_modules/@smithy/middleware-stack/dist-cjs/index.js
2177
2177
  var require_dist_cjs8 = __commonJS((exports, module) => {
2178
- var __defProp3 = Object.defineProperty;
2178
+ var __defProp2 = Object.defineProperty;
2179
2179
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
2180
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
2181
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
2182
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
2180
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
2181
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
2182
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
2183
2183
  var __export = (target, all) => {
2184
2184
  for (var name in all)
2185
- __defProp3(target, name, { get: all[name], enumerable: true });
2185
+ __defProp2(target, name, { get: all[name], enumerable: true });
2186
2186
  };
2187
2187
  var __copyProps = (to, from, except, desc) => {
2188
2188
  if (from && typeof from === "object" || typeof from === "function") {
2189
- for (let key of __getOwnPropNames3(from))
2190
- if (!__hasOwnProp3.call(to, key) && key !== except)
2191
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2189
+ for (let key of __getOwnPropNames2(from))
2190
+ if (!__hasOwnProp2.call(to, key) && key !== except)
2191
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2192
2192
  }
2193
2193
  return to;
2194
2194
  };
2195
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
2195
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
2196
2196
  var src_exports = {};
2197
2197
  __export(src_exports, {
2198
2198
  constructStack: () => constructStack
@@ -2465,24 +2465,24 @@ var require_dist_cjs8 = __commonJS((exports, module) => {
2465
2465
 
2466
2466
  // ../../node_modules/.pnpm/@smithy+is-array-buffer@4.0.0/node_modules/@smithy/is-array-buffer/dist-cjs/index.js
2467
2467
  var require_dist_cjs9 = __commonJS((exports, module) => {
2468
- var __defProp3 = Object.defineProperty;
2468
+ var __defProp2 = Object.defineProperty;
2469
2469
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
2470
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
2471
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
2472
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
2470
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
2471
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
2472
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
2473
2473
  var __export = (target, all) => {
2474
2474
  for (var name in all)
2475
- __defProp3(target, name, { get: all[name], enumerable: true });
2475
+ __defProp2(target, name, { get: all[name], enumerable: true });
2476
2476
  };
2477
2477
  var __copyProps = (to, from, except, desc) => {
2478
2478
  if (from && typeof from === "object" || typeof from === "function") {
2479
- for (let key of __getOwnPropNames3(from))
2480
- if (!__hasOwnProp3.call(to, key) && key !== except)
2481
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2479
+ for (let key of __getOwnPropNames2(from))
2480
+ if (!__hasOwnProp2.call(to, key) && key !== except)
2481
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2482
2482
  }
2483
2483
  return to;
2484
2484
  };
2485
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
2485
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
2486
2486
  var src_exports = {};
2487
2487
  __export(src_exports, {
2488
2488
  isArrayBuffer: () => isArrayBuffer
@@ -2493,24 +2493,24 @@ var require_dist_cjs9 = __commonJS((exports, module) => {
2493
2493
 
2494
2494
  // ../../node_modules/.pnpm/@smithy+util-buffer-from@4.0.0/node_modules/@smithy/util-buffer-from/dist-cjs/index.js
2495
2495
  var require_dist_cjs10 = __commonJS((exports, module) => {
2496
- var __defProp3 = Object.defineProperty;
2496
+ var __defProp2 = Object.defineProperty;
2497
2497
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
2498
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
2499
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
2500
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
2498
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
2499
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
2500
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
2501
2501
  var __export = (target, all) => {
2502
2502
  for (var name in all)
2503
- __defProp3(target, name, { get: all[name], enumerable: true });
2503
+ __defProp2(target, name, { get: all[name], enumerable: true });
2504
2504
  };
2505
2505
  var __copyProps = (to, from, except, desc) => {
2506
2506
  if (from && typeof from === "object" || typeof from === "function") {
2507
- for (let key of __getOwnPropNames3(from))
2508
- if (!__hasOwnProp3.call(to, key) && key !== except)
2509
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2507
+ for (let key of __getOwnPropNames2(from))
2508
+ if (!__hasOwnProp2.call(to, key) && key !== except)
2509
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2510
2510
  }
2511
2511
  return to;
2512
2512
  };
2513
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
2513
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
2514
2514
  var src_exports = {};
2515
2515
  __export(src_exports, {
2516
2516
  fromArrayBuffer: () => fromArrayBuffer,
@@ -2554,24 +2554,24 @@ var require_fromBase64 = __commonJS((exports) => {
2554
2554
 
2555
2555
  // ../../node_modules/.pnpm/@smithy+util-utf8@4.0.0/node_modules/@smithy/util-utf8/dist-cjs/index.js
2556
2556
  var require_dist_cjs11 = __commonJS((exports, module) => {
2557
- var __defProp3 = Object.defineProperty;
2557
+ var __defProp2 = Object.defineProperty;
2558
2558
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
2559
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
2560
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
2561
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
2559
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
2560
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
2561
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
2562
2562
  var __export = (target, all) => {
2563
2563
  for (var name in all)
2564
- __defProp3(target, name, { get: all[name], enumerable: true });
2564
+ __defProp2(target, name, { get: all[name], enumerable: true });
2565
2565
  };
2566
2566
  var __copyProps = (to, from, except, desc) => {
2567
2567
  if (from && typeof from === "object" || typeof from === "function") {
2568
- for (let key of __getOwnPropNames3(from))
2569
- if (!__hasOwnProp3.call(to, key) && key !== except)
2570
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2568
+ for (let key of __getOwnPropNames2(from))
2569
+ if (!__hasOwnProp2.call(to, key) && key !== except)
2570
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2571
2571
  }
2572
2572
  return to;
2573
2573
  };
2574
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
2574
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
2575
2575
  var src_exports = {};
2576
2576
  __export(src_exports, {
2577
2577
  fromUtf8: () => fromUtf8,
@@ -2627,20 +2627,20 @@ var require_toBase64 = __commonJS((exports) => {
2627
2627
 
2628
2628
  // ../../node_modules/.pnpm/@smithy+util-base64@4.0.0/node_modules/@smithy/util-base64/dist-cjs/index.js
2629
2629
  var require_dist_cjs12 = __commonJS((exports, module) => {
2630
- var __defProp3 = Object.defineProperty;
2630
+ var __defProp2 = Object.defineProperty;
2631
2631
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
2632
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
2633
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
2632
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
2633
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
2634
2634
  var __copyProps = (to, from, except, desc) => {
2635
2635
  if (from && typeof from === "object" || typeof from === "function") {
2636
- for (let key of __getOwnPropNames3(from))
2637
- if (!__hasOwnProp3.call(to, key) && key !== except)
2638
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2636
+ for (let key of __getOwnPropNames2(from))
2637
+ if (!__hasOwnProp2.call(to, key) && key !== except)
2638
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
2639
2639
  }
2640
2640
  return to;
2641
2641
  };
2642
2642
  var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
2643
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
2643
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
2644
2644
  var src_exports = {};
2645
2645
  module.exports = __toCommonJS(src_exports);
2646
2646
  __reExport(src_exports, require_fromBase64(), module.exports);
@@ -3111,24 +3111,24 @@ var require_headStream = __commonJS((exports) => {
3111
3111
 
3112
3112
  // ../../node_modules/.pnpm/@smithy+fetch-http-handler@5.0.2/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js
3113
3113
  var require_dist_cjs13 = __commonJS((exports, module) => {
3114
- var __defProp3 = Object.defineProperty;
3114
+ var __defProp2 = Object.defineProperty;
3115
3115
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3116
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
3117
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
3118
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
3116
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
3117
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
3118
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
3119
3119
  var __export = (target, all) => {
3120
3120
  for (var name in all)
3121
- __defProp3(target, name, { get: all[name], enumerable: true });
3121
+ __defProp2(target, name, { get: all[name], enumerable: true });
3122
3122
  };
3123
3123
  var __copyProps = (to, from, except, desc) => {
3124
3124
  if (from && typeof from === "object" || typeof from === "function") {
3125
- for (let key of __getOwnPropNames3(from))
3126
- if (!__hasOwnProp3.call(to, key) && key !== except)
3127
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3125
+ for (let key of __getOwnPropNames2(from))
3126
+ if (!__hasOwnProp2.call(to, key) && key !== except)
3127
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3128
3128
  }
3129
3129
  return to;
3130
3130
  };
3131
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
3131
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
3132
3132
  var src_exports = {};
3133
3133
  __export(src_exports, {
3134
3134
  FetchHttpHandler: () => FetchHttpHandler,
@@ -3349,24 +3349,24 @@ var require_dist_cjs13 = __commonJS((exports, module) => {
3349
3349
 
3350
3350
  // ../../node_modules/.pnpm/@smithy+util-hex-encoding@4.0.0/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js
3351
3351
  var require_dist_cjs14 = __commonJS((exports, module) => {
3352
- var __defProp3 = Object.defineProperty;
3352
+ var __defProp2 = Object.defineProperty;
3353
3353
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3354
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
3355
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
3356
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
3354
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
3355
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
3356
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
3357
3357
  var __export = (target, all) => {
3358
3358
  for (var name in all)
3359
- __defProp3(target, name, { get: all[name], enumerable: true });
3359
+ __defProp2(target, name, { get: all[name], enumerable: true });
3360
3360
  };
3361
3361
  var __copyProps = (to, from, except, desc) => {
3362
3362
  if (from && typeof from === "object" || typeof from === "function") {
3363
- for (let key of __getOwnPropNames3(from))
3364
- if (!__hasOwnProp3.call(to, key) && key !== except)
3365
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3363
+ for (let key of __getOwnPropNames2(from))
3364
+ if (!__hasOwnProp2.call(to, key) && key !== except)
3365
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3366
3366
  }
3367
3367
  return to;
3368
3368
  };
3369
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
3369
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
3370
3370
  var src_exports = {};
3371
3371
  __export(src_exports, {
3372
3372
  fromHex: () => fromHex,
@@ -3567,25 +3567,25 @@ var require_splitStream = __commonJS((exports) => {
3567
3567
 
3568
3568
  // ../../node_modules/.pnpm/@smithy+util-stream@4.2.0/node_modules/@smithy/util-stream/dist-cjs/index.js
3569
3569
  var require_dist_cjs15 = __commonJS((exports, module) => {
3570
- var __defProp3 = Object.defineProperty;
3570
+ var __defProp2 = Object.defineProperty;
3571
3571
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3572
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
3573
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
3574
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
3572
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
3573
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
3574
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
3575
3575
  var __export = (target, all) => {
3576
3576
  for (var name in all)
3577
- __defProp3(target, name, { get: all[name], enumerable: true });
3577
+ __defProp2(target, name, { get: all[name], enumerable: true });
3578
3578
  };
3579
3579
  var __copyProps = (to, from, except, desc) => {
3580
3580
  if (from && typeof from === "object" || typeof from === "function") {
3581
- for (let key of __getOwnPropNames3(from))
3582
- if (!__hasOwnProp3.call(to, key) && key !== except)
3583
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3581
+ for (let key of __getOwnPropNames2(from))
3582
+ if (!__hasOwnProp2.call(to, key) && key !== except)
3583
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3584
3584
  }
3585
3585
  return to;
3586
3586
  };
3587
3587
  var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
3588
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
3588
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
3589
3589
  var src_exports = {};
3590
3590
  __export(src_exports, {
3591
3591
  Uint8ArrayBlobAdapter: () => Uint8ArrayBlobAdapter
@@ -3639,23 +3639,23 @@ var require_dist_cjs15 = __commonJS((exports, module) => {
3639
3639
 
3640
3640
  // ../../node_modules/.pnpm/@smithy+core@3.2.0/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js
3641
3641
  var require_protocols = __commonJS((exports, module) => {
3642
- var __defProp3 = Object.defineProperty;
3642
+ var __defProp2 = Object.defineProperty;
3643
3643
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3644
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
3645
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
3644
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
3645
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
3646
3646
  var __export = (target, all) => {
3647
3647
  for (var name in all)
3648
- __defProp3(target, name, { get: all[name], enumerable: true });
3648
+ __defProp2(target, name, { get: all[name], enumerable: true });
3649
3649
  };
3650
3650
  var __copyProps = (to, from, except, desc) => {
3651
3651
  if (from && typeof from === "object" || typeof from === "function") {
3652
- for (let key of __getOwnPropNames3(from))
3653
- if (!__hasOwnProp3.call(to, key) && key !== except)
3654
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3652
+ for (let key of __getOwnPropNames2(from))
3653
+ if (!__hasOwnProp2.call(to, key) && key !== except)
3654
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3655
3655
  }
3656
3656
  return to;
3657
3657
  };
3658
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
3658
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
3659
3659
  var protocols_exports = {};
3660
3660
  __export(protocols_exports, {
3661
3661
  RequestBuilder: () => RequestBuilder,
@@ -3763,24 +3763,24 @@ var require_protocols = __commonJS((exports, module) => {
3763
3763
 
3764
3764
  // ../../node_modules/.pnpm/@smithy+smithy-client@4.2.0/node_modules/@smithy/smithy-client/dist-cjs/index.js
3765
3765
  var require_dist_cjs16 = __commonJS((exports, module) => {
3766
- var __defProp3 = Object.defineProperty;
3766
+ var __defProp2 = Object.defineProperty;
3767
3767
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3768
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
3769
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
3770
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
3768
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
3769
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
3770
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
3771
3771
  var __export = (target, all) => {
3772
3772
  for (var name in all)
3773
- __defProp3(target, name, { get: all[name], enumerable: true });
3773
+ __defProp2(target, name, { get: all[name], enumerable: true });
3774
3774
  };
3775
3775
  var __copyProps = (to, from, except, desc) => {
3776
3776
  if (from && typeof from === "object" || typeof from === "function") {
3777
- for (let key of __getOwnPropNames3(from))
3778
- if (!__hasOwnProp3.call(to, key) && key !== except)
3779
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3777
+ for (let key of __getOwnPropNames2(from))
3778
+ if (!__hasOwnProp2.call(to, key) && key !== except)
3779
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
3780
3780
  }
3781
3781
  return to;
3782
3782
  };
3783
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
3783
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
3784
3784
  var src_exports = {};
3785
3785
  __export(src_exports, {
3786
3786
  Client: () => Client,
@@ -4986,24 +4986,24 @@ var require_dist_cjs17 = __commonJS((exports) => {
4986
4986
 
4987
4987
  // ../../node_modules/.pnpm/@smithy+node-config-provider@4.0.2/node_modules/@smithy/node-config-provider/dist-cjs/index.js
4988
4988
  var require_dist_cjs18 = __commonJS((exports, module) => {
4989
- var __defProp3 = Object.defineProperty;
4989
+ var __defProp2 = Object.defineProperty;
4990
4990
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4991
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
4992
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
4993
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
4991
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
4992
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
4993
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
4994
4994
  var __export = (target, all) => {
4995
4995
  for (var name in all)
4996
- __defProp3(target, name, { get: all[name], enumerable: true });
4996
+ __defProp2(target, name, { get: all[name], enumerable: true });
4997
4997
  };
4998
4998
  var __copyProps = (to, from, except, desc) => {
4999
4999
  if (from && typeof from === "object" || typeof from === "function") {
5000
- for (let key of __getOwnPropNames3(from))
5001
- if (!__hasOwnProp3.call(to, key) && key !== except)
5002
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5000
+ for (let key of __getOwnPropNames2(from))
5001
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5002
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5003
5003
  }
5004
5004
  return to;
5005
5005
  };
5006
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5006
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5007
5007
  var src_exports = {};
5008
5008
  __export(src_exports, {
5009
5009
  loadConfig: () => loadConfig
@@ -5058,24 +5058,24 @@ var require_dist_cjs18 = __commonJS((exports, module) => {
5058
5058
 
5059
5059
  // ../../node_modules/.pnpm/@smithy+querystring-parser@4.0.2/node_modules/@smithy/querystring-parser/dist-cjs/index.js
5060
5060
  var require_dist_cjs19 = __commonJS((exports, module) => {
5061
- var __defProp3 = Object.defineProperty;
5061
+ var __defProp2 = Object.defineProperty;
5062
5062
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5063
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5064
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5065
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5063
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5064
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5065
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5066
5066
  var __export = (target, all) => {
5067
5067
  for (var name in all)
5068
- __defProp3(target, name, { get: all[name], enumerable: true });
5068
+ __defProp2(target, name, { get: all[name], enumerable: true });
5069
5069
  };
5070
5070
  var __copyProps = (to, from, except, desc) => {
5071
5071
  if (from && typeof from === "object" || typeof from === "function") {
5072
- for (let key of __getOwnPropNames3(from))
5073
- if (!__hasOwnProp3.call(to, key) && key !== except)
5074
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5072
+ for (let key of __getOwnPropNames2(from))
5073
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5074
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5075
5075
  }
5076
5076
  return to;
5077
5077
  };
5078
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5078
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5079
5079
  var src_exports = {};
5080
5080
  __export(src_exports, {
5081
5081
  parseQueryString: () => parseQueryString
@@ -5107,24 +5107,24 @@ var require_dist_cjs19 = __commonJS((exports, module) => {
5107
5107
 
5108
5108
  // ../../node_modules/.pnpm/@smithy+url-parser@4.0.2/node_modules/@smithy/url-parser/dist-cjs/index.js
5109
5109
  var require_dist_cjs20 = __commonJS((exports, module) => {
5110
- var __defProp3 = Object.defineProperty;
5110
+ var __defProp2 = Object.defineProperty;
5111
5111
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5112
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5113
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5114
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5112
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5113
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5114
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5115
5115
  var __export = (target, all) => {
5116
5116
  for (var name in all)
5117
- __defProp3(target, name, { get: all[name], enumerable: true });
5117
+ __defProp2(target, name, { get: all[name], enumerable: true });
5118
5118
  };
5119
5119
  var __copyProps = (to, from, except, desc) => {
5120
5120
  if (from && typeof from === "object" || typeof from === "function") {
5121
- for (let key of __getOwnPropNames3(from))
5122
- if (!__hasOwnProp3.call(to, key) && key !== except)
5123
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5121
+ for (let key of __getOwnPropNames2(from))
5122
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5123
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5124
5124
  }
5125
5125
  return to;
5126
5126
  };
5127
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5127
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5128
5128
  var src_exports = {};
5129
5129
  __export(src_exports, {
5130
5130
  parseUrl: () => parseUrl
@@ -5152,24 +5152,24 @@ var require_dist_cjs20 = __commonJS((exports, module) => {
5152
5152
 
5153
5153
  // ../../node_modules/.pnpm/@smithy+credential-provider-imds@4.0.2/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js
5154
5154
  var require_dist_cjs21 = __commonJS((exports, module) => {
5155
- var __defProp3 = Object.defineProperty;
5155
+ var __defProp2 = Object.defineProperty;
5156
5156
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5157
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5158
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5159
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5157
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5158
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5159
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5160
5160
  var __export = (target, all) => {
5161
5161
  for (var name in all)
5162
- __defProp3(target, name, { get: all[name], enumerable: true });
5162
+ __defProp2(target, name, { get: all[name], enumerable: true });
5163
5163
  };
5164
5164
  var __copyProps = (to, from, except, desc) => {
5165
5165
  if (from && typeof from === "object" || typeof from === "function") {
5166
- for (let key of __getOwnPropNames3(from))
5167
- if (!__hasOwnProp3.call(to, key) && key !== except)
5168
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5166
+ for (let key of __getOwnPropNames2(from))
5167
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5168
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5169
5169
  }
5170
5170
  return to;
5171
5171
  };
5172
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5172
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5173
5173
  var src_exports = {};
5174
5174
  __export(src_exports, {
5175
5175
  DEFAULT_MAX_RETRIES: () => DEFAULT_MAX_RETRIES,
@@ -5524,24 +5524,24 @@ For more information, please visit: ` + STATIC_STABILITY_DOC_URL);
5524
5524
 
5525
5525
  // ../../node_modules/.pnpm/@aws-sdk+credential-provider-env@3.775.0/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js
5526
5526
  var require_dist_cjs22 = __commonJS((exports, module) => {
5527
- var __defProp3 = Object.defineProperty;
5527
+ var __defProp2 = Object.defineProperty;
5528
5528
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5529
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5530
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5531
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5529
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5530
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5531
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5532
5532
  var __export = (target, all) => {
5533
5533
  for (var name in all)
5534
- __defProp3(target, name, { get: all[name], enumerable: true });
5534
+ __defProp2(target, name, { get: all[name], enumerable: true });
5535
5535
  };
5536
5536
  var __copyProps = (to, from, except, desc) => {
5537
5537
  if (from && typeof from === "object" || typeof from === "function") {
5538
- for (let key of __getOwnPropNames3(from))
5539
- if (!__hasOwnProp3.call(to, key) && key !== except)
5540
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5538
+ for (let key of __getOwnPropNames2(from))
5539
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5540
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5541
5541
  }
5542
5542
  return to;
5543
5543
  };
5544
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5544
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5545
5545
  var index_exports = {};
5546
5546
  __export(index_exports, {
5547
5547
  ENV_ACCOUNT_ID: () => ENV_ACCOUNT_ID,
@@ -5587,24 +5587,24 @@ var require_dist_cjs22 = __commonJS((exports, module) => {
5587
5587
 
5588
5588
  // ../../node_modules/.pnpm/@aws-sdk+middleware-host-header@3.775.0/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js
5589
5589
  var require_dist_cjs23 = __commonJS((exports, module) => {
5590
- var __defProp3 = Object.defineProperty;
5590
+ var __defProp2 = Object.defineProperty;
5591
5591
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5592
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5593
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5594
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5592
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5593
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5594
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5595
5595
  var __export = (target, all) => {
5596
5596
  for (var name in all)
5597
- __defProp3(target, name, { get: all[name], enumerable: true });
5597
+ __defProp2(target, name, { get: all[name], enumerable: true });
5598
5598
  };
5599
5599
  var __copyProps = (to, from, except, desc) => {
5600
5600
  if (from && typeof from === "object" || typeof from === "function") {
5601
- for (let key of __getOwnPropNames3(from))
5602
- if (!__hasOwnProp3.call(to, key) && key !== except)
5603
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5601
+ for (let key of __getOwnPropNames2(from))
5602
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5603
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5604
5604
  }
5605
5605
  return to;
5606
5606
  };
5607
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5607
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5608
5608
  var index_exports = {};
5609
5609
  __export(index_exports, {
5610
5610
  getHostHeaderPlugin: () => getHostHeaderPlugin,
@@ -5650,24 +5650,24 @@ var require_dist_cjs23 = __commonJS((exports, module) => {
5650
5650
 
5651
5651
  // ../../node_modules/.pnpm/@aws-sdk+middleware-logger@3.775.0/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js
5652
5652
  var require_dist_cjs24 = __commonJS((exports, module) => {
5653
- var __defProp3 = Object.defineProperty;
5653
+ var __defProp2 = Object.defineProperty;
5654
5654
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5655
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5656
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5657
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5655
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5656
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5657
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5658
5658
  var __export = (target, all) => {
5659
5659
  for (var name in all)
5660
- __defProp3(target, name, { get: all[name], enumerable: true });
5660
+ __defProp2(target, name, { get: all[name], enumerable: true });
5661
5661
  };
5662
5662
  var __copyProps = (to, from, except, desc) => {
5663
5663
  if (from && typeof from === "object" || typeof from === "function") {
5664
- for (let key of __getOwnPropNames3(from))
5665
- if (!__hasOwnProp3.call(to, key) && key !== except)
5666
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5664
+ for (let key of __getOwnPropNames2(from))
5665
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5666
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5667
5667
  }
5668
5668
  return to;
5669
5669
  };
5670
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5670
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5671
5671
  var index_exports = {};
5672
5672
  __export(index_exports, {
5673
5673
  getLoggerPlugin: () => getLoggerPlugin,
@@ -5720,24 +5720,24 @@ var require_dist_cjs24 = __commonJS((exports, module) => {
5720
5720
 
5721
5721
  // ../../node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.775.0/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js
5722
5722
  var require_dist_cjs25 = __commonJS((exports, module) => {
5723
- var __defProp3 = Object.defineProperty;
5723
+ var __defProp2 = Object.defineProperty;
5724
5724
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5725
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5726
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5727
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5725
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5726
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5727
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5728
5728
  var __export = (target, all) => {
5729
5729
  for (var name in all)
5730
- __defProp3(target, name, { get: all[name], enumerable: true });
5730
+ __defProp2(target, name, { get: all[name], enumerable: true });
5731
5731
  };
5732
5732
  var __copyProps = (to, from, except, desc) => {
5733
5733
  if (from && typeof from === "object" || typeof from === "function") {
5734
- for (let key of __getOwnPropNames3(from))
5735
- if (!__hasOwnProp3.call(to, key) && key !== except)
5736
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5734
+ for (let key of __getOwnPropNames2(from))
5735
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5736
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5737
5737
  }
5738
5738
  return to;
5739
5739
  };
5740
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5740
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5741
5741
  var index_exports = {};
5742
5742
  __export(index_exports, {
5743
5743
  addRecursionDetectionMiddlewareOptions: () => addRecursionDetectionMiddlewareOptions,
@@ -5785,24 +5785,24 @@ var require_dist_cjs25 = __commonJS((exports, module) => {
5785
5785
 
5786
5786
  // ../../node_modules/.pnpm/@smithy+util-middleware@4.0.2/node_modules/@smithy/util-middleware/dist-cjs/index.js
5787
5787
  var require_dist_cjs26 = __commonJS((exports, module) => {
5788
- var __defProp3 = Object.defineProperty;
5788
+ var __defProp2 = Object.defineProperty;
5789
5789
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5790
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5791
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5792
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5790
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5791
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5792
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5793
5793
  var __export = (target, all) => {
5794
5794
  for (var name in all)
5795
- __defProp3(target, name, { get: all[name], enumerable: true });
5795
+ __defProp2(target, name, { get: all[name], enumerable: true });
5796
5796
  };
5797
5797
  var __copyProps = (to, from, except, desc) => {
5798
5798
  if (from && typeof from === "object" || typeof from === "function") {
5799
- for (let key of __getOwnPropNames3(from))
5800
- if (!__hasOwnProp3.call(to, key) && key !== except)
5801
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5799
+ for (let key of __getOwnPropNames2(from))
5800
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5801
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5802
5802
  }
5803
5803
  return to;
5804
5804
  };
5805
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5805
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5806
5806
  var src_exports = {};
5807
5807
  __export(src_exports, {
5808
5808
  getSmithyContext: () => getSmithyContext,
@@ -5821,24 +5821,24 @@ var require_dist_cjs26 = __commonJS((exports, module) => {
5821
5821
 
5822
5822
  // ../../node_modules/.pnpm/@smithy+middleware-serde@4.0.3/node_modules/@smithy/middleware-serde/dist-cjs/index.js
5823
5823
  var require_dist_cjs27 = __commonJS((exports, module) => {
5824
- var __defProp3 = Object.defineProperty;
5824
+ var __defProp2 = Object.defineProperty;
5825
5825
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5826
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5827
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5828
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5826
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5827
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5828
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5829
5829
  var __export = (target, all) => {
5830
5830
  for (var name in all)
5831
- __defProp3(target, name, { get: all[name], enumerable: true });
5831
+ __defProp2(target, name, { get: all[name], enumerable: true });
5832
5832
  };
5833
5833
  var __copyProps = (to, from, except, desc) => {
5834
5834
  if (from && typeof from === "object" || typeof from === "function") {
5835
- for (let key of __getOwnPropNames3(from))
5836
- if (!__hasOwnProp3.call(to, key) && key !== except)
5837
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5835
+ for (let key of __getOwnPropNames2(from))
5836
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5837
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5838
5838
  }
5839
5839
  return to;
5840
5840
  };
5841
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5841
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5842
5842
  var src_exports = {};
5843
5843
  __export(src_exports, {
5844
5844
  deserializerMiddleware: () => deserializerMiddleware,
@@ -5917,24 +5917,24 @@ var require_dist_cjs27 = __commonJS((exports, module) => {
5917
5917
 
5918
5918
  // ../../node_modules/.pnpm/@smithy+core@3.2.0/node_modules/@smithy/core/dist-cjs/index.js
5919
5919
  var require_dist_cjs28 = __commonJS((exports, module) => {
5920
- var __defProp3 = Object.defineProperty;
5920
+ var __defProp2 = Object.defineProperty;
5921
5921
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5922
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
5923
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
5924
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
5922
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
5923
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
5924
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
5925
5925
  var __export = (target, all) => {
5926
5926
  for (var name in all)
5927
- __defProp3(target, name, { get: all[name], enumerable: true });
5927
+ __defProp2(target, name, { get: all[name], enumerable: true });
5928
5928
  };
5929
5929
  var __copyProps = (to, from, except, desc) => {
5930
5930
  if (from && typeof from === "object" || typeof from === "function") {
5931
- for (let key of __getOwnPropNames3(from))
5932
- if (!__hasOwnProp3.call(to, key) && key !== except)
5933
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5931
+ for (let key of __getOwnPropNames2(from))
5932
+ if (!__hasOwnProp2.call(to, key) && key !== except)
5933
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
5934
5934
  }
5935
5935
  return to;
5936
5936
  };
5937
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
5937
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
5938
5938
  var src_exports = {};
5939
5939
  __export(src_exports, {
5940
5940
  DefaultIdentityProviderConfig: () => DefaultIdentityProviderConfig,
@@ -6263,24 +6263,24 @@ var require_dist_cjs28 = __commonJS((exports, module) => {
6263
6263
 
6264
6264
  // ../../node_modules/.pnpm/@smithy+util-endpoints@3.0.2/node_modules/@smithy/util-endpoints/dist-cjs/index.js
6265
6265
  var require_dist_cjs29 = __commonJS((exports, module) => {
6266
- var __defProp3 = Object.defineProperty;
6266
+ var __defProp2 = Object.defineProperty;
6267
6267
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6268
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
6269
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
6270
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
6268
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
6269
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
6270
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
6271
6271
  var __export = (target, all) => {
6272
6272
  for (var name in all)
6273
- __defProp3(target, name, { get: all[name], enumerable: true });
6273
+ __defProp2(target, name, { get: all[name], enumerable: true });
6274
6274
  };
6275
6275
  var __copyProps = (to, from, except, desc) => {
6276
6276
  if (from && typeof from === "object" || typeof from === "function") {
6277
- for (let key of __getOwnPropNames3(from))
6278
- if (!__hasOwnProp3.call(to, key) && key !== except)
6279
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
6277
+ for (let key of __getOwnPropNames2(from))
6278
+ if (!__hasOwnProp2.call(to, key) && key !== except)
6279
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
6280
6280
  }
6281
6281
  return to;
6282
6282
  };
6283
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
6283
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
6284
6284
  var src_exports = {};
6285
6285
  __export(src_exports, {
6286
6286
  EndpointCache: () => EndpointCache,
@@ -6706,24 +6706,24 @@ var require_dist_cjs29 = __commonJS((exports, module) => {
6706
6706
 
6707
6707
  // ../../node_modules/.pnpm/@aws-sdk+util-endpoints@3.787.0/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js
6708
6708
  var require_dist_cjs30 = __commonJS((exports, module) => {
6709
- var __defProp3 = Object.defineProperty;
6709
+ var __defProp2 = Object.defineProperty;
6710
6710
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6711
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
6712
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
6713
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
6711
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
6712
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
6713
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
6714
6714
  var __export = (target, all) => {
6715
6715
  for (var name in all)
6716
- __defProp3(target, name, { get: all[name], enumerable: true });
6716
+ __defProp2(target, name, { get: all[name], enumerable: true });
6717
6717
  };
6718
6718
  var __copyProps = (to, from, except, desc) => {
6719
6719
  if (from && typeof from === "object" || typeof from === "function") {
6720
- for (let key of __getOwnPropNames3(from))
6721
- if (!__hasOwnProp3.call(to, key) && key !== except)
6722
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
6720
+ for (let key of __getOwnPropNames2(from))
6721
+ if (!__hasOwnProp2.call(to, key) && key !== except)
6722
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
6723
6723
  }
6724
6724
  return to;
6725
6725
  };
6726
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
6726
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
6727
6727
  var index_exports = {};
6728
6728
  __export(index_exports, {
6729
6729
  ConditionObject: () => import_util_endpoints.ConditionObject,
@@ -7105,24 +7105,24 @@ var require_dist_cjs30 = __commonJS((exports, module) => {
7105
7105
 
7106
7106
  // ../../node_modules/.pnpm/@smithy+signature-v4@5.0.2/node_modules/@smithy/signature-v4/dist-cjs/index.js
7107
7107
  var require_dist_cjs31 = __commonJS((exports, module) => {
7108
- var __defProp3 = Object.defineProperty;
7108
+ var __defProp2 = Object.defineProperty;
7109
7109
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
7110
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
7111
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
7112
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
7110
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
7111
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
7112
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
7113
7113
  var __export = (target, all) => {
7114
7114
  for (var name in all)
7115
- __defProp3(target, name, { get: all[name], enumerable: true });
7115
+ __defProp2(target, name, { get: all[name], enumerable: true });
7116
7116
  };
7117
7117
  var __copyProps = (to, from, except, desc) => {
7118
7118
  if (from && typeof from === "object" || typeof from === "function") {
7119
- for (let key of __getOwnPropNames3(from))
7120
- if (!__hasOwnProp3.call(to, key) && key !== except)
7121
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
7119
+ for (let key of __getOwnPropNames2(from))
7120
+ if (!__hasOwnProp2.call(to, key) && key !== except)
7121
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
7122
7122
  }
7123
7123
  return to;
7124
7124
  };
7125
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
7125
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
7126
7126
  var src_exports = {};
7127
7127
  __export(src_exports, {
7128
7128
  SignatureV4: () => SignatureV4,
@@ -7624,24 +7624,24 @@ ${(0, import_util_hex_encoding.toHex)(hashedRequest)}`;
7624
7624
 
7625
7625
  // ../../node_modules/.pnpm/@aws-sdk+core@3.775.0/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js
7626
7626
  var require_httpAuthSchemes = __commonJS((exports, module) => {
7627
- var __defProp3 = Object.defineProperty;
7627
+ var __defProp2 = Object.defineProperty;
7628
7628
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
7629
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
7630
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
7631
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
7629
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
7630
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
7631
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
7632
7632
  var __export = (target, all) => {
7633
7633
  for (var name in all)
7634
- __defProp3(target, name, { get: all[name], enumerable: true });
7634
+ __defProp2(target, name, { get: all[name], enumerable: true });
7635
7635
  };
7636
7636
  var __copyProps = (to, from, except, desc) => {
7637
7637
  if (from && typeof from === "object" || typeof from === "function") {
7638
- for (let key of __getOwnPropNames3(from))
7639
- if (!__hasOwnProp3.call(to, key) && key !== except)
7640
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
7638
+ for (let key of __getOwnPropNames2(from))
7639
+ if (!__hasOwnProp2.call(to, key) && key !== except)
7640
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
7641
7641
  }
7642
7642
  return to;
7643
7643
  };
7644
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
7644
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
7645
7645
  var index_exports = {};
7646
7646
  __export(index_exports, {
7647
7647
  AWSSDKSigV4Signer: () => AWSSDKSigV4Signer,
@@ -9567,24 +9567,24 @@ var require_fxp = __commonJS((exports, module) => {
9567
9567
 
9568
9568
  // ../../node_modules/.pnpm/@aws-sdk+core@3.775.0/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js
9569
9569
  var require_protocols2 = __commonJS((exports, module) => {
9570
- var __defProp3 = Object.defineProperty;
9570
+ var __defProp2 = Object.defineProperty;
9571
9571
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
9572
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
9573
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
9574
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
9572
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
9573
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
9574
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
9575
9575
  var __export = (target, all) => {
9576
9576
  for (var name in all)
9577
- __defProp3(target, name, { get: all[name], enumerable: true });
9577
+ __defProp2(target, name, { get: all[name], enumerable: true });
9578
9578
  };
9579
9579
  var __copyProps = (to, from, except, desc) => {
9580
9580
  if (from && typeof from === "object" || typeof from === "function") {
9581
- for (let key of __getOwnPropNames3(from))
9582
- if (!__hasOwnProp3.call(to, key) && key !== except)
9583
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
9581
+ for (let key of __getOwnPropNames2(from))
9582
+ if (!__hasOwnProp2.call(to, key) && key !== except)
9583
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
9584
9584
  }
9585
9585
  return to;
9586
9586
  };
9587
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
9587
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
9588
9588
  var index_exports = {};
9589
9589
  __export(index_exports, {
9590
9590
  _toBool: () => _toBool,
@@ -9781,24 +9781,24 @@ var require_dist_cjs32 = __commonJS((exports) => {
9781
9781
 
9782
9782
  // ../../node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.787.0/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js
9783
9783
  var require_dist_cjs33 = __commonJS((exports, module) => {
9784
- var __defProp3 = Object.defineProperty;
9784
+ var __defProp2 = Object.defineProperty;
9785
9785
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
9786
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
9787
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
9788
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
9786
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
9787
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
9788
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
9789
9789
  var __export = (target, all) => {
9790
9790
  for (var name in all)
9791
- __defProp3(target, name, { get: all[name], enumerable: true });
9791
+ __defProp2(target, name, { get: all[name], enumerable: true });
9792
9792
  };
9793
9793
  var __copyProps = (to, from, except, desc) => {
9794
9794
  if (from && typeof from === "object" || typeof from === "function") {
9795
- for (let key of __getOwnPropNames3(from))
9796
- if (!__hasOwnProp3.call(to, key) && key !== except)
9797
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
9795
+ for (let key of __getOwnPropNames2(from))
9796
+ if (!__hasOwnProp2.call(to, key) && key !== except)
9797
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
9798
9798
  }
9799
9799
  return to;
9800
9800
  };
9801
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
9801
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
9802
9802
  var index_exports = {};
9803
9803
  __export(index_exports, {
9804
9804
  DEFAULT_UA_APP_ID: () => DEFAULT_UA_APP_ID,
@@ -9983,24 +9983,24 @@ var require_dist_cjs33 = __commonJS((exports, module) => {
9983
9983
 
9984
9984
  // ../../node_modules/.pnpm/@smithy+util-config-provider@4.0.0/node_modules/@smithy/util-config-provider/dist-cjs/index.js
9985
9985
  var require_dist_cjs34 = __commonJS((exports, module) => {
9986
- var __defProp3 = Object.defineProperty;
9986
+ var __defProp2 = Object.defineProperty;
9987
9987
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
9988
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
9989
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
9990
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
9988
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
9989
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
9990
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
9991
9991
  var __export = (target, all) => {
9992
9992
  for (var name in all)
9993
- __defProp3(target, name, { get: all[name], enumerable: true });
9993
+ __defProp2(target, name, { get: all[name], enumerable: true });
9994
9994
  };
9995
9995
  var __copyProps = (to, from, except, desc) => {
9996
9996
  if (from && typeof from === "object" || typeof from === "function") {
9997
- for (let key of __getOwnPropNames3(from))
9998
- if (!__hasOwnProp3.call(to, key) && key !== except)
9999
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
9997
+ for (let key of __getOwnPropNames2(from))
9998
+ if (!__hasOwnProp2.call(to, key) && key !== except)
9999
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10000
10000
  }
10001
10001
  return to;
10002
10002
  };
10003
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
10003
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
10004
10004
  var src_exports = {};
10005
10005
  __export(src_exports, {
10006
10006
  SelectorType: () => SelectorType,
@@ -10035,24 +10035,24 @@ var require_dist_cjs34 = __commonJS((exports, module) => {
10035
10035
 
10036
10036
  // ../../node_modules/.pnpm/@smithy+config-resolver@4.1.0/node_modules/@smithy/config-resolver/dist-cjs/index.js
10037
10037
  var require_dist_cjs35 = __commonJS((exports, module) => {
10038
- var __defProp3 = Object.defineProperty;
10038
+ var __defProp2 = Object.defineProperty;
10039
10039
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
10040
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
10041
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
10042
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
10040
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
10041
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
10042
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
10043
10043
  var __export = (target, all) => {
10044
10044
  for (var name in all)
10045
- __defProp3(target, name, { get: all[name], enumerable: true });
10045
+ __defProp2(target, name, { get: all[name], enumerable: true });
10046
10046
  };
10047
10047
  var __copyProps = (to, from, except, desc) => {
10048
10048
  if (from && typeof from === "object" || typeof from === "function") {
10049
- for (let key of __getOwnPropNames3(from))
10050
- if (!__hasOwnProp3.call(to, key) && key !== except)
10051
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10049
+ for (let key of __getOwnPropNames2(from))
10050
+ if (!__hasOwnProp2.call(to, key) && key !== except)
10051
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10052
10052
  }
10053
10053
  return to;
10054
10054
  };
10055
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
10055
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
10056
10056
  var src_exports = {};
10057
10057
  __export(src_exports, {
10058
10058
  CONFIG_USE_DUALSTACK_ENDPOINT: () => CONFIG_USE_DUALSTACK_ENDPOINT,
@@ -10210,24 +10210,24 @@ var require_dist_cjs35 = __commonJS((exports, module) => {
10210
10210
 
10211
10211
  // ../../node_modules/.pnpm/@smithy+middleware-content-length@4.0.2/node_modules/@smithy/middleware-content-length/dist-cjs/index.js
10212
10212
  var require_dist_cjs36 = __commonJS((exports, module) => {
10213
- var __defProp3 = Object.defineProperty;
10213
+ var __defProp2 = Object.defineProperty;
10214
10214
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
10215
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
10216
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
10217
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
10215
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
10216
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
10217
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
10218
10218
  var __export = (target, all) => {
10219
10219
  for (var name in all)
10220
- __defProp3(target, name, { get: all[name], enumerable: true });
10220
+ __defProp2(target, name, { get: all[name], enumerable: true });
10221
10221
  };
10222
10222
  var __copyProps = (to, from, except, desc) => {
10223
10223
  if (from && typeof from === "object" || typeof from === "function") {
10224
- for (let key of __getOwnPropNames3(from))
10225
- if (!__hasOwnProp3.call(to, key) && key !== except)
10226
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10224
+ for (let key of __getOwnPropNames2(from))
10225
+ if (!__hasOwnProp2.call(to, key) && key !== except)
10226
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10227
10227
  }
10228
10228
  return to;
10229
10229
  };
10230
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
10230
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
10231
10231
  var src_exports = {};
10232
10232
  __export(src_exports, {
10233
10233
  contentLengthMiddleware: () => contentLengthMiddleware,
@@ -10322,24 +10322,24 @@ var require_getEndpointFromConfig = __commonJS((exports) => {
10322
10322
 
10323
10323
  // ../../node_modules/.pnpm/@smithy+middleware-endpoint@4.1.0/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js
10324
10324
  var require_dist_cjs37 = __commonJS((exports, module) => {
10325
- var __defProp3 = Object.defineProperty;
10325
+ var __defProp2 = Object.defineProperty;
10326
10326
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
10327
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
10328
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
10329
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
10327
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
10328
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
10329
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
10330
10330
  var __export = (target, all) => {
10331
10331
  for (var name in all)
10332
- __defProp3(target, name, { get: all[name], enumerable: true });
10332
+ __defProp2(target, name, { get: all[name], enumerable: true });
10333
10333
  };
10334
10334
  var __copyProps = (to, from, except, desc) => {
10335
10335
  if (from && typeof from === "object" || typeof from === "function") {
10336
- for (let key of __getOwnPropNames3(from))
10337
- if (!__hasOwnProp3.call(to, key) && key !== except)
10338
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10336
+ for (let key of __getOwnPropNames2(from))
10337
+ if (!__hasOwnProp2.call(to, key) && key !== except)
10338
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10339
10339
  }
10340
10340
  return to;
10341
10341
  };
10342
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
10342
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
10343
10343
  var src_exports = {};
10344
10344
  __export(src_exports, {
10345
10345
  endpointMiddleware: () => endpointMiddleware,
@@ -10958,7 +10958,7 @@ var require_version = __commonJS((exports) => {
10958
10958
  });
10959
10959
 
10960
10960
  // ../../node_modules/.pnpm/uuid@9.0.1/node_modules/uuid/dist/index.js
10961
- var require_dist2 = __commonJS((exports) => {
10961
+ var require_dist = __commonJS((exports) => {
10962
10962
  Object.defineProperty(exports, "__esModule", {
10963
10963
  value: true
10964
10964
  });
@@ -11032,24 +11032,24 @@ var require_dist2 = __commonJS((exports) => {
11032
11032
 
11033
11033
  // ../../node_modules/.pnpm/@smithy+service-error-classification@4.0.2/node_modules/@smithy/service-error-classification/dist-cjs/index.js
11034
11034
  var require_dist_cjs38 = __commonJS((exports, module) => {
11035
- var __defProp3 = Object.defineProperty;
11035
+ var __defProp2 = Object.defineProperty;
11036
11036
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
11037
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
11038
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
11039
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
11037
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
11038
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
11039
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
11040
11040
  var __export = (target, all) => {
11041
11041
  for (var name in all)
11042
- __defProp3(target, name, { get: all[name], enumerable: true });
11042
+ __defProp2(target, name, { get: all[name], enumerable: true });
11043
11043
  };
11044
11044
  var __copyProps = (to, from, except, desc) => {
11045
11045
  if (from && typeof from === "object" || typeof from === "function") {
11046
- for (let key of __getOwnPropNames3(from))
11047
- if (!__hasOwnProp3.call(to, key) && key !== except)
11048
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11046
+ for (let key of __getOwnPropNames2(from))
11047
+ if (!__hasOwnProp2.call(to, key) && key !== except)
11048
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11049
11049
  }
11050
11050
  return to;
11051
11051
  };
11052
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
11052
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
11053
11053
  var src_exports = {};
11054
11054
  __export(src_exports, {
11055
11055
  isClockSkewCorrectedError: () => isClockSkewCorrectedError,
@@ -11106,24 +11106,24 @@ var require_dist_cjs38 = __commonJS((exports, module) => {
11106
11106
 
11107
11107
  // ../../node_modules/.pnpm/@smithy+util-retry@4.0.2/node_modules/@smithy/util-retry/dist-cjs/index.js
11108
11108
  var require_dist_cjs39 = __commonJS((exports, module) => {
11109
- var __defProp3 = Object.defineProperty;
11109
+ var __defProp2 = Object.defineProperty;
11110
11110
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
11111
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
11112
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
11113
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
11111
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
11112
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
11113
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
11114
11114
  var __export = (target, all) => {
11115
11115
  for (var name in all)
11116
- __defProp3(target, name, { get: all[name], enumerable: true });
11116
+ __defProp2(target, name, { get: all[name], enumerable: true });
11117
11117
  };
11118
11118
  var __copyProps = (to, from, except, desc) => {
11119
11119
  if (from && typeof from === "object" || typeof from === "function") {
11120
- for (let key of __getOwnPropNames3(from))
11121
- if (!__hasOwnProp3.call(to, key) && key !== except)
11122
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11120
+ for (let key of __getOwnPropNames2(from))
11121
+ if (!__hasOwnProp2.call(to, key) && key !== except)
11122
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11123
11123
  }
11124
11124
  return to;
11125
11125
  };
11126
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
11126
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
11127
11127
  var src_exports = {};
11128
11128
  __export(src_exports, {
11129
11129
  AdaptiveRetryStrategy: () => AdaptiveRetryStrategy,
@@ -11405,24 +11405,24 @@ var require_isStreamingPayload = __commonJS((exports) => {
11405
11405
 
11406
11406
  // ../../node_modules/.pnpm/@smithy+middleware-retry@4.1.0/node_modules/@smithy/middleware-retry/dist-cjs/index.js
11407
11407
  var require_dist_cjs40 = __commonJS((exports, module) => {
11408
- var __defProp3 = Object.defineProperty;
11408
+ var __defProp2 = Object.defineProperty;
11409
11409
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
11410
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
11411
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
11412
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
11410
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
11411
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
11412
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
11413
11413
  var __export = (target, all) => {
11414
11414
  for (var name in all)
11415
- __defProp3(target, name, { get: all[name], enumerable: true });
11415
+ __defProp2(target, name, { get: all[name], enumerable: true });
11416
11416
  };
11417
11417
  var __copyProps = (to, from, except, desc) => {
11418
11418
  if (from && typeof from === "object" || typeof from === "function") {
11419
- for (let key of __getOwnPropNames3(from))
11420
- if (!__hasOwnProp3.call(to, key) && key !== except)
11421
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11419
+ for (let key of __getOwnPropNames2(from))
11420
+ if (!__hasOwnProp2.call(to, key) && key !== except)
11421
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11422
11422
  }
11423
11423
  return to;
11424
11424
  };
11425
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
11425
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
11426
11426
  var src_exports = {};
11427
11427
  __export(src_exports, {
11428
11428
  AdaptiveRetryStrategy: () => AdaptiveRetryStrategy,
@@ -11446,7 +11446,7 @@ var require_dist_cjs40 = __commonJS((exports, module) => {
11446
11446
  });
11447
11447
  module.exports = __toCommonJS(src_exports);
11448
11448
  var import_protocol_http = require_dist_cjs4();
11449
- var import_uuid = require_dist2();
11449
+ var import_uuid = require_dist();
11450
11450
  var import_util_retry = require_dist_cjs39();
11451
11451
  var getDefaultRetryQuota = /* @__PURE__ */ __name((initialRetryTokens, options) => {
11452
11452
  const MAX_CAPACITY = initialRetryTokens;
@@ -11974,24 +11974,24 @@ var require_package = __commonJS((exports, module) => {
11974
11974
 
11975
11975
  // ../../node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.787.0/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js
11976
11976
  var require_dist_cjs41 = __commonJS((exports, module) => {
11977
- var __defProp3 = Object.defineProperty;
11977
+ var __defProp2 = Object.defineProperty;
11978
11978
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
11979
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
11980
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
11981
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
11979
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
11980
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
11981
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
11982
11982
  var __export = (target, all) => {
11983
11983
  for (var name in all)
11984
- __defProp3(target, name, { get: all[name], enumerable: true });
11984
+ __defProp2(target, name, { get: all[name], enumerable: true });
11985
11985
  };
11986
11986
  var __copyProps = (to, from, except, desc) => {
11987
11987
  if (from && typeof from === "object" || typeof from === "function") {
11988
- for (let key of __getOwnPropNames3(from))
11989
- if (!__hasOwnProp3.call(to, key) && key !== except)
11990
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11988
+ for (let key of __getOwnPropNames2(from))
11989
+ if (!__hasOwnProp2.call(to, key) && key !== except)
11990
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11991
11991
  }
11992
11992
  return to;
11993
11993
  };
11994
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
11994
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
11995
11995
  var index_exports = {};
11996
11996
  __export(index_exports, {
11997
11997
  NODE_APP_ID_CONFIG_OPTIONS: () => NODE_APP_ID_CONFIG_OPTIONS,
@@ -12051,24 +12051,24 @@ var require_dist_cjs41 = __commonJS((exports, module) => {
12051
12051
 
12052
12052
  // ../../node_modules/.pnpm/@smithy+hash-node@4.0.2/node_modules/@smithy/hash-node/dist-cjs/index.js
12053
12053
  var require_dist_cjs42 = __commonJS((exports, module) => {
12054
- var __defProp3 = Object.defineProperty;
12054
+ var __defProp2 = Object.defineProperty;
12055
12055
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12056
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
12057
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
12058
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
12056
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
12057
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
12058
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
12059
12059
  var __export = (target, all) => {
12060
12060
  for (var name in all)
12061
- __defProp3(target, name, { get: all[name], enumerable: true });
12061
+ __defProp2(target, name, { get: all[name], enumerable: true });
12062
12062
  };
12063
12063
  var __copyProps = (to, from, except, desc) => {
12064
12064
  if (from && typeof from === "object" || typeof from === "function") {
12065
- for (let key of __getOwnPropNames3(from))
12066
- if (!__hasOwnProp3.call(to, key) && key !== except)
12067
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12065
+ for (let key of __getOwnPropNames2(from))
12066
+ if (!__hasOwnProp2.call(to, key) && key !== except)
12067
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12068
12068
  }
12069
12069
  return to;
12070
12070
  };
12071
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
12071
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
12072
12072
  var src_exports = {};
12073
12073
  __export(src_exports, {
12074
12074
  Hash: () => Hash
@@ -12114,24 +12114,24 @@ var require_dist_cjs42 = __commonJS((exports, module) => {
12114
12114
 
12115
12115
  // ../../node_modules/.pnpm/@smithy+util-body-length-node@4.0.0/node_modules/@smithy/util-body-length-node/dist-cjs/index.js
12116
12116
  var require_dist_cjs43 = __commonJS((exports, module) => {
12117
- var __defProp3 = Object.defineProperty;
12117
+ var __defProp2 = Object.defineProperty;
12118
12118
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12119
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
12120
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
12121
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
12119
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
12120
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
12121
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
12122
12122
  var __export = (target, all) => {
12123
12123
  for (var name in all)
12124
- __defProp3(target, name, { get: all[name], enumerable: true });
12124
+ __defProp2(target, name, { get: all[name], enumerable: true });
12125
12125
  };
12126
12126
  var __copyProps = (to, from, except, desc) => {
12127
12127
  if (from && typeof from === "object" || typeof from === "function") {
12128
- for (let key of __getOwnPropNames3(from))
12129
- if (!__hasOwnProp3.call(to, key) && key !== except)
12130
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12128
+ for (let key of __getOwnPropNames2(from))
12129
+ if (!__hasOwnProp2.call(to, key) && key !== except)
12130
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12131
12131
  }
12132
12132
  return to;
12133
12133
  };
12134
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
12134
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
12135
12135
  var src_exports = {};
12136
12136
  __export(src_exports, {
12137
12137
  calculateBodyLength: () => calculateBodyLength
@@ -12269,27 +12269,27 @@ var require_runtimeConfig_shared = __commonJS((exports) => {
12269
12269
 
12270
12270
  // ../../node_modules/.pnpm/@smithy+util-defaults-mode-node@4.0.8/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js
12271
12271
  var require_dist_cjs44 = __commonJS((exports, module) => {
12272
- var __create3 = Object.create;
12273
- var __defProp3 = Object.defineProperty;
12272
+ var __create2 = Object.create;
12273
+ var __defProp2 = Object.defineProperty;
12274
12274
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12275
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
12276
- var __getProtoOf3 = Object.getPrototypeOf;
12277
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
12278
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
12275
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
12276
+ var __getProtoOf2 = Object.getPrototypeOf;
12277
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
12278
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
12279
12279
  var __export = (target, all) => {
12280
12280
  for (var name in all)
12281
- __defProp3(target, name, { get: all[name], enumerable: true });
12281
+ __defProp2(target, name, { get: all[name], enumerable: true });
12282
12282
  };
12283
12283
  var __copyProps = (to, from, except, desc) => {
12284
12284
  if (from && typeof from === "object" || typeof from === "function") {
12285
- for (let key of __getOwnPropNames3(from))
12286
- if (!__hasOwnProp3.call(to, key) && key !== except)
12287
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12285
+ for (let key of __getOwnPropNames2(from))
12286
+ if (!__hasOwnProp2.call(to, key) && key !== except)
12287
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12288
12288
  }
12289
12289
  return to;
12290
12290
  };
12291
- var __toESM3 = (mod, isNodeMode, target) => (target = mod != null ? __create3(__getProtoOf3(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp3(target, "default", { value: mod, enumerable: true }) : target, mod));
12292
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
12291
+ var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp2(target, "default", { value: mod, enumerable: true }) : target, mod));
12292
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
12293
12293
  var src_exports = {};
12294
12294
  __export(src_exports, {
12295
12295
  resolveDefaultsModeConfig: () => resolveDefaultsModeConfig
@@ -12356,7 +12356,7 @@ var require_dist_cjs44 = __commonJS((exports, module) => {
12356
12356
  }
12357
12357
  if (!process.env[ENV_IMDS_DISABLED]) {
12358
12358
  try {
12359
- const { getInstanceMetadataEndpoint, httpRequest } = await Promise.resolve().then(() => __toESM3(require_dist_cjs21()));
12359
+ const { getInstanceMetadataEndpoint, httpRequest } = await Promise.resolve().then(() => __toESM2(require_dist_cjs21()));
12360
12360
  const endpoint = await getInstanceMetadataEndpoint();
12361
12361
  return (await httpRequest({ ...endpoint, path: IMDS_REGION_PATH })).toString();
12362
12362
  } catch (e) {}
@@ -12429,24 +12429,24 @@ var require_runtimeConfig = __commonJS((exports) => {
12429
12429
 
12430
12430
  // ../../node_modules/.pnpm/@aws-sdk+region-config-resolver@3.775.0/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js
12431
12431
  var require_dist_cjs45 = __commonJS((exports, module) => {
12432
- var __defProp3 = Object.defineProperty;
12432
+ var __defProp2 = Object.defineProperty;
12433
12433
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12434
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
12435
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
12436
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
12434
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
12435
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
12436
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
12437
12437
  var __export = (target, all) => {
12438
12438
  for (var name in all)
12439
- __defProp3(target, name, { get: all[name], enumerable: true });
12439
+ __defProp2(target, name, { get: all[name], enumerable: true });
12440
12440
  };
12441
12441
  var __copyProps = (to, from, except, desc) => {
12442
12442
  if (from && typeof from === "object" || typeof from === "function") {
12443
- for (let key of __getOwnPropNames3(from))
12444
- if (!__hasOwnProp3.call(to, key) && key !== except)
12445
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12443
+ for (let key of __getOwnPropNames2(from))
12444
+ if (!__hasOwnProp2.call(to, key) && key !== except)
12445
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12446
12446
  }
12447
12447
  return to;
12448
12448
  };
12449
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
12449
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
12450
12450
  var index_exports = {};
12451
12451
  __export(index_exports, {
12452
12452
  NODE_REGION_CONFIG_FILE_OPTIONS: () => NODE_REGION_CONFIG_FILE_OPTIONS,
@@ -12632,25 +12632,25 @@ var require_STSClient = __commonJS((exports) => {
12632
12632
 
12633
12633
  // ../../node_modules/.pnpm/@aws-sdk+nested-clients@3.787.0/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js
12634
12634
  var require_sts = __commonJS((exports, module) => {
12635
- var __defProp3 = Object.defineProperty;
12635
+ var __defProp2 = Object.defineProperty;
12636
12636
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
12637
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
12638
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
12639
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
12637
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
12638
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
12639
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
12640
12640
  var __export = (target, all) => {
12641
12641
  for (var name in all)
12642
- __defProp3(target, name, { get: all[name], enumerable: true });
12642
+ __defProp2(target, name, { get: all[name], enumerable: true });
12643
12643
  };
12644
12644
  var __copyProps = (to, from, except, desc) => {
12645
12645
  if (from && typeof from === "object" || typeof from === "function") {
12646
- for (let key of __getOwnPropNames3(from))
12647
- if (!__hasOwnProp3.call(to, key) && key !== except)
12648
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12646
+ for (let key of __getOwnPropNames2(from))
12647
+ if (!__hasOwnProp2.call(to, key) && key !== except)
12648
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
12649
12649
  }
12650
12650
  return to;
12651
12651
  };
12652
12652
  var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
12653
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
12653
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
12654
12654
  var index_exports = {};
12655
12655
  __export(index_exports, {
12656
12656
  AssumeRoleCommand: () => AssumeRoleCommand,
@@ -13497,24 +13497,24 @@ var require_sts = __commonJS((exports, module) => {
13497
13497
 
13498
13498
  // ../../node_modules/.pnpm/@aws-sdk+credential-provider-process@3.775.0/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js
13499
13499
  var require_dist_cjs46 = __commonJS((exports, module) => {
13500
- var __defProp3 = Object.defineProperty;
13500
+ var __defProp2 = Object.defineProperty;
13501
13501
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
13502
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
13503
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
13504
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
13502
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
13503
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
13504
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
13505
13505
  var __export = (target, all) => {
13506
13506
  for (var name in all)
13507
- __defProp3(target, name, { get: all[name], enumerable: true });
13507
+ __defProp2(target, name, { get: all[name], enumerable: true });
13508
13508
  };
13509
13509
  var __copyProps = (to, from, except, desc) => {
13510
13510
  if (from && typeof from === "object" || typeof from === "function") {
13511
- for (let key of __getOwnPropNames3(from))
13512
- if (!__hasOwnProp3.call(to, key) && key !== except)
13513
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13511
+ for (let key of __getOwnPropNames2(from))
13512
+ if (!__hasOwnProp2.call(to, key) && key !== except)
13513
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13514
13514
  }
13515
13515
  return to;
13516
13516
  };
13517
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
13517
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
13518
13518
  var index_exports = {};
13519
13519
  __export(index_exports, {
13520
13520
  fromProcess: () => fromProcess
@@ -13908,24 +13908,24 @@ var require_runtimeConfig2 = __commonJS((exports) => {
13908
13908
 
13909
13909
  // ../../node_modules/.pnpm/@aws-sdk+client-sso@3.787.0/node_modules/@aws-sdk/client-sso/dist-cjs/index.js
13910
13910
  var require_dist_cjs47 = __commonJS((exports, module) => {
13911
- var __defProp3 = Object.defineProperty;
13911
+ var __defProp2 = Object.defineProperty;
13912
13912
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
13913
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
13914
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
13915
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
13913
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
13914
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
13915
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
13916
13916
  var __export = (target, all) => {
13917
13917
  for (var name in all)
13918
- __defProp3(target, name, { get: all[name], enumerable: true });
13918
+ __defProp2(target, name, { get: all[name], enumerable: true });
13919
13919
  };
13920
13920
  var __copyProps = (to, from, except, desc) => {
13921
13921
  if (from && typeof from === "object" || typeof from === "function") {
13922
- for (let key of __getOwnPropNames3(from))
13923
- if (!__hasOwnProp3.call(to, key) && key !== except)
13924
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13922
+ for (let key of __getOwnPropNames2(from))
13923
+ if (!__hasOwnProp2.call(to, key) && key !== except)
13924
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13925
13925
  }
13926
13926
  return to;
13927
13927
  };
13928
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
13928
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
13929
13929
  var index_exports = {};
13930
13930
  __export(index_exports, {
13931
13931
  GetRoleCredentialsCommand: () => GetRoleCredentialsCommand,
@@ -14615,24 +14615,24 @@ var require_runtimeConfig3 = __commonJS((exports) => {
14615
14615
 
14616
14616
  // ../../node_modules/.pnpm/@aws-sdk+nested-clients@3.787.0/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js
14617
14617
  var require_sso_oidc = __commonJS((exports, module) => {
14618
- var __defProp3 = Object.defineProperty;
14618
+ var __defProp2 = Object.defineProperty;
14619
14619
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
14620
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
14621
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
14622
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
14620
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
14621
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
14622
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
14623
14623
  var __export = (target, all) => {
14624
14624
  for (var name in all)
14625
- __defProp3(target, name, { get: all[name], enumerable: true });
14625
+ __defProp2(target, name, { get: all[name], enumerable: true });
14626
14626
  };
14627
14627
  var __copyProps = (to, from, except, desc) => {
14628
14628
  if (from && typeof from === "object" || typeof from === "function") {
14629
- for (let key of __getOwnPropNames3(from))
14630
- if (!__hasOwnProp3.call(to, key) && key !== except)
14631
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14629
+ for (let key of __getOwnPropNames2(from))
14630
+ if (!__hasOwnProp2.call(to, key) && key !== except)
14631
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14632
14632
  }
14633
14633
  return to;
14634
14634
  };
14635
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
14635
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
14636
14636
  var index_exports = {};
14637
14637
  __export(index_exports, {
14638
14638
  $Command: () => import_smithy_client6.Command,
@@ -15273,27 +15273,27 @@ var require_sso_oidc = __commonJS((exports, module) => {
15273
15273
 
15274
15274
  // ../../node_modules/.pnpm/@aws-sdk+token-providers@3.787.0/node_modules/@aws-sdk/token-providers/dist-cjs/index.js
15275
15275
  var require_dist_cjs48 = __commonJS((exports, module) => {
15276
- var __create3 = Object.create;
15277
- var __defProp3 = Object.defineProperty;
15276
+ var __create2 = Object.create;
15277
+ var __defProp2 = Object.defineProperty;
15278
15278
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
15279
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
15280
- var __getProtoOf3 = Object.getPrototypeOf;
15281
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
15282
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
15279
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
15280
+ var __getProtoOf2 = Object.getPrototypeOf;
15281
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
15282
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
15283
15283
  var __export = (target, all) => {
15284
15284
  for (var name in all)
15285
- __defProp3(target, name, { get: all[name], enumerable: true });
15285
+ __defProp2(target, name, { get: all[name], enumerable: true });
15286
15286
  };
15287
15287
  var __copyProps = (to, from, except, desc) => {
15288
15288
  if (from && typeof from === "object" || typeof from === "function") {
15289
- for (let key of __getOwnPropNames3(from))
15290
- if (!__hasOwnProp3.call(to, key) && key !== except)
15291
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15289
+ for (let key of __getOwnPropNames2(from))
15290
+ if (!__hasOwnProp2.call(to, key) && key !== except)
15291
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15292
15292
  }
15293
15293
  return to;
15294
15294
  };
15295
- var __toESM3 = (mod, isNodeMode, target) => (target = mod != null ? __create3(__getProtoOf3(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp3(target, "default", { value: mod, enumerable: true }) : target, mod));
15296
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
15295
+ var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp2(target, "default", { value: mod, enumerable: true }) : target, mod));
15296
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
15297
15297
  var index_exports = {};
15298
15298
  __export(index_exports, {
15299
15299
  fromSso: () => fromSso,
@@ -15304,7 +15304,7 @@ var require_dist_cjs48 = __commonJS((exports, module) => {
15304
15304
  var EXPIRE_WINDOW_MS = 5 * 60 * 1000;
15305
15305
  var REFRESH_MESSAGE = `To refresh this SSO session run 'aws sso login' with the corresponding profile.`;
15306
15306
  var getSsoOidcClient = /* @__PURE__ */ __name(async (ssoRegion, init = {}) => {
15307
- const { SSOOIDCClient } = await Promise.resolve().then(() => __toESM3(require_sso_oidc()));
15307
+ const { SSOOIDCClient } = await Promise.resolve().then(() => __toESM2(require_sso_oidc()));
15308
15308
  const ssoOidcClient = new SSOOIDCClient(Object.assign({}, init.clientConfig ?? {}, {
15309
15309
  region: ssoRegion ?? init.clientConfig?.region,
15310
15310
  logger: init.clientConfig?.logger ?? init.parentClientConfig?.logger
@@ -15312,7 +15312,7 @@ var require_dist_cjs48 = __commonJS((exports, module) => {
15312
15312
  return ssoOidcClient;
15313
15313
  }, "getSsoOidcClient");
15314
15314
  var getNewSsoOidcToken = /* @__PURE__ */ __name(async (ssoToken, ssoRegion, init = {}) => {
15315
- const { CreateTokenCommand } = await Promise.resolve().then(() => __toESM3(require_sso_oidc()));
15315
+ const { CreateTokenCommand } = await Promise.resolve().then(() => __toESM2(require_sso_oidc()));
15316
15316
  const ssoOidcClient = await getSsoOidcClient(ssoRegion, init);
15317
15317
  return ssoOidcClient.send(new CreateTokenCommand({
15318
15318
  clientId: ssoToken.clientId,
@@ -15430,27 +15430,27 @@ var require_dist_cjs48 = __commonJS((exports, module) => {
15430
15430
 
15431
15431
  // ../../node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.787.0/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js
15432
15432
  var require_dist_cjs49 = __commonJS((exports, module) => {
15433
- var __defProp3 = Object.defineProperty;
15433
+ var __defProp2 = Object.defineProperty;
15434
15434
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
15435
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
15436
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
15437
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
15435
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
15436
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
15437
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
15438
15438
  var __esm = (fn, res) => function __init() {
15439
- return fn && (res = (0, fn[__getOwnPropNames3(fn)[0]])(fn = 0)), res;
15439
+ return fn && (res = (0, fn[__getOwnPropNames2(fn)[0]])(fn = 0)), res;
15440
15440
  };
15441
15441
  var __export = (target, all) => {
15442
15442
  for (var name in all)
15443
- __defProp3(target, name, { get: all[name], enumerable: true });
15443
+ __defProp2(target, name, { get: all[name], enumerable: true });
15444
15444
  };
15445
15445
  var __copyProps = (to, from, except, desc) => {
15446
15446
  if (from && typeof from === "object" || typeof from === "function") {
15447
- for (let key of __getOwnPropNames3(from))
15448
- if (!__hasOwnProp3.call(to, key) && key !== except)
15449
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15447
+ for (let key of __getOwnPropNames2(from))
15448
+ if (!__hasOwnProp2.call(to, key) && key !== except)
15449
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15450
15450
  }
15451
15451
  return to;
15452
15452
  };
15453
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
15453
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
15454
15454
  var loadSso_exports = {};
15455
15455
  __export(loadSso_exports, {
15456
15456
  GetRoleCredentialsCommand: () => import_client_sso.GetRoleCredentialsCommand,
@@ -15737,20 +15737,20 @@ var require_fromTokenFile = __commonJS((exports) => {
15737
15737
 
15738
15738
  // ../../node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.787.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js
15739
15739
  var require_dist_cjs50 = __commonJS((exports, module) => {
15740
- var __defProp3 = Object.defineProperty;
15740
+ var __defProp2 = Object.defineProperty;
15741
15741
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
15742
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
15743
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
15742
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
15743
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
15744
15744
  var __copyProps = (to, from, except, desc) => {
15745
15745
  if (from && typeof from === "object" || typeof from === "function") {
15746
- for (let key of __getOwnPropNames3(from))
15747
- if (!__hasOwnProp3.call(to, key) && key !== except)
15748
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15746
+ for (let key of __getOwnPropNames2(from))
15747
+ if (!__hasOwnProp2.call(to, key) && key !== except)
15748
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15749
15749
  }
15750
15750
  return to;
15751
15751
  };
15752
15752
  var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15753
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
15753
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
15754
15754
  var index_exports = {};
15755
15755
  module.exports = __toCommonJS(index_exports);
15756
15756
  __reExport(index_exports, require_fromTokenFile(), module.exports);
@@ -15759,27 +15759,27 @@ var require_dist_cjs50 = __commonJS((exports, module) => {
15759
15759
 
15760
15760
  // ../../node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.787.0/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js
15761
15761
  var require_dist_cjs51 = __commonJS((exports, module) => {
15762
- var __create3 = Object.create;
15763
- var __defProp3 = Object.defineProperty;
15762
+ var __create2 = Object.create;
15763
+ var __defProp2 = Object.defineProperty;
15764
15764
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
15765
- var __getOwnPropNames3 = Object.getOwnPropertyNames;
15766
- var __getProtoOf3 = Object.getPrototypeOf;
15767
- var __hasOwnProp3 = Object.prototype.hasOwnProperty;
15768
- var __name = (target, value) => __defProp3(target, "name", { value, configurable: true });
15765
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
15766
+ var __getProtoOf2 = Object.getPrototypeOf;
15767
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
15768
+ var __name = (target, value) => __defProp2(target, "name", { value, configurable: true });
15769
15769
  var __export = (target, all) => {
15770
15770
  for (var name in all)
15771
- __defProp3(target, name, { get: all[name], enumerable: true });
15771
+ __defProp2(target, name, { get: all[name], enumerable: true });
15772
15772
  };
15773
15773
  var __copyProps = (to, from, except, desc) => {
15774
15774
  if (from && typeof from === "object" || typeof from === "function") {
15775
- for (let key of __getOwnPropNames3(from))
15776
- if (!__hasOwnProp3.call(to, key) && key !== except)
15777
- __defProp3(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15775
+ for (let key of __getOwnPropNames2(from))
15776
+ if (!__hasOwnProp2.call(to, key) && key !== except)
15777
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15778
15778
  }
15779
15779
  return to;
15780
15780
  };
15781
- var __toESM3 = (mod, isNodeMode, target) => (target = mod != null ? __create3(__getProtoOf3(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp3(target, "default", { value: mod, enumerable: true }) : target, mod));
15782
- var __toCommonJS = (mod) => __copyProps(__defProp3({}, "__esModule", { value: true }), mod);
15781
+ var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp2(target, "default", { value: mod, enumerable: true }) : target, mod));
15782
+ var __toCommonJS = (mod) => __copyProps(__defProp2({}, "__esModule", { value: true }), mod);
15783
15783
  var index_exports = {};
15784
15784
  __export(index_exports, {
15785
15785
  fromIni: () => fromIni
@@ -15791,19 +15791,19 @@ var require_dist_cjs51 = __commonJS((exports, module) => {
15791
15791
  var resolveCredentialSource = /* @__PURE__ */ __name((credentialSource, profileName, logger) => {
15792
15792
  const sourceProvidersMap = {
15793
15793
  EcsContainer: /* @__PURE__ */ __name(async (options) => {
15794
- const { fromHttp } = await Promise.resolve().then(() => __toESM3(require_dist_cjs17()));
15795
- const { fromContainerMetadata } = await Promise.resolve().then(() => __toESM3(require_dist_cjs21()));
15794
+ const { fromHttp } = await Promise.resolve().then(() => __toESM2(require_dist_cjs17()));
15795
+ const { fromContainerMetadata } = await Promise.resolve().then(() => __toESM2(require_dist_cjs21()));
15796
15796
  logger?.debug("@aws-sdk/credential-provider-ini - credential_source is EcsContainer");
15797
15797
  return async () => (0, import_property_provider.chain)(fromHttp(options ?? {}), fromContainerMetadata(options))().then(setNamedProvider);
15798
15798
  }, "EcsContainer"),
15799
15799
  Ec2InstanceMetadata: /* @__PURE__ */ __name(async (options) => {
15800
15800
  logger?.debug("@aws-sdk/credential-provider-ini - credential_source is Ec2InstanceMetadata");
15801
- const { fromInstanceMetadata } = await Promise.resolve().then(() => __toESM3(require_dist_cjs21()));
15801
+ const { fromInstanceMetadata } = await Promise.resolve().then(() => __toESM2(require_dist_cjs21()));
15802
15802
  return async () => fromInstanceMetadata(options)().then(setNamedProvider);
15803
15803
  }, "Ec2InstanceMetadata"),
15804
15804
  Environment: /* @__PURE__ */ __name(async (options) => {
15805
15805
  logger?.debug("@aws-sdk/credential-provider-ini - credential_source is Environment");
15806
- const { fromEnv } = await Promise.resolve().then(() => __toESM3(require_dist_cjs22()));
15806
+ const { fromEnv } = await Promise.resolve().then(() => __toESM2(require_dist_cjs22()));
15807
15807
  return async () => fromEnv(options)().then(setNamedProvider);
15808
15808
  }, "Environment")
15809
15809
  };
@@ -15836,7 +15836,7 @@ var require_dist_cjs51 = __commonJS((exports, module) => {
15836
15836
  const profileData = profiles[profileName];
15837
15837
  const { source_profile, region } = profileData;
15838
15838
  if (!options.roleAssumer) {
15839
- const { getDefaultRoleAssumer } = await Promise.resolve().then(() => __toESM3(require_sts()));
15839
+ const { getDefaultRoleAssumer } = await Promise.resolve().then(() => __toESM2(require_sts()));
15840
15840
  options.roleAssumer = getDefaultRoleAssumer({
15841
15841
  ...options.clientConfig,
15842
15842
  credentialProviderLogger: options.logger,
@@ -15879,12 +15879,12 @@ var require_dist_cjs51 = __commonJS((exports, module) => {
15879
15879
  return !section.role_arn && !!section.credential_source;
15880
15880
  }, "isCredentialSourceWithoutRoleArn");
15881
15881
  var isProcessProfile = /* @__PURE__ */ __name((arg) => Boolean(arg) && typeof arg === "object" && typeof arg.credential_process === "string", "isProcessProfile");
15882
- var resolveProcessCredentials = /* @__PURE__ */ __name(async (options, profile) => Promise.resolve().then(() => __toESM3(require_dist_cjs46())).then(({ fromProcess }) => fromProcess({
15882
+ var resolveProcessCredentials = /* @__PURE__ */ __name(async (options, profile) => Promise.resolve().then(() => __toESM2(require_dist_cjs46())).then(({ fromProcess }) => fromProcess({
15883
15883
  ...options,
15884
15884
  profile
15885
15885
  })().then((creds) => (0, import_client.setCredentialFeature)(creds, "CREDENTIALS_PROFILE_PROCESS", "v"))), "resolveProcessCredentials");
15886
15886
  var resolveSsoCredentials = /* @__PURE__ */ __name(async (profile, profileData, options = {}) => {
15887
- const { fromSSO } = await Promise.resolve().then(() => __toESM3(require_dist_cjs49()));
15887
+ const { fromSSO } = await Promise.resolve().then(() => __toESM2(require_dist_cjs49()));
15888
15888
  return fromSSO({
15889
15889
  profile,
15890
15890
  logger: options.logger,
@@ -15912,7 +15912,7 @@ var require_dist_cjs51 = __commonJS((exports, module) => {
15912
15912
  return (0, import_client.setCredentialFeature)(credentials, "CREDENTIALS_PROFILE", "n");
15913
15913
  }, "resolveStaticCredentials");
15914
15914
  var isWebIdentityProfile = /* @__PURE__ */ __name((arg) => Boolean(arg) && typeof arg === "object" && typeof arg.web_identity_token_file === "string" && typeof arg.role_arn === "string" && ["undefined", "string"].indexOf(typeof arg.role_session_name) > -1, "isWebIdentityProfile");
15915
- var resolveWebIdentityCredentials = /* @__PURE__ */ __name(async (profile, options) => Promise.resolve().then(() => __toESM3(require_dist_cjs50())).then(({ fromTokenFile: fromTokenFile2 }) => fromTokenFile2({
15915
+ var resolveWebIdentityCredentials = /* @__PURE__ */ __name(async (profile, options) => Promise.resolve().then(() => __toESM2(require_dist_cjs50())).then(({ fromTokenFile: fromTokenFile2 }) => fromTokenFile2({
15916
15916
  webIdentityTokenFile: profile.web_identity_token_file,
15917
15917
  roleArn: profile.role_arn,
15918
15918
  roleSessionName: profile.role_session_name,
@@ -15968,201 +15968,6 @@ import { STSClient } from "@aws-sdk/client-sts";
15968
15968
 
15969
15969
  // ../serverless-client/dist/esm/index.mjs
15970
15970
  import * as tty from "tty";
15971
- var __create2 = Object.create;
15972
- var __getProtoOf2 = Object.getPrototypeOf;
15973
- var __defProp2 = Object.defineProperty;
15974
- var __getOwnPropNames2 = Object.getOwnPropertyNames;
15975
- var __hasOwnProp2 = Object.prototype.hasOwnProperty;
15976
- var __toESM2 = (mod, isNodeMode, target) => {
15977
- target = mod != null ? __create2(__getProtoOf2(mod)) : {};
15978
- const to = isNodeMode || !mod || !mod.__esModule ? __defProp2(target, "default", { value: mod, enumerable: true }) : target;
15979
- for (let key of __getOwnPropNames2(mod))
15980
- if (!__hasOwnProp2.call(to, key))
15981
- __defProp2(to, key, {
15982
- get: () => mod[key],
15983
- enumerable: true
15984
- });
15985
- return to;
15986
- };
15987
- var __commonJS2 = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
15988
- var require_make_stream_payload_message = __commonJS2((exports) => {
15989
- Object.defineProperty(exports, "__esModule", { value: true });
15990
- exports.makeStreamPayloadMessage = exports.magicWordStr = undefined;
15991
- exports.magicWordStr = "remotion_buffer:";
15992
- var makeStreamPayloadMessage = ({ status, body, nonce }) => {
15993
- const nonceArr = new TextEncoder().encode(nonce);
15994
- const magicWordArr = new TextEncoder().encode(exports.magicWordStr);
15995
- const separatorArr = new TextEncoder().encode(":");
15996
- const bodyLengthArr = new TextEncoder().encode(body.length.toString());
15997
- const statusArr = new TextEncoder().encode(String(status));
15998
- const totalLength = nonceArr.length + magicWordArr.length + separatorArr.length * 3 + bodyLengthArr.length + statusArr.length + body.length;
15999
- const concat = new Uint8Array(totalLength);
16000
- let offset = 0;
16001
- const appendToConcat = (data) => {
16002
- concat.set(data, offset);
16003
- offset += data.length;
16004
- };
16005
- appendToConcat(magicWordArr);
16006
- appendToConcat(nonceArr);
16007
- appendToConcat(separatorArr);
16008
- appendToConcat(bodyLengthArr);
16009
- appendToConcat(separatorArr);
16010
- appendToConcat(statusArr);
16011
- appendToConcat(separatorArr);
16012
- appendToConcat(body);
16013
- return concat;
16014
- };
16015
- exports.makeStreamPayloadMessage = makeStreamPayloadMessage;
16016
- });
16017
- var require_make_streamer = __commonJS2((exports) => {
16018
- Object.defineProperty(exports, "__esModule", { value: true });
16019
- exports.makeStreamPayloadMessage = exports.makeStreamer = exports.streamingKey = undefined;
16020
- exports.streamingKey = "remotion_buffer:";
16021
- var makeStreamer = (onMessage) => {
16022
- const separator = new Uint8Array(exports.streamingKey.length);
16023
- for (let i = 0;i < exports.streamingKey.length; i++) {
16024
- separator[i] = exports.streamingKey.charCodeAt(i);
16025
- }
16026
- let unprocessedBuffers = [];
16027
- let outputBuffer = new Uint8Array(0);
16028
- let missingData = null;
16029
- const findSeparatorIndex = () => {
16030
- let searchIndex = 0;
16031
- while (true) {
16032
- const separatorIndex = outputBuffer.indexOf(separator[0], searchIndex);
16033
- if (separatorIndex === -1) {
16034
- return -1;
16035
- }
16036
- if (outputBuffer.subarray(separatorIndex, separatorIndex + separator.length).toString() !== separator.toString()) {
16037
- searchIndex = separatorIndex + 1;
16038
- continue;
16039
- }
16040
- return separatorIndex;
16041
- }
16042
- };
16043
- const processInput = () => {
16044
- let separatorIndex = findSeparatorIndex();
16045
- if (separatorIndex === -1) {
16046
- return;
16047
- }
16048
- separatorIndex += separator.length;
16049
- let nonceString = "";
16050
- let lengthString = "";
16051
- let statusString = "";
16052
- while (true) {
16053
- if (separatorIndex > outputBuffer.length - 1) {
16054
- return;
16055
- }
16056
- const nextDigit = outputBuffer[separatorIndex];
16057
- separatorIndex++;
16058
- if (nextDigit === 58) {
16059
- break;
16060
- }
16061
- nonceString += String.fromCharCode(nextDigit);
16062
- }
16063
- while (true) {
16064
- if (separatorIndex > outputBuffer.length - 1) {
16065
- return;
16066
- }
16067
- const nextDigit = outputBuffer[separatorIndex];
16068
- separatorIndex++;
16069
- if (nextDigit === 58) {
16070
- break;
16071
- }
16072
- lengthString += String.fromCharCode(nextDigit);
16073
- }
16074
- while (true) {
16075
- if (separatorIndex > outputBuffer.length - 1) {
16076
- return;
16077
- }
16078
- const nextDigit = outputBuffer[separatorIndex];
16079
- if (nextDigit === 58) {
16080
- break;
16081
- }
16082
- separatorIndex++;
16083
- statusString += String.fromCharCode(nextDigit);
16084
- }
16085
- const length = Number(lengthString);
16086
- const status = Number(statusString);
16087
- const dataLength = outputBuffer.length - separatorIndex - 1;
16088
- if (dataLength < length) {
16089
- missingData = {
16090
- dataMissing: length - dataLength
16091
- };
16092
- return;
16093
- }
16094
- const data = outputBuffer.subarray(separatorIndex + 1, separatorIndex + 1 + Number(lengthString));
16095
- onMessage(status === 1 ? "error" : "success", nonceString, data);
16096
- missingData = null;
16097
- outputBuffer = outputBuffer.subarray(separatorIndex + Number(lengthString) + 1);
16098
- processInput();
16099
- };
16100
- const onData = (data) => {
16101
- unprocessedBuffers.push(data);
16102
- if (missingData) {
16103
- missingData.dataMissing -= data.length;
16104
- }
16105
- if (missingData && missingData.dataMissing > 0) {
16106
- return;
16107
- }
16108
- const newBuffer = new Uint8Array(outputBuffer.length + unprocessedBuffers.reduce((acc, val2) => acc + val2.length, 0));
16109
- newBuffer.set(outputBuffer, 0);
16110
- let offset = outputBuffer.length;
16111
- for (const buf of unprocessedBuffers) {
16112
- newBuffer.set(buf, offset);
16113
- offset += buf.length;
16114
- }
16115
- outputBuffer = newBuffer;
16116
- unprocessedBuffers = [];
16117
- processInput();
16118
- };
16119
- return {
16120
- onData,
16121
- getOutputBuffer: () => outputBuffer,
16122
- clear: () => {
16123
- unprocessedBuffers = [];
16124
- outputBuffer = new Uint8Array(0);
16125
- }
16126
- };
16127
- };
16128
- exports.makeStreamer = makeStreamer;
16129
- var makeStreamPayloadMessage = ({ status, body, nonce }) => {
16130
- const nonceArr = new TextEncoder().encode(nonce);
16131
- const magicWordArr = new TextEncoder().encode(exports.streamingKey);
16132
- const separatorArr = new TextEncoder().encode(":");
16133
- const bodyLengthArr = new TextEncoder().encode(body.length.toString());
16134
- const statusArr = new TextEncoder().encode(String(status));
16135
- const totalLength = nonceArr.length + magicWordArr.length + separatorArr.length * 3 + bodyLengthArr.length + statusArr.length + body.length;
16136
- const concat = new Uint8Array(totalLength);
16137
- let offset = 0;
16138
- const appendToConcat = (data) => {
16139
- concat.set(data, offset);
16140
- offset += data.length;
16141
- };
16142
- appendToConcat(magicWordArr);
16143
- appendToConcat(nonceArr);
16144
- appendToConcat(separatorArr);
16145
- appendToConcat(bodyLengthArr);
16146
- appendToConcat(separatorArr);
16147
- appendToConcat(statusArr);
16148
- appendToConcat(separatorArr);
16149
- appendToConcat(body);
16150
- return concat;
16151
- };
16152
- exports.makeStreamPayloadMessage = makeStreamPayloadMessage;
16153
- });
16154
- var require_dist = __commonJS2((exports) => {
16155
- Object.defineProperty(exports, "__esModule", { value: true });
16156
- exports.makeStreamer = exports.makeStreamPayloadMessage = undefined;
16157
- var make_stream_payload_message_1 = require_make_stream_payload_message();
16158
- Object.defineProperty(exports, "makeStreamPayloadMessage", { enumerable: true, get: function() {
16159
- return make_stream_payload_message_1.makeStreamPayloadMessage;
16160
- } });
16161
- var make_streamer_1 = require_make_streamer();
16162
- Object.defineProperty(exports, "makeStreamer", { enumerable: true, get: function() {
16163
- return make_streamer_1.makeStreamer;
16164
- } });
16165
- });
16166
15971
  function interpolateFunction(input, inputRange, outputRange, options) {
16167
15972
  const { extrapolateLeft, extrapolateRight, easing } = options;
16168
15973
  let result = input;
@@ -16747,6 +16552,9 @@ var getAbsoluteSrc = (relativeSrc) => {
16747
16552
  if (typeof window === "undefined") {
16748
16553
  return relativeSrc;
16749
16554
  }
16555
+ if (relativeSrc.startsWith("http://") || relativeSrc.startsWith("https://") || relativeSrc.startsWith("file://") || relativeSrc.startsWith("blob:") || relativeSrc.startsWith("data:")) {
16556
+ return relativeSrc;
16557
+ }
16750
16558
  return new URL(relativeSrc, window.origin).href;
16751
16559
  };
16752
16560
  var getOffthreadVideoSource = ({
@@ -16874,7 +16682,7 @@ var validateFramesPerFunction = ({
16874
16682
  throw new TypeError(`The framesPerLambda needs to be at least ${effectiveMinimum}, but is ${framesPerFunction}`);
16875
16683
  }
16876
16684
  };
16877
- var VERSION = "4.0.314";
16685
+ var VERSION = "4.0.316";
16878
16686
  var isColorSupported = () => {
16879
16687
  const env = process.env || {};
16880
16688
  const isForceDisabled = "NO_COLOR" in env;
@@ -17204,7 +17012,114 @@ var wrapWithErrorHandling = (fn) => {
17204
17012
  }
17205
17013
  };
17206
17014
  };
17207
- var import_streaming2 = __toESM2(require_dist(), 1);
17015
+ var streamingKey = "remotion_buffer:";
17016
+ var makeStreamer = (onMessage) => {
17017
+ const separator = new Uint8Array(streamingKey.length);
17018
+ for (let i = 0;i < streamingKey.length; i++) {
17019
+ separator[i] = streamingKey.charCodeAt(i);
17020
+ }
17021
+ let unprocessedBuffers = [];
17022
+ let outputBuffer = new Uint8Array(0);
17023
+ let missingData = null;
17024
+ const findSeparatorIndex = () => {
17025
+ let searchIndex = 0;
17026
+ while (true) {
17027
+ const separatorIndex = outputBuffer.indexOf(separator[0], searchIndex);
17028
+ if (separatorIndex === -1) {
17029
+ return -1;
17030
+ }
17031
+ if (outputBuffer.subarray(separatorIndex, separatorIndex + separator.length).toString() !== separator.toString()) {
17032
+ searchIndex = separatorIndex + 1;
17033
+ continue;
17034
+ }
17035
+ return separatorIndex;
17036
+ }
17037
+ };
17038
+ const processInput = () => {
17039
+ let separatorIndex = findSeparatorIndex();
17040
+ if (separatorIndex === -1) {
17041
+ return;
17042
+ }
17043
+ separatorIndex += separator.length;
17044
+ let nonceString = "";
17045
+ let lengthString = "";
17046
+ let statusString = "";
17047
+ while (true) {
17048
+ if (separatorIndex > outputBuffer.length - 1) {
17049
+ return;
17050
+ }
17051
+ const nextDigit = outputBuffer[separatorIndex];
17052
+ separatorIndex++;
17053
+ if (nextDigit === 58) {
17054
+ break;
17055
+ }
17056
+ nonceString += String.fromCharCode(nextDigit);
17057
+ }
17058
+ while (true) {
17059
+ if (separatorIndex > outputBuffer.length - 1) {
17060
+ return;
17061
+ }
17062
+ const nextDigit = outputBuffer[separatorIndex];
17063
+ separatorIndex++;
17064
+ if (nextDigit === 58) {
17065
+ break;
17066
+ }
17067
+ lengthString += String.fromCharCode(nextDigit);
17068
+ }
17069
+ while (true) {
17070
+ if (separatorIndex > outputBuffer.length - 1) {
17071
+ return;
17072
+ }
17073
+ const nextDigit = outputBuffer[separatorIndex];
17074
+ if (nextDigit === 58) {
17075
+ break;
17076
+ }
17077
+ separatorIndex++;
17078
+ statusString += String.fromCharCode(nextDigit);
17079
+ }
17080
+ const length = Number(lengthString);
17081
+ const status = Number(statusString);
17082
+ const dataLength = outputBuffer.length - separatorIndex - 1;
17083
+ if (dataLength < length) {
17084
+ missingData = {
17085
+ dataMissing: length - dataLength
17086
+ };
17087
+ return;
17088
+ }
17089
+ const data = outputBuffer.subarray(separatorIndex + 1, separatorIndex + 1 + Number(lengthString));
17090
+ onMessage(status === 1 ? "error" : "success", nonceString, data);
17091
+ missingData = null;
17092
+ outputBuffer = outputBuffer.subarray(separatorIndex + Number(lengthString) + 1);
17093
+ processInput();
17094
+ };
17095
+ const onData = (data) => {
17096
+ unprocessedBuffers.push(data);
17097
+ if (missingData) {
17098
+ missingData.dataMissing -= data.length;
17099
+ }
17100
+ if (missingData && missingData.dataMissing > 0) {
17101
+ return;
17102
+ }
17103
+ const newBuffer = new Uint8Array(outputBuffer.length + unprocessedBuffers.reduce((acc, val2) => acc + val2.length, 0));
17104
+ newBuffer.set(outputBuffer, 0);
17105
+ let offset = outputBuffer.length;
17106
+ for (const buf of unprocessedBuffers) {
17107
+ newBuffer.set(buf, offset);
17108
+ offset += buf.length;
17109
+ }
17110
+ outputBuffer = newBuffer;
17111
+ unprocessedBuffers = [];
17112
+ processInput();
17113
+ };
17114
+ return {
17115
+ onData,
17116
+ getOutputBuffer: () => outputBuffer,
17117
+ clear: () => {
17118
+ unprocessedBuffers = [];
17119
+ outputBuffer = new Uint8Array(0);
17120
+ }
17121
+ };
17122
+ };
17208
17123
  var min = (arr) => {
17209
17124
  if (arr.length === 0) {
17210
17125
  throw new Error("Array of 0 length");
@@ -17263,7 +17178,8 @@ var internalGetOrCreateBucket = async (params) => {
17263
17178
  const remotionBuckets = await params.providerSpecifics.getBuckets({
17264
17179
  region: params.region,
17265
17180
  forceBucketName: null,
17266
- forcePathStyle: params.forcePathStyle
17181
+ forcePathStyle: params.forcePathStyle,
17182
+ requestHandler: params.requestHandler
17267
17183
  });
17268
17184
  if (remotionBuckets.length > 1) {
17269
17185
  throw new Error(`You have multiple buckets (${remotionBuckets.map((b) => b.name)}) in your S3 region (${params.region}) starting with "${params.providerSpecifics.getBucketPrefix()}". Please see https://remotion.dev/docs/lambda/multiple-buckets.`);
@@ -17276,7 +17192,8 @@ var internalGetOrCreateBucket = async (params) => {
17276
17192
  bucketName: existingBucketName,
17277
17193
  region,
17278
17194
  customCredentials: params.customCredentials,
17279
- forcePathStyle: params.forcePathStyle
17195
+ forcePathStyle: params.forcePathStyle,
17196
+ requestHandler: params.requestHandler
17280
17197
  });
17281
17198
  return { bucketName: remotionBuckets[0].name, alreadyExisted: true };
17282
17199
  }
@@ -17285,14 +17202,16 @@ var internalGetOrCreateBucket = async (params) => {
17285
17202
  bucketName,
17286
17203
  region: params.region,
17287
17204
  forcePathStyle: params.forcePathStyle,
17288
- skipPutAcl: params.skipPutAcl
17205
+ skipPutAcl: params.skipPutAcl,
17206
+ requestHandler: params.requestHandler
17289
17207
  });
17290
17208
  await params.providerSpecifics.applyLifeCycle({
17291
17209
  enableFolderExpiry: enableFolderExpiry ?? null,
17292
17210
  bucketName,
17293
17211
  region,
17294
17212
  customCredentials: params.customCredentials,
17295
- forcePathStyle: params.forcePathStyle
17213
+ forcePathStyle: params.forcePathStyle,
17214
+ requestHandler: params.requestHandler
17296
17215
  });
17297
17216
  return { bucketName, alreadyExisted: false };
17298
17217
  };
@@ -17365,7 +17284,8 @@ var compressInputProps = async ({
17365
17284
  needsToUpload,
17366
17285
  providerSpecifics,
17367
17286
  forcePathStyle,
17368
- skipPutAcl
17287
+ skipPutAcl,
17288
+ requestHandler
17369
17289
  }) => {
17370
17290
  const hash = providerSpecifics.randomHash();
17371
17291
  if (needsToUpload) {
@@ -17375,7 +17295,8 @@ var compressInputProps = async ({
17375
17295
  customCredentials: null,
17376
17296
  providerSpecifics,
17377
17297
  forcePathStyle,
17378
- skipPutAcl
17298
+ skipPutAcl,
17299
+ requestHandler
17379
17300
  })).bucketName;
17380
17301
  await providerSpecifics.writeFile({
17381
17302
  body: stringifiedInputProps,
@@ -17387,7 +17308,8 @@ var compressInputProps = async ({
17387
17308
  key: makeKey(propsType, hash),
17388
17309
  privacy: "private",
17389
17310
  forcePathStyle,
17390
- storageClass: null
17311
+ storageClass: null,
17312
+ requestHandler
17391
17313
  });
17392
17314
  return {
17393
17315
  type: "bucket-url",
@@ -18085,7 +18007,8 @@ var getOverallProgressFromStorage = async ({
18085
18007
  expectedBucketOwner,
18086
18008
  region,
18087
18009
  providerSpecifics,
18088
- forcePathStyle
18010
+ forcePathStyle,
18011
+ requestHandler
18089
18012
  }) => {
18090
18013
  try {
18091
18014
  const Body = await providerSpecifics.readFile({
@@ -18093,7 +18016,8 @@ var getOverallProgressFromStorage = async ({
18093
18016
  key: overallProgressKey(renderId),
18094
18017
  expectedBucketOwner,
18095
18018
  region,
18096
- forcePathStyle
18019
+ forcePathStyle,
18020
+ requestHandler
18097
18021
  });
18098
18022
  const str = await streamToString(Body);
18099
18023
  return JSON.parse(str);
@@ -18301,7 +18225,8 @@ var getProgress = async ({
18301
18225
  customCredentials,
18302
18226
  providerSpecifics,
18303
18227
  forcePathStyle,
18304
- functionName
18228
+ functionName,
18229
+ requestHandler
18305
18230
  }) => {
18306
18231
  const overallProgress = await getOverallProgressFromStorage({
18307
18232
  renderId,
@@ -18309,7 +18234,8 @@ var getProgress = async ({
18309
18234
  expectedBucketOwner,
18310
18235
  region,
18311
18236
  providerSpecifics,
18312
- forcePathStyle
18237
+ forcePathStyle,
18238
+ requestHandler
18313
18239
  });
18314
18240
  if (overallProgress.postRenderData) {
18315
18241
  if (!overallProgress.renderMetadata) {
@@ -18520,7 +18446,6 @@ var getProgress = async ({
18520
18446
  artifacts: overallProgress.receivedArtifact
18521
18447
  };
18522
18448
  };
18523
- var import_streaming = __toESM2(require_dist(), 1);
18524
18449
  var framesRendered = "frames-rendered";
18525
18450
  var errorOccurred = "error-occurred";
18526
18451
  var renderIdDetermined = "render-id-determined";
@@ -18566,8 +18491,6 @@ var {
18566
18491
  validateDimension: validateDimension2,
18567
18492
  validateDurationInFrames: validateDurationInFrames2
18568
18493
  } = NoReactInternals;
18569
- var export_makeStreamer = import_streaming2.makeStreamer;
18570
- var export_makeStreamPayloadMessage = import_streaming2.makeStreamPayloadMessage;
18571
18494
 
18572
18495
  // src/get-env-variable.ts
18573
18496
  var getEnvVariable = (name) => {
@@ -18708,7 +18631,8 @@ var getCredentialsHash = ({
18708
18631
  customCredentials,
18709
18632
  region,
18710
18633
  service,
18711
- forcePathStyle
18634
+ forcePathStyle,
18635
+ requestHandler
18712
18636
  }) => {
18713
18637
  const hashComponents = {};
18714
18638
  if (getEnvVariable("REMOTION_SKIP_AWS_CREDENTIALS_CHECK")) {
@@ -18738,6 +18662,7 @@ var getCredentialsHash = ({
18738
18662
  hashComponents.region = region;
18739
18663
  hashComponents.service = service;
18740
18664
  hashComponents.forcePathStyle = forcePathStyle;
18665
+ hashComponents.requestHandler = requestHandler;
18741
18666
  return random(JSON.stringify(hashComponents)).toString().replace("0.", "");
18742
18667
  };
18743
18668
  var _clients = {};
@@ -18745,7 +18670,8 @@ var getServiceClient = ({
18745
18670
  region,
18746
18671
  service,
18747
18672
  customCredentials,
18748
- forcePathStyle
18673
+ forcePathStyle,
18674
+ requestHandler
18749
18675
  }) => {
18750
18676
  const Client = (() => {
18751
18677
  if (service === "cloudwatch") {
@@ -18772,7 +18698,8 @@ var getServiceClient = ({
18772
18698
  region,
18773
18699
  customCredentials,
18774
18700
  service,
18775
- forcePathStyle
18701
+ forcePathStyle,
18702
+ requestHandler
18776
18703
  });
18777
18704
  if (!_clients[key]) {
18778
18705
  checkCredentials();
@@ -18781,6 +18708,7 @@ var getServiceClient = ({
18781
18708
  maxSockets: MAX_FUNCTIONS_PER_RENDER * 2
18782
18709
  }
18783
18710
  } : undefined;
18711
+ const finalRequestHandler = requestHandler ? lambdaOptions ? { ...requestHandler, ...lambdaOptions } : requestHandler : lambdaOptions;
18784
18712
  const client = customCredentials ? new Client({
18785
18713
  region: customCredentials.region ?? "us-east-1",
18786
18714
  credentials: customCredentials.accessKeyId && customCredentials.secretAccessKey ? {
@@ -18788,17 +18716,17 @@ var getServiceClient = ({
18788
18716
  secretAccessKey: customCredentials.secretAccessKey
18789
18717
  } : undefined,
18790
18718
  endpoint: customCredentials.endpoint,
18791
- requestHandler: lambdaOptions,
18719
+ requestHandler: finalRequestHandler,
18792
18720
  forcePathStyle: customCredentials.forcePathStyle,
18793
18721
  maxAttempts: service === "lambda" ? 1 : undefined
18794
18722
  }) : getEnvVariable("REMOTION_SKIP_AWS_CREDENTIALS_CHECK") ? new Client({
18795
18723
  region,
18796
- requestHandler: lambdaOptions,
18724
+ requestHandler: finalRequestHandler,
18797
18725
  maxAttempts: service === "lambda" ? 1 : undefined
18798
18726
  }) : new Client({
18799
18727
  region,
18800
18728
  credentials: getCredentials(),
18801
- requestHandler: lambdaOptions,
18729
+ requestHandler: finalRequestHandler,
18802
18730
  maxAttempts: service === "lambda" ? 1 : undefined
18803
18731
  });
18804
18732
  if (getEnvVariable("REMOTION_DISABLE_AWS_CLIENT_CACHE")) {
@@ -18810,44 +18738,49 @@ var getServiceClient = ({
18810
18738
  };
18811
18739
 
18812
18740
  // src/aws-clients.ts
18813
- var getCloudWatchLogsClient = (region) => {
18741
+ var getCloudWatchLogsClient = (region, requestHandler) => {
18814
18742
  return getServiceClient({
18815
18743
  region,
18816
18744
  service: "cloudwatch",
18817
18745
  customCredentials: null,
18818
- forcePathStyle: false
18746
+ forcePathStyle: false,
18747
+ requestHandler
18819
18748
  });
18820
18749
  };
18821
- var getLambdaClient = (region, _timeoutInTest) => {
18750
+ var getLambdaClient = (region, _timeoutInTest, requestHandler) => {
18822
18751
  return getServiceClient({
18823
18752
  region,
18824
18753
  service: "lambda",
18825
18754
  customCredentials: null,
18826
- forcePathStyle: false
18755
+ forcePathStyle: false,
18756
+ requestHandler
18827
18757
  });
18828
18758
  };
18829
- var getIamClient = (region) => {
18759
+ var getIamClient = (region, requestHandler) => {
18830
18760
  return getServiceClient({
18831
18761
  region,
18832
18762
  service: "iam",
18833
18763
  customCredentials: null,
18834
- forcePathStyle: false
18764
+ forcePathStyle: false,
18765
+ requestHandler
18835
18766
  });
18836
18767
  };
18837
- var getServiceQuotasClient = (region) => {
18768
+ var getServiceQuotasClient = (region, requestHandler) => {
18838
18769
  return getServiceClient({
18839
18770
  region,
18840
18771
  service: "servicequotas",
18841
18772
  customCredentials: null,
18842
- forcePathStyle: false
18773
+ forcePathStyle: false,
18774
+ requestHandler
18843
18775
  });
18844
18776
  };
18845
- var getStsClient = (region) => {
18777
+ var getStsClient = (region, requestHandler) => {
18846
18778
  return getServiceClient({
18847
18779
  region,
18848
18780
  service: "sts",
18849
18781
  customCredentials: null,
18850
- forcePathStyle: false
18782
+ forcePathStyle: false,
18783
+ requestHandler
18851
18784
  });
18852
18785
  };
18853
18786
 
@@ -18861,23 +18794,32 @@ import { GetBucketLocationCommand } from "@aws-sdk/client-s3";
18861
18794
  var getS3Client = ({
18862
18795
  region,
18863
18796
  customCredentials,
18864
- forcePathStyle
18797
+ forcePathStyle,
18798
+ requestHandler
18865
18799
  }) => {
18866
18800
  return getServiceClient({
18867
18801
  region: customCredentials?.region ?? region,
18868
18802
  service: "s3",
18869
18803
  customCredentials,
18870
- forcePathStyle
18804
+ forcePathStyle,
18805
+ requestHandler
18871
18806
  });
18872
18807
  };
18873
18808
 
18874
18809
  // src/bucket-exists.ts
18875
- var bucketExistsInRegionImplementation = async ({ bucketName, region, expectedBucketOwner, forcePathStyle }) => {
18810
+ var bucketExistsInRegionImplementation = async ({
18811
+ bucketName,
18812
+ region,
18813
+ expectedBucketOwner,
18814
+ forcePathStyle,
18815
+ requestHandler
18816
+ }) => {
18876
18817
  try {
18877
18818
  const bucket = await getS3Client({
18878
18819
  region,
18879
18820
  customCredentials: null,
18880
- forcePathStyle
18821
+ forcePathStyle,
18822
+ requestHandler
18881
18823
  }).send(new GetBucketLocationCommand({
18882
18824
  Bucket: bucketName,
18883
18825
  ExpectedBucketOwner: expectedBucketOwner ?? undefined
@@ -18903,7 +18845,7 @@ var callFunctionAsyncImplementation = async ({
18903
18845
  if (stringifiedPayload.length > 256 * 1024) {
18904
18846
  throw new Error(`Payload is too big: ${stringifiedPayload.length} bytes. Maximum size is 256 KB. This should not happen, please report this to the Remotion team. Payload: ${stringifiedPayload}`);
18905
18847
  }
18906
- const result = await getLambdaClient(region, timeoutInTest).send(new InvokeCommand({
18848
+ const result = await getLambdaClient(region, timeoutInTest, null).send(new InvokeCommand({
18907
18849
  FunctionName: functionName,
18908
18850
  Payload: stringifiedPayload,
18909
18851
  InvocationType: "Event"
@@ -18934,7 +18876,7 @@ var invokeStreamOrTimeout = async ({
18934
18876
  type,
18935
18877
  payload
18936
18878
  }) => {
18937
- const resProm = getLambdaClient(region, timeoutInTest).send(new InvokeWithResponseStreamCommand({
18879
+ const resProm = getLambdaClient(region, timeoutInTest, null).send(new InvokeWithResponseStreamCommand({
18938
18880
  FunctionName: functionName,
18939
18881
  Payload: JSON.stringify({ type, ...payload })
18940
18882
  }));
@@ -18969,7 +18911,7 @@ var callLambdaWithStreamingWithoutRetry = async ({
18969
18911
  timeoutInTest,
18970
18912
  type
18971
18913
  });
18972
- const { onData, clear } = export_makeStreamer((status, messageTypeId, data) => {
18914
+ const { onData, clear } = makeStreamer((status, messageTypeId, data) => {
18973
18915
  const messageType = messageTypeIdToMessageType(messageTypeId);
18974
18916
  const innerPayload = formatMap[messageType] === "json" ? parseJsonOrThrowSource(data, messageType) : data;
18975
18917
  const message = {
@@ -19039,7 +18981,7 @@ var callLambdaSyncWithoutRetry = async ({
19039
18981
  timeoutInTest
19040
18982
  }) => {
19041
18983
  const Payload = JSON.stringify(payload);
19042
- const res = await getLambdaClient(region, timeoutInTest).send(new InvokeCommand2({
18984
+ const res = await getLambdaClient(region, timeoutInTest, null).send(new InvokeCommand2({
19043
18985
  FunctionName: functionName,
19044
18986
  Payload,
19045
18987
  InvocationType: "RequestResponse"
@@ -19095,12 +19037,22 @@ import {
19095
19037
  DeletePublicAccessBlockCommand,
19096
19038
  PutBucketAclCommand
19097
19039
  } from "@aws-sdk/client-s3";
19098
- var createBucket = async ({ region, bucketName, forcePathStyle }) => {
19099
- await getS3Client({ region, customCredentials: null, forcePathStyle }).send(new CreateBucketCommand({
19040
+ var createBucket = async ({ region, bucketName, forcePathStyle, requestHandler }) => {
19041
+ await getS3Client({
19042
+ region,
19043
+ customCredentials: null,
19044
+ forcePathStyle,
19045
+ requestHandler
19046
+ }).send(new CreateBucketCommand({
19100
19047
  Bucket: bucketName
19101
19048
  }));
19102
19049
  try {
19103
- await getS3Client({ region, customCredentials: null, forcePathStyle }).send(new DeleteBucketOwnershipControlsCommand({
19050
+ await getS3Client({
19051
+ region,
19052
+ customCredentials: null,
19053
+ forcePathStyle,
19054
+ requestHandler
19055
+ }).send(new DeleteBucketOwnershipControlsCommand({
19104
19056
  Bucket: bucketName
19105
19057
  }));
19106
19058
  } catch (err) {
@@ -19110,7 +19062,12 @@ var createBucket = async ({ region, bucketName, forcePathStyle }) => {
19110
19062
  throw err;
19111
19063
  }
19112
19064
  try {
19113
- await getS3Client({ region, customCredentials: null, forcePathStyle }).send(new DeletePublicAccessBlockCommand({
19065
+ await getS3Client({
19066
+ region,
19067
+ customCredentials: null,
19068
+ forcePathStyle,
19069
+ requestHandler
19070
+ }).send(new DeletePublicAccessBlockCommand({
19114
19071
  Bucket: bucketName
19115
19072
  }));
19116
19073
  } catch (err) {
@@ -19120,7 +19077,12 @@ var createBucket = async ({ region, bucketName, forcePathStyle }) => {
19120
19077
  throw err;
19121
19078
  }
19122
19079
  try {
19123
- await getS3Client({ region, customCredentials: null, forcePathStyle }).send(new PutBucketAclCommand({
19080
+ await getS3Client({
19081
+ region,
19082
+ customCredentials: null,
19083
+ forcePathStyle,
19084
+ requestHandler
19085
+ }).send(new PutBucketAclCommand({
19124
19086
  Bucket: bucketName,
19125
19087
  ACL: "public-read"
19126
19088
  }));
@@ -19139,9 +19101,15 @@ var lambdaDeleteFileImplementation = async ({
19139
19101
  key,
19140
19102
  region,
19141
19103
  customCredentials,
19142
- forcePathStyle
19104
+ forcePathStyle,
19105
+ requestHandler
19143
19106
  }) => {
19144
- await getS3Client({ region, customCredentials, forcePathStyle }).send(new DeleteObjectCommand({
19107
+ await getS3Client({
19108
+ region,
19109
+ customCredentials,
19110
+ forcePathStyle,
19111
+ requestHandler
19112
+ }).send(new DeleteObjectCommand({
19145
19113
  Bucket: bucketName,
19146
19114
  Key: key
19147
19115
  }));
@@ -19151,9 +19119,10 @@ var lambdaDeleteFileImplementation = async ({
19151
19119
  import { DeleteFunctionCommand } from "@aws-sdk/client-lambda";
19152
19120
  var deleteFunction = async ({
19153
19121
  region,
19154
- functionName
19122
+ functionName,
19123
+ requestHandler
19155
19124
  }) => {
19156
- await getLambdaClient(region).send(new DeleteFunctionCommand({
19125
+ await getLambdaClient(region, undefined, requestHandler ?? null).send(new DeleteFunctionCommand({
19157
19126
  FunctionName: functionName
19158
19127
  }));
19159
19128
  };
@@ -20088,7 +20057,7 @@ var estimatePrice = ({
20088
20057
  import { GetCallerIdentityCommand } from "@aws-sdk/client-sts";
20089
20058
  var getAccountIdImplementation = async (options) => {
20090
20059
  validateAwsRegion(options.region);
20091
- const callerIdentity = await getStsClient(options.region).send(new GetCallerIdentityCommand({}));
20060
+ const callerIdentity = await getStsClient(options.region, null).send(new GetCallerIdentityCommand({}));
20092
20061
  if (!callerIdentity.Account) {
20093
20062
  throw new Error("Cannot get account ID");
20094
20063
  }
@@ -20163,12 +20132,14 @@ var parseBucketName = (name) => {
20163
20132
  var getRemotionBuckets = async ({
20164
20133
  region,
20165
20134
  forceBucketName,
20166
- forcePathStyle
20135
+ forcePathStyle,
20136
+ requestHandler
20167
20137
  }) => {
20168
20138
  const { Buckets } = await getS3Client({
20169
20139
  region,
20170
20140
  customCredentials: null,
20171
- forcePathStyle
20141
+ forcePathStyle,
20142
+ requestHandler
20172
20143
  }).send(new ListBucketsCommand({}));
20173
20144
  if (!Buckets) {
20174
20145
  return [];
@@ -20188,7 +20159,8 @@ var getRemotionBuckets = async ({
20188
20159
  const result = await getS3Client({
20189
20160
  region,
20190
20161
  customCredentials: null,
20191
- forcePathStyle
20162
+ forcePathStyle,
20163
+ requestHandler
20192
20164
  }).send(new GetBucketLocationCommand2({
20193
20165
  Bucket: bucket.Name
20194
20166
  }));
@@ -20219,7 +20191,8 @@ import { ListFunctionsCommand } from "@aws-sdk/client-lambda";
20219
20191
  var getFunctionVersion = async ({
20220
20192
  functionName,
20221
20193
  region,
20222
- logLevel
20194
+ logLevel,
20195
+ requestHandler
20223
20196
  }) => {
20224
20197
  try {
20225
20198
  const result = await awsImplementation.callFunctionSync({
@@ -20230,7 +20203,8 @@ var getFunctionVersion = async ({
20230
20203
  },
20231
20204
  region,
20232
20205
  type: ServerlessRoutines.info,
20233
- timeoutInTest: 120000
20206
+ timeoutInTest: 120000,
20207
+ requestHandler
20234
20208
  });
20235
20209
  return result.version;
20236
20210
  } catch (err) {
@@ -20248,10 +20222,11 @@ var getFunctionVersion = async ({
20248
20222
  var getAllFunctions = async ({
20249
20223
  existing,
20250
20224
  nextMarker,
20251
- region
20225
+ region,
20226
+ requestHandler
20252
20227
  }) => {
20253
20228
  const allLambdas = [...existing];
20254
- const lambdas = await getLambdaClient(region).send(new ListFunctionsCommand({
20229
+ const lambdas = await getLambdaClient(region, undefined, requestHandler ?? null).send(new ListFunctionsCommand({
20255
20230
  Marker: nextMarker ?? undefined
20256
20231
  }));
20257
20232
  if (!lambdas.Functions) {
@@ -20264,7 +20239,8 @@ var getAllFunctions = async ({
20264
20239
  return getAllFunctions({
20265
20240
  existing: allLambdas,
20266
20241
  nextMarker: lambdas.NextMarker,
20267
- region
20242
+ region,
20243
+ requestHandler
20268
20244
  });
20269
20245
  }
20270
20246
  return allLambdas;
@@ -20273,7 +20249,8 @@ var getFunctions = async (params) => {
20273
20249
  const lambdas = await getAllFunctions({
20274
20250
  existing: [],
20275
20251
  nextMarker: null,
20276
- region: params.region
20252
+ region: params.region,
20253
+ requestHandler: params.requestHandler
20277
20254
  });
20278
20255
  const remotionLambdas = lambdas.filter((f) => {
20279
20256
  return f.FunctionName?.startsWith(RENDER_FN_PREFIX);
@@ -20283,7 +20260,8 @@ var getFunctions = async (params) => {
20283
20260
  const version = await getFunctionVersion({
20284
20261
  functionName: fn.FunctionName,
20285
20262
  region: params.region,
20286
- logLevel: params.logLevel ?? "info"
20263
+ logLevel: params.logLevel ?? "info",
20264
+ requestHandler: params.requestHandler
20287
20265
  });
20288
20266
  return version;
20289
20267
  } catch {
@@ -20336,12 +20314,14 @@ var lambdaHeadFileImplementation = async ({
20336
20314
  key,
20337
20315
  region,
20338
20316
  customCredentials,
20339
- forcePathStyle
20317
+ forcePathStyle,
20318
+ requestHandler
20340
20319
  }) => {
20341
20320
  const head = await getS3Client({
20342
20321
  region,
20343
20322
  customCredentials,
20344
- forcePathStyle
20323
+ forcePathStyle,
20324
+ requestHandler
20345
20325
  }).send(new HeadObjectCommand({
20346
20326
  Bucket: bucketName,
20347
20327
  Key: key
@@ -20373,7 +20353,7 @@ var isFlakyError = (err) => {
20373
20353
  if (message.includes("Compositor exited") && !message.includes("SIGSEGV")) {
20374
20354
  return true;
20375
20355
  }
20376
- if (message.includes("Timed out while setting up the headless browser")) {
20356
+ if (message.includes("Timed out") && message.includes("while setting up the headless browser")) {
20377
20357
  return true;
20378
20358
  }
20379
20359
  if (message.includes("while trying to connect to the browser")) {
@@ -20466,7 +20446,8 @@ var createLCRules = async ({
20466
20446
  bucketName,
20467
20447
  region,
20468
20448
  customCredentials,
20469
- forcePathStyle
20449
+ forcePathStyle,
20450
+ requestHandler
20470
20451
  }) => {
20471
20452
  const lcRules = getLifeCycleRules();
20472
20453
  const createCommandInput = createLifeCycleInput({
@@ -20475,7 +20456,12 @@ var createLCRules = async ({
20475
20456
  });
20476
20457
  const createCommand = new PutBucketLifecycleConfigurationCommand(createCommandInput);
20477
20458
  try {
20478
- await getS3Client({ region, customCredentials, forcePathStyle }).send(createCommand);
20459
+ await getS3Client({
20460
+ region,
20461
+ customCredentials,
20462
+ forcePathStyle,
20463
+ requestHandler
20464
+ }).send(createCommand);
20479
20465
  } catch (err) {
20480
20466
  if (err.stack?.includes("AccessDenied")) {
20481
20467
  throw new Error(`You don't have the required permissions to create lifecycle rules on the bucket "${bucketName}", but the "enableFolderExpiry" was set to true. Ensure that your user has the "s3:PutLifecycleConfiguration" permission.`);
@@ -20486,13 +20472,19 @@ var deleteLCRules = async ({
20486
20472
  bucketName,
20487
20473
  region,
20488
20474
  customCredentials,
20489
- forcePathStyle
20475
+ forcePathStyle,
20476
+ requestHandler
20490
20477
  }) => {
20491
20478
  const deleteCommandInput = deleteLifeCycleInput({
20492
20479
  bucketName
20493
20480
  });
20494
20481
  try {
20495
- await getS3Client({ region, customCredentials, forcePathStyle }).send(new DeleteBucketLifecycleCommand(deleteCommandInput));
20482
+ await getS3Client({
20483
+ region,
20484
+ customCredentials,
20485
+ forcePathStyle,
20486
+ requestHandler
20487
+ }).send(new DeleteBucketLifecycleCommand(deleteCommandInput));
20496
20488
  } catch (err) {
20497
20489
  if (err.stack?.includes("AccessDenied")) {
20498
20490
  throw new Error(`You don't have the required permissions to delete lifecycle rules on the bucket "${bucketName}", but the "enableFolderExpiry" option was set to "false". Ensure that your user has the "s3:PutLifecycleConfiguration" permission. Set "enableFolderExpiry" to "null" to not overwrite any existing lifecycle rules.`);
@@ -20504,7 +20496,8 @@ var applyLifeCyleOperation = async ({
20504
20496
  bucketName,
20505
20497
  region,
20506
20498
  customCredentials,
20507
- forcePathStyle
20499
+ forcePathStyle,
20500
+ requestHandler
20508
20501
  }) => {
20509
20502
  if (enableFolderExpiry === null) {
20510
20503
  return;
@@ -20514,14 +20507,16 @@ var applyLifeCyleOperation = async ({
20514
20507
  bucketName,
20515
20508
  region,
20516
20509
  customCredentials,
20517
- forcePathStyle
20510
+ forcePathStyle,
20511
+ requestHandler
20518
20512
  });
20519
20513
  } else {
20520
20514
  await deleteLCRules({
20521
20515
  bucketName,
20522
20516
  region,
20523
20517
  customCredentials,
20524
- forcePathStyle
20518
+ forcePathStyle,
20519
+ requestHandler
20525
20520
  });
20526
20521
  }
20527
20522
  };
@@ -20534,13 +20529,15 @@ var lambdaLsImplementation = async ({
20534
20529
  region,
20535
20530
  expectedBucketOwner,
20536
20531
  continuationToken,
20537
- forcePathStyle
20532
+ forcePathStyle,
20533
+ requestHandler
20538
20534
  }) => {
20539
20535
  try {
20540
20536
  const list = await getS3Client({
20541
20537
  region,
20542
20538
  customCredentials: null,
20543
- forcePathStyle
20539
+ forcePathStyle,
20540
+ requestHandler
20544
20541
  }).send(new ListObjectsV2Command({
20545
20542
  Bucket: bucketName,
20546
20543
  Prefix: prefix,
@@ -20563,7 +20560,8 @@ var lambdaLsImplementation = async ({
20563
20560
  expectedBucketOwner,
20564
20561
  region,
20565
20562
  continuationToken: list.NextContinuationToken,
20566
- forcePathStyle
20563
+ forcePathStyle,
20564
+ requestHandler
20567
20565
  })
20568
20566
  ];
20569
20567
  }
@@ -20583,7 +20581,8 @@ var lambdaLsImplementation = async ({
20583
20581
  await getS3Client({
20584
20582
  region,
20585
20583
  customCredentials: null,
20586
- forcePathStyle
20584
+ forcePathStyle,
20585
+ requestHandler
20587
20586
  }).send(new ListObjectsV2Command({
20588
20587
  Bucket: bucketName,
20589
20588
  Prefix: prefix
@@ -20623,12 +20622,14 @@ var lambdaReadFileImplementation = async ({
20623
20622
  key,
20624
20623
  region,
20625
20624
  expectedBucketOwner,
20626
- forcePathStyle
20625
+ forcePathStyle,
20626
+ requestHandler
20627
20627
  }) => {
20628
20628
  const { Body } = await getS3Client({
20629
20629
  region,
20630
20630
  customCredentials: null,
20631
- forcePathStyle
20631
+ forcePathStyle,
20632
+ requestHandler
20632
20633
  }).send(new GetObjectCommand({
20633
20634
  Bucket: bucketName,
20634
20635
  Key: key,
@@ -20699,12 +20700,14 @@ var tryLambdaWriteFile = async ({
20699
20700
  downloadBehavior,
20700
20701
  customCredentials,
20701
20702
  forcePathStyle,
20702
- storageClass
20703
+ storageClass,
20704
+ requestHandler
20703
20705
  }) => {
20704
20706
  const client = getS3Client({
20705
20707
  region,
20706
20708
  customCredentials,
20707
- forcePathStyle
20709
+ forcePathStyle,
20710
+ requestHandler
20708
20711
  });
20709
20712
  const params = {
20710
20713
  Bucket: bucketName,
@@ -20869,7 +20872,8 @@ var cleanItems = ({
20869
20872
  region,
20870
20873
  list,
20871
20874
  providerSpecifics,
20872
- forcePathStyle
20875
+ forcePathStyle,
20876
+ requestHandler
20873
20877
  }) => {
20874
20878
  return Promise.all(list.map((object) => limit(async () => {
20875
20879
  onBeforeItemDeleted({
@@ -20881,7 +20885,8 @@ var cleanItems = ({
20881
20885
  key: object,
20882
20886
  region,
20883
20887
  customCredentials: null,
20884
- forcePathStyle
20888
+ forcePathStyle,
20889
+ requestHandler
20885
20890
  });
20886
20891
  onAfterItemDeleted({
20887
20892
  bucketName: bucket,
@@ -20901,7 +20906,8 @@ var internalDeleteRender = async (input) => {
20901
20906
  region: input.region,
20902
20907
  renderId: input.renderId,
20903
20908
  providerSpecifics: input.providerSpecifics,
20904
- forcePathStyle: input.forcePathStyle
20909
+ forcePathStyle: input.forcePathStyle,
20910
+ requestHandler: input.requestHandler
20905
20911
  });
20906
20912
  if (progress.renderMetadata === null) {
20907
20913
  return { freedBytes: 0 };
@@ -20917,14 +20923,16 @@ var internalDeleteRender = async (input) => {
20917
20923
  customCredentials,
20918
20924
  key,
20919
20925
  region: input.region,
20920
- forcePathStyle: input.forcePathStyle
20926
+ forcePathStyle: input.forcePathStyle,
20927
+ requestHandler: input.requestHandler
20921
20928
  });
20922
20929
  let files = await input.providerSpecifics.listObjects({
20923
20930
  bucketName: input.bucketName,
20924
20931
  prefix: rendersPrefix(input.renderId),
20925
20932
  region: input.region,
20926
20933
  expectedBucketOwner,
20927
- forcePathStyle: input.forcePathStyle
20934
+ forcePathStyle: input.forcePathStyle,
20935
+ requestHandler: input.requestHandler
20928
20936
  });
20929
20937
  let totalSize = 0;
20930
20938
  while (files.length > 0) {
@@ -20942,14 +20950,16 @@ var internalDeleteRender = async (input) => {
20942
20950
  },
20943
20951
  region: input.region,
20944
20952
  providerSpecifics: input.providerSpecifics,
20945
- forcePathStyle: input.forcePathStyle
20953
+ forcePathStyle: input.forcePathStyle,
20954
+ requestHandler: input.requestHandler
20946
20955
  });
20947
20956
  files = await input.providerSpecifics.listObjects({
20948
20957
  bucketName: input.bucketName,
20949
20958
  prefix: rendersPrefix(input.renderId),
20950
20959
  region: input.region,
20951
20960
  expectedBucketOwner,
20952
- forcePathStyle: input.forcePathStyle
20961
+ forcePathStyle: input.forcePathStyle,
20962
+ requestHandler: input.requestHandler
20953
20963
  });
20954
20964
  }
20955
20965
  return {
@@ -20960,7 +20970,7 @@ var deleteRender = (input) => {
20960
20970
  return internalDeleteRender({
20961
20971
  ...input,
20962
20972
  providerSpecifics: awsImplementation,
20963
- forcePathStyle: false
20973
+ forcePathStyle: input.forcePathStyle ?? false
20964
20974
  });
20965
20975
  };
20966
20976
 
@@ -20978,16 +20988,19 @@ var internalGetSites = async ({
20978
20988
  region,
20979
20989
  forceBucketName,
20980
20990
  providerSpecifics,
20981
- forcePathStyle
20991
+ forcePathStyle,
20992
+ requestHandler
20982
20993
  }) => {
20983
20994
  const remotionBuckets = forceBucketName ? await providerSpecifics.getBuckets({
20984
20995
  region,
20985
20996
  forceBucketName,
20986
- forcePathStyle
20997
+ forcePathStyle,
20998
+ requestHandler
20987
20999
  }) : await providerSpecifics.getBuckets({
20988
21000
  region,
20989
21001
  forceBucketName: null,
20990
- forcePathStyle
21002
+ forcePathStyle,
21003
+ requestHandler
20991
21004
  });
20992
21005
  const accountId = await providerSpecifics.getAccountId({ region });
20993
21006
  const sites = {};
@@ -20997,7 +21010,8 @@ var internalGetSites = async ({
20997
21010
  prefix: getSitesKey(""),
20998
21011
  region,
20999
21012
  expectedBucketOwner: accountId,
21000
- forcePathStyle
21013
+ forcePathStyle,
21014
+ requestHandler
21001
21015
  });
21002
21016
  for (const file of ls) {
21003
21017
  const siteKeyMatch = file.Key?.match(/sites\/([0-9a-zA-Z-!_.*'()]+)\/(.*)$/);
@@ -21037,13 +21051,15 @@ var internalGetSites = async ({
21037
21051
  var getSites = ({
21038
21052
  region,
21039
21053
  forceBucketName,
21040
- forcePathStyle
21054
+ forcePathStyle,
21055
+ requestHandler
21041
21056
  }) => {
21042
21057
  return internalGetSites({
21043
21058
  region,
21044
21059
  forceBucketName: forceBucketName ?? null,
21045
21060
  forcePathStyle: forcePathStyle ?? false,
21046
- providerSpecifics: awsImplementation
21061
+ providerSpecifics: awsImplementation,
21062
+ requestHandler: requestHandler ?? null
21047
21063
  });
21048
21064
  };
21049
21065
 
@@ -21119,7 +21135,8 @@ var makeLambdaRenderMediaPayload = async ({
21119
21135
  metadata,
21120
21136
  apiKey,
21121
21137
  offthreadVideoThreads,
21122
- storageClass
21138
+ storageClass,
21139
+ requestHandler
21123
21140
  }) => {
21124
21141
  const actualCodec = validateLambdaCodec(codec);
21125
21142
  validateServeUrl(serveUrl);
@@ -21145,7 +21162,8 @@ var makeLambdaRenderMediaPayload = async ({
21145
21162
  propsType: "input-props",
21146
21163
  providerSpecifics: awsImplementation,
21147
21164
  forcePathStyle: forcePathStyle ?? false,
21148
- skipPutAcl: privacy === "no-acl"
21165
+ skipPutAcl: privacy === "no-acl",
21166
+ requestHandler: requestHandler ?? null
21149
21167
  });
21150
21168
  return {
21151
21169
  rendererFunctionName,
@@ -21238,7 +21256,8 @@ var makeLambdaRenderStillPayload = async ({
21238
21256
  deleteAfter,
21239
21257
  forcePathStyle,
21240
21258
  apiKey,
21241
- storageClass
21259
+ storageClass,
21260
+ requestHandler
21242
21261
  }) => {
21243
21262
  const stringifiedInputProps = serializeOrThrow(inputProps, "input-props");
21244
21263
  const serializedInputProps = await compressInputProps({
@@ -21256,7 +21275,8 @@ var makeLambdaRenderStillPayload = async ({
21256
21275
  propsType: "input-props",
21257
21276
  providerSpecifics: awsImplementation,
21258
21277
  forcePathStyle,
21259
- skipPutAcl: privacy === "no-acl"
21278
+ skipPutAcl: privacy === "no-acl",
21279
+ requestHandler
21260
21280
  });
21261
21281
  return {
21262
21282
  composition,
@@ -21299,7 +21319,8 @@ var internalRenderMediaOnLambdaRaw = async (input) => {
21299
21319
  type: ServerlessRoutines.start,
21300
21320
  payload: await makeLambdaRenderMediaPayload(input),
21301
21321
  region,
21302
- timeoutInTest: 120000
21322
+ timeoutInTest: 120000,
21323
+ requestHandler: input.requestHandler
21303
21324
  });
21304
21325
  return {
21305
21326
  renderId: res.renderId,
@@ -21389,7 +21410,8 @@ var renderMediaOnLambdaOptionalToRequired = (options) => {
21389
21410
  indent: false,
21390
21411
  metadata: options.metadata ?? null,
21391
21412
  apiKey: options.apiKey ?? null,
21392
- storageClass: options.storageClass ?? null
21413
+ storageClass: options.storageClass ?? null,
21414
+ requestHandler: options.requestHandler ?? null
21393
21415
  };
21394
21416
  };
21395
21417
  var wrapped = wrapWithErrorHandling(internalRenderMediaOnLambdaRaw);
@@ -21437,7 +21459,8 @@ var innerRenderStillOnLambda = async (input) => {
21437
21459
  }
21438
21460
  },
21439
21461
  timeoutInTest: 120000,
21440
- retriesRemaining: input.maxRetries
21462
+ retriesRemaining: input.maxRetries,
21463
+ requestHandler: input.requestHandler
21441
21464
  }).then(() => {
21442
21465
  reject(new Error("Expected response to be streamed"));
21443
21466
  }).catch((err) => {
@@ -21499,7 +21522,8 @@ var renderStillOnLambda = (input) => {
21499
21522
  forcePathStyle: input.forcePathStyle ?? false,
21500
21523
  apiKey: input.apiKey ?? null,
21501
21524
  offthreadVideoThreads: input.offthreadVideoThreads ?? null,
21502
- storageClass: input.storageClass ?? null
21525
+ storageClass: input.storageClass ?? null,
21526
+ requestHandler: input.requestHandler ?? null
21503
21527
  });
21504
21528
  };
21505
21529
 
@@ -21691,14 +21715,16 @@ var getAwsClient = ({
21691
21715
  region,
21692
21716
  service,
21693
21717
  customCredentials,
21694
- forcePathStyle
21718
+ forcePathStyle,
21719
+ requestHandler
21695
21720
  }) => {
21696
21721
  return {
21697
21722
  client: getServiceClient({
21698
21723
  region,
21699
21724
  service,
21700
21725
  customCredentials: customCredentials ?? null,
21701
- forcePathStyle: forcePathStyle ?? false
21726
+ forcePathStyle: forcePathStyle ?? false,
21727
+ requestHandler
21702
21728
  }),
21703
21729
  sdk: {
21704
21730
  lambda: LambdaSDK,
@@ -21723,7 +21749,8 @@ var getCompositionsOnLambda = async ({
21723
21749
  forceBucketName: bucketName,
21724
21750
  dumpBrowserLogs,
21725
21751
  offthreadVideoCacheSizeInBytes,
21726
- forcePathStyle
21752
+ forcePathStyle,
21753
+ requestHandler
21727
21754
  }) => {
21728
21755
  const stringifiedInputProps = serializeOrThrow(inputProps, "input-props");
21729
21756
  const serializedInputProps = await compressInputProps({
@@ -21741,7 +21768,8 @@ var getCompositionsOnLambda = async ({
21741
21768
  }),
21742
21769
  providerSpecifics: awsImplementation,
21743
21770
  forcePathStyle: forcePathStyle ?? false,
21744
- skipPutAcl: false
21771
+ skipPutAcl: false,
21772
+ requestHandler
21745
21773
  });
21746
21774
  try {
21747
21775
  const res = await awsImplementation.callFunctionSync({
@@ -21761,7 +21789,8 @@ var getCompositionsOnLambda = async ({
21761
21789
  forcePathStyle: forcePathStyle ?? false
21762
21790
  },
21763
21791
  region,
21764
- timeoutInTest: 120000
21792
+ timeoutInTest: 120000,
21793
+ requestHandler
21765
21794
  });
21766
21795
  return res.compositions;
21767
21796
  } catch (err) {
@@ -21793,7 +21822,8 @@ var getRenderProgress = async (input) => {
21793
21822
  providerSpecifics: awsImplementation,
21794
21823
  memorySizeInMb: parsed.memorySizeInMb,
21795
21824
  timeoutInMilliseconds: parsed.timeoutInSeconds * 1000,
21796
- functionName: input.functionName
21825
+ functionName: input.functionName,
21826
+ requestHandler: input.requestHandler
21797
21827
  });
21798
21828
  }
21799
21829
  const result = await awsImplementation.callFunctionSync({
@@ -21801,7 +21831,8 @@ var getRenderProgress = async (input) => {
21801
21831
  type: ServerlessRoutines.status,
21802
21832
  payload: getRenderProgressPayload(input),
21803
21833
  region: input.region,
21804
- timeoutInTest: 120000
21834
+ timeoutInTest: 120000,
21835
+ requestHandler: input.requestHandler
21805
21836
  });
21806
21837
  return result;
21807
21838
  };
@@ -21843,7 +21874,8 @@ var internalPresignUrl = async ({
21843
21874
  objectKey,
21844
21875
  checkIfObjectExists,
21845
21876
  expiresInSeconds,
21846
- forcePathStyle
21877
+ forcePathStyle,
21878
+ requestHandler
21847
21879
  }) => {
21848
21880
  validateBucketName({
21849
21881
  bucketName,
@@ -21854,7 +21886,8 @@ var internalPresignUrl = async ({
21854
21886
  const s3Client = getS3Client({
21855
21887
  region,
21856
21888
  customCredentials: null,
21857
- forcePathStyle
21889
+ forcePathStyle,
21890
+ requestHandler: requestHandler ?? null
21858
21891
  });
21859
21892
  if (checkIfObjectExists === true) {
21860
21893
  try {
@@ -21887,7 +21920,8 @@ var presignUrl = ({
21887
21920
  objectKey,
21888
21921
  checkIfObjectExists,
21889
21922
  expiresInSeconds,
21890
- forcePathStyle
21923
+ forcePathStyle,
21924
+ requestHandler
21891
21925
  }) => {
21892
21926
  return internalPresignUrl({
21893
21927
  region,
@@ -21895,7 +21929,8 @@ var presignUrl = ({
21895
21929
  objectKey,
21896
21930
  checkIfObjectExists: checkIfObjectExists ?? false,
21897
21931
  expiresInSeconds,
21898
- forcePathStyle: forcePathStyle ?? false
21932
+ forcePathStyle: forcePathStyle ?? false,
21933
+ requestHandler
21899
21934
  });
21900
21935
  };
21901
21936