cdk-nextjs 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/nextjs-assets-deployment.js +1 -1
- package/lib/nextjs-build/cache-handler.cjs +784 -558
- package/lib/nextjs-build/nextjs-build.js +1 -1
- package/lib/nextjs-compute/nextjs-containers.js +1 -1
- package/lib/nextjs-compute/nextjs-functions.js +1 -1
- package/lib/nextjs-distribution.js +1 -1
- package/lib/nextjs-file-system.js +1 -1
- package/lib/nextjs-invalidation.js +1 -1
- package/lib/nextjs-revalidation.js +1 -1
- package/lib/nextjs-static-assets.js +1 -1
- package/lib/nextjs-vpc.js +1 -1
- package/lib/root-constructs/nextjs-global-containers.js +1 -1
- package/lib/root-constructs/nextjs-global-functions.js +1 -1
- package/lib/root-constructs/nextjs-regional-containers.js +1 -1
- package/package.json +8 -8
|
@@ -1105,9 +1105,373 @@ var require_dist_cjs10 = __commonJS({
|
|
|
1105
1105
|
}
|
|
1106
1106
|
});
|
|
1107
1107
|
|
|
1108
|
-
// node_modules/.pnpm/@smithy+util-stream@4.
|
|
1108
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js
|
|
1109
|
+
var require_ChecksumStream = __commonJS({
|
|
1110
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js"(exports2) {
|
|
1111
|
+
"use strict";
|
|
1112
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1113
|
+
exports2.ChecksumStream = void 0;
|
|
1114
|
+
var util_base64_1 = require_dist_cjs10();
|
|
1115
|
+
var stream_1 = require("stream");
|
|
1116
|
+
var ChecksumStream2 = class extends stream_1.Duplex {
|
|
1117
|
+
constructor({ expectedChecksum, checksum, source, checksumSourceLocation, base64Encoder }) {
|
|
1118
|
+
var _a2, _b;
|
|
1119
|
+
super();
|
|
1120
|
+
if (typeof source.pipe === "function") {
|
|
1121
|
+
this.source = source;
|
|
1122
|
+
} else {
|
|
1123
|
+
throw new Error(`@smithy/util-stream: unsupported source type ${(_b = (_a2 = source === null || source === void 0 ? void 0 : source.constructor) === null || _a2 === void 0 ? void 0 : _a2.name) !== null && _b !== void 0 ? _b : source} in ChecksumStream.`);
|
|
1124
|
+
}
|
|
1125
|
+
this.base64Encoder = base64Encoder !== null && base64Encoder !== void 0 ? base64Encoder : util_base64_1.toBase64;
|
|
1126
|
+
this.expectedChecksum = expectedChecksum;
|
|
1127
|
+
this.checksum = checksum;
|
|
1128
|
+
this.checksumSourceLocation = checksumSourceLocation;
|
|
1129
|
+
this.source.pipe(this);
|
|
1130
|
+
}
|
|
1131
|
+
_read(size) {
|
|
1132
|
+
}
|
|
1133
|
+
_write(chunk, encoding, callback) {
|
|
1134
|
+
try {
|
|
1135
|
+
this.checksum.update(chunk);
|
|
1136
|
+
this.push(chunk);
|
|
1137
|
+
} catch (e3) {
|
|
1138
|
+
return callback(e3);
|
|
1139
|
+
}
|
|
1140
|
+
return callback();
|
|
1141
|
+
}
|
|
1142
|
+
async _final(callback) {
|
|
1143
|
+
try {
|
|
1144
|
+
const digest = await this.checksum.digest();
|
|
1145
|
+
const received = this.base64Encoder(digest);
|
|
1146
|
+
if (this.expectedChecksum !== received) {
|
|
1147
|
+
return callback(new Error(`Checksum mismatch: expected "${this.expectedChecksum}" but received "${received}" in response header "${this.checksumSourceLocation}".`));
|
|
1148
|
+
}
|
|
1149
|
+
} catch (e3) {
|
|
1150
|
+
return callback(e3);
|
|
1151
|
+
}
|
|
1152
|
+
this.push(null);
|
|
1153
|
+
return callback();
|
|
1154
|
+
}
|
|
1155
|
+
};
|
|
1156
|
+
exports2.ChecksumStream = ChecksumStream2;
|
|
1157
|
+
}
|
|
1158
|
+
});
|
|
1159
|
+
|
|
1160
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js
|
|
1161
|
+
var require_stream_type_check = __commonJS({
|
|
1162
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js"(exports2) {
|
|
1163
|
+
"use strict";
|
|
1164
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1165
|
+
exports2.isBlob = exports2.isReadableStream = void 0;
|
|
1166
|
+
var isReadableStream2 = (stream) => {
|
|
1167
|
+
var _a2;
|
|
1168
|
+
return typeof ReadableStream === "function" && (((_a2 = stream === null || stream === void 0 ? void 0 : stream.constructor) === null || _a2 === void 0 ? void 0 : _a2.name) === ReadableStream.name || stream instanceof ReadableStream);
|
|
1169
|
+
};
|
|
1170
|
+
exports2.isReadableStream = isReadableStream2;
|
|
1171
|
+
var isBlob2 = (blob) => {
|
|
1172
|
+
var _a2;
|
|
1173
|
+
return typeof Blob === "function" && (((_a2 = blob === null || blob === void 0 ? void 0 : blob.constructor) === null || _a2 === void 0 ? void 0 : _a2.name) === Blob.name || blob instanceof Blob);
|
|
1174
|
+
};
|
|
1175
|
+
exports2.isBlob = isBlob2;
|
|
1176
|
+
}
|
|
1177
|
+
});
|
|
1178
|
+
|
|
1179
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js
|
|
1180
|
+
var require_ChecksumStream_browser = __commonJS({
|
|
1181
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js"(exports2) {
|
|
1182
|
+
"use strict";
|
|
1183
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1184
|
+
exports2.ChecksumStream = void 0;
|
|
1185
|
+
var ReadableStreamRef = typeof ReadableStream === "function" ? ReadableStream : function() {
|
|
1186
|
+
};
|
|
1187
|
+
var ChecksumStream2 = class extends ReadableStreamRef {
|
|
1188
|
+
};
|
|
1189
|
+
exports2.ChecksumStream = ChecksumStream2;
|
|
1190
|
+
}
|
|
1191
|
+
});
|
|
1192
|
+
|
|
1193
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js
|
|
1194
|
+
var require_createChecksumStream_browser = __commonJS({
|
|
1195
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js"(exports2) {
|
|
1196
|
+
"use strict";
|
|
1197
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1198
|
+
exports2.createChecksumStream = void 0;
|
|
1199
|
+
var util_base64_1 = require_dist_cjs10();
|
|
1200
|
+
var stream_type_check_1 = require_stream_type_check();
|
|
1201
|
+
var ChecksumStream_browser_1 = require_ChecksumStream_browser();
|
|
1202
|
+
var createChecksumStream2 = ({ expectedChecksum, checksum, source, checksumSourceLocation, base64Encoder }) => {
|
|
1203
|
+
var _a2, _b;
|
|
1204
|
+
if (!(0, stream_type_check_1.isReadableStream)(source)) {
|
|
1205
|
+
throw new Error(`@smithy/util-stream: unsupported source type ${(_b = (_a2 = source === null || source === void 0 ? void 0 : source.constructor) === null || _a2 === void 0 ? void 0 : _a2.name) !== null && _b !== void 0 ? _b : source} in ChecksumStream.`);
|
|
1206
|
+
}
|
|
1207
|
+
const encoder = base64Encoder !== null && base64Encoder !== void 0 ? base64Encoder : util_base64_1.toBase64;
|
|
1208
|
+
if (typeof TransformStream !== "function") {
|
|
1209
|
+
throw new Error("@smithy/util-stream: unable to instantiate ChecksumStream because API unavailable: ReadableStream/TransformStream.");
|
|
1210
|
+
}
|
|
1211
|
+
const transform = new TransformStream({
|
|
1212
|
+
start() {
|
|
1213
|
+
},
|
|
1214
|
+
async transform(chunk, controller) {
|
|
1215
|
+
checksum.update(chunk);
|
|
1216
|
+
controller.enqueue(chunk);
|
|
1217
|
+
},
|
|
1218
|
+
async flush(controller) {
|
|
1219
|
+
const digest = await checksum.digest();
|
|
1220
|
+
const received = encoder(digest);
|
|
1221
|
+
if (expectedChecksum !== received) {
|
|
1222
|
+
const error = new Error(`Checksum mismatch: expected "${expectedChecksum}" but received "${received}" in response header "${checksumSourceLocation}".`);
|
|
1223
|
+
controller.error(error);
|
|
1224
|
+
} else {
|
|
1225
|
+
controller.terminate();
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
});
|
|
1229
|
+
source.pipeThrough(transform);
|
|
1230
|
+
const readable = transform.readable;
|
|
1231
|
+
Object.setPrototypeOf(readable, ChecksumStream_browser_1.ChecksumStream.prototype);
|
|
1232
|
+
return readable;
|
|
1233
|
+
};
|
|
1234
|
+
exports2.createChecksumStream = createChecksumStream2;
|
|
1235
|
+
}
|
|
1236
|
+
});
|
|
1237
|
+
|
|
1238
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js
|
|
1239
|
+
var require_createChecksumStream = __commonJS({
|
|
1240
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js"(exports2) {
|
|
1241
|
+
"use strict";
|
|
1242
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1243
|
+
exports2.createChecksumStream = void 0;
|
|
1244
|
+
var stream_type_check_1 = require_stream_type_check();
|
|
1245
|
+
var ChecksumStream_1 = require_ChecksumStream();
|
|
1246
|
+
var createChecksumStream_browser_1 = require_createChecksumStream_browser();
|
|
1247
|
+
function createChecksumStream2(init) {
|
|
1248
|
+
if (typeof ReadableStream === "function" && (0, stream_type_check_1.isReadableStream)(init.source)) {
|
|
1249
|
+
return (0, createChecksumStream_browser_1.createChecksumStream)(init);
|
|
1250
|
+
}
|
|
1251
|
+
return new ChecksumStream_1.ChecksumStream(init);
|
|
1252
|
+
}
|
|
1253
|
+
exports2.createChecksumStream = createChecksumStream2;
|
|
1254
|
+
}
|
|
1255
|
+
});
|
|
1256
|
+
|
|
1257
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js
|
|
1258
|
+
var require_ByteArrayCollector = __commonJS({
|
|
1259
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js"(exports2) {
|
|
1260
|
+
"use strict";
|
|
1261
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1262
|
+
exports2.ByteArrayCollector = void 0;
|
|
1263
|
+
var ByteArrayCollector = class {
|
|
1264
|
+
constructor(allocByteArray) {
|
|
1265
|
+
this.allocByteArray = allocByteArray;
|
|
1266
|
+
this.byteLength = 0;
|
|
1267
|
+
this.byteArrays = [];
|
|
1268
|
+
}
|
|
1269
|
+
push(byteArray) {
|
|
1270
|
+
this.byteArrays.push(byteArray);
|
|
1271
|
+
this.byteLength += byteArray.byteLength;
|
|
1272
|
+
}
|
|
1273
|
+
flush() {
|
|
1274
|
+
if (this.byteArrays.length === 1) {
|
|
1275
|
+
const bytes = this.byteArrays[0];
|
|
1276
|
+
this.reset();
|
|
1277
|
+
return bytes;
|
|
1278
|
+
}
|
|
1279
|
+
const aggregation = this.allocByteArray(this.byteLength);
|
|
1280
|
+
let cursor = 0;
|
|
1281
|
+
for (let i3 = 0; i3 < this.byteArrays.length; ++i3) {
|
|
1282
|
+
const bytes = this.byteArrays[i3];
|
|
1283
|
+
aggregation.set(bytes, cursor);
|
|
1284
|
+
cursor += bytes.byteLength;
|
|
1285
|
+
}
|
|
1286
|
+
this.reset();
|
|
1287
|
+
return aggregation;
|
|
1288
|
+
}
|
|
1289
|
+
reset() {
|
|
1290
|
+
this.byteArrays = [];
|
|
1291
|
+
this.byteLength = 0;
|
|
1292
|
+
}
|
|
1293
|
+
};
|
|
1294
|
+
exports2.ByteArrayCollector = ByteArrayCollector;
|
|
1295
|
+
}
|
|
1296
|
+
});
|
|
1297
|
+
|
|
1298
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js
|
|
1299
|
+
var require_createBufferedReadableStream = __commonJS({
|
|
1300
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js"(exports2) {
|
|
1301
|
+
"use strict";
|
|
1302
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1303
|
+
exports2.modeOf = exports2.sizeOf = exports2.flush = exports2.merge = exports2.createBufferedReadable = exports2.createBufferedReadableStream = void 0;
|
|
1304
|
+
var ByteArrayCollector_1 = require_ByteArrayCollector();
|
|
1305
|
+
function createBufferedReadableStream(upstream, size, logger) {
|
|
1306
|
+
const reader = upstream.getReader();
|
|
1307
|
+
let streamBufferingLoggedWarning = false;
|
|
1308
|
+
let bytesSeen = 0;
|
|
1309
|
+
const buffers = ["", new ByteArrayCollector_1.ByteArrayCollector((size2) => new Uint8Array(size2))];
|
|
1310
|
+
let mode = -1;
|
|
1311
|
+
const pull = async (controller) => {
|
|
1312
|
+
const { value, done } = await reader.read();
|
|
1313
|
+
const chunk = value;
|
|
1314
|
+
if (done) {
|
|
1315
|
+
if (mode !== -1) {
|
|
1316
|
+
const remainder = flush(buffers, mode);
|
|
1317
|
+
if (sizeOf(remainder) > 0) {
|
|
1318
|
+
controller.enqueue(remainder);
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
controller.close();
|
|
1322
|
+
} else {
|
|
1323
|
+
const chunkMode = modeOf(chunk);
|
|
1324
|
+
if (mode !== chunkMode) {
|
|
1325
|
+
if (mode >= 0) {
|
|
1326
|
+
controller.enqueue(flush(buffers, mode));
|
|
1327
|
+
}
|
|
1328
|
+
mode = chunkMode;
|
|
1329
|
+
}
|
|
1330
|
+
if (mode === -1) {
|
|
1331
|
+
controller.enqueue(chunk);
|
|
1332
|
+
return;
|
|
1333
|
+
}
|
|
1334
|
+
const chunkSize = sizeOf(chunk);
|
|
1335
|
+
bytesSeen += chunkSize;
|
|
1336
|
+
const bufferSize = sizeOf(buffers[mode]);
|
|
1337
|
+
if (chunkSize >= size && bufferSize === 0) {
|
|
1338
|
+
controller.enqueue(chunk);
|
|
1339
|
+
} else {
|
|
1340
|
+
const newSize = merge(buffers, mode, chunk);
|
|
1341
|
+
if (!streamBufferingLoggedWarning && bytesSeen > size * 2) {
|
|
1342
|
+
streamBufferingLoggedWarning = true;
|
|
1343
|
+
logger === null || logger === void 0 ? void 0 : logger.warn(`@smithy/util-stream - stream chunk size ${chunkSize} is below threshold of ${size}, automatically buffering.`);
|
|
1344
|
+
}
|
|
1345
|
+
if (newSize >= size) {
|
|
1346
|
+
controller.enqueue(flush(buffers, mode));
|
|
1347
|
+
} else {
|
|
1348
|
+
await pull(controller);
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
};
|
|
1353
|
+
return new ReadableStream({
|
|
1354
|
+
pull
|
|
1355
|
+
});
|
|
1356
|
+
}
|
|
1357
|
+
exports2.createBufferedReadableStream = createBufferedReadableStream;
|
|
1358
|
+
exports2.createBufferedReadable = createBufferedReadableStream;
|
|
1359
|
+
function merge(buffers, mode, chunk) {
|
|
1360
|
+
switch (mode) {
|
|
1361
|
+
case 0:
|
|
1362
|
+
buffers[0] += chunk;
|
|
1363
|
+
return sizeOf(buffers[0]);
|
|
1364
|
+
case 1:
|
|
1365
|
+
case 2:
|
|
1366
|
+
buffers[mode].push(chunk);
|
|
1367
|
+
return sizeOf(buffers[mode]);
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
exports2.merge = merge;
|
|
1371
|
+
function flush(buffers, mode) {
|
|
1372
|
+
switch (mode) {
|
|
1373
|
+
case 0:
|
|
1374
|
+
const s3 = buffers[0];
|
|
1375
|
+
buffers[0] = "";
|
|
1376
|
+
return s3;
|
|
1377
|
+
case 1:
|
|
1378
|
+
case 2:
|
|
1379
|
+
return buffers[mode].flush();
|
|
1380
|
+
}
|
|
1381
|
+
throw new Error(`@smithy/util-stream - invalid index ${mode} given to flush()`);
|
|
1382
|
+
}
|
|
1383
|
+
exports2.flush = flush;
|
|
1384
|
+
function sizeOf(chunk) {
|
|
1385
|
+
var _a2, _b;
|
|
1386
|
+
return (_b = (_a2 = chunk === null || chunk === void 0 ? void 0 : chunk.byteLength) !== null && _a2 !== void 0 ? _a2 : chunk === null || chunk === void 0 ? void 0 : chunk.length) !== null && _b !== void 0 ? _b : 0;
|
|
1387
|
+
}
|
|
1388
|
+
exports2.sizeOf = sizeOf;
|
|
1389
|
+
function modeOf(chunk) {
|
|
1390
|
+
if (typeof Buffer !== "undefined" && chunk instanceof Buffer) {
|
|
1391
|
+
return 2;
|
|
1392
|
+
}
|
|
1393
|
+
if (chunk instanceof Uint8Array) {
|
|
1394
|
+
return 1;
|
|
1395
|
+
}
|
|
1396
|
+
if (typeof chunk === "string") {
|
|
1397
|
+
return 0;
|
|
1398
|
+
}
|
|
1399
|
+
return -1;
|
|
1400
|
+
}
|
|
1401
|
+
exports2.modeOf = modeOf;
|
|
1402
|
+
}
|
|
1403
|
+
});
|
|
1404
|
+
|
|
1405
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js
|
|
1406
|
+
var require_createBufferedReadable = __commonJS({
|
|
1407
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js"(exports2) {
|
|
1408
|
+
"use strict";
|
|
1409
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1410
|
+
exports2.createBufferedReadable = void 0;
|
|
1411
|
+
var node_stream_1 = require("node:stream");
|
|
1412
|
+
var ByteArrayCollector_1 = require_ByteArrayCollector();
|
|
1413
|
+
var createBufferedReadableStream_1 = require_createBufferedReadableStream();
|
|
1414
|
+
var stream_type_check_1 = require_stream_type_check();
|
|
1415
|
+
function createBufferedReadable2(upstream, size, logger) {
|
|
1416
|
+
if ((0, stream_type_check_1.isReadableStream)(upstream)) {
|
|
1417
|
+
return (0, createBufferedReadableStream_1.createBufferedReadableStream)(upstream, size, logger);
|
|
1418
|
+
}
|
|
1419
|
+
const downstream = new node_stream_1.Readable({ read() {
|
|
1420
|
+
} });
|
|
1421
|
+
let streamBufferingLoggedWarning = false;
|
|
1422
|
+
let bytesSeen = 0;
|
|
1423
|
+
const buffers = [
|
|
1424
|
+
"",
|
|
1425
|
+
new ByteArrayCollector_1.ByteArrayCollector((size2) => new Uint8Array(size2)),
|
|
1426
|
+
new ByteArrayCollector_1.ByteArrayCollector((size2) => Buffer.from(new Uint8Array(size2)))
|
|
1427
|
+
];
|
|
1428
|
+
let mode = -1;
|
|
1429
|
+
upstream.on("data", (chunk) => {
|
|
1430
|
+
const chunkMode = (0, createBufferedReadableStream_1.modeOf)(chunk);
|
|
1431
|
+
if (mode !== chunkMode) {
|
|
1432
|
+
if (mode >= 0) {
|
|
1433
|
+
downstream.push((0, createBufferedReadableStream_1.flush)(buffers, mode));
|
|
1434
|
+
}
|
|
1435
|
+
mode = chunkMode;
|
|
1436
|
+
}
|
|
1437
|
+
if (mode === -1) {
|
|
1438
|
+
downstream.push(chunk);
|
|
1439
|
+
return;
|
|
1440
|
+
}
|
|
1441
|
+
const chunkSize = (0, createBufferedReadableStream_1.sizeOf)(chunk);
|
|
1442
|
+
bytesSeen += chunkSize;
|
|
1443
|
+
const bufferSize = (0, createBufferedReadableStream_1.sizeOf)(buffers[mode]);
|
|
1444
|
+
if (chunkSize >= size && bufferSize === 0) {
|
|
1445
|
+
downstream.push(chunk);
|
|
1446
|
+
} else {
|
|
1447
|
+
const newSize = (0, createBufferedReadableStream_1.merge)(buffers, mode, chunk);
|
|
1448
|
+
if (!streamBufferingLoggedWarning && bytesSeen > size * 2) {
|
|
1449
|
+
streamBufferingLoggedWarning = true;
|
|
1450
|
+
logger === null || logger === void 0 ? void 0 : logger.warn(`@smithy/util-stream - stream chunk size ${chunkSize} is below threshold of ${size}, automatically buffering.`);
|
|
1451
|
+
}
|
|
1452
|
+
if (newSize >= size) {
|
|
1453
|
+
downstream.push((0, createBufferedReadableStream_1.flush)(buffers, mode));
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1456
|
+
});
|
|
1457
|
+
upstream.on("end", () => {
|
|
1458
|
+
if (mode !== -1) {
|
|
1459
|
+
const remainder = (0, createBufferedReadableStream_1.flush)(buffers, mode);
|
|
1460
|
+
if ((0, createBufferedReadableStream_1.sizeOf)(remainder) > 0) {
|
|
1461
|
+
downstream.push(remainder);
|
|
1462
|
+
}
|
|
1463
|
+
}
|
|
1464
|
+
downstream.push(null);
|
|
1465
|
+
});
|
|
1466
|
+
return downstream;
|
|
1467
|
+
}
|
|
1468
|
+
exports2.createBufferedReadable = createBufferedReadable2;
|
|
1469
|
+
}
|
|
1470
|
+
});
|
|
1471
|
+
|
|
1472
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js
|
|
1109
1473
|
var require_getAwsChunkedEncodingStream = __commonJS({
|
|
1110
|
-
"node_modules/.pnpm/@smithy+util-stream@4.
|
|
1474
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js"(exports2) {
|
|
1111
1475
|
"use strict";
|
|
1112
1476
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1113
1477
|
exports2.getAwsChunkedEncodingStream = void 0;
|
|
@@ -1135,11 +1499,104 @@ var require_getAwsChunkedEncodingStream = __commonJS({
|
|
|
1135
1499
|
awsChunkedEncodingStream.push(`\r
|
|
1136
1500
|
`);
|
|
1137
1501
|
}
|
|
1138
|
-
awsChunkedEncodingStream.push(null);
|
|
1139
|
-
});
|
|
1140
|
-
return awsChunkedEncodingStream;
|
|
1502
|
+
awsChunkedEncodingStream.push(null);
|
|
1503
|
+
});
|
|
1504
|
+
return awsChunkedEncodingStream;
|
|
1505
|
+
};
|
|
1506
|
+
exports2.getAwsChunkedEncodingStream = getAwsChunkedEncodingStream2;
|
|
1507
|
+
}
|
|
1508
|
+
});
|
|
1509
|
+
|
|
1510
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js
|
|
1511
|
+
var require_headStream_browser = __commonJS({
|
|
1512
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js"(exports2) {
|
|
1513
|
+
"use strict";
|
|
1514
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1515
|
+
exports2.headStream = void 0;
|
|
1516
|
+
async function headStream2(stream, bytes) {
|
|
1517
|
+
var _a2;
|
|
1518
|
+
let byteLengthCounter = 0;
|
|
1519
|
+
const chunks = [];
|
|
1520
|
+
const reader = stream.getReader();
|
|
1521
|
+
let isDone = false;
|
|
1522
|
+
while (!isDone) {
|
|
1523
|
+
const { done, value } = await reader.read();
|
|
1524
|
+
if (value) {
|
|
1525
|
+
chunks.push(value);
|
|
1526
|
+
byteLengthCounter += (_a2 = value === null || value === void 0 ? void 0 : value.byteLength) !== null && _a2 !== void 0 ? _a2 : 0;
|
|
1527
|
+
}
|
|
1528
|
+
if (byteLengthCounter >= bytes) {
|
|
1529
|
+
break;
|
|
1530
|
+
}
|
|
1531
|
+
isDone = done;
|
|
1532
|
+
}
|
|
1533
|
+
reader.releaseLock();
|
|
1534
|
+
const collected = new Uint8Array(Math.min(bytes, byteLengthCounter));
|
|
1535
|
+
let offset = 0;
|
|
1536
|
+
for (const chunk of chunks) {
|
|
1537
|
+
if (chunk.byteLength > collected.byteLength - offset) {
|
|
1538
|
+
collected.set(chunk.subarray(0, collected.byteLength - offset), offset);
|
|
1539
|
+
break;
|
|
1540
|
+
} else {
|
|
1541
|
+
collected.set(chunk, offset);
|
|
1542
|
+
}
|
|
1543
|
+
offset += chunk.length;
|
|
1544
|
+
}
|
|
1545
|
+
return collected;
|
|
1546
|
+
}
|
|
1547
|
+
exports2.headStream = headStream2;
|
|
1548
|
+
}
|
|
1549
|
+
});
|
|
1550
|
+
|
|
1551
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/headStream.js
|
|
1552
|
+
var require_headStream = __commonJS({
|
|
1553
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/headStream.js"(exports2) {
|
|
1554
|
+
"use strict";
|
|
1555
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
1556
|
+
exports2.headStream = void 0;
|
|
1557
|
+
var stream_1 = require("stream");
|
|
1558
|
+
var headStream_browser_1 = require_headStream_browser();
|
|
1559
|
+
var stream_type_check_1 = require_stream_type_check();
|
|
1560
|
+
var headStream2 = (stream, bytes) => {
|
|
1561
|
+
if ((0, stream_type_check_1.isReadableStream)(stream)) {
|
|
1562
|
+
return (0, headStream_browser_1.headStream)(stream, bytes);
|
|
1563
|
+
}
|
|
1564
|
+
return new Promise((resolve, reject) => {
|
|
1565
|
+
const collector = new Collector();
|
|
1566
|
+
collector.limit = bytes;
|
|
1567
|
+
stream.pipe(collector);
|
|
1568
|
+
stream.on("error", (err) => {
|
|
1569
|
+
collector.end();
|
|
1570
|
+
reject(err);
|
|
1571
|
+
});
|
|
1572
|
+
collector.on("error", reject);
|
|
1573
|
+
collector.on("finish", function() {
|
|
1574
|
+
const bytes2 = new Uint8Array(Buffer.concat(this.buffers));
|
|
1575
|
+
resolve(bytes2);
|
|
1576
|
+
});
|
|
1577
|
+
});
|
|
1578
|
+
};
|
|
1579
|
+
exports2.headStream = headStream2;
|
|
1580
|
+
var Collector = class extends stream_1.Writable {
|
|
1581
|
+
constructor() {
|
|
1582
|
+
super(...arguments);
|
|
1583
|
+
this.buffers = [];
|
|
1584
|
+
this.limit = Infinity;
|
|
1585
|
+
this.bytesBuffered = 0;
|
|
1586
|
+
}
|
|
1587
|
+
_write(chunk, encoding, callback) {
|
|
1588
|
+
var _a2;
|
|
1589
|
+
this.buffers.push(chunk);
|
|
1590
|
+
this.bytesBuffered += (_a2 = chunk.byteLength) !== null && _a2 !== void 0 ? _a2 : 0;
|
|
1591
|
+
if (this.bytesBuffered >= this.limit) {
|
|
1592
|
+
const excess = this.bytesBuffered - this.limit;
|
|
1593
|
+
const tailBuffer = this.buffers[this.buffers.length - 1];
|
|
1594
|
+
this.buffers[this.buffers.length - 1] = tailBuffer.subarray(0, tailBuffer.byteLength - excess);
|
|
1595
|
+
this.emit("finish");
|
|
1596
|
+
}
|
|
1597
|
+
callback();
|
|
1598
|
+
}
|
|
1141
1599
|
};
|
|
1142
|
-
exports2.getAwsChunkedEncodingStream = getAwsChunkedEncodingStream2;
|
|
1143
1600
|
}
|
|
1144
1601
|
});
|
|
1145
1602
|
|
|
@@ -2306,28 +2763,9 @@ var require_dist_cjs15 = __commonJS({
|
|
|
2306
2763
|
}
|
|
2307
2764
|
});
|
|
2308
2765
|
|
|
2309
|
-
// node_modules/.pnpm/@smithy+util-stream@4.
|
|
2310
|
-
var require_stream_type_check = __commonJS({
|
|
2311
|
-
"node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js"(exports2) {
|
|
2312
|
-
"use strict";
|
|
2313
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2314
|
-
exports2.isBlob = exports2.isReadableStream = void 0;
|
|
2315
|
-
var isReadableStream2 = (stream) => {
|
|
2316
|
-
var _a2;
|
|
2317
|
-
return typeof ReadableStream === "function" && (((_a2 = stream === null || stream === void 0 ? void 0 : stream.constructor) === null || _a2 === void 0 ? void 0 : _a2.name) === ReadableStream.name || stream instanceof ReadableStream);
|
|
2318
|
-
};
|
|
2319
|
-
exports2.isReadableStream = isReadableStream2;
|
|
2320
|
-
var isBlob2 = (blob) => {
|
|
2321
|
-
var _a2;
|
|
2322
|
-
return typeof Blob === "function" && (((_a2 = blob === null || blob === void 0 ? void 0 : blob.constructor) === null || _a2 === void 0 ? void 0 : _a2.name) === Blob.name || blob instanceof Blob);
|
|
2323
|
-
};
|
|
2324
|
-
exports2.isBlob = isBlob2;
|
|
2325
|
-
}
|
|
2326
|
-
});
|
|
2327
|
-
|
|
2328
|
-
// node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js
|
|
2766
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js
|
|
2329
2767
|
var require_sdk_stream_mixin_browser = __commonJS({
|
|
2330
|
-
"node_modules/.pnpm/@smithy+util-stream@4.
|
|
2768
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js"(exports2) {
|
|
2331
2769
|
"use strict";
|
|
2332
2770
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2333
2771
|
exports2.sdkStreamMixin = void 0;
|
|
@@ -2393,9 +2831,9 @@ var require_sdk_stream_mixin_browser = __commonJS({
|
|
|
2393
2831
|
}
|
|
2394
2832
|
});
|
|
2395
2833
|
|
|
2396
|
-
// node_modules/.pnpm/@smithy+util-stream@4.
|
|
2834
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js
|
|
2397
2835
|
var require_sdk_stream_mixin = __commonJS({
|
|
2398
|
-
"node_modules/.pnpm/@smithy+util-stream@4.
|
|
2836
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js"(exports2) {
|
|
2399
2837
|
"use strict";
|
|
2400
2838
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2401
2839
|
exports2.sdkStreamMixin = void 0;
|
|
@@ -2452,9 +2890,9 @@ var require_sdk_stream_mixin = __commonJS({
|
|
|
2452
2890
|
}
|
|
2453
2891
|
});
|
|
2454
2892
|
|
|
2455
|
-
// node_modules/.pnpm/@smithy+util-stream@4.
|
|
2893
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js
|
|
2456
2894
|
var require_splitStream_browser = __commonJS({
|
|
2457
|
-
"node_modules/.pnpm/@smithy+util-stream@4.
|
|
2895
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js"(exports2) {
|
|
2458
2896
|
"use strict";
|
|
2459
2897
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2460
2898
|
exports2.splitStream = void 0;
|
|
@@ -2469,9 +2907,9 @@ var require_splitStream_browser = __commonJS({
|
|
|
2469
2907
|
}
|
|
2470
2908
|
});
|
|
2471
2909
|
|
|
2472
|
-
// node_modules/.pnpm/@smithy+util-stream@4.
|
|
2910
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/splitStream.js
|
|
2473
2911
|
var require_splitStream = __commonJS({
|
|
2474
|
-
"node_modules/.pnpm/@smithy+util-stream@4.
|
|
2912
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/splitStream.js"(exports2) {
|
|
2475
2913
|
"use strict";
|
|
2476
2914
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2477
2915
|
exports2.splitStream = void 0;
|
|
@@ -2492,232 +2930,9 @@ var require_splitStream = __commonJS({
|
|
|
2492
2930
|
}
|
|
2493
2931
|
});
|
|
2494
2932
|
|
|
2495
|
-
// node_modules/.pnpm/@smithy+util-stream@4.
|
|
2496
|
-
var require_headStream_browser = __commonJS({
|
|
2497
|
-
"node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js"(exports2) {
|
|
2498
|
-
"use strict";
|
|
2499
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2500
|
-
exports2.headStream = void 0;
|
|
2501
|
-
async function headStream2(stream, bytes) {
|
|
2502
|
-
var _a2;
|
|
2503
|
-
let byteLengthCounter = 0;
|
|
2504
|
-
const chunks = [];
|
|
2505
|
-
const reader = stream.getReader();
|
|
2506
|
-
let isDone = false;
|
|
2507
|
-
while (!isDone) {
|
|
2508
|
-
const { done, value } = await reader.read();
|
|
2509
|
-
if (value) {
|
|
2510
|
-
chunks.push(value);
|
|
2511
|
-
byteLengthCounter += (_a2 = value === null || value === void 0 ? void 0 : value.byteLength) !== null && _a2 !== void 0 ? _a2 : 0;
|
|
2512
|
-
}
|
|
2513
|
-
if (byteLengthCounter >= bytes) {
|
|
2514
|
-
break;
|
|
2515
|
-
}
|
|
2516
|
-
isDone = done;
|
|
2517
|
-
}
|
|
2518
|
-
reader.releaseLock();
|
|
2519
|
-
const collected = new Uint8Array(Math.min(bytes, byteLengthCounter));
|
|
2520
|
-
let offset = 0;
|
|
2521
|
-
for (const chunk of chunks) {
|
|
2522
|
-
if (chunk.byteLength > collected.byteLength - offset) {
|
|
2523
|
-
collected.set(chunk.subarray(0, collected.byteLength - offset), offset);
|
|
2524
|
-
break;
|
|
2525
|
-
} else {
|
|
2526
|
-
collected.set(chunk, offset);
|
|
2527
|
-
}
|
|
2528
|
-
offset += chunk.length;
|
|
2529
|
-
}
|
|
2530
|
-
return collected;
|
|
2531
|
-
}
|
|
2532
|
-
exports2.headStream = headStream2;
|
|
2533
|
-
}
|
|
2534
|
-
});
|
|
2535
|
-
|
|
2536
|
-
// node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/headStream.js
|
|
2537
|
-
var require_headStream = __commonJS({
|
|
2538
|
-
"node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/headStream.js"(exports2) {
|
|
2539
|
-
"use strict";
|
|
2540
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2541
|
-
exports2.headStream = void 0;
|
|
2542
|
-
var stream_1 = require("stream");
|
|
2543
|
-
var headStream_browser_1 = require_headStream_browser();
|
|
2544
|
-
var stream_type_check_1 = require_stream_type_check();
|
|
2545
|
-
var headStream2 = (stream, bytes) => {
|
|
2546
|
-
if ((0, stream_type_check_1.isReadableStream)(stream)) {
|
|
2547
|
-
return (0, headStream_browser_1.headStream)(stream, bytes);
|
|
2548
|
-
}
|
|
2549
|
-
return new Promise((resolve, reject) => {
|
|
2550
|
-
const collector = new Collector();
|
|
2551
|
-
collector.limit = bytes;
|
|
2552
|
-
stream.pipe(collector);
|
|
2553
|
-
stream.on("error", (err) => {
|
|
2554
|
-
collector.end();
|
|
2555
|
-
reject(err);
|
|
2556
|
-
});
|
|
2557
|
-
collector.on("error", reject);
|
|
2558
|
-
collector.on("finish", function() {
|
|
2559
|
-
const bytes2 = new Uint8Array(Buffer.concat(this.buffers));
|
|
2560
|
-
resolve(bytes2);
|
|
2561
|
-
});
|
|
2562
|
-
});
|
|
2563
|
-
};
|
|
2564
|
-
exports2.headStream = headStream2;
|
|
2565
|
-
var Collector = class extends stream_1.Writable {
|
|
2566
|
-
constructor() {
|
|
2567
|
-
super(...arguments);
|
|
2568
|
-
this.buffers = [];
|
|
2569
|
-
this.limit = Infinity;
|
|
2570
|
-
this.bytesBuffered = 0;
|
|
2571
|
-
}
|
|
2572
|
-
_write(chunk, encoding, callback) {
|
|
2573
|
-
var _a2;
|
|
2574
|
-
this.buffers.push(chunk);
|
|
2575
|
-
this.bytesBuffered += (_a2 = chunk.byteLength) !== null && _a2 !== void 0 ? _a2 : 0;
|
|
2576
|
-
if (this.bytesBuffered >= this.limit) {
|
|
2577
|
-
const excess = this.bytesBuffered - this.limit;
|
|
2578
|
-
const tailBuffer = this.buffers[this.buffers.length - 1];
|
|
2579
|
-
this.buffers[this.buffers.length - 1] = tailBuffer.subarray(0, tailBuffer.byteLength - excess);
|
|
2580
|
-
this.emit("finish");
|
|
2581
|
-
}
|
|
2582
|
-
callback();
|
|
2583
|
-
}
|
|
2584
|
-
};
|
|
2585
|
-
}
|
|
2586
|
-
});
|
|
2587
|
-
|
|
2588
|
-
// node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js
|
|
2589
|
-
var require_ChecksumStream = __commonJS({
|
|
2590
|
-
"node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js"(exports2) {
|
|
2591
|
-
"use strict";
|
|
2592
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2593
|
-
exports2.ChecksumStream = void 0;
|
|
2594
|
-
var util_base64_1 = require_dist_cjs10();
|
|
2595
|
-
var stream_1 = require("stream");
|
|
2596
|
-
var ChecksumStream2 = class extends stream_1.Duplex {
|
|
2597
|
-
constructor({ expectedChecksum, checksum, source, checksumSourceLocation, base64Encoder }) {
|
|
2598
|
-
var _a2, _b;
|
|
2599
|
-
super();
|
|
2600
|
-
if (typeof source.pipe === "function") {
|
|
2601
|
-
this.source = source;
|
|
2602
|
-
} else {
|
|
2603
|
-
throw new Error(`@smithy/util-stream: unsupported source type ${(_b = (_a2 = source === null || source === void 0 ? void 0 : source.constructor) === null || _a2 === void 0 ? void 0 : _a2.name) !== null && _b !== void 0 ? _b : source} in ChecksumStream.`);
|
|
2604
|
-
}
|
|
2605
|
-
this.base64Encoder = base64Encoder !== null && base64Encoder !== void 0 ? base64Encoder : util_base64_1.toBase64;
|
|
2606
|
-
this.expectedChecksum = expectedChecksum;
|
|
2607
|
-
this.checksum = checksum;
|
|
2608
|
-
this.checksumSourceLocation = checksumSourceLocation;
|
|
2609
|
-
this.source.pipe(this);
|
|
2610
|
-
}
|
|
2611
|
-
_read(size) {
|
|
2612
|
-
}
|
|
2613
|
-
_write(chunk, encoding, callback) {
|
|
2614
|
-
try {
|
|
2615
|
-
this.checksum.update(chunk);
|
|
2616
|
-
this.push(chunk);
|
|
2617
|
-
} catch (e3) {
|
|
2618
|
-
return callback(e3);
|
|
2619
|
-
}
|
|
2620
|
-
return callback();
|
|
2621
|
-
}
|
|
2622
|
-
async _final(callback) {
|
|
2623
|
-
try {
|
|
2624
|
-
const digest = await this.checksum.digest();
|
|
2625
|
-
const received = this.base64Encoder(digest);
|
|
2626
|
-
if (this.expectedChecksum !== received) {
|
|
2627
|
-
return callback(new Error(`Checksum mismatch: expected "${this.expectedChecksum}" but received "${received}" in response header "${this.checksumSourceLocation}".`));
|
|
2628
|
-
}
|
|
2629
|
-
} catch (e3) {
|
|
2630
|
-
return callback(e3);
|
|
2631
|
-
}
|
|
2632
|
-
this.push(null);
|
|
2633
|
-
return callback();
|
|
2634
|
-
}
|
|
2635
|
-
};
|
|
2636
|
-
exports2.ChecksumStream = ChecksumStream2;
|
|
2637
|
-
}
|
|
2638
|
-
});
|
|
2639
|
-
|
|
2640
|
-
// node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js
|
|
2641
|
-
var require_ChecksumStream_browser = __commonJS({
|
|
2642
|
-
"node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js"(exports2) {
|
|
2643
|
-
"use strict";
|
|
2644
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2645
|
-
exports2.ChecksumStream = void 0;
|
|
2646
|
-
var ReadableStreamRef = typeof ReadableStream === "function" ? ReadableStream : function() {
|
|
2647
|
-
};
|
|
2648
|
-
var ChecksumStream2 = class extends ReadableStreamRef {
|
|
2649
|
-
};
|
|
2650
|
-
exports2.ChecksumStream = ChecksumStream2;
|
|
2651
|
-
}
|
|
2652
|
-
});
|
|
2653
|
-
|
|
2654
|
-
// node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js
|
|
2655
|
-
var require_createChecksumStream_browser = __commonJS({
|
|
2656
|
-
"node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js"(exports2) {
|
|
2657
|
-
"use strict";
|
|
2658
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2659
|
-
exports2.createChecksumStream = void 0;
|
|
2660
|
-
var util_base64_1 = require_dist_cjs10();
|
|
2661
|
-
var stream_type_check_1 = require_stream_type_check();
|
|
2662
|
-
var ChecksumStream_browser_1 = require_ChecksumStream_browser();
|
|
2663
|
-
var createChecksumStream2 = ({ expectedChecksum, checksum, source, checksumSourceLocation, base64Encoder }) => {
|
|
2664
|
-
var _a2, _b;
|
|
2665
|
-
if (!(0, stream_type_check_1.isReadableStream)(source)) {
|
|
2666
|
-
throw new Error(`@smithy/util-stream: unsupported source type ${(_b = (_a2 = source === null || source === void 0 ? void 0 : source.constructor) === null || _a2 === void 0 ? void 0 : _a2.name) !== null && _b !== void 0 ? _b : source} in ChecksumStream.`);
|
|
2667
|
-
}
|
|
2668
|
-
const encoder = base64Encoder !== null && base64Encoder !== void 0 ? base64Encoder : util_base64_1.toBase64;
|
|
2669
|
-
if (typeof TransformStream !== "function") {
|
|
2670
|
-
throw new Error("@smithy/util-stream: unable to instantiate ChecksumStream because API unavailable: ReadableStream/TransformStream.");
|
|
2671
|
-
}
|
|
2672
|
-
const transform = new TransformStream({
|
|
2673
|
-
start() {
|
|
2674
|
-
},
|
|
2675
|
-
async transform(chunk, controller) {
|
|
2676
|
-
checksum.update(chunk);
|
|
2677
|
-
controller.enqueue(chunk);
|
|
2678
|
-
},
|
|
2679
|
-
async flush(controller) {
|
|
2680
|
-
const digest = await checksum.digest();
|
|
2681
|
-
const received = encoder(digest);
|
|
2682
|
-
if (expectedChecksum !== received) {
|
|
2683
|
-
const error = new Error(`Checksum mismatch: expected "${expectedChecksum}" but received "${received}" in response header "${checksumSourceLocation}".`);
|
|
2684
|
-
controller.error(error);
|
|
2685
|
-
} else {
|
|
2686
|
-
controller.terminate();
|
|
2687
|
-
}
|
|
2688
|
-
}
|
|
2689
|
-
});
|
|
2690
|
-
source.pipeThrough(transform);
|
|
2691
|
-
const readable = transform.readable;
|
|
2692
|
-
Object.setPrototypeOf(readable, ChecksumStream_browser_1.ChecksumStream.prototype);
|
|
2693
|
-
return readable;
|
|
2694
|
-
};
|
|
2695
|
-
exports2.createChecksumStream = createChecksumStream2;
|
|
2696
|
-
}
|
|
2697
|
-
});
|
|
2698
|
-
|
|
2699
|
-
// node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js
|
|
2700
|
-
var require_createChecksumStream = __commonJS({
|
|
2701
|
-
"node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js"(exports2) {
|
|
2702
|
-
"use strict";
|
|
2703
|
-
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2704
|
-
exports2.createChecksumStream = void 0;
|
|
2705
|
-
var stream_type_check_1 = require_stream_type_check();
|
|
2706
|
-
var ChecksumStream_1 = require_ChecksumStream();
|
|
2707
|
-
var createChecksumStream_browser_1 = require_createChecksumStream_browser();
|
|
2708
|
-
function createChecksumStream2(init) {
|
|
2709
|
-
if (typeof ReadableStream === "function" && (0, stream_type_check_1.isReadableStream)(init.source)) {
|
|
2710
|
-
return (0, createChecksumStream_browser_1.createChecksumStream)(init);
|
|
2711
|
-
}
|
|
2712
|
-
return new ChecksumStream_1.ChecksumStream(init);
|
|
2713
|
-
}
|
|
2714
|
-
exports2.createChecksumStream = createChecksumStream2;
|
|
2715
|
-
}
|
|
2716
|
-
});
|
|
2717
|
-
|
|
2718
|
-
// node_modules/.pnpm/@smithy+util-stream@4.0.2/node_modules/@smithy/util-stream/dist-cjs/index.js
|
|
2933
|
+
// node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/index.js
|
|
2719
2934
|
var require_dist_cjs16 = __commonJS({
|
|
2720
|
-
"node_modules/.pnpm/@smithy+util-stream@4.
|
|
2935
|
+
"node_modules/.pnpm/@smithy+util-stream@4.1.1/node_modules/@smithy/util-stream/dist-cjs/index.js"(exports2, module2) {
|
|
2721
2936
|
var __defProp2 = Object.defineProperty;
|
|
2722
2937
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
2723
2938
|
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
@@ -2790,20 +3005,21 @@ var require_dist_cjs16 = __commonJS({
|
|
|
2790
3005
|
return transformToString(this, encoding);
|
|
2791
3006
|
}
|
|
2792
3007
|
};
|
|
3008
|
+
__reExport(src_exports, require_ChecksumStream(), module2.exports);
|
|
3009
|
+
__reExport(src_exports, require_createChecksumStream(), module2.exports);
|
|
3010
|
+
__reExport(src_exports, require_createBufferedReadable(), module2.exports);
|
|
2793
3011
|
__reExport(src_exports, require_getAwsChunkedEncodingStream(), module2.exports);
|
|
3012
|
+
__reExport(src_exports, require_headStream(), module2.exports);
|
|
2794
3013
|
__reExport(src_exports, require_sdk_stream_mixin(), module2.exports);
|
|
2795
3014
|
__reExport(src_exports, require_splitStream(), module2.exports);
|
|
2796
|
-
__reExport(src_exports, require_headStream(), module2.exports);
|
|
2797
3015
|
__reExport(src_exports, require_stream_type_check(), module2.exports);
|
|
2798
|
-
__reExport(src_exports, require_createChecksumStream(), module2.exports);
|
|
2799
|
-
__reExport(src_exports, require_ChecksumStream(), module2.exports);
|
|
2800
3016
|
}
|
|
2801
3017
|
});
|
|
2802
3018
|
|
|
2803
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
3019
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js
|
|
2804
3020
|
var import_util_stream, collectBody2;
|
|
2805
3021
|
var init_collect_stream_body = __esm({
|
|
2806
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
3022
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js"() {
|
|
2807
3023
|
import_util_stream = __toESM(require_dist_cjs16());
|
|
2808
3024
|
collectBody2 = async (streamBody = new Uint8Array(), context) => {
|
|
2809
3025
|
if (streamBody instanceof Uint8Array) {
|
|
@@ -2818,21 +3034,21 @@ var init_collect_stream_body = __esm({
|
|
|
2818
3034
|
}
|
|
2819
3035
|
});
|
|
2820
3036
|
|
|
2821
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
3037
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js
|
|
2822
3038
|
function extendedEncodeURIComponent2(str) {
|
|
2823
3039
|
return encodeURIComponent(str).replace(/[!'()*]/g, function(c3) {
|
|
2824
3040
|
return "%" + c3.charCodeAt(0).toString(16).toUpperCase();
|
|
2825
3041
|
});
|
|
2826
3042
|
}
|
|
2827
3043
|
var init_extended_encode_uri_component = __esm({
|
|
2828
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
3044
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js"() {
|
|
2829
3045
|
}
|
|
2830
3046
|
});
|
|
2831
3047
|
|
|
2832
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
3048
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js
|
|
2833
3049
|
var resolvedPath2;
|
|
2834
3050
|
var init_resolve_path = __esm({
|
|
2835
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
3051
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js"() {
|
|
2836
3052
|
init_extended_encode_uri_component();
|
|
2837
3053
|
resolvedPath2 = (resolvedPath3, input, memberName, labelValueProvider, uriLabel, isGreedyLabel) => {
|
|
2838
3054
|
if (input != null && input[memberName] !== void 0) {
|
|
@@ -2849,13 +3065,13 @@ var init_resolve_path = __esm({
|
|
|
2849
3065
|
}
|
|
2850
3066
|
});
|
|
2851
3067
|
|
|
2852
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
3068
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js
|
|
2853
3069
|
function requestBuilder(input, context) {
|
|
2854
3070
|
return new RequestBuilder(input, context);
|
|
2855
3071
|
}
|
|
2856
3072
|
var import_protocol_http, RequestBuilder;
|
|
2857
3073
|
var init_requestBuilder = __esm({
|
|
2858
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
3074
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js"() {
|
|
2859
3075
|
import_protocol_http = __toESM(require_dist_cjs2());
|
|
2860
3076
|
init_resolve_path();
|
|
2861
3077
|
RequestBuilder = class {
|
|
@@ -2923,7 +3139,7 @@ var init_requestBuilder = __esm({
|
|
|
2923
3139
|
}
|
|
2924
3140
|
});
|
|
2925
3141
|
|
|
2926
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
3142
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/index.js
|
|
2927
3143
|
var protocols_exports = {};
|
|
2928
3144
|
__export(protocols_exports, {
|
|
2929
3145
|
RequestBuilder: () => RequestBuilder,
|
|
@@ -2933,7 +3149,7 @@ __export(protocols_exports, {
|
|
|
2933
3149
|
resolvedPath: () => resolvedPath2
|
|
2934
3150
|
});
|
|
2935
3151
|
var init_protocols = __esm({
|
|
2936
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
3152
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/submodules/protocols/index.js"() {
|
|
2937
3153
|
init_collect_stream_body();
|
|
2938
3154
|
init_extended_encode_uri_component();
|
|
2939
3155
|
init_requestBuilder();
|
|
@@ -2941,9 +3157,9 @@ var init_protocols = __esm({
|
|
|
2941
3157
|
}
|
|
2942
3158
|
});
|
|
2943
3159
|
|
|
2944
|
-
// node_modules/.pnpm/@smithy+smithy-client@4.1.
|
|
3160
|
+
// node_modules/.pnpm/@smithy+smithy-client@4.1.5/node_modules/@smithy/smithy-client/dist-cjs/index.js
|
|
2945
3161
|
var require_dist_cjs17 = __commonJS({
|
|
2946
|
-
"node_modules/.pnpm/@smithy+smithy-client@4.1.
|
|
3162
|
+
"node_modules/.pnpm/@smithy+smithy-client@4.1.5/node_modules/@smithy/smithy-client/dist-cjs/index.js"(exports2, module2) {
|
|
2947
3163
|
var __defProp2 = Object.defineProperty;
|
|
2948
3164
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
2949
3165
|
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
@@ -4142,9 +4358,9 @@ var require_dist_cjs17 = __commonJS({
|
|
|
4142
4358
|
}
|
|
4143
4359
|
});
|
|
4144
4360
|
|
|
4145
|
-
// node_modules/.pnpm/@aws-sdk+middleware-sdk-sqs@3.
|
|
4361
|
+
// node_modules/.pnpm/@aws-sdk+middleware-sdk-sqs@3.749.0/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js
|
|
4146
4362
|
var require_dist_cjs18 = __commonJS({
|
|
4147
|
-
"node_modules/.pnpm/@aws-sdk+middleware-sdk-sqs@3.
|
|
4363
|
+
"node_modules/.pnpm/@aws-sdk+middleware-sdk-sqs@3.749.0/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js"(exports2, module2) {
|
|
4148
4364
|
"use strict";
|
|
4149
4365
|
var __defProp2 = Object.defineProperty;
|
|
4150
4366
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -4336,10 +4552,10 @@ Set [endpoint=string] or [useQueueUrlAsEndpoint=false] on the SQSClient.`
|
|
|
4336
4552
|
}
|
|
4337
4553
|
});
|
|
4338
4554
|
|
|
4339
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4555
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/getSmithyContext.js
|
|
4340
4556
|
var import_types, getSmithyContext;
|
|
4341
4557
|
var init_getSmithyContext = __esm({
|
|
4342
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4558
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/getSmithyContext.js"() {
|
|
4343
4559
|
import_types = __toESM(require_dist_cjs());
|
|
4344
4560
|
getSmithyContext = (context) => context[import_types.SMITHY_CONTEXT_KEY] || (context[import_types.SMITHY_CONTEXT_KEY] = {});
|
|
4345
4561
|
}
|
|
@@ -4383,7 +4599,7 @@ var require_dist_cjs19 = __commonJS({
|
|
|
4383
4599
|
}
|
|
4384
4600
|
});
|
|
4385
4601
|
|
|
4386
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4602
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js
|
|
4387
4603
|
function convertHttpAuthSchemesToMap(httpAuthSchemes) {
|
|
4388
4604
|
const map2 = /* @__PURE__ */ new Map();
|
|
4389
4605
|
for (const scheme of httpAuthSchemes) {
|
|
@@ -4393,7 +4609,7 @@ function convertHttpAuthSchemesToMap(httpAuthSchemes) {
|
|
|
4393
4609
|
}
|
|
4394
4610
|
var import_types2, import_util_middleware, httpAuthSchemeMiddleware;
|
|
4395
4611
|
var init_httpAuthSchemeMiddleware = __esm({
|
|
4396
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4612
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js"() {
|
|
4397
4613
|
import_types2 = __toESM(require_dist_cjs());
|
|
4398
4614
|
import_util_middleware = __toESM(require_dist_cjs19());
|
|
4399
4615
|
httpAuthSchemeMiddleware = (config, mwOptions) => (next, context) => async (args) => {
|
|
@@ -4430,10 +4646,10 @@ var init_httpAuthSchemeMiddleware = __esm({
|
|
|
4430
4646
|
}
|
|
4431
4647
|
});
|
|
4432
4648
|
|
|
4433
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4649
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js
|
|
4434
4650
|
var httpAuthSchemeEndpointRuleSetMiddlewareOptions, getHttpAuthSchemeEndpointRuleSetPlugin;
|
|
4435
4651
|
var init_getHttpAuthSchemeEndpointRuleSetPlugin = __esm({
|
|
4436
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4652
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js"() {
|
|
4437
4653
|
init_httpAuthSchemeMiddleware();
|
|
4438
4654
|
httpAuthSchemeEndpointRuleSetMiddlewareOptions = {
|
|
4439
4655
|
step: "serialize",
|
|
@@ -4551,10 +4767,10 @@ var require_dist_cjs20 = __commonJS({
|
|
|
4551
4767
|
}
|
|
4552
4768
|
});
|
|
4553
4769
|
|
|
4554
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4770
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js
|
|
4555
4771
|
var import_middleware_serde, httpAuthSchemeMiddlewareOptions, getHttpAuthSchemePlugin;
|
|
4556
4772
|
var init_getHttpAuthSchemePlugin = __esm({
|
|
4557
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4773
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js"() {
|
|
4558
4774
|
import_middleware_serde = __toESM(require_dist_cjs20());
|
|
4559
4775
|
init_httpAuthSchemeMiddleware();
|
|
4560
4776
|
httpAuthSchemeMiddlewareOptions = {
|
|
@@ -4576,19 +4792,19 @@ var init_getHttpAuthSchemePlugin = __esm({
|
|
|
4576
4792
|
}
|
|
4577
4793
|
});
|
|
4578
4794
|
|
|
4579
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4795
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js
|
|
4580
4796
|
var init_middleware_http_auth_scheme = __esm({
|
|
4581
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4797
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js"() {
|
|
4582
4798
|
init_httpAuthSchemeMiddleware();
|
|
4583
4799
|
init_getHttpAuthSchemeEndpointRuleSetPlugin();
|
|
4584
4800
|
init_getHttpAuthSchemePlugin();
|
|
4585
4801
|
}
|
|
4586
4802
|
});
|
|
4587
4803
|
|
|
4588
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4804
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js
|
|
4589
4805
|
var import_protocol_http2, import_types3, import_util_middleware2, defaultErrorHandler, defaultSuccessHandler, httpSigningMiddleware;
|
|
4590
4806
|
var init_httpSigningMiddleware = __esm({
|
|
4591
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4807
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js"() {
|
|
4592
4808
|
import_protocol_http2 = __toESM(require_dist_cjs2());
|
|
4593
4809
|
import_types3 = __toESM(require_dist_cjs());
|
|
4594
4810
|
import_util_middleware2 = __toESM(require_dist_cjs19());
|
|
@@ -4617,10 +4833,10 @@ var init_httpSigningMiddleware = __esm({
|
|
|
4617
4833
|
}
|
|
4618
4834
|
});
|
|
4619
4835
|
|
|
4620
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4836
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js
|
|
4621
4837
|
var httpSigningMiddlewareOptions, getHttpSigningPlugin;
|
|
4622
4838
|
var init_getHttpSigningMiddleware = __esm({
|
|
4623
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4839
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js"() {
|
|
4624
4840
|
init_httpSigningMiddleware();
|
|
4625
4841
|
httpSigningMiddlewareOptions = {
|
|
4626
4842
|
step: "finalizeRequest",
|
|
@@ -4639,18 +4855,18 @@ var init_getHttpSigningMiddleware = __esm({
|
|
|
4639
4855
|
}
|
|
4640
4856
|
});
|
|
4641
4857
|
|
|
4642
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4858
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js
|
|
4643
4859
|
var init_middleware_http_signing = __esm({
|
|
4644
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4860
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js"() {
|
|
4645
4861
|
init_httpSigningMiddleware();
|
|
4646
4862
|
init_getHttpSigningMiddleware();
|
|
4647
4863
|
}
|
|
4648
4864
|
});
|
|
4649
4865
|
|
|
4650
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4866
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/normalizeProvider.js
|
|
4651
4867
|
var normalizeProvider;
|
|
4652
4868
|
var init_normalizeProvider = __esm({
|
|
4653
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4869
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/normalizeProvider.js"() {
|
|
4654
4870
|
normalizeProvider = (input) => {
|
|
4655
4871
|
if (typeof input === "function")
|
|
4656
4872
|
return input;
|
|
@@ -4660,7 +4876,7 @@ var init_normalizeProvider = __esm({
|
|
|
4660
4876
|
}
|
|
4661
4877
|
});
|
|
4662
4878
|
|
|
4663
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4879
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/pagination/createPaginator.js
|
|
4664
4880
|
function createPaginator(ClientCtor, CommandCtor, inputTokenName, outputTokenName, pageSizeTokenName) {
|
|
4665
4881
|
return async function* paginateOperation(config, input, ...additionalArguments) {
|
|
4666
4882
|
const _input = input;
|
|
@@ -4687,7 +4903,7 @@ function createPaginator(ClientCtor, CommandCtor, inputTokenName, outputTokenNam
|
|
|
4687
4903
|
}
|
|
4688
4904
|
var makePagedClientRequest, get;
|
|
4689
4905
|
var init_createPaginator = __esm({
|
|
4690
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4906
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/pagination/createPaginator.js"() {
|
|
4691
4907
|
makePagedClientRequest = async (CommandCtor, client, input, withCommand = (_2) => _2, ...args) => {
|
|
4692
4908
|
let command = new CommandCtor(input);
|
|
4693
4909
|
command = withCommand(command) ?? command;
|
|
@@ -4707,14 +4923,14 @@ var init_createPaginator = __esm({
|
|
|
4707
4923
|
}
|
|
4708
4924
|
});
|
|
4709
4925
|
|
|
4710
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4926
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/protocols/requestBuilder.js
|
|
4711
4927
|
var init_requestBuilder2 = __esm({
|
|
4712
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4928
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/protocols/requestBuilder.js"() {
|
|
4713
4929
|
init_protocols();
|
|
4714
4930
|
}
|
|
4715
4931
|
});
|
|
4716
4932
|
|
|
4717
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4933
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/setFeature.js
|
|
4718
4934
|
function setFeature(context, feature, value) {
|
|
4719
4935
|
if (!context.__smithy_context) {
|
|
4720
4936
|
context.__smithy_context = {
|
|
@@ -4726,14 +4942,14 @@ function setFeature(context, feature, value) {
|
|
|
4726
4942
|
context.__smithy_context.features[feature] = value;
|
|
4727
4943
|
}
|
|
4728
4944
|
var init_setFeature = __esm({
|
|
4729
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4945
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/setFeature.js"() {
|
|
4730
4946
|
}
|
|
4731
4947
|
});
|
|
4732
4948
|
|
|
4733
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4949
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js
|
|
4734
4950
|
var DefaultIdentityProviderConfig;
|
|
4735
4951
|
var init_DefaultIdentityProviderConfig = __esm({
|
|
4736
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4952
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js"() {
|
|
4737
4953
|
DefaultIdentityProviderConfig = class {
|
|
4738
4954
|
constructor(config) {
|
|
4739
4955
|
this.authSchemes = /* @__PURE__ */ new Map();
|
|
@@ -4750,10 +4966,10 @@ var init_DefaultIdentityProviderConfig = __esm({
|
|
|
4750
4966
|
}
|
|
4751
4967
|
});
|
|
4752
4968
|
|
|
4753
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
4969
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js
|
|
4754
4970
|
var import_protocol_http3, import_types4, HttpApiKeyAuthSigner;
|
|
4755
4971
|
var init_httpApiKeyAuth = __esm({
|
|
4756
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
4972
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js"() {
|
|
4757
4973
|
import_protocol_http3 = __toESM(require_dist_cjs2());
|
|
4758
4974
|
import_types4 = __toESM(require_dist_cjs());
|
|
4759
4975
|
HttpApiKeyAuthSigner = class {
|
|
@@ -4784,10 +5000,10 @@ var init_httpApiKeyAuth = __esm({
|
|
|
4784
5000
|
}
|
|
4785
5001
|
});
|
|
4786
5002
|
|
|
4787
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
5003
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js
|
|
4788
5004
|
var import_protocol_http4, HttpBearerAuthSigner;
|
|
4789
5005
|
var init_httpBearerAuth = __esm({
|
|
4790
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
5006
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js"() {
|
|
4791
5007
|
import_protocol_http4 = __toESM(require_dist_cjs2());
|
|
4792
5008
|
HttpBearerAuthSigner = class {
|
|
4793
5009
|
async sign(httpRequest, identity, signingProperties) {
|
|
@@ -4802,10 +5018,10 @@ var init_httpBearerAuth = __esm({
|
|
|
4802
5018
|
}
|
|
4803
5019
|
});
|
|
4804
5020
|
|
|
4805
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
5021
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js
|
|
4806
5022
|
var NoAuthSigner;
|
|
4807
5023
|
var init_noAuth = __esm({
|
|
4808
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
5024
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js"() {
|
|
4809
5025
|
NoAuthSigner = class {
|
|
4810
5026
|
async sign(httpRequest, identity, signingProperties) {
|
|
4811
5027
|
return httpRequest;
|
|
@@ -4814,19 +5030,19 @@ var init_noAuth = __esm({
|
|
|
4814
5030
|
}
|
|
4815
5031
|
});
|
|
4816
5032
|
|
|
4817
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
5033
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js
|
|
4818
5034
|
var init_httpAuthSchemes = __esm({
|
|
4819
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
5035
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js"() {
|
|
4820
5036
|
init_httpApiKeyAuth();
|
|
4821
5037
|
init_httpBearerAuth();
|
|
4822
5038
|
init_noAuth();
|
|
4823
5039
|
}
|
|
4824
5040
|
});
|
|
4825
5041
|
|
|
4826
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
5042
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js
|
|
4827
5043
|
var createIsIdentityExpiredFunction, EXPIRATION_MS, isIdentityExpired, doesIdentityRequireRefresh, memoizeIdentityProvider;
|
|
4828
5044
|
var init_memoizeIdentityProvider = __esm({
|
|
4829
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
5045
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js"() {
|
|
4830
5046
|
createIsIdentityExpiredFunction = (expirationMs) => (identity) => doesIdentityRequireRefresh(identity) && identity.expiration.getTime() - Date.now() < expirationMs;
|
|
4831
5047
|
EXPIRATION_MS = 3e5;
|
|
4832
5048
|
isIdentityExpired = createIsIdentityExpiredFunction(EXPIRATION_MS);
|
|
@@ -4882,16 +5098,16 @@ var init_memoizeIdentityProvider = __esm({
|
|
|
4882
5098
|
}
|
|
4883
5099
|
});
|
|
4884
5100
|
|
|
4885
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
5101
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js
|
|
4886
5102
|
var init_util_identity_and_auth = __esm({
|
|
4887
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
5103
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js"() {
|
|
4888
5104
|
init_DefaultIdentityProviderConfig();
|
|
4889
5105
|
init_httpAuthSchemes();
|
|
4890
5106
|
init_memoizeIdentityProvider();
|
|
4891
5107
|
}
|
|
4892
5108
|
});
|
|
4893
5109
|
|
|
4894
|
-
// node_modules/.pnpm/@smithy+core@3.1.
|
|
5110
|
+
// node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/index.js
|
|
4895
5111
|
var dist_es_exports = {};
|
|
4896
5112
|
__export(dist_es_exports, {
|
|
4897
5113
|
DefaultIdentityProviderConfig: () => DefaultIdentityProviderConfig,
|
|
@@ -4918,7 +5134,7 @@ __export(dist_es_exports, {
|
|
|
4918
5134
|
setFeature: () => setFeature
|
|
4919
5135
|
});
|
|
4920
5136
|
var init_dist_es = __esm({
|
|
4921
|
-
"node_modules/.pnpm/@smithy+core@3.1.
|
|
5137
|
+
"node_modules/.pnpm/@smithy+core@3.1.4/node_modules/@smithy/core/dist-es/index.js"() {
|
|
4922
5138
|
init_getSmithyContext();
|
|
4923
5139
|
init_middleware_http_auth_scheme();
|
|
4924
5140
|
init_middleware_http_signing();
|
|
@@ -5403,9 +5619,9 @@ var require_dist_cjs21 = __commonJS({
|
|
|
5403
5619
|
}
|
|
5404
5620
|
});
|
|
5405
5621
|
|
|
5406
|
-
// node_modules/.pnpm/@aws-sdk+util-endpoints@3.
|
|
5622
|
+
// node_modules/.pnpm/@aws-sdk+util-endpoints@3.743.0/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js
|
|
5407
5623
|
var require_dist_cjs22 = __commonJS({
|
|
5408
|
-
"node_modules/.pnpm/@aws-sdk+util-endpoints@3.
|
|
5624
|
+
"node_modules/.pnpm/@aws-sdk+util-endpoints@3.743.0/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js"(exports2, module2) {
|
|
5409
5625
|
"use strict";
|
|
5410
5626
|
var __defProp2 = Object.defineProperty;
|
|
5411
5627
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -5724,7 +5940,17 @@ var require_dist_cjs22 = __commonJS({
|
|
|
5724
5940
|
supportsFIPS: true
|
|
5725
5941
|
},
|
|
5726
5942
|
regionRegex: "^us\\-isof\\-\\w+\\-\\d+$",
|
|
5727
|
-
regions: {
|
|
5943
|
+
regions: {
|
|
5944
|
+
"aws-iso-f-global": {
|
|
5945
|
+
description: "AWS ISOF global region"
|
|
5946
|
+
},
|
|
5947
|
+
"us-isof-east-1": {
|
|
5948
|
+
description: "US ISOF EAST"
|
|
5949
|
+
},
|
|
5950
|
+
"us-isof-south-1": {
|
|
5951
|
+
description: "US ISOF SOUTH"
|
|
5952
|
+
}
|
|
5953
|
+
}
|
|
5728
5954
|
}],
|
|
5729
5955
|
version: "1.1"
|
|
5730
5956
|
};
|
|
@@ -5778,10 +6004,10 @@ var require_dist_cjs22 = __commonJS({
|
|
|
5778
6004
|
}
|
|
5779
6005
|
});
|
|
5780
6006
|
|
|
5781
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6007
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js
|
|
5782
6008
|
var state, emitWarningIfUnsupportedVersion;
|
|
5783
6009
|
var init_emitWarningIfUnsupportedVersion = __esm({
|
|
5784
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6010
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js"() {
|
|
5785
6011
|
state = {
|
|
5786
6012
|
warningEmitted: false
|
|
5787
6013
|
};
|
|
@@ -5800,7 +6026,7 @@ More information can be found at: https://a.co/74kJMmI`);
|
|
|
5800
6026
|
}
|
|
5801
6027
|
});
|
|
5802
6028
|
|
|
5803
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6029
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js
|
|
5804
6030
|
function setCredentialFeature(credentials, feature, value) {
|
|
5805
6031
|
if (!credentials.$source) {
|
|
5806
6032
|
credentials.$source = {};
|
|
@@ -5809,11 +6035,11 @@ function setCredentialFeature(credentials, feature, value) {
|
|
|
5809
6035
|
return credentials;
|
|
5810
6036
|
}
|
|
5811
6037
|
var init_setCredentialFeature = __esm({
|
|
5812
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6038
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js"() {
|
|
5813
6039
|
}
|
|
5814
6040
|
});
|
|
5815
6041
|
|
|
5816
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6042
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js
|
|
5817
6043
|
function setFeature2(context, feature, value) {
|
|
5818
6044
|
if (!context.__aws_sdk_context) {
|
|
5819
6045
|
context.__aws_sdk_context = {
|
|
@@ -5825,11 +6051,11 @@ function setFeature2(context, feature, value) {
|
|
|
5825
6051
|
context.__aws_sdk_context.features[feature] = value;
|
|
5826
6052
|
}
|
|
5827
6053
|
var init_setFeature2 = __esm({
|
|
5828
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6054
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js"() {
|
|
5829
6055
|
}
|
|
5830
6056
|
});
|
|
5831
6057
|
|
|
5832
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6058
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js
|
|
5833
6059
|
var client_exports = {};
|
|
5834
6060
|
__export(client_exports, {
|
|
5835
6061
|
emitWarningIfUnsupportedVersion: () => emitWarningIfUnsupportedVersion,
|
|
@@ -5838,43 +6064,43 @@ __export(client_exports, {
|
|
|
5838
6064
|
state: () => state
|
|
5839
6065
|
});
|
|
5840
6066
|
var init_client = __esm({
|
|
5841
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6067
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js"() {
|
|
5842
6068
|
init_emitWarningIfUnsupportedVersion();
|
|
5843
6069
|
init_setCredentialFeature();
|
|
5844
6070
|
init_setFeature2();
|
|
5845
6071
|
}
|
|
5846
6072
|
});
|
|
5847
6073
|
|
|
5848
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6074
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js
|
|
5849
6075
|
var import_protocol_http5, getDateHeader;
|
|
5850
6076
|
var init_getDateHeader = __esm({
|
|
5851
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6077
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js"() {
|
|
5852
6078
|
import_protocol_http5 = __toESM(require_dist_cjs2());
|
|
5853
6079
|
getDateHeader = (response) => import_protocol_http5.HttpResponse.isInstance(response) ? response.headers?.date ?? response.headers?.Date : void 0;
|
|
5854
6080
|
}
|
|
5855
6081
|
});
|
|
5856
6082
|
|
|
5857
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6083
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js
|
|
5858
6084
|
var getSkewCorrectedDate;
|
|
5859
6085
|
var init_getSkewCorrectedDate = __esm({
|
|
5860
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6086
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js"() {
|
|
5861
6087
|
getSkewCorrectedDate = (systemClockOffset) => new Date(Date.now() + systemClockOffset);
|
|
5862
6088
|
}
|
|
5863
6089
|
});
|
|
5864
6090
|
|
|
5865
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6091
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js
|
|
5866
6092
|
var isClockSkewed;
|
|
5867
6093
|
var init_isClockSkewed = __esm({
|
|
5868
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6094
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js"() {
|
|
5869
6095
|
init_getSkewCorrectedDate();
|
|
5870
6096
|
isClockSkewed = (clockTime, systemClockOffset) => Math.abs(getSkewCorrectedDate(systemClockOffset).getTime() - clockTime) >= 3e5;
|
|
5871
6097
|
}
|
|
5872
6098
|
});
|
|
5873
6099
|
|
|
5874
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6100
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js
|
|
5875
6101
|
var getUpdatedSystemClockOffset;
|
|
5876
6102
|
var init_getUpdatedSystemClockOffset = __esm({
|
|
5877
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6103
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js"() {
|
|
5878
6104
|
init_isClockSkewed();
|
|
5879
6105
|
getUpdatedSystemClockOffset = (clockTime, currentSystemClockOffset) => {
|
|
5880
6106
|
const clockTimeInMs = Date.parse(clockTime);
|
|
@@ -5886,19 +6112,19 @@ var init_getUpdatedSystemClockOffset = __esm({
|
|
|
5886
6112
|
}
|
|
5887
6113
|
});
|
|
5888
6114
|
|
|
5889
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6115
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js
|
|
5890
6116
|
var init_utils = __esm({
|
|
5891
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6117
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js"() {
|
|
5892
6118
|
init_getDateHeader();
|
|
5893
6119
|
init_getSkewCorrectedDate();
|
|
5894
6120
|
init_getUpdatedSystemClockOffset();
|
|
5895
6121
|
}
|
|
5896
6122
|
});
|
|
5897
6123
|
|
|
5898
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6124
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js
|
|
5899
6125
|
var import_protocol_http6, throwSigningPropertyError, validateSigningProperties, AwsSdkSigV4Signer, AWSSDKSigV4Signer;
|
|
5900
6126
|
var init_AwsSdkSigV4Signer = __esm({
|
|
5901
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6127
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js"() {
|
|
5902
6128
|
import_protocol_http6 = __toESM(require_dist_cjs2());
|
|
5903
6129
|
init_utils();
|
|
5904
6130
|
throwSigningPropertyError = (name, property) => {
|
|
@@ -5974,10 +6200,10 @@ var init_AwsSdkSigV4Signer = __esm({
|
|
|
5974
6200
|
}
|
|
5975
6201
|
});
|
|
5976
6202
|
|
|
5977
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6203
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js
|
|
5978
6204
|
var import_protocol_http7, AwsSdkSigV4ASigner;
|
|
5979
6205
|
var init_AwsSdkSigV4ASigner = __esm({
|
|
5980
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6206
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js"() {
|
|
5981
6207
|
import_protocol_http7 = __toESM(require_dist_cjs2());
|
|
5982
6208
|
init_utils();
|
|
5983
6209
|
init_AwsSdkSigV4Signer();
|
|
@@ -6151,10 +6377,10 @@ var require_dist_cjs23 = __commonJS({
|
|
|
6151
6377
|
}
|
|
6152
6378
|
});
|
|
6153
6379
|
|
|
6154
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6380
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js
|
|
6155
6381
|
var import_property_provider, resolveAwsSdkSigV4AConfig, NODE_SIGV4A_CONFIG_OPTIONS;
|
|
6156
6382
|
var init_resolveAwsSdkSigV4AConfig = __esm({
|
|
6157
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6383
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js"() {
|
|
6158
6384
|
init_dist_es();
|
|
6159
6385
|
import_property_provider = __toESM(require_dist_cjs23());
|
|
6160
6386
|
resolveAwsSdkSigV4AConfig = (config) => {
|
|
@@ -6741,10 +6967,10 @@ ${(0, import_util_hex_encoding.toHex)(hashedRequest)}`;
|
|
|
6741
6967
|
}
|
|
6742
6968
|
});
|
|
6743
6969
|
|
|
6744
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
6970
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js
|
|
6745
6971
|
var import_signature_v4, resolveAwsSdkSigV4Config, resolveAWSSDKSigV4Config;
|
|
6746
6972
|
var init_resolveAwsSdkSigV4Config = __esm({
|
|
6747
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
6973
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js"() {
|
|
6748
6974
|
init_client();
|
|
6749
6975
|
init_dist_es();
|
|
6750
6976
|
import_signature_v4 = __toESM(require_dist_cjs24());
|
|
@@ -6829,9 +7055,9 @@ var init_resolveAwsSdkSigV4Config = __esm({
|
|
|
6829
7055
|
}
|
|
6830
7056
|
});
|
|
6831
7057
|
|
|
6832
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
7058
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js
|
|
6833
7059
|
var init_aws_sdk = __esm({
|
|
6834
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
7060
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js"() {
|
|
6835
7061
|
init_AwsSdkSigV4Signer();
|
|
6836
7062
|
init_AwsSdkSigV4ASigner();
|
|
6837
7063
|
init_resolveAwsSdkSigV4AConfig();
|
|
@@ -6839,17 +7065,17 @@ var init_aws_sdk = __esm({
|
|
|
6839
7065
|
}
|
|
6840
7066
|
});
|
|
6841
7067
|
|
|
6842
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
7068
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js
|
|
6843
7069
|
var init_httpAuthSchemes2 = __esm({
|
|
6844
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
7070
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js"() {
|
|
6845
7071
|
init_aws_sdk();
|
|
6846
7072
|
}
|
|
6847
7073
|
});
|
|
6848
7074
|
|
|
6849
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
7075
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js
|
|
6850
7076
|
var _toStr, _toBool, _toNum;
|
|
6851
7077
|
var init_coercing_serializers = __esm({
|
|
6852
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
7078
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js"() {
|
|
6853
7079
|
_toStr = (val2) => {
|
|
6854
7080
|
if (val2 == null) {
|
|
6855
7081
|
return val2;
|
|
@@ -6906,10 +7132,10 @@ var init_coercing_serializers = __esm({
|
|
|
6906
7132
|
}
|
|
6907
7133
|
});
|
|
6908
7134
|
|
|
6909
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
7135
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js
|
|
6910
7136
|
var import_smithy_client, awsExpectUnion;
|
|
6911
7137
|
var init_awsExpectUnion = __esm({
|
|
6912
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
7138
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js"() {
|
|
6913
7139
|
import_smithy_client = __toESM(require_dist_cjs17());
|
|
6914
7140
|
awsExpectUnion = (value) => {
|
|
6915
7141
|
if (value == null) {
|
|
@@ -6923,19 +7149,19 @@ var init_awsExpectUnion = __esm({
|
|
|
6923
7149
|
}
|
|
6924
7150
|
});
|
|
6925
7151
|
|
|
6926
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
7152
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js
|
|
6927
7153
|
var import_smithy_client2, collectBodyString;
|
|
6928
7154
|
var init_common = __esm({
|
|
6929
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
7155
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js"() {
|
|
6930
7156
|
import_smithy_client2 = __toESM(require_dist_cjs17());
|
|
6931
7157
|
collectBodyString = (streamBody, context) => (0, import_smithy_client2.collectBody)(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
6932
7158
|
}
|
|
6933
7159
|
});
|
|
6934
7160
|
|
|
6935
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
7161
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js
|
|
6936
7162
|
var parseJsonBody, parseJsonErrorBody, loadRestJsonErrorCode;
|
|
6937
7163
|
var init_parseJsonBody = __esm({
|
|
6938
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
7164
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js"() {
|
|
6939
7165
|
init_common();
|
|
6940
7166
|
parseJsonBody = (streamBody, context) => collectBodyString(streamBody, context).then((encoded) => {
|
|
6941
7167
|
if (encoded.length) {
|
|
@@ -8633,10 +8859,10 @@ var require_fxp = __commonJS({
|
|
|
8633
8859
|
}
|
|
8634
8860
|
});
|
|
8635
8861
|
|
|
8636
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
8862
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js
|
|
8637
8863
|
var import_smithy_client3, import_fast_xml_parser, parseXmlBody, parseXmlErrorBody, loadRestXmlErrorCode;
|
|
8638
8864
|
var init_parseXmlBody = __esm({
|
|
8639
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
8865
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js"() {
|
|
8640
8866
|
import_smithy_client3 = __toESM(require_dist_cjs17());
|
|
8641
8867
|
import_fast_xml_parser = __toESM(require_fxp());
|
|
8642
8868
|
init_common();
|
|
@@ -8696,9 +8922,9 @@ var init_parseXmlBody = __esm({
|
|
|
8696
8922
|
}
|
|
8697
8923
|
});
|
|
8698
8924
|
|
|
8699
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
8925
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js
|
|
8700
8926
|
var init_protocols2 = __esm({
|
|
8701
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
8927
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js"() {
|
|
8702
8928
|
init_coercing_serializers();
|
|
8703
8929
|
init_awsExpectUnion();
|
|
8704
8930
|
init_parseJsonBody();
|
|
@@ -8706,7 +8932,7 @@ var init_protocols2 = __esm({
|
|
|
8706
8932
|
}
|
|
8707
8933
|
});
|
|
8708
8934
|
|
|
8709
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
|
8935
|
+
// node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/index.js
|
|
8710
8936
|
var dist_es_exports2 = {};
|
|
8711
8937
|
__export(dist_es_exports2, {
|
|
8712
8938
|
AWSSDKSigV4Signer: () => AWSSDKSigV4Signer,
|
|
@@ -8733,16 +8959,16 @@ __export(dist_es_exports2, {
|
|
|
8733
8959
|
validateSigningProperties: () => validateSigningProperties
|
|
8734
8960
|
});
|
|
8735
8961
|
var init_dist_es2 = __esm({
|
|
8736
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
|
8962
|
+
"node_modules/.pnpm/@aws-sdk+core@3.749.0/node_modules/@aws-sdk/core/dist-es/index.js"() {
|
|
8737
8963
|
init_client();
|
|
8738
8964
|
init_httpAuthSchemes2();
|
|
8739
8965
|
init_protocols2();
|
|
8740
8966
|
}
|
|
8741
8967
|
});
|
|
8742
8968
|
|
|
8743
|
-
// node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.
|
|
8969
|
+
// node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.749.0/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js
|
|
8744
8970
|
var require_dist_cjs25 = __commonJS({
|
|
8745
|
-
"node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.
|
|
8971
|
+
"node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.749.0/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js"(exports2, module2) {
|
|
8746
8972
|
"use strict";
|
|
8747
8973
|
var __defProp2 = Object.defineProperty;
|
|
8748
8974
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -9590,9 +9816,9 @@ var require_dist_cjs30 = __commonJS({
|
|
|
9590
9816
|
}
|
|
9591
9817
|
});
|
|
9592
9818
|
|
|
9593
|
-
// node_modules/.pnpm/@smithy+middleware-endpoint@4.0.
|
|
9819
|
+
// node_modules/.pnpm/@smithy+middleware-endpoint@4.0.5/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js
|
|
9594
9820
|
var require_getEndpointUrlConfig = __commonJS({
|
|
9595
|
-
"node_modules/.pnpm/@smithy+middleware-endpoint@4.0.
|
|
9821
|
+
"node_modules/.pnpm/@smithy+middleware-endpoint@4.0.5/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js"(exports2) {
|
|
9596
9822
|
"use strict";
|
|
9597
9823
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
9598
9824
|
exports2.getEndpointUrlConfig = void 0;
|
|
@@ -9631,9 +9857,9 @@ var require_getEndpointUrlConfig = __commonJS({
|
|
|
9631
9857
|
}
|
|
9632
9858
|
});
|
|
9633
9859
|
|
|
9634
|
-
// node_modules/.pnpm/@smithy+middleware-endpoint@4.0.
|
|
9860
|
+
// node_modules/.pnpm/@smithy+middleware-endpoint@4.0.5/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js
|
|
9635
9861
|
var require_getEndpointFromConfig = __commonJS({
|
|
9636
|
-
"node_modules/.pnpm/@smithy+middleware-endpoint@4.0.
|
|
9862
|
+
"node_modules/.pnpm/@smithy+middleware-endpoint@4.0.5/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js"(exports2) {
|
|
9637
9863
|
"use strict";
|
|
9638
9864
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
9639
9865
|
exports2.getEndpointFromConfig = void 0;
|
|
@@ -9742,9 +9968,9 @@ var require_dist_cjs32 = __commonJS({
|
|
|
9742
9968
|
}
|
|
9743
9969
|
});
|
|
9744
9970
|
|
|
9745
|
-
// node_modules/.pnpm/@smithy+middleware-endpoint@4.0.
|
|
9971
|
+
// node_modules/.pnpm/@smithy+middleware-endpoint@4.0.5/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js
|
|
9746
9972
|
var require_dist_cjs33 = __commonJS({
|
|
9747
|
-
"node_modules/.pnpm/@smithy+middleware-endpoint@4.0.
|
|
9973
|
+
"node_modules/.pnpm/@smithy+middleware-endpoint@4.0.5/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js"(exports2, module2) {
|
|
9748
9974
|
var __defProp2 = Object.defineProperty;
|
|
9749
9975
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
9750
9976
|
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
@@ -10747,9 +10973,9 @@ var require_dist_cjs35 = __commonJS({
|
|
|
10747
10973
|
}
|
|
10748
10974
|
});
|
|
10749
10975
|
|
|
10750
|
-
// node_modules/.pnpm/@smithy+middleware-retry@4.0.
|
|
10976
|
+
// node_modules/.pnpm/@smithy+middleware-retry@4.0.6/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js
|
|
10751
10977
|
var require_isStreamingPayload = __commonJS({
|
|
10752
|
-
"node_modules/.pnpm/@smithy+middleware-retry@4.0.
|
|
10978
|
+
"node_modules/.pnpm/@smithy+middleware-retry@4.0.6/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js"(exports2) {
|
|
10753
10979
|
"use strict";
|
|
10754
10980
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
10755
10981
|
exports2.isStreamingPayload = void 0;
|
|
@@ -10759,9 +10985,9 @@ var require_isStreamingPayload = __commonJS({
|
|
|
10759
10985
|
}
|
|
10760
10986
|
});
|
|
10761
10987
|
|
|
10762
|
-
// node_modules/.pnpm/@smithy+middleware-retry@4.0.
|
|
10988
|
+
// node_modules/.pnpm/@smithy+middleware-retry@4.0.6/node_modules/@smithy/middleware-retry/dist-cjs/index.js
|
|
10763
10989
|
var require_dist_cjs36 = __commonJS({
|
|
10764
|
-
"node_modules/.pnpm/@smithy+middleware-retry@4.0.
|
|
10990
|
+
"node_modules/.pnpm/@smithy+middleware-retry@4.0.6/node_modules/@smithy/middleware-retry/dist-cjs/index.js"(exports2, module2) {
|
|
10765
10991
|
var __defProp2 = Object.defineProperty;
|
|
10766
10992
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
10767
10993
|
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
@@ -11133,9 +11359,9 @@ var require_dist_cjs36 = __commonJS({
|
|
|
11133
11359
|
}
|
|
11134
11360
|
});
|
|
11135
11361
|
|
|
11136
|
-
// node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
11362
|
+
// node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js
|
|
11137
11363
|
var require_httpAuthSchemeProvider = __commonJS({
|
|
11138
|
-
"node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
11364
|
+
"node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
|
|
11139
11365
|
"use strict";
|
|
11140
11366
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
11141
11367
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultSQSHttpAuthSchemeProvider = exports2.defaultSQSHttpAuthSchemeParametersProvider = void 0;
|
|
@@ -11710,13 +11936,13 @@ var init_tslib_es6 = __esm({
|
|
|
11710
11936
|
}
|
|
11711
11937
|
});
|
|
11712
11938
|
|
|
11713
|
-
// node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
11939
|
+
// node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/package.json
|
|
11714
11940
|
var require_package = __commonJS({
|
|
11715
|
-
"node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
11941
|
+
"node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/package.json"(exports2, module2) {
|
|
11716
11942
|
module2.exports = {
|
|
11717
11943
|
name: "@aws-sdk/client-sqs",
|
|
11718
11944
|
description: "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native",
|
|
11719
|
-
version: "3.
|
|
11945
|
+
version: "3.749.0",
|
|
11720
11946
|
scripts: {
|
|
11721
11947
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
11722
11948
|
"build:cjs": "node ../../scripts/compilation/inline client-sqs",
|
|
@@ -11735,40 +11961,40 @@ var require_package = __commonJS({
|
|
|
11735
11961
|
dependencies: {
|
|
11736
11962
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
11737
11963
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
11738
|
-
"@aws-sdk/core": "3.
|
|
11739
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
11964
|
+
"@aws-sdk/core": "3.749.0",
|
|
11965
|
+
"@aws-sdk/credential-provider-node": "3.749.0",
|
|
11740
11966
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
11741
11967
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
11742
11968
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
11743
|
-
"@aws-sdk/middleware-sdk-sqs": "3.
|
|
11744
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
11969
|
+
"@aws-sdk/middleware-sdk-sqs": "3.749.0",
|
|
11970
|
+
"@aws-sdk/middleware-user-agent": "3.749.0",
|
|
11745
11971
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
11746
11972
|
"@aws-sdk/types": "3.734.0",
|
|
11747
|
-
"@aws-sdk/util-endpoints": "3.
|
|
11973
|
+
"@aws-sdk/util-endpoints": "3.743.0",
|
|
11748
11974
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
11749
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
11975
|
+
"@aws-sdk/util-user-agent-node": "3.749.0",
|
|
11750
11976
|
"@smithy/config-resolver": "^4.0.1",
|
|
11751
|
-
"@smithy/core": "^3.1.
|
|
11977
|
+
"@smithy/core": "^3.1.3",
|
|
11752
11978
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
11753
11979
|
"@smithy/hash-node": "^4.0.1",
|
|
11754
11980
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
11755
11981
|
"@smithy/md5-js": "^4.0.1",
|
|
11756
11982
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
11757
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
11758
|
-
"@smithy/middleware-retry": "^4.0.
|
|
11759
|
-
"@smithy/middleware-serde": "^4.0.
|
|
11983
|
+
"@smithy/middleware-endpoint": "^4.0.4",
|
|
11984
|
+
"@smithy/middleware-retry": "^4.0.5",
|
|
11985
|
+
"@smithy/middleware-serde": "^4.0.2",
|
|
11760
11986
|
"@smithy/middleware-stack": "^4.0.1",
|
|
11761
11987
|
"@smithy/node-config-provider": "^4.0.1",
|
|
11762
11988
|
"@smithy/node-http-handler": "^4.0.2",
|
|
11763
11989
|
"@smithy/protocol-http": "^5.0.1",
|
|
11764
|
-
"@smithy/smithy-client": "^4.1.
|
|
11990
|
+
"@smithy/smithy-client": "^4.1.4",
|
|
11765
11991
|
"@smithy/types": "^4.1.0",
|
|
11766
11992
|
"@smithy/url-parser": "^4.0.1",
|
|
11767
11993
|
"@smithy/util-base64": "^4.0.0",
|
|
11768
11994
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
11769
11995
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
11770
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
11771
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
11996
|
+
"@smithy/util-defaults-mode-browser": "^4.0.5",
|
|
11997
|
+
"@smithy/util-defaults-mode-node": "^4.0.5",
|
|
11772
11998
|
"@smithy/util-endpoints": "^3.0.1",
|
|
11773
11999
|
"@smithy/util-middleware": "^4.0.1",
|
|
11774
12000
|
"@smithy/util-retry": "^4.0.1",
|
|
@@ -11817,9 +12043,9 @@ var require_package = __commonJS({
|
|
|
11817
12043
|
}
|
|
11818
12044
|
});
|
|
11819
12045
|
|
|
11820
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-env@3.
|
|
12046
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-env@3.749.0/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js
|
|
11821
12047
|
var require_dist_cjs37 = __commonJS({
|
|
11822
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-env@3.
|
|
12048
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-env@3.749.0/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js"(exports2, module2) {
|
|
11823
12049
|
"use strict";
|
|
11824
12050
|
var __defProp2 = Object.defineProperty;
|
|
11825
12051
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -12279,9 +12505,9 @@ For more information, please visit: ` + STATIC_STABILITY_DOC_URL
|
|
|
12279
12505
|
}
|
|
12280
12506
|
});
|
|
12281
12507
|
|
|
12282
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12508
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js
|
|
12283
12509
|
var require_checkUrl = __commonJS({
|
|
12284
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12510
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js"(exports2) {
|
|
12285
12511
|
"use strict";
|
|
12286
12512
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12287
12513
|
exports2.checkUrl = void 0;
|
|
@@ -12322,9 +12548,9 @@ var require_checkUrl = __commonJS({
|
|
|
12322
12548
|
}
|
|
12323
12549
|
});
|
|
12324
12550
|
|
|
12325
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12551
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js
|
|
12326
12552
|
var require_requestHelpers = __commonJS({
|
|
12327
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12553
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js"(exports2) {
|
|
12328
12554
|
"use strict";
|
|
12329
12555
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12330
12556
|
exports2.getCredentials = exports2.createGetRequest = void 0;
|
|
@@ -12378,9 +12604,9 @@ var require_requestHelpers = __commonJS({
|
|
|
12378
12604
|
}
|
|
12379
12605
|
});
|
|
12380
12606
|
|
|
12381
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12607
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js
|
|
12382
12608
|
var require_retry_wrapper = __commonJS({
|
|
12383
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12609
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js"(exports2) {
|
|
12384
12610
|
"use strict";
|
|
12385
12611
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12386
12612
|
exports2.retryWrapper = void 0;
|
|
@@ -12400,9 +12626,9 @@ var require_retry_wrapper = __commonJS({
|
|
|
12400
12626
|
}
|
|
12401
12627
|
});
|
|
12402
12628
|
|
|
12403
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12629
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js
|
|
12404
12630
|
var require_fromHttp = __commonJS({
|
|
12405
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12631
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js"(exports2) {
|
|
12406
12632
|
"use strict";
|
|
12407
12633
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12408
12634
|
exports2.fromHttp = void 0;
|
|
@@ -12468,9 +12694,9 @@ Set AWS_CONTAINER_CREDENTIALS_FULL_URI or AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
|
|
|
12468
12694
|
}
|
|
12469
12695
|
});
|
|
12470
12696
|
|
|
12471
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12697
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js
|
|
12472
12698
|
var require_dist_cjs39 = __commonJS({
|
|
12473
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
|
12699
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.749.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js"(exports2) {
|
|
12474
12700
|
"use strict";
|
|
12475
12701
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12476
12702
|
exports2.fromHttp = void 0;
|
|
@@ -12481,9 +12707,9 @@ var require_dist_cjs39 = __commonJS({
|
|
|
12481
12707
|
}
|
|
12482
12708
|
});
|
|
12483
12709
|
|
|
12484
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
12710
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js
|
|
12485
12711
|
var require_httpAuthSchemeProvider2 = __commonJS({
|
|
12486
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
12712
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
|
|
12487
12713
|
"use strict";
|
|
12488
12714
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12489
12715
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultSSOHttpAuthSchemeProvider = exports2.defaultSSOHttpAuthSchemeParametersProvider = void 0;
|
|
@@ -12554,13 +12780,13 @@ var require_httpAuthSchemeProvider2 = __commonJS({
|
|
|
12554
12780
|
}
|
|
12555
12781
|
});
|
|
12556
12782
|
|
|
12557
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
12783
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/package.json
|
|
12558
12784
|
var require_package2 = __commonJS({
|
|
12559
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
12785
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/package.json"(exports2, module2) {
|
|
12560
12786
|
module2.exports = {
|
|
12561
12787
|
name: "@aws-sdk/client-sso",
|
|
12562
12788
|
description: "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
12563
|
-
version: "3.
|
|
12789
|
+
version: "3.749.0",
|
|
12564
12790
|
scripts: {
|
|
12565
12791
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
12566
12792
|
"build:cjs": "node ../../scripts/compilation/inline client-sso",
|
|
@@ -12579,37 +12805,37 @@ var require_package2 = __commonJS({
|
|
|
12579
12805
|
dependencies: {
|
|
12580
12806
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
12581
12807
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
12582
|
-
"@aws-sdk/core": "3.
|
|
12808
|
+
"@aws-sdk/core": "3.749.0",
|
|
12583
12809
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
12584
12810
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
12585
12811
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
12586
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
12812
|
+
"@aws-sdk/middleware-user-agent": "3.749.0",
|
|
12587
12813
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
12588
12814
|
"@aws-sdk/types": "3.734.0",
|
|
12589
|
-
"@aws-sdk/util-endpoints": "3.
|
|
12815
|
+
"@aws-sdk/util-endpoints": "3.743.0",
|
|
12590
12816
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
12591
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
12817
|
+
"@aws-sdk/util-user-agent-node": "3.749.0",
|
|
12592
12818
|
"@smithy/config-resolver": "^4.0.1",
|
|
12593
|
-
"@smithy/core": "^3.1.
|
|
12819
|
+
"@smithy/core": "^3.1.3",
|
|
12594
12820
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
12595
12821
|
"@smithy/hash-node": "^4.0.1",
|
|
12596
12822
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
12597
12823
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
12598
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
12599
|
-
"@smithy/middleware-retry": "^4.0.
|
|
12600
|
-
"@smithy/middleware-serde": "^4.0.
|
|
12824
|
+
"@smithy/middleware-endpoint": "^4.0.4",
|
|
12825
|
+
"@smithy/middleware-retry": "^4.0.5",
|
|
12826
|
+
"@smithy/middleware-serde": "^4.0.2",
|
|
12601
12827
|
"@smithy/middleware-stack": "^4.0.1",
|
|
12602
12828
|
"@smithy/node-config-provider": "^4.0.1",
|
|
12603
12829
|
"@smithy/node-http-handler": "^4.0.2",
|
|
12604
12830
|
"@smithy/protocol-http": "^5.0.1",
|
|
12605
|
-
"@smithy/smithy-client": "^4.1.
|
|
12831
|
+
"@smithy/smithy-client": "^4.1.4",
|
|
12606
12832
|
"@smithy/types": "^4.1.0",
|
|
12607
12833
|
"@smithy/url-parser": "^4.0.1",
|
|
12608
12834
|
"@smithy/util-base64": "^4.0.0",
|
|
12609
12835
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
12610
12836
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
12611
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
12612
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
12837
|
+
"@smithy/util-defaults-mode-browser": "^4.0.5",
|
|
12838
|
+
"@smithy/util-defaults-mode-node": "^4.0.5",
|
|
12613
12839
|
"@smithy/util-endpoints": "^3.0.1",
|
|
12614
12840
|
"@smithy/util-middleware": "^4.0.1",
|
|
12615
12841
|
"@smithy/util-retry": "^4.0.1",
|
|
@@ -12658,9 +12884,9 @@ var require_package2 = __commonJS({
|
|
|
12658
12884
|
}
|
|
12659
12885
|
});
|
|
12660
12886
|
|
|
12661
|
-
// node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.
|
|
12887
|
+
// node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.749.0/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js
|
|
12662
12888
|
var require_dist_cjs40 = __commonJS({
|
|
12663
|
-
"node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.
|
|
12889
|
+
"node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.749.0/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js"(exports2, module2) {
|
|
12664
12890
|
"use strict";
|
|
12665
12891
|
var __defProp2 = Object.defineProperty;
|
|
12666
12892
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -12857,9 +13083,9 @@ var require_dist_cjs42 = __commonJS({
|
|
|
12857
13083
|
}
|
|
12858
13084
|
});
|
|
12859
13085
|
|
|
12860
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13086
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js
|
|
12861
13087
|
var require_ruleset = __commonJS({
|
|
12862
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13088
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js"(exports2) {
|
|
12863
13089
|
"use strict";
|
|
12864
13090
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12865
13091
|
exports2.ruleSet = void 0;
|
|
@@ -12892,9 +13118,9 @@ var require_ruleset = __commonJS({
|
|
|
12892
13118
|
}
|
|
12893
13119
|
});
|
|
12894
13120
|
|
|
12895
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13121
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js
|
|
12896
13122
|
var require_endpointResolver = __commonJS({
|
|
12897
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13123
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js"(exports2) {
|
|
12898
13124
|
"use strict";
|
|
12899
13125
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12900
13126
|
exports2.defaultEndpointResolver = void 0;
|
|
@@ -12916,9 +13142,9 @@ var require_endpointResolver = __commonJS({
|
|
|
12916
13142
|
}
|
|
12917
13143
|
});
|
|
12918
13144
|
|
|
12919
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13145
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js
|
|
12920
13146
|
var require_runtimeConfig_shared = __commonJS({
|
|
12921
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13147
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js"(exports2) {
|
|
12922
13148
|
"use strict";
|
|
12923
13149
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12924
13150
|
exports2.getRuntimeConfig = void 0;
|
|
@@ -12962,9 +13188,9 @@ var require_runtimeConfig_shared = __commonJS({
|
|
|
12962
13188
|
}
|
|
12963
13189
|
});
|
|
12964
13190
|
|
|
12965
|
-
// node_modules/.pnpm/@smithy+util-defaults-mode-node@4.0.
|
|
13191
|
+
// node_modules/.pnpm/@smithy+util-defaults-mode-node@4.0.6/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js
|
|
12966
13192
|
var require_dist_cjs43 = __commonJS({
|
|
12967
|
-
"node_modules/.pnpm/@smithy+util-defaults-mode-node@4.0.
|
|
13193
|
+
"node_modules/.pnpm/@smithy+util-defaults-mode-node@4.0.6/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js"(exports2, module2) {
|
|
12968
13194
|
var __create2 = Object.create;
|
|
12969
13195
|
var __defProp2 = Object.defineProperty;
|
|
12970
13196
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -13071,9 +13297,9 @@ var require_dist_cjs43 = __commonJS({
|
|
|
13071
13297
|
}
|
|
13072
13298
|
});
|
|
13073
13299
|
|
|
13074
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13300
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js
|
|
13075
13301
|
var require_runtimeConfig = __commonJS({
|
|
13076
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13302
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js"(exports2) {
|
|
13077
13303
|
"use strict";
|
|
13078
13304
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
13079
13305
|
exports2.getRuntimeConfig = void 0;
|
|
@@ -13222,9 +13448,9 @@ var require_dist_cjs44 = __commonJS({
|
|
|
13222
13448
|
}
|
|
13223
13449
|
});
|
|
13224
13450
|
|
|
13225
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13451
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/index.js
|
|
13226
13452
|
var require_dist_cjs45 = __commonJS({
|
|
13227
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
|
13453
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.749.0/node_modules/@aws-sdk/client-sso/dist-cjs/index.js"(exports2, module2) {
|
|
13228
13454
|
"use strict";
|
|
13229
13455
|
var __defProp2 = Object.defineProperty;
|
|
13230
13456
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -13767,7 +13993,7 @@ var require_dist_cjs45 = __commonJS({
|
|
|
13767
13993
|
}
|
|
13768
13994
|
});
|
|
13769
13995
|
|
|
13770
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
13996
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js
|
|
13771
13997
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
13772
13998
|
return {
|
|
13773
13999
|
schemeId: "aws.auth#sigv4",
|
|
@@ -13790,7 +14016,7 @@ function createSmithyApiNoAuthHttpAuthOption(authParameters) {
|
|
|
13790
14016
|
}
|
|
13791
14017
|
var import_util_middleware3, defaultSSOOIDCHttpAuthSchemeParametersProvider, defaultSSOOIDCHttpAuthSchemeProvider, resolveHttpAuthSchemeConfig;
|
|
13792
14018
|
var init_httpAuthSchemeProvider = __esm({
|
|
13793
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14019
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js"() {
|
|
13794
14020
|
init_dist_es2();
|
|
13795
14021
|
import_util_middleware3 = __toESM(require_dist_cjs19());
|
|
13796
14022
|
defaultSSOOIDCHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
@@ -13823,10 +14049,10 @@ var init_httpAuthSchemeProvider = __esm({
|
|
|
13823
14049
|
}
|
|
13824
14050
|
});
|
|
13825
14051
|
|
|
13826
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14052
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js
|
|
13827
14053
|
var resolveClientEndpointParameters, commonParams;
|
|
13828
14054
|
var init_EndpointParameters = __esm({
|
|
13829
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14055
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js"() {
|
|
13830
14056
|
resolveClientEndpointParameters = (options) => {
|
|
13831
14057
|
return {
|
|
13832
14058
|
...options,
|
|
@@ -13844,13 +14070,13 @@ var init_EndpointParameters = __esm({
|
|
|
13844
14070
|
}
|
|
13845
14071
|
});
|
|
13846
14072
|
|
|
13847
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14073
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/package.json
|
|
13848
14074
|
var package_default;
|
|
13849
14075
|
var init_package = __esm({
|
|
13850
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14076
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/package.json"() {
|
|
13851
14077
|
package_default = {
|
|
13852
14078
|
name: "@aws-sdk/nested-clients",
|
|
13853
|
-
version: "3.
|
|
14079
|
+
version: "3.749.0",
|
|
13854
14080
|
description: "Nested clients for AWS SDK packages.",
|
|
13855
14081
|
main: "./dist-cjs/index.js",
|
|
13856
14082
|
module: "./dist-es/index.js",
|
|
@@ -13878,37 +14104,37 @@ var init_package = __esm({
|
|
|
13878
14104
|
dependencies: {
|
|
13879
14105
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
13880
14106
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
13881
|
-
"@aws-sdk/core": "3.
|
|
14107
|
+
"@aws-sdk/core": "3.749.0",
|
|
13882
14108
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
13883
14109
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
13884
14110
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
13885
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
14111
|
+
"@aws-sdk/middleware-user-agent": "3.749.0",
|
|
13886
14112
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
13887
14113
|
"@aws-sdk/types": "3.734.0",
|
|
13888
|
-
"@aws-sdk/util-endpoints": "3.
|
|
14114
|
+
"@aws-sdk/util-endpoints": "3.743.0",
|
|
13889
14115
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
13890
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
14116
|
+
"@aws-sdk/util-user-agent-node": "3.749.0",
|
|
13891
14117
|
"@smithy/config-resolver": "^4.0.1",
|
|
13892
|
-
"@smithy/core": "^3.1.
|
|
14118
|
+
"@smithy/core": "^3.1.3",
|
|
13893
14119
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
13894
14120
|
"@smithy/hash-node": "^4.0.1",
|
|
13895
14121
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
13896
14122
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
13897
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
13898
|
-
"@smithy/middleware-retry": "^4.0.
|
|
13899
|
-
"@smithy/middleware-serde": "^4.0.
|
|
14123
|
+
"@smithy/middleware-endpoint": "^4.0.4",
|
|
14124
|
+
"@smithy/middleware-retry": "^4.0.5",
|
|
14125
|
+
"@smithy/middleware-serde": "^4.0.2",
|
|
13900
14126
|
"@smithy/middleware-stack": "^4.0.1",
|
|
13901
14127
|
"@smithy/node-config-provider": "^4.0.1",
|
|
13902
14128
|
"@smithy/node-http-handler": "^4.0.2",
|
|
13903
14129
|
"@smithy/protocol-http": "^5.0.1",
|
|
13904
|
-
"@smithy/smithy-client": "^4.1.
|
|
14130
|
+
"@smithy/smithy-client": "^4.1.4",
|
|
13905
14131
|
"@smithy/types": "^4.1.0",
|
|
13906
14132
|
"@smithy/url-parser": "^4.0.1",
|
|
13907
14133
|
"@smithy/util-base64": "^4.0.0",
|
|
13908
14134
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
13909
14135
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
13910
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
13911
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
14136
|
+
"@smithy/util-defaults-mode-browser": "^4.0.5",
|
|
14137
|
+
"@smithy/util-defaults-mode-node": "^4.0.5",
|
|
13912
14138
|
"@smithy/util-endpoints": "^3.0.1",
|
|
13913
14139
|
"@smithy/util-middleware": "^4.0.1",
|
|
13914
14140
|
"@smithy/util-retry": "^4.0.1",
|
|
@@ -13966,10 +14192,10 @@ var init_package = __esm({
|
|
|
13966
14192
|
}
|
|
13967
14193
|
});
|
|
13968
14194
|
|
|
13969
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14195
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js
|
|
13970
14196
|
var u, v, w, x, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, _data, ruleSet;
|
|
13971
14197
|
var init_ruleset = __esm({
|
|
13972
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14198
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js"() {
|
|
13973
14199
|
u = "required";
|
|
13974
14200
|
v = "fn";
|
|
13975
14201
|
w = "argv";
|
|
@@ -13999,10 +14225,10 @@ var init_ruleset = __esm({
|
|
|
13999
14225
|
}
|
|
14000
14226
|
});
|
|
14001
14227
|
|
|
14002
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14228
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js
|
|
14003
14229
|
var import_util_endpoints, import_util_endpoints2, cache, defaultEndpointResolver;
|
|
14004
14230
|
var init_endpointResolver = __esm({
|
|
14005
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14231
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js"() {
|
|
14006
14232
|
import_util_endpoints = __toESM(require_dist_cjs22());
|
|
14007
14233
|
import_util_endpoints2 = __toESM(require_dist_cjs21());
|
|
14008
14234
|
init_ruleset();
|
|
@@ -14020,10 +14246,10 @@ var init_endpointResolver = __esm({
|
|
|
14020
14246
|
}
|
|
14021
14247
|
});
|
|
14022
14248
|
|
|
14023
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14249
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js
|
|
14024
14250
|
var import_smithy_client4, import_url_parser, import_util_base64, import_util_utf8, getRuntimeConfig;
|
|
14025
14251
|
var init_runtimeConfig_shared = __esm({
|
|
14026
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14252
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js"() {
|
|
14027
14253
|
init_dist_es2();
|
|
14028
14254
|
init_dist_es();
|
|
14029
14255
|
import_smithy_client4 = __toESM(require_dist_cjs17());
|
|
@@ -14063,10 +14289,10 @@ var init_runtimeConfig_shared = __esm({
|
|
|
14063
14289
|
}
|
|
14064
14290
|
});
|
|
14065
14291
|
|
|
14066
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14292
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js
|
|
14067
14293
|
var import_util_user_agent_node, import_config_resolver, import_hash_node, import_middleware_retry, import_node_config_provider, import_node_http_handler, import_util_body_length_node, import_util_retry, import_smithy_client5, import_util_defaults_mode_node, import_smithy_client6, getRuntimeConfig2;
|
|
14068
14294
|
var init_runtimeConfig = __esm({
|
|
14069
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14295
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js"() {
|
|
14070
14296
|
init_package();
|
|
14071
14297
|
init_dist_es2();
|
|
14072
14298
|
import_util_user_agent_node = __toESM(require_dist_cjs40());
|
|
@@ -14112,10 +14338,10 @@ var init_runtimeConfig = __esm({
|
|
|
14112
14338
|
}
|
|
14113
14339
|
});
|
|
14114
14340
|
|
|
14115
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14341
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js
|
|
14116
14342
|
var getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig;
|
|
14117
14343
|
var init_httpAuthExtensionConfiguration = __esm({
|
|
14118
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14344
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js"() {
|
|
14119
14345
|
getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
14120
14346
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
14121
14347
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -14156,10 +14382,10 @@ var init_httpAuthExtensionConfiguration = __esm({
|
|
|
14156
14382
|
}
|
|
14157
14383
|
});
|
|
14158
14384
|
|
|
14159
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14385
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js
|
|
14160
14386
|
var import_region_config_resolver, import_protocol_http8, import_smithy_client7, asPartial, resolveRuntimeExtensions;
|
|
14161
14387
|
var init_runtimeExtensions = __esm({
|
|
14162
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14388
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js"() {
|
|
14163
14389
|
import_region_config_resolver = __toESM(require_dist_cjs44());
|
|
14164
14390
|
import_protocol_http8 = __toESM(require_dist_cjs2());
|
|
14165
14391
|
import_smithy_client7 = __toESM(require_dist_cjs17());
|
|
@@ -14184,10 +14410,10 @@ var init_runtimeExtensions = __esm({
|
|
|
14184
14410
|
}
|
|
14185
14411
|
});
|
|
14186
14412
|
|
|
14187
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14413
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js
|
|
14188
14414
|
var import_middleware_host_header, import_middleware_logger, import_middleware_recursion_detection, import_middleware_user_agent, import_config_resolver2, import_middleware_content_length, import_middleware_endpoint, import_middleware_retry2, import_smithy_client8, SSOOIDCClient;
|
|
14189
14415
|
var init_SSOOIDCClient = __esm({
|
|
14190
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14416
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js"() {
|
|
14191
14417
|
import_middleware_host_header = __toESM(require_dist_cjs3());
|
|
14192
14418
|
import_middleware_logger = __toESM(require_dist_cjs4());
|
|
14193
14419
|
import_middleware_recursion_detection = __toESM(require_dist_cjs5());
|
|
@@ -14237,10 +14463,10 @@ var init_SSOOIDCClient = __esm({
|
|
|
14237
14463
|
}
|
|
14238
14464
|
});
|
|
14239
14465
|
|
|
14240
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14466
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js
|
|
14241
14467
|
var import_smithy_client9, SSOOIDCServiceException;
|
|
14242
14468
|
var init_SSOOIDCServiceException = __esm({
|
|
14243
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14469
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js"() {
|
|
14244
14470
|
import_smithy_client9 = __toESM(require_dist_cjs17());
|
|
14245
14471
|
SSOOIDCServiceException = class _SSOOIDCServiceException extends import_smithy_client9.ServiceException {
|
|
14246
14472
|
constructor(options) {
|
|
@@ -14251,10 +14477,10 @@ var init_SSOOIDCServiceException = __esm({
|
|
|
14251
14477
|
}
|
|
14252
14478
|
});
|
|
14253
14479
|
|
|
14254
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14480
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js
|
|
14255
14481
|
var import_smithy_client10, AccessDeniedException, AuthorizationPendingException, CreateTokenRequestFilterSensitiveLog, CreateTokenResponseFilterSensitiveLog, ExpiredTokenException, InternalServerException, InvalidClientException, InvalidGrantException, InvalidRequestException, InvalidScopeException, SlowDownException, UnauthorizedClientException, UnsupportedGrantTypeException;
|
|
14256
14482
|
var init_models_0 = __esm({
|
|
14257
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14483
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js"() {
|
|
14258
14484
|
import_smithy_client10 = __toESM(require_dist_cjs17());
|
|
14259
14485
|
init_SSOOIDCServiceException();
|
|
14260
14486
|
AccessDeniedException = class _AccessDeniedException extends SSOOIDCServiceException {
|
|
@@ -14448,10 +14674,10 @@ var init_models_0 = __esm({
|
|
|
14448
14674
|
}
|
|
14449
14675
|
});
|
|
14450
14676
|
|
|
14451
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14677
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/protocols/Aws_restJson1.js
|
|
14452
14678
|
var import_smithy_client11, se_CreateTokenCommand, de_CreateTokenCommand, de_CommandError, throwDefaultError, de_AccessDeniedExceptionRes, de_AuthorizationPendingExceptionRes, de_ExpiredTokenExceptionRes, de_InternalServerExceptionRes, de_InvalidClientExceptionRes, de_InvalidGrantExceptionRes, de_InvalidRequestExceptionRes, de_InvalidScopeExceptionRes, de_SlowDownExceptionRes, de_UnauthorizedClientExceptionRes, de_UnsupportedGrantTypeExceptionRes, deserializeMetadata;
|
|
14453
14679
|
var init_Aws_restJson1 = __esm({
|
|
14454
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14680
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/protocols/Aws_restJson1.js"() {
|
|
14455
14681
|
init_dist_es2();
|
|
14456
14682
|
init_dist_es();
|
|
14457
14683
|
import_smithy_client11 = __toESM(require_dist_cjs17());
|
|
@@ -14709,10 +14935,10 @@ var init_Aws_restJson1 = __esm({
|
|
|
14709
14935
|
}
|
|
14710
14936
|
});
|
|
14711
14937
|
|
|
14712
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14938
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js
|
|
14713
14939
|
var import_middleware_endpoint2, import_middleware_serde2, import_smithy_client12, CreateTokenCommand;
|
|
14714
14940
|
var init_CreateTokenCommand = __esm({
|
|
14715
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14941
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js"() {
|
|
14716
14942
|
import_middleware_endpoint2 = __toESM(require_dist_cjs33());
|
|
14717
14943
|
import_middleware_serde2 = __toESM(require_dist_cjs20());
|
|
14718
14944
|
import_smithy_client12 = __toESM(require_dist_cjs17());
|
|
@@ -14729,10 +14955,10 @@ var init_CreateTokenCommand = __esm({
|
|
|
14729
14955
|
}
|
|
14730
14956
|
});
|
|
14731
14957
|
|
|
14732
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14958
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js
|
|
14733
14959
|
var import_smithy_client13, commands, SSOOIDC;
|
|
14734
14960
|
var init_SSOOIDC = __esm({
|
|
14735
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14961
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js"() {
|
|
14736
14962
|
import_smithy_client13 = __toESM(require_dist_cjs17());
|
|
14737
14963
|
init_CreateTokenCommand();
|
|
14738
14964
|
init_SSOOIDCClient();
|
|
@@ -14745,21 +14971,21 @@ var init_SSOOIDC = __esm({
|
|
|
14745
14971
|
}
|
|
14746
14972
|
});
|
|
14747
14973
|
|
|
14748
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14974
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js
|
|
14749
14975
|
var init_commands = __esm({
|
|
14750
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14976
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js"() {
|
|
14751
14977
|
init_CreateTokenCommand();
|
|
14752
14978
|
}
|
|
14753
14979
|
});
|
|
14754
14980
|
|
|
14755
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14981
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/index.js
|
|
14756
14982
|
var init_models = __esm({
|
|
14757
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14983
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/index.js"() {
|
|
14758
14984
|
init_models_0();
|
|
14759
14985
|
}
|
|
14760
14986
|
});
|
|
14761
14987
|
|
|
14762
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
14988
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js
|
|
14763
14989
|
var sso_oidc_exports = {};
|
|
14764
14990
|
__export(sso_oidc_exports, {
|
|
14765
14991
|
$Command: () => import_smithy_client12.Command,
|
|
@@ -14783,7 +15009,7 @@ __export(sso_oidc_exports, {
|
|
|
14783
15009
|
__Client: () => import_smithy_client8.Client
|
|
14784
15010
|
});
|
|
14785
15011
|
var init_sso_oidc = __esm({
|
|
14786
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15012
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js"() {
|
|
14787
15013
|
init_SSOOIDCClient();
|
|
14788
15014
|
init_SSOOIDC();
|
|
14789
15015
|
init_commands();
|
|
@@ -14792,9 +15018,9 @@ var init_sso_oidc = __esm({
|
|
|
14792
15018
|
}
|
|
14793
15019
|
});
|
|
14794
15020
|
|
|
14795
|
-
// node_modules/.pnpm/@aws-sdk+token-providers@3.
|
|
15021
|
+
// node_modules/.pnpm/@aws-sdk+token-providers@3.749.0/node_modules/@aws-sdk/token-providers/dist-cjs/index.js
|
|
14796
15022
|
var require_dist_cjs46 = __commonJS({
|
|
14797
|
-
"node_modules/.pnpm/@aws-sdk+token-providers@3.
|
|
15023
|
+
"node_modules/.pnpm/@aws-sdk+token-providers@3.749.0/node_modules/@aws-sdk/token-providers/dist-cjs/index.js"(exports2, module2) {
|
|
14798
15024
|
"use strict";
|
|
14799
15025
|
var __create2 = Object.create;
|
|
14800
15026
|
var __defProp2 = Object.defineProperty;
|
|
@@ -14980,9 +15206,9 @@ var require_dist_cjs46 = __commonJS({
|
|
|
14980
15206
|
}
|
|
14981
15207
|
});
|
|
14982
15208
|
|
|
14983
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.
|
|
15209
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.749.0/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js
|
|
14984
15210
|
var require_dist_cjs47 = __commonJS({
|
|
14985
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.
|
|
15211
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.749.0/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js"(exports2, module2) {
|
|
14986
15212
|
"use strict";
|
|
14987
15213
|
var __defProp2 = Object.defineProperty;
|
|
14988
15214
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -15207,7 +15433,7 @@ Reference: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.ht
|
|
|
15207
15433
|
}
|
|
15208
15434
|
});
|
|
15209
15435
|
|
|
15210
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15436
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js
|
|
15211
15437
|
function createAwsAuthSigv4HttpAuthOption2(authParameters) {
|
|
15212
15438
|
return {
|
|
15213
15439
|
schemeId: "aws.auth#sigv4",
|
|
@@ -15230,7 +15456,7 @@ function createSmithyApiNoAuthHttpAuthOption2(authParameters) {
|
|
|
15230
15456
|
}
|
|
15231
15457
|
var import_util_middleware4, defaultSTSHttpAuthSchemeParametersProvider, defaultSTSHttpAuthSchemeProvider, resolveStsAuthConfig, resolveHttpAuthSchemeConfig2;
|
|
15232
15458
|
var init_httpAuthSchemeProvider2 = __esm({
|
|
15233
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15459
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js"() {
|
|
15234
15460
|
init_dist_es2();
|
|
15235
15461
|
import_util_middleware4 = __toESM(require_dist_cjs19());
|
|
15236
15462
|
init_STSClient();
|
|
@@ -15269,10 +15495,10 @@ var init_httpAuthSchemeProvider2 = __esm({
|
|
|
15269
15495
|
}
|
|
15270
15496
|
});
|
|
15271
15497
|
|
|
15272
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15498
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js
|
|
15273
15499
|
var resolveClientEndpointParameters2, commonParams2;
|
|
15274
15500
|
var init_EndpointParameters2 = __esm({
|
|
15275
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15501
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js"() {
|
|
15276
15502
|
resolveClientEndpointParameters2 = (options) => {
|
|
15277
15503
|
return {
|
|
15278
15504
|
...options,
|
|
@@ -15292,10 +15518,10 @@ var init_EndpointParameters2 = __esm({
|
|
|
15292
15518
|
}
|
|
15293
15519
|
});
|
|
15294
15520
|
|
|
15295
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15521
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js
|
|
15296
15522
|
var F, G, H, I, J, a2, b2, c2, d2, e2, f2, g2, h2, i2, j2, k2, l2, m2, n2, o2, p2, q2, r2, s2, t2, u2, v2, w2, x2, y, z, A, B, C, D, E, _data2, ruleSet2;
|
|
15297
15523
|
var init_ruleset2 = __esm({
|
|
15298
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15524
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js"() {
|
|
15299
15525
|
F = "required";
|
|
15300
15526
|
G = "type";
|
|
15301
15527
|
H = "fn";
|
|
@@ -15337,10 +15563,10 @@ var init_ruleset2 = __esm({
|
|
|
15337
15563
|
}
|
|
15338
15564
|
});
|
|
15339
15565
|
|
|
15340
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15566
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js
|
|
15341
15567
|
var import_util_endpoints3, import_util_endpoints4, cache2, defaultEndpointResolver2;
|
|
15342
15568
|
var init_endpointResolver2 = __esm({
|
|
15343
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15569
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js"() {
|
|
15344
15570
|
import_util_endpoints3 = __toESM(require_dist_cjs22());
|
|
15345
15571
|
import_util_endpoints4 = __toESM(require_dist_cjs21());
|
|
15346
15572
|
init_ruleset2();
|
|
@@ -15358,10 +15584,10 @@ var init_endpointResolver2 = __esm({
|
|
|
15358
15584
|
}
|
|
15359
15585
|
});
|
|
15360
15586
|
|
|
15361
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15587
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js
|
|
15362
15588
|
var import_smithy_client14, import_url_parser2, import_util_base642, import_util_utf82, getRuntimeConfig3;
|
|
15363
15589
|
var init_runtimeConfig_shared2 = __esm({
|
|
15364
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15590
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js"() {
|
|
15365
15591
|
init_dist_es2();
|
|
15366
15592
|
init_dist_es();
|
|
15367
15593
|
import_smithy_client14 = __toESM(require_dist_cjs17());
|
|
@@ -15401,10 +15627,10 @@ var init_runtimeConfig_shared2 = __esm({
|
|
|
15401
15627
|
}
|
|
15402
15628
|
});
|
|
15403
15629
|
|
|
15404
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15630
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js
|
|
15405
15631
|
var import_util_user_agent_node2, import_config_resolver3, import_hash_node2, import_middleware_retry3, import_node_config_provider2, import_node_http_handler2, import_util_body_length_node2, import_util_retry2, import_smithy_client15, import_util_defaults_mode_node2, import_smithy_client16, getRuntimeConfig4;
|
|
15406
15632
|
var init_runtimeConfig2 = __esm({
|
|
15407
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15633
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js"() {
|
|
15408
15634
|
init_package();
|
|
15409
15635
|
init_dist_es2();
|
|
15410
15636
|
import_util_user_agent_node2 = __toESM(require_dist_cjs40());
|
|
@@ -15463,10 +15689,10 @@ var init_runtimeConfig2 = __esm({
|
|
|
15463
15689
|
}
|
|
15464
15690
|
});
|
|
15465
15691
|
|
|
15466
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15692
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js
|
|
15467
15693
|
var getHttpAuthExtensionConfiguration2, resolveHttpAuthRuntimeConfig2;
|
|
15468
15694
|
var init_httpAuthExtensionConfiguration2 = __esm({
|
|
15469
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15695
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js"() {
|
|
15470
15696
|
getHttpAuthExtensionConfiguration2 = (runtimeConfig) => {
|
|
15471
15697
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
15472
15698
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -15507,10 +15733,10 @@ var init_httpAuthExtensionConfiguration2 = __esm({
|
|
|
15507
15733
|
}
|
|
15508
15734
|
});
|
|
15509
15735
|
|
|
15510
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15736
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js
|
|
15511
15737
|
var import_region_config_resolver2, import_protocol_http9, import_smithy_client17, asPartial2, resolveRuntimeExtensions2;
|
|
15512
15738
|
var init_runtimeExtensions2 = __esm({
|
|
15513
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15739
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js"() {
|
|
15514
15740
|
import_region_config_resolver2 = __toESM(require_dist_cjs44());
|
|
15515
15741
|
import_protocol_http9 = __toESM(require_dist_cjs2());
|
|
15516
15742
|
import_smithy_client17 = __toESM(require_dist_cjs17());
|
|
@@ -15535,10 +15761,10 @@ var init_runtimeExtensions2 = __esm({
|
|
|
15535
15761
|
}
|
|
15536
15762
|
});
|
|
15537
15763
|
|
|
15538
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15764
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js
|
|
15539
15765
|
var import_middleware_host_header2, import_middleware_logger2, import_middleware_recursion_detection2, import_middleware_user_agent2, import_config_resolver4, import_middleware_content_length2, import_middleware_endpoint3, import_middleware_retry4, import_smithy_client18, STSClient;
|
|
15540
15766
|
var init_STSClient = __esm({
|
|
15541
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15767
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js"() {
|
|
15542
15768
|
import_middleware_host_header2 = __toESM(require_dist_cjs3());
|
|
15543
15769
|
import_middleware_logger2 = __toESM(require_dist_cjs4());
|
|
15544
15770
|
import_middleware_recursion_detection2 = __toESM(require_dist_cjs5());
|
|
@@ -15588,10 +15814,10 @@ var init_STSClient = __esm({
|
|
|
15588
15814
|
}
|
|
15589
15815
|
});
|
|
15590
15816
|
|
|
15591
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15817
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js
|
|
15592
15818
|
var import_smithy_client19, STSServiceException;
|
|
15593
15819
|
var init_STSServiceException = __esm({
|
|
15594
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15820
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js"() {
|
|
15595
15821
|
import_smithy_client19 = __toESM(require_dist_cjs17());
|
|
15596
15822
|
STSServiceException = class _STSServiceException extends import_smithy_client19.ServiceException {
|
|
15597
15823
|
constructor(options) {
|
|
@@ -15602,10 +15828,10 @@ var init_STSServiceException = __esm({
|
|
|
15602
15828
|
}
|
|
15603
15829
|
});
|
|
15604
15830
|
|
|
15605
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15831
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js
|
|
15606
15832
|
var import_smithy_client20, CredentialsFilterSensitiveLog, AssumeRoleResponseFilterSensitiveLog, ExpiredTokenException2, MalformedPolicyDocumentException, PackedPolicyTooLargeException, RegionDisabledException, IDPRejectedClaimException, InvalidIdentityTokenException, AssumeRoleWithWebIdentityRequestFilterSensitiveLog, AssumeRoleWithWebIdentityResponseFilterSensitiveLog, IDPCommunicationErrorException;
|
|
15607
15833
|
var init_models_02 = __esm({
|
|
15608
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15834
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js"() {
|
|
15609
15835
|
import_smithy_client20 = __toESM(require_dist_cjs17());
|
|
15610
15836
|
init_STSServiceException();
|
|
15611
15837
|
CredentialsFilterSensitiveLog = (obj) => ({
|
|
@@ -15711,10 +15937,10 @@ var init_models_02 = __esm({
|
|
|
15711
15937
|
}
|
|
15712
15938
|
});
|
|
15713
15939
|
|
|
15714
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15940
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/protocols/Aws_query.js
|
|
15715
15941
|
var import_protocol_http10, import_smithy_client21, se_AssumeRoleCommand, se_AssumeRoleWithWebIdentityCommand, de_AssumeRoleCommand, de_AssumeRoleWithWebIdentityCommand, de_CommandError2, de_ExpiredTokenExceptionRes2, de_IDPCommunicationErrorExceptionRes, de_IDPRejectedClaimExceptionRes, de_InvalidIdentityTokenExceptionRes, de_MalformedPolicyDocumentExceptionRes, de_PackedPolicyTooLargeExceptionRes, de_RegionDisabledExceptionRes, se_AssumeRoleRequest, se_AssumeRoleWithWebIdentityRequest, se_policyDescriptorListType, se_PolicyDescriptorType, se_ProvidedContext, se_ProvidedContextsListType, se_Tag, se_tagKeyListType, se_tagListType, de_AssumedRoleUser, de_AssumeRoleResponse, de_AssumeRoleWithWebIdentityResponse, de_Credentials, de_ExpiredTokenException, de_IDPCommunicationErrorException, de_IDPRejectedClaimException, de_InvalidIdentityTokenException, de_MalformedPolicyDocumentException, de_PackedPolicyTooLargeException, de_RegionDisabledException, deserializeMetadata2, throwDefaultError2, buildHttpRpcRequest, SHARED_HEADERS, _, _A, _AKI, _AR, _ARI, _ARU, _ARWWI, _Ar, _Au, _C, _CA, _DS, _E, _EI, _K, _P, _PA, _PAr, _PC, _PI, _PPS, _Pr, _RA, _RSN, _SAK, _SFWIT, _SI, _SN, _ST, _T, _TC, _TTK, _V, _Va, _WIT, _a, _m, buildFormUrlencodedString, loadQueryErrorCode;
|
|
15716
15942
|
var init_Aws_query = __esm({
|
|
15717
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
15943
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/protocols/Aws_query.js"() {
|
|
15718
15944
|
init_dist_es2();
|
|
15719
15945
|
import_protocol_http10 = __toESM(require_dist_cjs2());
|
|
15720
15946
|
import_smithy_client21 = __toESM(require_dist_cjs17());
|
|
@@ -16243,10 +16469,10 @@ var init_Aws_query = __esm({
|
|
|
16243
16469
|
}
|
|
16244
16470
|
});
|
|
16245
16471
|
|
|
16246
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16472
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js
|
|
16247
16473
|
var import_middleware_endpoint4, import_middleware_serde3, import_smithy_client22, AssumeRoleCommand;
|
|
16248
16474
|
var init_AssumeRoleCommand = __esm({
|
|
16249
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16475
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js"() {
|
|
16250
16476
|
import_middleware_endpoint4 = __toESM(require_dist_cjs33());
|
|
16251
16477
|
import_middleware_serde3 = __toESM(require_dist_cjs20());
|
|
16252
16478
|
import_smithy_client22 = __toESM(require_dist_cjs17());
|
|
@@ -16263,10 +16489,10 @@ var init_AssumeRoleCommand = __esm({
|
|
|
16263
16489
|
}
|
|
16264
16490
|
});
|
|
16265
16491
|
|
|
16266
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16492
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js
|
|
16267
16493
|
var import_middleware_endpoint5, import_middleware_serde4, import_smithy_client23, AssumeRoleWithWebIdentityCommand;
|
|
16268
16494
|
var init_AssumeRoleWithWebIdentityCommand = __esm({
|
|
16269
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16495
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js"() {
|
|
16270
16496
|
import_middleware_endpoint5 = __toESM(require_dist_cjs33());
|
|
16271
16497
|
import_middleware_serde4 = __toESM(require_dist_cjs20());
|
|
16272
16498
|
import_smithy_client23 = __toESM(require_dist_cjs17());
|
|
@@ -16283,10 +16509,10 @@ var init_AssumeRoleWithWebIdentityCommand = __esm({
|
|
|
16283
16509
|
}
|
|
16284
16510
|
});
|
|
16285
16511
|
|
|
16286
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16512
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js
|
|
16287
16513
|
var import_smithy_client24, commands2, STS;
|
|
16288
16514
|
var init_STS = __esm({
|
|
16289
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16515
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js"() {
|
|
16290
16516
|
import_smithy_client24 = __toESM(require_dist_cjs17());
|
|
16291
16517
|
init_AssumeRoleCommand();
|
|
16292
16518
|
init_AssumeRoleWithWebIdentityCommand();
|
|
@@ -16301,25 +16527,25 @@ var init_STS = __esm({
|
|
|
16301
16527
|
}
|
|
16302
16528
|
});
|
|
16303
16529
|
|
|
16304
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16530
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js
|
|
16305
16531
|
var init_commands2 = __esm({
|
|
16306
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16532
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js"() {
|
|
16307
16533
|
init_AssumeRoleCommand();
|
|
16308
16534
|
init_AssumeRoleWithWebIdentityCommand();
|
|
16309
16535
|
}
|
|
16310
16536
|
});
|
|
16311
16537
|
|
|
16312
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16538
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/index.js
|
|
16313
16539
|
var init_models2 = __esm({
|
|
16314
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16540
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/index.js"() {
|
|
16315
16541
|
init_models_02();
|
|
16316
16542
|
}
|
|
16317
16543
|
});
|
|
16318
16544
|
|
|
16319
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16545
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js
|
|
16320
16546
|
var ASSUME_ROLE_DEFAULT_REGION, getAccountIdFromAssumedRoleUser, resolveRegion, getDefaultRoleAssumer, getDefaultRoleAssumerWithWebIdentity, isH2;
|
|
16321
16547
|
var init_defaultStsRoleAssumers = __esm({
|
|
16322
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16548
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js"() {
|
|
16323
16549
|
init_client();
|
|
16324
16550
|
init_AssumeRoleCommand();
|
|
16325
16551
|
init_AssumeRoleWithWebIdentityCommand();
|
|
@@ -16413,10 +16639,10 @@ var init_defaultStsRoleAssumers = __esm({
|
|
|
16413
16639
|
}
|
|
16414
16640
|
});
|
|
16415
16641
|
|
|
16416
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16642
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js
|
|
16417
16643
|
var getCustomizableStsClientCtor, getDefaultRoleAssumer2, getDefaultRoleAssumerWithWebIdentity2, decorateDefaultCredentialProvider;
|
|
16418
16644
|
var init_defaultRoleAssumers = __esm({
|
|
16419
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16645
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js"() {
|
|
16420
16646
|
init_defaultStsRoleAssumers();
|
|
16421
16647
|
init_STSClient();
|
|
16422
16648
|
getCustomizableStsClientCtor = (baseCtor, customizations) => {
|
|
@@ -16442,7 +16668,7 @@ var init_defaultRoleAssumers = __esm({
|
|
|
16442
16668
|
}
|
|
16443
16669
|
});
|
|
16444
16670
|
|
|
16445
|
-
// node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16671
|
+
// node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js
|
|
16446
16672
|
var sts_exports = {};
|
|
16447
16673
|
__export(sts_exports, {
|
|
16448
16674
|
AssumeRoleCommand: () => AssumeRoleCommand,
|
|
@@ -16467,7 +16693,7 @@ __export(sts_exports, {
|
|
|
16467
16693
|
getDefaultRoleAssumerWithWebIdentity: () => getDefaultRoleAssumerWithWebIdentity2
|
|
16468
16694
|
});
|
|
16469
16695
|
var init_sts = __esm({
|
|
16470
|
-
"node_modules/.pnpm/@aws-sdk+nested-clients@3.
|
|
16696
|
+
"node_modules/.pnpm/@aws-sdk+nested-clients@3.749.0/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js"() {
|
|
16471
16697
|
init_STSClient();
|
|
16472
16698
|
init_STS();
|
|
16473
16699
|
init_commands2();
|
|
@@ -16477,9 +16703,9 @@ var init_sts = __esm({
|
|
|
16477
16703
|
}
|
|
16478
16704
|
});
|
|
16479
16705
|
|
|
16480
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-process@3.
|
|
16706
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-process@3.749.0/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js
|
|
16481
16707
|
var require_dist_cjs48 = __commonJS({
|
|
16482
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-process@3.
|
|
16708
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-process@3.749.0/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js"(exports2, module2) {
|
|
16483
16709
|
"use strict";
|
|
16484
16710
|
var __defProp2 = Object.defineProperty;
|
|
16485
16711
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -16579,9 +16805,9 @@ var require_dist_cjs48 = __commonJS({
|
|
|
16579
16805
|
}
|
|
16580
16806
|
});
|
|
16581
16807
|
|
|
16582
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.
|
|
16808
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.749.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js
|
|
16583
16809
|
var require_fromWebToken = __commonJS({
|
|
16584
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.
|
|
16810
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.749.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js"(exports2) {
|
|
16585
16811
|
"use strict";
|
|
16586
16812
|
var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o3, m3, k3, k22) {
|
|
16587
16813
|
if (k22 === void 0) k22 = k3;
|
|
@@ -16641,9 +16867,9 @@ var require_fromWebToken = __commonJS({
|
|
|
16641
16867
|
}
|
|
16642
16868
|
});
|
|
16643
16869
|
|
|
16644
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.
|
|
16870
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.749.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js
|
|
16645
16871
|
var require_fromTokenFile = __commonJS({
|
|
16646
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.
|
|
16872
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.749.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js"(exports2) {
|
|
16647
16873
|
"use strict";
|
|
16648
16874
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
16649
16875
|
exports2.fromTokenFile = void 0;
|
|
@@ -16679,9 +16905,9 @@ var require_fromTokenFile = __commonJS({
|
|
|
16679
16905
|
}
|
|
16680
16906
|
});
|
|
16681
16907
|
|
|
16682
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.
|
|
16908
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.749.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js
|
|
16683
16909
|
var require_dist_cjs49 = __commonJS({
|
|
16684
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.
|
|
16910
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.749.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js"(exports2, module2) {
|
|
16685
16911
|
"use strict";
|
|
16686
16912
|
var __defProp2 = Object.defineProperty;
|
|
16687
16913
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -16704,9 +16930,9 @@ var require_dist_cjs49 = __commonJS({
|
|
|
16704
16930
|
}
|
|
16705
16931
|
});
|
|
16706
16932
|
|
|
16707
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.
|
|
16933
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.749.0/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js
|
|
16708
16934
|
var require_dist_cjs50 = __commonJS({
|
|
16709
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.
|
|
16935
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.749.0/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js"(exports2, module2) {
|
|
16710
16936
|
"use strict";
|
|
16711
16937
|
var __create2 = Object.create;
|
|
16712
16938
|
var __defProp2 = Object.defineProperty;
|
|
@@ -16948,9 +17174,9 @@ var require_dist_cjs50 = __commonJS({
|
|
|
16948
17174
|
}
|
|
16949
17175
|
});
|
|
16950
17176
|
|
|
16951
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-node@3.
|
|
17177
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-node@3.749.0/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js
|
|
16952
17178
|
var require_dist_cjs51 = __commonJS({
|
|
16953
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-node@3.
|
|
17179
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-node@3.749.0/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js"(exports2, module2) {
|
|
16954
17180
|
"use strict";
|
|
16955
17181
|
var __create2 = Object.create;
|
|
16956
17182
|
var __defProp2 = Object.defineProperty;
|
|
@@ -17084,9 +17310,9 @@ var require_dist_cjs51 = __commonJS({
|
|
|
17084
17310
|
}
|
|
17085
17311
|
});
|
|
17086
17312
|
|
|
17087
|
-
// node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17313
|
+
// node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/ruleset.js
|
|
17088
17314
|
var require_ruleset2 = __commonJS({
|
|
17089
|
-
"node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17315
|
+
"node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/ruleset.js"(exports2) {
|
|
17090
17316
|
"use strict";
|
|
17091
17317
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
17092
17318
|
exports2.ruleSet = void 0;
|
|
@@ -17119,9 +17345,9 @@ var require_ruleset2 = __commonJS({
|
|
|
17119
17345
|
}
|
|
17120
17346
|
});
|
|
17121
17347
|
|
|
17122
|
-
// node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17348
|
+
// node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js
|
|
17123
17349
|
var require_endpointResolver2 = __commonJS({
|
|
17124
|
-
"node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17350
|
+
"node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js"(exports2) {
|
|
17125
17351
|
"use strict";
|
|
17126
17352
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
17127
17353
|
exports2.defaultEndpointResolver = void 0;
|
|
@@ -17143,9 +17369,9 @@ var require_endpointResolver2 = __commonJS({
|
|
|
17143
17369
|
}
|
|
17144
17370
|
});
|
|
17145
17371
|
|
|
17146
|
-
// node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17372
|
+
// node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js
|
|
17147
17373
|
var require_runtimeConfig_shared2 = __commonJS({
|
|
17148
|
-
"node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17374
|
+
"node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js"(exports2) {
|
|
17149
17375
|
"use strict";
|
|
17150
17376
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
17151
17377
|
exports2.getRuntimeConfig = void 0;
|
|
@@ -17183,9 +17409,9 @@ var require_runtimeConfig_shared2 = __commonJS({
|
|
|
17183
17409
|
}
|
|
17184
17410
|
});
|
|
17185
17411
|
|
|
17186
|
-
// node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17412
|
+
// node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js
|
|
17187
17413
|
var require_runtimeConfig2 = __commonJS({
|
|
17188
|
-
"node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17414
|
+
"node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js"(exports2) {
|
|
17189
17415
|
"use strict";
|
|
17190
17416
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
17191
17417
|
exports2.getRuntimeConfig = void 0;
|
|
@@ -17239,9 +17465,9 @@ var require_runtimeConfig2 = __commonJS({
|
|
|
17239
17465
|
}
|
|
17240
17466
|
});
|
|
17241
17467
|
|
|
17242
|
-
// node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17468
|
+
// node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js
|
|
17243
17469
|
var require_dist_cjs52 = __commonJS({
|
|
17244
|
-
"node_modules/.pnpm/@aws-sdk+client-sqs@3.
|
|
17470
|
+
"node_modules/.pnpm/@aws-sdk+client-sqs@3.749.0/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js"(exports2, module2) {
|
|
17245
17471
|
"use strict";
|
|
17246
17472
|
var __defProp2 = Object.defineProperty;
|
|
17247
17473
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
@@ -19419,9 +19645,9 @@ var require_dist_cjs52 = __commonJS({
|
|
|
19419
19645
|
}
|
|
19420
19646
|
});
|
|
19421
19647
|
|
|
19422
|
-
// node_modules/.pnpm/next@14.2.
|
|
19648
|
+
// node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/lru-cache/index.js
|
|
19423
19649
|
var require_lru_cache = __commonJS({
|
|
19424
|
-
"node_modules/.pnpm/next@14.2.
|
|
19650
|
+
"node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/lru-cache/index.js"(exports2, module2) {
|
|
19425
19651
|
(() => {
|
|
19426
19652
|
"use strict";
|
|
19427
19653
|
var t3 = { 806: (t4, e4, i4) => {
|
|
@@ -20058,9 +20284,9 @@ var require_lru_cache = __commonJS({
|
|
|
20058
20284
|
}
|
|
20059
20285
|
});
|
|
20060
20286
|
|
|
20061
|
-
// node_modules/.pnpm/next@14.2.
|
|
20287
|
+
// node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/path-browserify/index.js
|
|
20062
20288
|
var require_path_browserify = __commonJS({
|
|
20063
|
-
"node_modules/.pnpm/next@14.2.
|
|
20289
|
+
"node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/path-browserify/index.js"(exports2, module2) {
|
|
20064
20290
|
(function() {
|
|
20065
20291
|
"use strict";
|
|
20066
20292
|
var e3 = { 114: function(e4) {
|
|
@@ -20442,9 +20668,9 @@ var require_path_browserify = __commonJS({
|
|
|
20442
20668
|
}
|
|
20443
20669
|
});
|
|
20444
20670
|
|
|
20445
|
-
// node_modules/.pnpm/next@14.2.
|
|
20671
|
+
// node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/shared/lib/isomorphic/path.js
|
|
20446
20672
|
var require_path = __commonJS({
|
|
20447
|
-
"node_modules/.pnpm/next@14.2.
|
|
20673
|
+
"node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/shared/lib/isomorphic/path.js"(exports2, module2) {
|
|
20448
20674
|
"use strict";
|
|
20449
20675
|
var path;
|
|
20450
20676
|
if (process.env.NEXT_RUNTIME === "edge") {
|
|
@@ -20456,9 +20682,9 @@ var require_path = __commonJS({
|
|
|
20456
20682
|
}
|
|
20457
20683
|
});
|
|
20458
20684
|
|
|
20459
|
-
// node_modules/.pnpm/next@14.2.
|
|
20685
|
+
// node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/lib/constants.js
|
|
20460
20686
|
var require_constants = __commonJS({
|
|
20461
|
-
"node_modules/.pnpm/next@14.2.
|
|
20687
|
+
"node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/lib/constants.js"(exports2) {
|
|
20462
20688
|
"use strict";
|
|
20463
20689
|
Object.defineProperty(exports2, "__esModule", {
|
|
20464
20690
|
value: true
|
|
@@ -20749,9 +20975,9 @@ var require_constants = __commonJS({
|
|
|
20749
20975
|
}
|
|
20750
20976
|
});
|
|
20751
20977
|
|
|
20752
|
-
// node_modules/.pnpm/next@14.2.
|
|
20978
|
+
// node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.js
|
|
20753
20979
|
var require_file_system_cache = __commonJS({
|
|
20754
|
-
"node_modules/.pnpm/next@14.2.
|
|
20980
|
+
"node_modules/.pnpm/next@14.2.24_@babel+core@7.26.7_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.js"(exports2) {
|
|
20755
20981
|
"use strict";
|
|
20756
20982
|
Object.defineProperty(exports2, "__esModule", {
|
|
20757
20983
|
value: true
|