aws-cdk 2.1029.2 → 2.1029.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRD_PARTY_LICENSES +67 -67
- package/build-info.json +2 -2
- package/db.json.gz +0 -0
- package/lib/index.js +728 -516
- package/lib/index_bg.wasm +0 -0
- package/lib/init-templates/.init-version.json +1 -1
- package/package.json +13 -16
package/lib/index.js
CHANGED
|
@@ -3478,7 +3478,7 @@ var require_semver2 = __commonJS({
|
|
|
3478
3478
|
// ../@aws-cdk/cloud-assembly-schema/cli-version.json
|
|
3479
3479
|
var require_cli_version = __commonJS({
|
|
3480
3480
|
"../@aws-cdk/cloud-assembly-schema/cli-version.json"(exports2, module2) {
|
|
3481
|
-
module2.exports = { version: "2.1029.
|
|
3481
|
+
module2.exports = { version: "2.1029.3" };
|
|
3482
3482
|
}
|
|
3483
3483
|
});
|
|
3484
3484
|
|
|
@@ -4274,8 +4274,11 @@ have a unique display name. (Default - no display name)`,
|
|
|
4274
4274
|
type: "string"
|
|
4275
4275
|
},
|
|
4276
4276
|
flags: {
|
|
4277
|
-
|
|
4278
|
-
|
|
4277
|
+
description: "Information about every feature flag supported by this library.",
|
|
4278
|
+
type: "object",
|
|
4279
|
+
additionalProperties: {
|
|
4280
|
+
$ref: "#/definitions/FeatureFlag"
|
|
4281
|
+
}
|
|
4279
4282
|
}
|
|
4280
4283
|
},
|
|
4281
4284
|
required: [
|
|
@@ -4283,8 +4286,38 @@ have a unique display name. (Default - no display name)`,
|
|
|
4283
4286
|
"module"
|
|
4284
4287
|
]
|
|
4285
4288
|
},
|
|
4286
|
-
|
|
4287
|
-
|
|
4289
|
+
FeatureFlag: {
|
|
4290
|
+
description: "A single feature flag",
|
|
4291
|
+
type: "object",
|
|
4292
|
+
properties: {
|
|
4293
|
+
recommendedValue: {
|
|
4294
|
+
description: "The library-recommended value for this flag, if any\n\nIt is possible that there is no recommended value. (Default - No recommended value.)"
|
|
4295
|
+
},
|
|
4296
|
+
userValue: {
|
|
4297
|
+
description: "The value configured by the user\n\nThis is the value configured at the root of the tree. Users may also have\nconfigured values at specific locations in the tree; we don't report on\nthose. (Default - Not configured by the user)"
|
|
4298
|
+
},
|
|
4299
|
+
explanation: {
|
|
4300
|
+
description: "Explanation about the purpose of this flag that can be shown to the user. (Default - No description)",
|
|
4301
|
+
type: "string"
|
|
4302
|
+
},
|
|
4303
|
+
unconfiguredBehavesLike: {
|
|
4304
|
+
description: "The value of the flag that produces the same behavior as when the flag is not configured at all\n\nThe structure of this field is a historical accident. The type of this field\nshould have been boolean, which should have contained the default value for\nthe flag appropriate for the *current* version of the CDK library. We are\nnot rectifying this accident because doing so\n\nInstead, the canonical way to access this value is by evaluating\n`unconfiguredBehavesLike?.v2 ?? false`.",
|
|
4305
|
+
default: false,
|
|
4306
|
+
$ref: "#/definitions/UnconfiguredBehavesLike"
|
|
4307
|
+
}
|
|
4308
|
+
}
|
|
4309
|
+
},
|
|
4310
|
+
UnconfiguredBehavesLike: {
|
|
4311
|
+
type: "object",
|
|
4312
|
+
properties: {
|
|
4313
|
+
v1: {
|
|
4314
|
+
description: "Historical accident, don't use.\n\nThis value may be present, but it should never be used. The actual value is\nin the `v2` field, regardless of the version of the CDK library. (Default - ignore)"
|
|
4315
|
+
},
|
|
4316
|
+
v2: {
|
|
4317
|
+
description: "The value of the flag that produces the same behavior as when the flag is not configured at all\n\nEven though it is called 'v2', this is the official name of this field. In\nany future versions of CDK (v3, v4, ...), this field will still be called 'v2'.\n\nThe structure of this field is a historical accident. See the comment on\n`unconfiguredBehavesLike` for more information.",
|
|
4318
|
+
default: false
|
|
4319
|
+
}
|
|
4320
|
+
}
|
|
4288
4321
|
},
|
|
4289
4322
|
MissingContext: {
|
|
4290
4323
|
description: "Represents a missing piece of context.",
|
|
@@ -5429,7 +5462,7 @@ var require_integ_schema = __commonJS({
|
|
|
5429
5462
|
var require_version = __commonJS({
|
|
5430
5463
|
"../@aws-cdk/cloud-assembly-schema/schema/version.json"(exports2, module2) {
|
|
5431
5464
|
module2.exports = {
|
|
5432
|
-
schemaHash: "
|
|
5465
|
+
schemaHash: "4755f1d1fcb2dc25dd6bff0494afa7d86c517274ffebdf2ac2dcb90ad4b899c4",
|
|
5433
5466
|
$comment: "Do not hold back the version on additions: jsonschema validation of the manifest by the consumer will trigger errors on unexpected fields.",
|
|
5434
5467
|
revision: 48
|
|
5435
5468
|
};
|
|
@@ -6304,7 +6337,7 @@ var require_cloud_artifact = __commonJS({
|
|
|
6304
6337
|
};
|
|
6305
6338
|
exports2.CloudArtifact = CloudArtifact;
|
|
6306
6339
|
_a2 = JSII_RTTI_SYMBOL_1;
|
|
6307
|
-
CloudArtifact[_a2] = { fqn: "@aws-cdk/cx-api.CloudArtifact", version: "2.
|
|
6340
|
+
CloudArtifact[_a2] = { fqn: "@aws-cdk/cx-api.CloudArtifact", version: "2.215.0" };
|
|
6308
6341
|
}
|
|
6309
6342
|
});
|
|
6310
6343
|
|
|
@@ -6377,7 +6410,7 @@ var require_asset_manifest_artifact = __commonJS({
|
|
|
6377
6410
|
};
|
|
6378
6411
|
exports2.AssetManifestArtifact = AssetManifestArtifact5;
|
|
6379
6412
|
_a2 = JSII_RTTI_SYMBOL_1;
|
|
6380
|
-
AssetManifestArtifact5[_a2] = { fqn: "@aws-cdk/cx-api.AssetManifestArtifact", version: "2.
|
|
6413
|
+
AssetManifestArtifact5[_a2] = { fqn: "@aws-cdk/cx-api.AssetManifestArtifact", version: "2.215.0" };
|
|
6381
6414
|
Object.defineProperty(AssetManifestArtifact5.prototype, ASSET_MANIFEST_ARTIFACT_SYM, {
|
|
6382
6415
|
value: true,
|
|
6383
6416
|
enumerable: false,
|
|
@@ -6428,7 +6461,7 @@ var require_environment = __commonJS({
|
|
|
6428
6461
|
};
|
|
6429
6462
|
exports2.EnvironmentUtils = EnvironmentUtils4;
|
|
6430
6463
|
_a2 = JSII_RTTI_SYMBOL_1;
|
|
6431
|
-
EnvironmentUtils4[_a2] = { fqn: "@aws-cdk/cx-api.EnvironmentUtils", version: "2.
|
|
6464
|
+
EnvironmentUtils4[_a2] = { fqn: "@aws-cdk/cx-api.EnvironmentUtils", version: "2.215.0" };
|
|
6432
6465
|
}
|
|
6433
6466
|
});
|
|
6434
6467
|
|
|
@@ -6537,7 +6570,7 @@ var require_cloudformation_artifact = __commonJS({
|
|
|
6537
6570
|
};
|
|
6538
6571
|
exports2.CloudFormationStackArtifact = CloudFormationStackArtifact2;
|
|
6539
6572
|
_a2 = JSII_RTTI_SYMBOL_1;
|
|
6540
|
-
CloudFormationStackArtifact2[_a2] = { fqn: "@aws-cdk/cx-api.CloudFormationStackArtifact", version: "2.
|
|
6573
|
+
CloudFormationStackArtifact2[_a2] = { fqn: "@aws-cdk/cx-api.CloudFormationStackArtifact", version: "2.215.0" };
|
|
6541
6574
|
Object.defineProperty(CloudFormationStackArtifact2.prototype, CLOUDFORMATION_STACK_ARTIFACT_SYM, {
|
|
6542
6575
|
value: true,
|
|
6543
6576
|
enumerable: false,
|
|
@@ -6605,7 +6638,7 @@ var require_nested_cloud_assembly_artifact = __commonJS({
|
|
|
6605
6638
|
};
|
|
6606
6639
|
exports2.NestedCloudAssemblyArtifact = NestedCloudAssemblyArtifact2;
|
|
6607
6640
|
_a2 = JSII_RTTI_SYMBOL_1;
|
|
6608
|
-
NestedCloudAssemblyArtifact2[_a2] = { fqn: "@aws-cdk/cx-api.NestedCloudAssemblyArtifact", version: "2.
|
|
6641
|
+
NestedCloudAssemblyArtifact2[_a2] = { fqn: "@aws-cdk/cx-api.NestedCloudAssemblyArtifact", version: "2.215.0" };
|
|
6609
6642
|
Object.defineProperty(NestedCloudAssemblyArtifact2.prototype, NESTED_CLOUD_ASSEMBLY_SYM, {
|
|
6610
6643
|
value: true,
|
|
6611
6644
|
enumerable: false,
|
|
@@ -6669,7 +6702,7 @@ var require_tree_cloud_artifact = __commonJS({
|
|
|
6669
6702
|
};
|
|
6670
6703
|
exports2.TreeCloudArtifact = TreeCloudArtifact;
|
|
6671
6704
|
_a2 = JSII_RTTI_SYMBOL_1;
|
|
6672
|
-
TreeCloudArtifact[_a2] = { fqn: "@aws-cdk/cx-api.TreeCloudArtifact", version: "2.
|
|
6705
|
+
TreeCloudArtifact[_a2] = { fqn: "@aws-cdk/cx-api.TreeCloudArtifact", version: "2.215.0" };
|
|
6673
6706
|
Object.defineProperty(TreeCloudArtifact.prototype, TREE_CLOUD_ARTIFACT_SYM, {
|
|
6674
6707
|
value: true,
|
|
6675
6708
|
enumerable: false,
|
|
@@ -6942,7 +6975,7 @@ var require_cloud_assembly = __commonJS({
|
|
|
6942
6975
|
};
|
|
6943
6976
|
exports2.CloudAssembly = CloudAssembly6;
|
|
6944
6977
|
_a2 = JSII_RTTI_SYMBOL_1;
|
|
6945
|
-
CloudAssembly6[_a2] = { fqn: "@aws-cdk/cx-api.CloudAssembly", version: "2.
|
|
6978
|
+
CloudAssembly6[_a2] = { fqn: "@aws-cdk/cx-api.CloudAssembly", version: "2.215.0" };
|
|
6946
6979
|
var CloudAssemblyBuilder2 = class _CloudAssemblyBuilder {
|
|
6947
6980
|
static {
|
|
6948
6981
|
__name(this, "CloudAssemblyBuilder");
|
|
@@ -7038,7 +7071,7 @@ var require_cloud_assembly = __commonJS({
|
|
|
7038
7071
|
};
|
|
7039
7072
|
exports2.CloudAssemblyBuilder = CloudAssemblyBuilder2;
|
|
7040
7073
|
_b = JSII_RTTI_SYMBOL_1;
|
|
7041
|
-
CloudAssemblyBuilder2[_b] = { fqn: "@aws-cdk/cx-api.CloudAssemblyBuilder", version: "2.
|
|
7074
|
+
CloudAssemblyBuilder2[_b] = { fqn: "@aws-cdk/cx-api.CloudAssemblyBuilder", version: "2.215.0" };
|
|
7042
7075
|
function filterUndefined(obj) {
|
|
7043
7076
|
if (Array.isArray(obj)) {
|
|
7044
7077
|
return obj.filter((x3) => x3 !== void 0).map((x3) => filterUndefined(x3));
|
|
@@ -8860,7 +8893,7 @@ var require_placeholders = __commonJS({
|
|
|
8860
8893
|
};
|
|
8861
8894
|
exports2.EnvironmentPlaceholders = EnvironmentPlaceholders5;
|
|
8862
8895
|
_a2 = JSII_RTTI_SYMBOL_1;
|
|
8863
|
-
EnvironmentPlaceholders5[_a2] = { fqn: "@aws-cdk/cx-api.EnvironmentPlaceholders", version: "2.
|
|
8896
|
+
EnvironmentPlaceholders5[_a2] = { fqn: "@aws-cdk/cx-api.EnvironmentPlaceholders", version: "2.215.0" };
|
|
8864
8897
|
EnvironmentPlaceholders5.CURRENT_REGION = "${AWS::Region}";
|
|
8865
8898
|
EnvironmentPlaceholders5.CURRENT_ACCOUNT = "${AWS::AccountId}";
|
|
8866
8899
|
EnvironmentPlaceholders5.CURRENT_PARTITION = "${AWS::Partition}";
|
|
@@ -77176,11 +77209,15 @@ var require_getSSOTokenFromFile = __commonJS({
|
|
|
77176
77209
|
"../../node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js"(exports2) {
|
|
77177
77210
|
"use strict";
|
|
77178
77211
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
77179
|
-
exports2.getSSOTokenFromFile = void 0;
|
|
77212
|
+
exports2.getSSOTokenFromFile = exports2.tokenIntercept = void 0;
|
|
77180
77213
|
var fs_1 = require("fs");
|
|
77181
77214
|
var getSSOTokenFilepath_1 = require_getSSOTokenFilepath();
|
|
77182
77215
|
var { readFile: readFile5 } = fs_1.promises;
|
|
77216
|
+
exports2.tokenIntercept = {};
|
|
77183
77217
|
var getSSOTokenFromFile2 = /* @__PURE__ */ __name(async (id) => {
|
|
77218
|
+
if (exports2.tokenIntercept[id]) {
|
|
77219
|
+
return exports2.tokenIntercept[id];
|
|
77220
|
+
}
|
|
77184
77221
|
const ssoTokenFilepath = (0, getSSOTokenFilepath_1.getSSOTokenFilepath)(id);
|
|
77185
77222
|
const ssoTokenText = await readFile5(ssoTokenFilepath, "utf8");
|
|
77186
77223
|
return JSON.parse(ssoTokenText);
|
|
@@ -77194,15 +77231,19 @@ var require_slurpFile = __commonJS({
|
|
|
77194
77231
|
"../../node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js"(exports2) {
|
|
77195
77232
|
"use strict";
|
|
77196
77233
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
77197
|
-
exports2.slurpFile = void 0;
|
|
77234
|
+
exports2.slurpFile = exports2.fileIntercept = exports2.filePromisesHash = void 0;
|
|
77198
77235
|
var fs_1 = require("fs");
|
|
77199
77236
|
var { readFile: readFile5 } = fs_1.promises;
|
|
77200
|
-
|
|
77237
|
+
exports2.filePromisesHash = {};
|
|
77238
|
+
exports2.fileIntercept = {};
|
|
77201
77239
|
var slurpFile = /* @__PURE__ */ __name((path38, options) => {
|
|
77202
|
-
if (
|
|
77203
|
-
|
|
77240
|
+
if (exports2.fileIntercept[path38] !== void 0) {
|
|
77241
|
+
return exports2.fileIntercept[path38];
|
|
77204
77242
|
}
|
|
77205
|
-
|
|
77243
|
+
if (!exports2.filePromisesHash[path38] || (options === null || options === void 0 ? void 0 : options.ignoreCache)) {
|
|
77244
|
+
exports2.filePromisesHash[path38] = readFile5(path38, "utf8");
|
|
77245
|
+
}
|
|
77246
|
+
return exports2.filePromisesHash[path38];
|
|
77206
77247
|
}, "slurpFile");
|
|
77207
77248
|
exports2.slurpFile = slurpFile;
|
|
77208
77249
|
}
|
|
@@ -77235,7 +77276,10 @@ var require_dist_cjs32 = __commonJS({
|
|
|
77235
77276
|
CONFIG_PREFIX_SEPARATOR: /* @__PURE__ */ __name(() => CONFIG_PREFIX_SEPARATOR, "CONFIG_PREFIX_SEPARATOR"),
|
|
77236
77277
|
DEFAULT_PROFILE: /* @__PURE__ */ __name(() => DEFAULT_PROFILE, "DEFAULT_PROFILE"),
|
|
77237
77278
|
ENV_PROFILE: /* @__PURE__ */ __name(() => ENV_PROFILE, "ENV_PROFILE"),
|
|
77279
|
+
SSOToken: /* @__PURE__ */ __name(() => import_getSSOTokenFromFile2.SSOToken, "SSOToken"),
|
|
77280
|
+
externalDataInterceptor: /* @__PURE__ */ __name(() => externalDataInterceptor, "externalDataInterceptor"),
|
|
77238
77281
|
getProfileName: /* @__PURE__ */ __name(() => getProfileName, "getProfileName"),
|
|
77282
|
+
getSSOTokenFromFile: /* @__PURE__ */ __name(() => import_getSSOTokenFromFile2.getSSOTokenFromFile, "getSSOTokenFromFile"),
|
|
77239
77283
|
loadSharedConfigFiles: /* @__PURE__ */ __name(() => loadSharedConfigFiles2, "loadSharedConfigFiles"),
|
|
77240
77284
|
loadSsoSessionData: /* @__PURE__ */ __name(() => loadSsoSessionData, "loadSsoSessionData"),
|
|
77241
77285
|
parseKnownFiles: /* @__PURE__ */ __name(() => parseKnownFiles, "parseKnownFiles")
|
|
@@ -77246,7 +77290,7 @@ var require_dist_cjs32 = __commonJS({
|
|
|
77246
77290
|
var DEFAULT_PROFILE = "default";
|
|
77247
77291
|
var getProfileName = /* @__PURE__ */ __name2((init) => init.profile || process.env[ENV_PROFILE] || DEFAULT_PROFILE, "getProfileName");
|
|
77248
77292
|
__reExport(index_exports, require_getSSOTokenFilepath(), module2.exports);
|
|
77249
|
-
|
|
77293
|
+
var import_getSSOTokenFromFile2 = require_getSSOTokenFromFile();
|
|
77250
77294
|
var import_types5 = require_dist_cjs();
|
|
77251
77295
|
var getConfigData = /* @__PURE__ */ __name2((data3) => Object.entries(data3).filter(([key]) => {
|
|
77252
77296
|
const indexOfSeparator = key.indexOf(CONFIG_PREFIX_SEPARATOR);
|
|
@@ -77370,6 +77414,22 @@ var require_dist_cjs32 = __commonJS({
|
|
|
77370
77414
|
const parsedFiles = await loadSharedConfigFiles2(init);
|
|
77371
77415
|
return mergeConfigFiles(parsedFiles.configFile, parsedFiles.credentialsFile);
|
|
77372
77416
|
}, "parseKnownFiles");
|
|
77417
|
+
var import_getSSOTokenFromFile = require_getSSOTokenFromFile();
|
|
77418
|
+
var import_slurpFile3 = require_slurpFile();
|
|
77419
|
+
var externalDataInterceptor = {
|
|
77420
|
+
getFileRecord() {
|
|
77421
|
+
return import_slurpFile3.fileIntercept;
|
|
77422
|
+
},
|
|
77423
|
+
interceptFile(path38, contents) {
|
|
77424
|
+
import_slurpFile3.fileIntercept[path38] = Promise.resolve(contents);
|
|
77425
|
+
},
|
|
77426
|
+
getTokenRecord() {
|
|
77427
|
+
return import_getSSOTokenFromFile.tokenIntercept;
|
|
77428
|
+
},
|
|
77429
|
+
interceptToken(id, contents) {
|
|
77430
|
+
import_getSSOTokenFromFile.tokenIntercept[id] = contents;
|
|
77431
|
+
}
|
|
77432
|
+
};
|
|
77373
77433
|
}
|
|
77374
77434
|
});
|
|
77375
77435
|
|
|
@@ -77849,7 +77909,7 @@ var require_dist_cjs35 = __commonJS({
|
|
|
77849
77909
|
var TRANSIENT_ERROR_STATUS_CODES = [500, 502, 503, 504];
|
|
77850
77910
|
var NODEJS_TIMEOUT_ERROR_CODES = ["ECONNRESET", "ECONNREFUSED", "EPIPE", "ETIMEDOUT"];
|
|
77851
77911
|
var NODEJS_NETWORK_ERROR_CODES = ["EHOSTUNREACH", "ENETUNREACH", "ENOTFOUND"];
|
|
77852
|
-
var isRetryableByTrait = /* @__PURE__ */ __name2((error5) => error5
|
|
77912
|
+
var isRetryableByTrait = /* @__PURE__ */ __name2((error5) => error5?.$retryable !== void 0, "isRetryableByTrait");
|
|
77853
77913
|
var isClockSkewError = /* @__PURE__ */ __name2((error5) => CLOCK_SKEW_ERROR_CODES.includes(error5.name), "isClockSkewError");
|
|
77854
77914
|
var isClockSkewCorrectedError = /* @__PURE__ */ __name2((error5) => error5.$metadata?.clockSkewCorrected, "isClockSkewCorrectedError");
|
|
77855
77915
|
var isBrowserNetworkError = /* @__PURE__ */ __name2((error5) => {
|
|
@@ -77872,7 +77932,7 @@ var require_dist_cjs35 = __commonJS({
|
|
|
77872
77932
|
return errorMessages.has(error5.message);
|
|
77873
77933
|
}, "isBrowserNetworkError");
|
|
77874
77934
|
var isThrottlingError = /* @__PURE__ */ __name2((error5) => error5.$metadata?.httpStatusCode === 429 || THROTTLING_ERROR_CODES.includes(error5.name) || error5.$retryable?.throttling == true, "isThrottlingError");
|
|
77875
|
-
var isTransientError = /* @__PURE__ */ __name2((error5, depth = 0) => isClockSkewCorrectedError(error5) || TRANSIENT_ERROR_CODES.includes(error5.name) || NODEJS_TIMEOUT_ERROR_CODES.includes(error5?.code || "") || NODEJS_NETWORK_ERROR_CODES.includes(error5?.code || "") || TRANSIENT_ERROR_STATUS_CODES.includes(error5.$metadata?.httpStatusCode || 0) || isBrowserNetworkError(error5) || error5.cause !== void 0 && depth <= 10 && isTransientError(error5.cause, depth + 1), "isTransientError");
|
|
77935
|
+
var isTransientError = /* @__PURE__ */ __name2((error5, depth = 0) => isRetryableByTrait(error5) || isClockSkewCorrectedError(error5) || TRANSIENT_ERROR_CODES.includes(error5.name) || NODEJS_TIMEOUT_ERROR_CODES.includes(error5?.code || "") || NODEJS_NETWORK_ERROR_CODES.includes(error5?.code || "") || TRANSIENT_ERROR_STATUS_CODES.includes(error5.$metadata?.httpStatusCode || 0) || isBrowserNetworkError(error5) || error5.cause !== void 0 && depth <= 10 && isTransientError(error5.cause, depth + 1), "isTransientError");
|
|
77876
77936
|
var isServerError = /* @__PURE__ */ __name2((error5) => {
|
|
77877
77937
|
if (error5.$metadata?.httpStatusCode !== void 0) {
|
|
77878
77938
|
const statusCode = error5.$metadata.httpStatusCode;
|
|
@@ -79230,7 +79290,7 @@ var require_package = __commonJS({
|
|
|
79230
79290
|
module2.exports = {
|
|
79231
79291
|
name: "@aws-sdk/client-ecr",
|
|
79232
79292
|
description: "AWS SDK for JavaScript Ecr Client for Node.js, Browser and React Native",
|
|
79233
|
-
version: "3.
|
|
79293
|
+
version: "3.893.0",
|
|
79234
79294
|
scripts: {
|
|
79235
79295
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
79236
79296
|
"build:cjs": "node ../../scripts/compilation/inline client-ecr",
|
|
@@ -79249,41 +79309,41 @@ var require_package = __commonJS({
|
|
|
79249
79309
|
dependencies: {
|
|
79250
79310
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
79251
79311
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
79252
|
-
"@aws-sdk/core": "3.
|
|
79253
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
79254
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
79255
|
-
"@aws-sdk/middleware-logger": "3.
|
|
79256
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
79257
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
79258
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
79259
|
-
"@aws-sdk/types": "3.
|
|
79260
|
-
"@aws-sdk/util-endpoints": "3.
|
|
79261
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
79262
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
79263
|
-
"@smithy/config-resolver": "^4.2.
|
|
79264
|
-
"@smithy/core": "^3.11.
|
|
79312
|
+
"@aws-sdk/core": "3.893.0",
|
|
79313
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
79314
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
79315
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
79316
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
79317
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
79318
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
79319
|
+
"@aws-sdk/types": "3.893.0",
|
|
79320
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
79321
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
79322
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
79323
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
79324
|
+
"@smithy/core": "^3.11.1",
|
|
79265
79325
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
79266
79326
|
"@smithy/hash-node": "^4.1.1",
|
|
79267
79327
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
79268
79328
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
79269
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
79270
|
-
"@smithy/middleware-retry": "^4.2.
|
|
79329
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
79330
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
79271
79331
|
"@smithy/middleware-serde": "^4.1.1",
|
|
79272
79332
|
"@smithy/middleware-stack": "^4.1.1",
|
|
79273
|
-
"@smithy/node-config-provider": "^4.2.
|
|
79333
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
79274
79334
|
"@smithy/node-http-handler": "^4.2.1",
|
|
79275
79335
|
"@smithy/protocol-http": "^5.2.1",
|
|
79276
|
-
"@smithy/smithy-client": "^4.6.
|
|
79336
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
79277
79337
|
"@smithy/types": "^4.5.0",
|
|
79278
79338
|
"@smithy/url-parser": "^4.1.1",
|
|
79279
79339
|
"@smithy/util-base64": "^4.1.0",
|
|
79280
79340
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
79281
79341
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
79282
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
79283
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
79284
|
-
"@smithy/util-endpoints": "^3.1.
|
|
79342
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
79343
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
79344
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
79285
79345
|
"@smithy/util-middleware": "^4.1.1",
|
|
79286
|
-
"@smithy/util-retry": "^4.1.
|
|
79346
|
+
"@smithy/util-retry": "^4.1.2",
|
|
79287
79347
|
"@smithy/util-utf8": "^4.1.0",
|
|
79288
79348
|
"@smithy/util-waiter": "^4.1.1",
|
|
79289
79349
|
tslib: "^2.6.2"
|
|
@@ -79962,7 +80022,7 @@ Set AWS_CONTAINER_CREDENTIALS_FULL_URI or AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
|
|
|
79962
80022
|
}
|
|
79963
80023
|
const url = new URL(host);
|
|
79964
80024
|
(0, checkUrl_1.checkUrl)(url, options.logger);
|
|
79965
|
-
const requestHandler =
|
|
80025
|
+
const requestHandler = node_http_handler_1.NodeHttpHandler.create({
|
|
79966
80026
|
requestTimeout: options.timeout ?? 1e3,
|
|
79967
80027
|
connectionTimeout: options.timeout ?? 1e3
|
|
79968
80028
|
});
|
|
@@ -80079,7 +80139,7 @@ var require_package2 = __commonJS({
|
|
|
80079
80139
|
module2.exports = {
|
|
80080
80140
|
name: "@aws-sdk/client-sso",
|
|
80081
80141
|
description: "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
80082
|
-
version: "3.
|
|
80142
|
+
version: "3.893.0",
|
|
80083
80143
|
scripts: {
|
|
80084
80144
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
80085
80145
|
"build:cjs": "node ../../scripts/compilation/inline client-sso",
|
|
@@ -80098,40 +80158,40 @@ var require_package2 = __commonJS({
|
|
|
80098
80158
|
dependencies: {
|
|
80099
80159
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
80100
80160
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
80101
|
-
"@aws-sdk/core": "3.
|
|
80102
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
80103
|
-
"@aws-sdk/middleware-logger": "3.
|
|
80104
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
80105
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
80106
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
80107
|
-
"@aws-sdk/types": "3.
|
|
80108
|
-
"@aws-sdk/util-endpoints": "3.
|
|
80109
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
80110
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
80111
|
-
"@smithy/config-resolver": "^4.2.
|
|
80112
|
-
"@smithy/core": "^3.11.
|
|
80161
|
+
"@aws-sdk/core": "3.893.0",
|
|
80162
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
80163
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
80164
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
80165
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
80166
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
80167
|
+
"@aws-sdk/types": "3.893.0",
|
|
80168
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
80169
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
80170
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
80171
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
80172
|
+
"@smithy/core": "^3.11.1",
|
|
80113
80173
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
80114
80174
|
"@smithy/hash-node": "^4.1.1",
|
|
80115
80175
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
80116
80176
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
80117
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
80118
|
-
"@smithy/middleware-retry": "^4.2.
|
|
80177
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
80178
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
80119
80179
|
"@smithy/middleware-serde": "^4.1.1",
|
|
80120
80180
|
"@smithy/middleware-stack": "^4.1.1",
|
|
80121
|
-
"@smithy/node-config-provider": "^4.2.
|
|
80181
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
80122
80182
|
"@smithy/node-http-handler": "^4.2.1",
|
|
80123
80183
|
"@smithy/protocol-http": "^5.2.1",
|
|
80124
|
-
"@smithy/smithy-client": "^4.6.
|
|
80184
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
80125
80185
|
"@smithy/types": "^4.5.0",
|
|
80126
80186
|
"@smithy/url-parser": "^4.1.1",
|
|
80127
80187
|
"@smithy/util-base64": "^4.1.0",
|
|
80128
80188
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
80129
80189
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
80130
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
80131
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
80132
|
-
"@smithy/util-endpoints": "^3.1.
|
|
80190
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
80191
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
80192
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
80133
80193
|
"@smithy/util-middleware": "^4.1.1",
|
|
80134
|
-
"@smithy/util-retry": "^4.1.
|
|
80194
|
+
"@smithy/util-retry": "^4.1.2",
|
|
80135
80195
|
"@smithy/util-utf8": "^4.1.0",
|
|
80136
80196
|
tslib: "^2.6.2"
|
|
80137
80197
|
},
|
|
@@ -81399,7 +81459,7 @@ var init_package = __esm({
|
|
|
81399
81459
|
"../../node_modules/@aws-sdk/nested-clients/package.json"() {
|
|
81400
81460
|
package_default = {
|
|
81401
81461
|
name: "@aws-sdk/nested-clients",
|
|
81402
|
-
version: "3.
|
|
81462
|
+
version: "3.893.0",
|
|
81403
81463
|
description: "Nested clients for AWS SDK packages.",
|
|
81404
81464
|
main: "./dist-cjs/index.js",
|
|
81405
81465
|
module: "./dist-es/index.js",
|
|
@@ -81419,6 +81479,7 @@ var init_package = __esm({
|
|
|
81419
81479
|
engines: {
|
|
81420
81480
|
node: ">=18.0.0"
|
|
81421
81481
|
},
|
|
81482
|
+
sideEffects: false,
|
|
81422
81483
|
author: {
|
|
81423
81484
|
name: "AWS SDK for JavaScript Team",
|
|
81424
81485
|
url: "https://aws.amazon.com/javascript/"
|
|
@@ -81427,40 +81488,40 @@ var init_package = __esm({
|
|
|
81427
81488
|
dependencies: {
|
|
81428
81489
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
81429
81490
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
81430
|
-
"@aws-sdk/core": "3.
|
|
81431
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
81432
|
-
"@aws-sdk/middleware-logger": "3.
|
|
81433
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
81434
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
81435
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
81436
|
-
"@aws-sdk/types": "3.
|
|
81437
|
-
"@aws-sdk/util-endpoints": "3.
|
|
81438
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
81439
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
81440
|
-
"@smithy/config-resolver": "^4.2.
|
|
81441
|
-
"@smithy/core": "^3.11.
|
|
81491
|
+
"@aws-sdk/core": "3.893.0",
|
|
81492
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
81493
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
81494
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
81495
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
81496
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
81497
|
+
"@aws-sdk/types": "3.893.0",
|
|
81498
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
81499
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
81500
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
81501
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
81502
|
+
"@smithy/core": "^3.11.1",
|
|
81442
81503
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
81443
81504
|
"@smithy/hash-node": "^4.1.1",
|
|
81444
81505
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
81445
81506
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
81446
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
81447
|
-
"@smithy/middleware-retry": "^4.2.
|
|
81507
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
81508
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
81448
81509
|
"@smithy/middleware-serde": "^4.1.1",
|
|
81449
81510
|
"@smithy/middleware-stack": "^4.1.1",
|
|
81450
|
-
"@smithy/node-config-provider": "^4.2.
|
|
81511
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
81451
81512
|
"@smithy/node-http-handler": "^4.2.1",
|
|
81452
81513
|
"@smithy/protocol-http": "^5.2.1",
|
|
81453
|
-
"@smithy/smithy-client": "^4.6.
|
|
81514
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
81454
81515
|
"@smithy/types": "^4.5.0",
|
|
81455
81516
|
"@smithy/url-parser": "^4.1.1",
|
|
81456
81517
|
"@smithy/util-base64": "^4.1.0",
|
|
81457
81518
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
81458
81519
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
81459
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
81460
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
81461
|
-
"@smithy/util-endpoints": "^3.1.
|
|
81520
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
81521
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
81522
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
81462
81523
|
"@smithy/util-middleware": "^4.1.1",
|
|
81463
|
-
"@smithy/util-retry": "^4.1.
|
|
81524
|
+
"@smithy/util-retry": "^4.1.2",
|
|
81464
81525
|
"@smithy/util-utf8": "^4.1.0",
|
|
81465
81526
|
tslib: "^2.6.2"
|
|
81466
81527
|
},
|
|
@@ -82643,13 +82704,21 @@ var require_dist_cjs48 = __commonJS({
|
|
|
82643
82704
|
clientConfig,
|
|
82644
82705
|
parentClientConfig,
|
|
82645
82706
|
profile,
|
|
82707
|
+
filepath,
|
|
82708
|
+
configFilepath,
|
|
82709
|
+
ignoreCache,
|
|
82646
82710
|
logger: logger4
|
|
82647
82711
|
}) => {
|
|
82648
82712
|
let token;
|
|
82649
82713
|
const refreshMessage = `To refresh this SSO session run aws sso login with the corresponding profile.`;
|
|
82650
82714
|
if (ssoSession) {
|
|
82651
82715
|
try {
|
|
82652
|
-
const _token = await (0, import_token_providers.fromSso)({
|
|
82716
|
+
const _token = await (0, import_token_providers.fromSso)({
|
|
82717
|
+
profile,
|
|
82718
|
+
filepath,
|
|
82719
|
+
configFilepath,
|
|
82720
|
+
ignoreCache
|
|
82721
|
+
})();
|
|
82653
82722
|
token = {
|
|
82654
82723
|
accessToken: _token.token,
|
|
82655
82724
|
expiresAt: new Date(_token.expiration).toISOString()
|
|
@@ -82786,7 +82855,11 @@ Reference: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.ht
|
|
|
82786
82855
|
ssoClient,
|
|
82787
82856
|
clientConfig: init.clientConfig,
|
|
82788
82857
|
parentClientConfig: init.parentClientConfig,
|
|
82789
|
-
profile: profileName
|
|
82858
|
+
profile: profileName,
|
|
82859
|
+
filepath: init.filepath,
|
|
82860
|
+
configFilepath: init.configFilepath,
|
|
82861
|
+
ignoreCache: init.ignoreCache,
|
|
82862
|
+
logger: init.logger
|
|
82790
82863
|
});
|
|
82791
82864
|
} else if (!ssoStartUrl || !ssoAccountId || !ssoRegion || !ssoRoleName) {
|
|
82792
82865
|
throw new import_property_provider3.CredentialsProviderError(
|
|
@@ -82803,7 +82876,11 @@ Reference: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.ht
|
|
|
82803
82876
|
ssoClient,
|
|
82804
82877
|
clientConfig: init.clientConfig,
|
|
82805
82878
|
parentClientConfig: init.parentClientConfig,
|
|
82806
|
-
profile: profileName
|
|
82879
|
+
profile: profileName,
|
|
82880
|
+
filepath: init.filepath,
|
|
82881
|
+
configFilepath: init.configFilepath,
|
|
82882
|
+
ignoreCache: init.ignoreCache,
|
|
82883
|
+
logger: init.logger
|
|
82807
82884
|
});
|
|
82808
82885
|
}
|
|
82809
82886
|
}, "fromSSO");
|
|
@@ -84139,8 +84216,8 @@ var require_dist_cjs49 = __commonJS({
|
|
|
84139
84216
|
fromProcess: /* @__PURE__ */ __name(() => fromProcess, "fromProcess")
|
|
84140
84217
|
});
|
|
84141
84218
|
module2.exports = __toCommonJS2(index_exports);
|
|
84142
|
-
var import_shared_ini_file_loader2 = require_dist_cjs32();
|
|
84143
84219
|
var import_property_provider3 = require_dist_cjs22();
|
|
84220
|
+
var import_shared_ini_file_loader2 = require_dist_cjs32();
|
|
84144
84221
|
var import_child_process3 = require("child_process");
|
|
84145
84222
|
var import_util76 = require("util");
|
|
84146
84223
|
var import_client3 = (init_client(), __toCommonJS(client_exports));
|
|
@@ -84178,7 +84255,7 @@ var require_dist_cjs49 = __commonJS({
|
|
|
84178
84255
|
if (profiles[profileName]) {
|
|
84179
84256
|
const credentialProcess = profile["credential_process"];
|
|
84180
84257
|
if (credentialProcess !== void 0) {
|
|
84181
|
-
const execPromise = (0, import_util76.promisify)(import_child_process3.exec);
|
|
84258
|
+
const execPromise = (0, import_util76.promisify)(import_shared_ini_file_loader2.externalDataInterceptor?.getTokenRecord?.().exec ?? import_child_process3.exec);
|
|
84182
84259
|
try {
|
|
84183
84260
|
const { stdout: stdout2 } = await execPromise(credentialProcess);
|
|
84184
84261
|
let data3;
|
|
@@ -84294,6 +84371,7 @@ var require_fromTokenFile = __commonJS({
|
|
|
84294
84371
|
exports2.fromTokenFile = void 0;
|
|
84295
84372
|
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
84296
84373
|
var property_provider_1 = require_dist_cjs22();
|
|
84374
|
+
var shared_ini_file_loader_1 = require_dist_cjs32();
|
|
84297
84375
|
var fs_1 = require("fs");
|
|
84298
84376
|
var fromWebToken_1 = require_fromWebToken();
|
|
84299
84377
|
var ENV_TOKEN_FILE = "AWS_WEB_IDENTITY_TOKEN_FILE";
|
|
@@ -84311,7 +84389,7 @@ var require_fromTokenFile = __commonJS({
|
|
|
84311
84389
|
}
|
|
84312
84390
|
const credentials = await (0, fromWebToken_1.fromWebToken)({
|
|
84313
84391
|
...init,
|
|
84314
|
-
webIdentityToken: (0, fs_1.readFileSync)(webIdentityTokenFile, { encoding: "ascii" }),
|
|
84392
|
+
webIdentityToken: shared_ini_file_loader_1.externalDataInterceptor?.getTokenRecord?.()[webIdentityTokenFile] ?? (0, fs_1.readFileSync)(webIdentityTokenFile, { encoding: "ascii" }),
|
|
84315
84393
|
roleArn,
|
|
84316
84394
|
roleSessionName
|
|
84317
84395
|
})();
|
|
@@ -91734,7 +91812,7 @@ var require_package3 = __commonJS({
|
|
|
91734
91812
|
module2.exports = {
|
|
91735
91813
|
name: "@aws-sdk/client-s3",
|
|
91736
91814
|
description: "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
91737
|
-
version: "3.
|
|
91815
|
+
version: "3.893.0",
|
|
91738
91816
|
scripts: {
|
|
91739
91817
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
91740
91818
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -91762,27 +91840,27 @@ var require_package3 = __commonJS({
|
|
|
91762
91840
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
91763
91841
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
91764
91842
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
91765
|
-
"@aws-sdk/core": "3.
|
|
91766
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
91767
|
-
"@aws-sdk/middleware-bucket-endpoint": "3.
|
|
91768
|
-
"@aws-sdk/middleware-expect-continue": "3.
|
|
91769
|
-
"@aws-sdk/middleware-flexible-checksums": "3.
|
|
91770
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
91771
|
-
"@aws-sdk/middleware-location-constraint": "3.
|
|
91772
|
-
"@aws-sdk/middleware-logger": "3.
|
|
91773
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
91774
|
-
"@aws-sdk/middleware-sdk-s3": "3.
|
|
91775
|
-
"@aws-sdk/middleware-ssec": "3.
|
|
91776
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
91777
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
91778
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
91779
|
-
"@aws-sdk/types": "3.
|
|
91780
|
-
"@aws-sdk/util-endpoints": "3.
|
|
91781
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
91782
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
91783
|
-
"@aws-sdk/xml-builder": "3.
|
|
91784
|
-
"@smithy/config-resolver": "^4.2.
|
|
91785
|
-
"@smithy/core": "^3.11.
|
|
91843
|
+
"@aws-sdk/core": "3.893.0",
|
|
91844
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
91845
|
+
"@aws-sdk/middleware-bucket-endpoint": "3.893.0",
|
|
91846
|
+
"@aws-sdk/middleware-expect-continue": "3.893.0",
|
|
91847
|
+
"@aws-sdk/middleware-flexible-checksums": "3.893.0",
|
|
91848
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
91849
|
+
"@aws-sdk/middleware-location-constraint": "3.893.0",
|
|
91850
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
91851
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
91852
|
+
"@aws-sdk/middleware-sdk-s3": "3.893.0",
|
|
91853
|
+
"@aws-sdk/middleware-ssec": "3.893.0",
|
|
91854
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
91855
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
91856
|
+
"@aws-sdk/signature-v4-multi-region": "3.893.0",
|
|
91857
|
+
"@aws-sdk/types": "3.893.0",
|
|
91858
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
91859
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
91860
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
91861
|
+
"@aws-sdk/xml-builder": "3.893.0",
|
|
91862
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
91863
|
+
"@smithy/core": "^3.11.1",
|
|
91786
91864
|
"@smithy/eventstream-serde-browser": "^4.1.1",
|
|
91787
91865
|
"@smithy/eventstream-serde-config-resolver": "^4.2.1",
|
|
91788
91866
|
"@smithy/eventstream-serde-node": "^4.1.1",
|
|
@@ -91793,25 +91871,25 @@ var require_package3 = __commonJS({
|
|
|
91793
91871
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
91794
91872
|
"@smithy/md5-js": "^4.1.1",
|
|
91795
91873
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
91796
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
91797
|
-
"@smithy/middleware-retry": "^4.2.
|
|
91874
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
91875
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
91798
91876
|
"@smithy/middleware-serde": "^4.1.1",
|
|
91799
91877
|
"@smithy/middleware-stack": "^4.1.1",
|
|
91800
|
-
"@smithy/node-config-provider": "^4.2.
|
|
91878
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
91801
91879
|
"@smithy/node-http-handler": "^4.2.1",
|
|
91802
91880
|
"@smithy/protocol-http": "^5.2.1",
|
|
91803
|
-
"@smithy/smithy-client": "^4.6.
|
|
91881
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
91804
91882
|
"@smithy/types": "^4.5.0",
|
|
91805
91883
|
"@smithy/url-parser": "^4.1.1",
|
|
91806
91884
|
"@smithy/util-base64": "^4.1.0",
|
|
91807
91885
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
91808
91886
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
91809
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
91810
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
91811
|
-
"@smithy/util-endpoints": "^3.1.
|
|
91887
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
91888
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
91889
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
91812
91890
|
"@smithy/util-middleware": "^4.1.1",
|
|
91813
|
-
"@smithy/util-retry": "^4.1.
|
|
91814
|
-
"@smithy/util-stream": "^4.3.
|
|
91891
|
+
"@smithy/util-retry": "^4.1.2",
|
|
91892
|
+
"@smithy/util-stream": "^4.3.2",
|
|
91815
91893
|
"@smithy/util-utf8": "^4.1.0",
|
|
91816
91894
|
"@smithy/util-waiter": "^4.1.1",
|
|
91817
91895
|
"@types/uuid": "^9.0.1",
|
|
@@ -91819,7 +91897,7 @@ var require_package3 = __commonJS({
|
|
|
91819
91897
|
uuid: "^9.0.1"
|
|
91820
91898
|
},
|
|
91821
91899
|
devDependencies: {
|
|
91822
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
91900
|
+
"@aws-sdk/signature-v4-crt": "3.893.0",
|
|
91823
91901
|
"@tsconfig/node18": "18.2.4",
|
|
91824
91902
|
"@types/node": "^18.19.69",
|
|
91825
91903
|
concurrently: "7.0.0",
|
|
@@ -104998,7 +105076,7 @@ var require_package4 = __commonJS({
|
|
|
104998
105076
|
module2.exports = {
|
|
104999
105077
|
name: "@aws-sdk/client-secrets-manager",
|
|
105000
105078
|
description: "AWS SDK for JavaScript Secrets Manager Client for Node.js, Browser and React Native",
|
|
105001
|
-
version: "3.
|
|
105079
|
+
version: "3.893.0",
|
|
105002
105080
|
scripts: {
|
|
105003
105081
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
105004
105082
|
"build:cjs": "node ../../scripts/compilation/inline client-secrets-manager",
|
|
@@ -105017,41 +105095,41 @@ var require_package4 = __commonJS({
|
|
|
105017
105095
|
dependencies: {
|
|
105018
105096
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
105019
105097
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
105020
|
-
"@aws-sdk/core": "3.
|
|
105021
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
105022
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
105023
|
-
"@aws-sdk/middleware-logger": "3.
|
|
105024
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
105025
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
105026
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
105027
|
-
"@aws-sdk/types": "3.
|
|
105028
|
-
"@aws-sdk/util-endpoints": "3.
|
|
105029
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
105030
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
105031
|
-
"@smithy/config-resolver": "^4.2.
|
|
105032
|
-
"@smithy/core": "^3.11.
|
|
105098
|
+
"@aws-sdk/core": "3.893.0",
|
|
105099
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
105100
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
105101
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
105102
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
105103
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
105104
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
105105
|
+
"@aws-sdk/types": "3.893.0",
|
|
105106
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
105107
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
105108
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
105109
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
105110
|
+
"@smithy/core": "^3.11.1",
|
|
105033
105111
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
105034
105112
|
"@smithy/hash-node": "^4.1.1",
|
|
105035
105113
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
105036
105114
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
105037
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
105038
|
-
"@smithy/middleware-retry": "^4.2.
|
|
105115
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
105116
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
105039
105117
|
"@smithy/middleware-serde": "^4.1.1",
|
|
105040
105118
|
"@smithy/middleware-stack": "^4.1.1",
|
|
105041
|
-
"@smithy/node-config-provider": "^4.2.
|
|
105119
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
105042
105120
|
"@smithy/node-http-handler": "^4.2.1",
|
|
105043
105121
|
"@smithy/protocol-http": "^5.2.1",
|
|
105044
|
-
"@smithy/smithy-client": "^4.6.
|
|
105122
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
105045
105123
|
"@smithy/types": "^4.5.0",
|
|
105046
105124
|
"@smithy/url-parser": "^4.1.1",
|
|
105047
105125
|
"@smithy/util-base64": "^4.1.0",
|
|
105048
105126
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
105049
105127
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
105050
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
105051
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
105052
|
-
"@smithy/util-endpoints": "^3.1.
|
|
105128
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
105129
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
105130
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
105053
105131
|
"@smithy/util-middleware": "^4.1.1",
|
|
105054
|
-
"@smithy/util-retry": "^4.1.
|
|
105132
|
+
"@smithy/util-retry": "^4.1.2",
|
|
105055
105133
|
"@smithy/util-utf8": "^4.1.0",
|
|
105056
105134
|
"@types/uuid": "^9.0.1",
|
|
105057
105135
|
tslib: "^2.6.2",
|
|
@@ -107080,7 +107158,7 @@ var require_package5 = __commonJS({
|
|
|
107080
107158
|
module2.exports = {
|
|
107081
107159
|
name: "@aws-sdk/client-sts",
|
|
107082
107160
|
description: "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
|
|
107083
|
-
version: "3.
|
|
107161
|
+
version: "3.893.0",
|
|
107084
107162
|
scripts: {
|
|
107085
107163
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
107086
107164
|
"build:cjs": "node ../../scripts/compilation/inline client-sts",
|
|
@@ -107101,41 +107179,41 @@ var require_package5 = __commonJS({
|
|
|
107101
107179
|
dependencies: {
|
|
107102
107180
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
107103
107181
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
107104
|
-
"@aws-sdk/core": "3.
|
|
107105
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
107106
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
107107
|
-
"@aws-sdk/middleware-logger": "3.
|
|
107108
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
107109
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
107110
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
107111
|
-
"@aws-sdk/types": "3.
|
|
107112
|
-
"@aws-sdk/util-endpoints": "3.
|
|
107113
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
107114
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
107115
|
-
"@smithy/config-resolver": "^4.2.
|
|
107116
|
-
"@smithy/core": "^3.11.
|
|
107182
|
+
"@aws-sdk/core": "3.893.0",
|
|
107183
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
107184
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
107185
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
107186
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
107187
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
107188
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
107189
|
+
"@aws-sdk/types": "3.893.0",
|
|
107190
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
107191
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
107192
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
107193
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
107194
|
+
"@smithy/core": "^3.11.1",
|
|
107117
107195
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
107118
107196
|
"@smithy/hash-node": "^4.1.1",
|
|
107119
107197
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
107120
107198
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
107121
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
107122
|
-
"@smithy/middleware-retry": "^4.2.
|
|
107199
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
107200
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
107123
107201
|
"@smithy/middleware-serde": "^4.1.1",
|
|
107124
107202
|
"@smithy/middleware-stack": "^4.1.1",
|
|
107125
|
-
"@smithy/node-config-provider": "^4.2.
|
|
107203
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
107126
107204
|
"@smithy/node-http-handler": "^4.2.1",
|
|
107127
107205
|
"@smithy/protocol-http": "^5.2.1",
|
|
107128
|
-
"@smithy/smithy-client": "^4.6.
|
|
107206
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
107129
107207
|
"@smithy/types": "^4.5.0",
|
|
107130
107208
|
"@smithy/url-parser": "^4.1.1",
|
|
107131
107209
|
"@smithy/util-base64": "^4.1.0",
|
|
107132
107210
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
107133
107211
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
107134
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
107135
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
107136
|
-
"@smithy/util-endpoints": "^3.1.
|
|
107212
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
107213
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
107214
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
107137
107215
|
"@smithy/util-middleware": "^4.1.1",
|
|
107138
|
-
"@smithy/util-retry": "^4.1.
|
|
107216
|
+
"@smithy/util-retry": "^4.1.2",
|
|
107139
107217
|
"@smithy/util-utf8": "^4.1.0",
|
|
107140
107218
|
tslib: "^2.6.2"
|
|
107141
107219
|
},
|
|
@@ -109138,7 +109216,7 @@ var require_package6 = __commonJS({
|
|
|
109138
109216
|
module2.exports = {
|
|
109139
109217
|
name: "@aws-sdk/client-cognito-identity",
|
|
109140
109218
|
description: "AWS SDK for JavaScript Cognito Identity Client for Node.js, Browser and React Native",
|
|
109141
|
-
version: "3.
|
|
109219
|
+
version: "3.893.0",
|
|
109142
109220
|
scripts: {
|
|
109143
109221
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
109144
109222
|
"build:cjs": "node ../../scripts/compilation/inline client-cognito-identity",
|
|
@@ -109159,46 +109237,46 @@ var require_package6 = __commonJS({
|
|
|
109159
109237
|
dependencies: {
|
|
109160
109238
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
109161
109239
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
109162
|
-
"@aws-sdk/core": "3.
|
|
109163
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
109164
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
109165
|
-
"@aws-sdk/middleware-logger": "3.
|
|
109166
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
109167
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
109168
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
109169
|
-
"@aws-sdk/types": "3.
|
|
109170
|
-
"@aws-sdk/util-endpoints": "3.
|
|
109171
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
109172
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
109173
|
-
"@smithy/config-resolver": "^4.2.
|
|
109174
|
-
"@smithy/core": "^3.11.
|
|
109240
|
+
"@aws-sdk/core": "3.893.0",
|
|
109241
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
109242
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
109243
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
109244
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
109245
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
109246
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
109247
|
+
"@aws-sdk/types": "3.893.0",
|
|
109248
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
109249
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
109250
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
109251
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
109252
|
+
"@smithy/core": "^3.11.1",
|
|
109175
109253
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
109176
109254
|
"@smithy/hash-node": "^4.1.1",
|
|
109177
109255
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
109178
109256
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
109179
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
109180
|
-
"@smithy/middleware-retry": "^4.2.
|
|
109257
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
109258
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
109181
109259
|
"@smithy/middleware-serde": "^4.1.1",
|
|
109182
109260
|
"@smithy/middleware-stack": "^4.1.1",
|
|
109183
|
-
"@smithy/node-config-provider": "^4.2.
|
|
109261
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
109184
109262
|
"@smithy/node-http-handler": "^4.2.1",
|
|
109185
109263
|
"@smithy/protocol-http": "^5.2.1",
|
|
109186
|
-
"@smithy/smithy-client": "^4.6.
|
|
109264
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
109187
109265
|
"@smithy/types": "^4.5.0",
|
|
109188
109266
|
"@smithy/url-parser": "^4.1.1",
|
|
109189
109267
|
"@smithy/util-base64": "^4.1.0",
|
|
109190
109268
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
109191
109269
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
109192
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
109193
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
109194
|
-
"@smithy/util-endpoints": "^3.1.
|
|
109270
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
109271
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
109272
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
109195
109273
|
"@smithy/util-middleware": "^4.1.1",
|
|
109196
|
-
"@smithy/util-retry": "^4.1.
|
|
109274
|
+
"@smithy/util-retry": "^4.1.2",
|
|
109197
109275
|
"@smithy/util-utf8": "^4.1.0",
|
|
109198
109276
|
tslib: "^2.6.2"
|
|
109199
109277
|
},
|
|
109200
109278
|
devDependencies: {
|
|
109201
|
-
"@aws-sdk/client-iam": "3.
|
|
109279
|
+
"@aws-sdk/client-iam": "3.893.0",
|
|
109202
109280
|
"@tsconfig/node18": "18.2.4",
|
|
109203
109281
|
"@types/chai": "^4.2.11",
|
|
109204
109282
|
"@types/node": "^18.19.69",
|
|
@@ -124147,7 +124225,7 @@ var require_package7 = __commonJS({
|
|
|
124147
124225
|
module2.exports = {
|
|
124148
124226
|
name: "@aws-sdk/client-cloudformation",
|
|
124149
124227
|
description: "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
|
|
124150
|
-
version: "3.
|
|
124228
|
+
version: "3.893.0",
|
|
124151
124229
|
scripts: {
|
|
124152
124230
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
124153
124231
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudformation",
|
|
@@ -124166,41 +124244,41 @@ var require_package7 = __commonJS({
|
|
|
124166
124244
|
dependencies: {
|
|
124167
124245
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
124168
124246
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
124169
|
-
"@aws-sdk/core": "3.
|
|
124170
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
124171
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
124172
|
-
"@aws-sdk/middleware-logger": "3.
|
|
124173
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
124174
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
124175
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
124176
|
-
"@aws-sdk/types": "3.
|
|
124177
|
-
"@aws-sdk/util-endpoints": "3.
|
|
124178
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
124179
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
124180
|
-
"@smithy/config-resolver": "^4.2.
|
|
124181
|
-
"@smithy/core": "^3.11.
|
|
124247
|
+
"@aws-sdk/core": "3.893.0",
|
|
124248
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
124249
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
124250
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
124251
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
124252
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
124253
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
124254
|
+
"@aws-sdk/types": "3.893.0",
|
|
124255
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
124256
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
124257
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
124258
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
124259
|
+
"@smithy/core": "^3.11.1",
|
|
124182
124260
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
124183
124261
|
"@smithy/hash-node": "^4.1.1",
|
|
124184
124262
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
124185
124263
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
124186
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
124187
|
-
"@smithy/middleware-retry": "^4.2.
|
|
124264
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
124265
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
124188
124266
|
"@smithy/middleware-serde": "^4.1.1",
|
|
124189
124267
|
"@smithy/middleware-stack": "^4.1.1",
|
|
124190
|
-
"@smithy/node-config-provider": "^4.2.
|
|
124268
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
124191
124269
|
"@smithy/node-http-handler": "^4.2.1",
|
|
124192
124270
|
"@smithy/protocol-http": "^5.2.1",
|
|
124193
|
-
"@smithy/smithy-client": "^4.6.
|
|
124271
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
124194
124272
|
"@smithy/types": "^4.5.0",
|
|
124195
124273
|
"@smithy/url-parser": "^4.1.1",
|
|
124196
124274
|
"@smithy/util-base64": "^4.1.0",
|
|
124197
124275
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
124198
124276
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
124199
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
124200
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
124201
|
-
"@smithy/util-endpoints": "^3.1.
|
|
124277
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
124278
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
124279
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
124202
124280
|
"@smithy/util-middleware": "^4.1.1",
|
|
124203
|
-
"@smithy/util-retry": "^4.1.
|
|
124281
|
+
"@smithy/util-retry": "^4.1.2",
|
|
124204
124282
|
"@smithy/util-utf8": "^4.1.0",
|
|
124205
124283
|
"@smithy/util-waiter": "^4.1.1",
|
|
124206
124284
|
"@types/uuid": "^9.0.1",
|
|
@@ -154792,7 +154870,7 @@ var require_package8 = __commonJS({
|
|
|
154792
154870
|
module2.exports = {
|
|
154793
154871
|
name: "@aws-sdk/client-appsync",
|
|
154794
154872
|
description: "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native",
|
|
154795
|
-
version: "3.
|
|
154873
|
+
version: "3.893.0",
|
|
154796
154874
|
scripts: {
|
|
154797
154875
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
154798
154876
|
"build:cjs": "node ../../scripts/compilation/inline client-appsync",
|
|
@@ -154811,42 +154889,42 @@ var require_package8 = __commonJS({
|
|
|
154811
154889
|
dependencies: {
|
|
154812
154890
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
154813
154891
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
154814
|
-
"@aws-sdk/core": "3.
|
|
154815
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
154816
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
154817
|
-
"@aws-sdk/middleware-logger": "3.
|
|
154818
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
154819
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
154820
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
154821
|
-
"@aws-sdk/types": "3.
|
|
154822
|
-
"@aws-sdk/util-endpoints": "3.
|
|
154823
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
154824
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
154825
|
-
"@smithy/config-resolver": "^4.2.
|
|
154826
|
-
"@smithy/core": "^3.11.
|
|
154892
|
+
"@aws-sdk/core": "3.893.0",
|
|
154893
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
154894
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
154895
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
154896
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
154897
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
154898
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
154899
|
+
"@aws-sdk/types": "3.893.0",
|
|
154900
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
154901
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
154902
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
154903
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
154904
|
+
"@smithy/core": "^3.11.1",
|
|
154827
154905
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
154828
154906
|
"@smithy/hash-node": "^4.1.1",
|
|
154829
154907
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
154830
154908
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
154831
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
154832
|
-
"@smithy/middleware-retry": "^4.2.
|
|
154909
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
154910
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
154833
154911
|
"@smithy/middleware-serde": "^4.1.1",
|
|
154834
154912
|
"@smithy/middleware-stack": "^4.1.1",
|
|
154835
|
-
"@smithy/node-config-provider": "^4.2.
|
|
154913
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
154836
154914
|
"@smithy/node-http-handler": "^4.2.1",
|
|
154837
154915
|
"@smithy/protocol-http": "^5.2.1",
|
|
154838
|
-
"@smithy/smithy-client": "^4.6.
|
|
154916
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
154839
154917
|
"@smithy/types": "^4.5.0",
|
|
154840
154918
|
"@smithy/url-parser": "^4.1.1",
|
|
154841
154919
|
"@smithy/util-base64": "^4.1.0",
|
|
154842
154920
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
154843
154921
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
154844
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
154845
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
154846
|
-
"@smithy/util-endpoints": "^3.1.
|
|
154922
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
154923
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
154924
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
154847
154925
|
"@smithy/util-middleware": "^4.1.1",
|
|
154848
|
-
"@smithy/util-retry": "^4.1.
|
|
154849
|
-
"@smithy/util-stream": "^4.3.
|
|
154926
|
+
"@smithy/util-retry": "^4.1.2",
|
|
154927
|
+
"@smithy/util-stream": "^4.3.2",
|
|
154850
154928
|
"@smithy/util-utf8": "^4.1.0",
|
|
154851
154929
|
tslib: "^2.6.2"
|
|
154852
154930
|
},
|
|
@@ -159374,7 +159452,7 @@ var require_package9 = __commonJS({
|
|
|
159374
159452
|
module2.exports = {
|
|
159375
159453
|
name: "@aws-sdk/client-cloudcontrol",
|
|
159376
159454
|
description: "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
|
|
159377
|
-
version: "3.
|
|
159455
|
+
version: "3.893.0",
|
|
159378
159456
|
scripts: {
|
|
159379
159457
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
159380
159458
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudcontrol",
|
|
@@ -159393,41 +159471,41 @@ var require_package9 = __commonJS({
|
|
|
159393
159471
|
dependencies: {
|
|
159394
159472
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
159395
159473
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
159396
|
-
"@aws-sdk/core": "3.
|
|
159397
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
159398
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
159399
|
-
"@aws-sdk/middleware-logger": "3.
|
|
159400
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
159401
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
159402
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
159403
|
-
"@aws-sdk/types": "3.
|
|
159404
|
-
"@aws-sdk/util-endpoints": "3.
|
|
159405
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
159406
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
159407
|
-
"@smithy/config-resolver": "^4.2.
|
|
159408
|
-
"@smithy/core": "^3.11.
|
|
159474
|
+
"@aws-sdk/core": "3.893.0",
|
|
159475
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
159476
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
159477
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
159478
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
159479
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
159480
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
159481
|
+
"@aws-sdk/types": "3.893.0",
|
|
159482
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
159483
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
159484
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
159485
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
159486
|
+
"@smithy/core": "^3.11.1",
|
|
159409
159487
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
159410
159488
|
"@smithy/hash-node": "^4.1.1",
|
|
159411
159489
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
159412
159490
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
159413
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
159414
|
-
"@smithy/middleware-retry": "^4.2.
|
|
159491
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
159492
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
159415
159493
|
"@smithy/middleware-serde": "^4.1.1",
|
|
159416
159494
|
"@smithy/middleware-stack": "^4.1.1",
|
|
159417
|
-
"@smithy/node-config-provider": "^4.2.
|
|
159495
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
159418
159496
|
"@smithy/node-http-handler": "^4.2.1",
|
|
159419
159497
|
"@smithy/protocol-http": "^5.2.1",
|
|
159420
|
-
"@smithy/smithy-client": "^4.6.
|
|
159498
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
159421
159499
|
"@smithy/types": "^4.5.0",
|
|
159422
159500
|
"@smithy/url-parser": "^4.1.1",
|
|
159423
159501
|
"@smithy/util-base64": "^4.1.0",
|
|
159424
159502
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
159425
159503
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
159426
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
159427
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
159428
|
-
"@smithy/util-endpoints": "^3.1.
|
|
159504
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
159505
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
159506
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
159429
159507
|
"@smithy/util-middleware": "^4.1.1",
|
|
159430
|
-
"@smithy/util-retry": "^4.1.
|
|
159508
|
+
"@smithy/util-retry": "^4.1.2",
|
|
159431
159509
|
"@smithy/util-utf8": "^4.1.0",
|
|
159432
159510
|
"@smithy/util-waiter": "^4.1.1",
|
|
159433
159511
|
"@types/uuid": "^9.0.1",
|
|
@@ -161218,7 +161296,7 @@ var require_package10 = __commonJS({
|
|
|
161218
161296
|
module2.exports = {
|
|
161219
161297
|
name: "@aws-sdk/client-cloudwatch-logs",
|
|
161220
161298
|
description: "AWS SDK for JavaScript Cloudwatch Logs Client for Node.js, Browser and React Native",
|
|
161221
|
-
version: "3.
|
|
161299
|
+
version: "3.893.0",
|
|
161222
161300
|
scripts: {
|
|
161223
161301
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
161224
161302
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudwatch-logs",
|
|
@@ -161237,19 +161315,19 @@ var require_package10 = __commonJS({
|
|
|
161237
161315
|
dependencies: {
|
|
161238
161316
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
161239
161317
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
161240
|
-
"@aws-sdk/core": "3.
|
|
161241
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
161242
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
161243
|
-
"@aws-sdk/middleware-logger": "3.
|
|
161244
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
161245
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
161246
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
161247
|
-
"@aws-sdk/types": "3.
|
|
161248
|
-
"@aws-sdk/util-endpoints": "3.
|
|
161249
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
161250
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
161251
|
-
"@smithy/config-resolver": "^4.2.
|
|
161252
|
-
"@smithy/core": "^3.11.
|
|
161318
|
+
"@aws-sdk/core": "3.893.0",
|
|
161319
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
161320
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
161321
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
161322
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
161323
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
161324
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
161325
|
+
"@aws-sdk/types": "3.893.0",
|
|
161326
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
161327
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
161328
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
161329
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
161330
|
+
"@smithy/core": "^3.11.1",
|
|
161253
161331
|
"@smithy/eventstream-serde-browser": "^4.1.1",
|
|
161254
161332
|
"@smithy/eventstream-serde-config-resolver": "^4.2.1",
|
|
161255
161333
|
"@smithy/eventstream-serde-node": "^4.1.1",
|
|
@@ -161257,24 +161335,24 @@ var require_package10 = __commonJS({
|
|
|
161257
161335
|
"@smithy/hash-node": "^4.1.1",
|
|
161258
161336
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
161259
161337
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
161260
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
161261
|
-
"@smithy/middleware-retry": "^4.2.
|
|
161338
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
161339
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
161262
161340
|
"@smithy/middleware-serde": "^4.1.1",
|
|
161263
161341
|
"@smithy/middleware-stack": "^4.1.1",
|
|
161264
|
-
"@smithy/node-config-provider": "^4.2.
|
|
161342
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
161265
161343
|
"@smithy/node-http-handler": "^4.2.1",
|
|
161266
161344
|
"@smithy/protocol-http": "^5.2.1",
|
|
161267
|
-
"@smithy/smithy-client": "^4.6.
|
|
161345
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
161268
161346
|
"@smithy/types": "^4.5.0",
|
|
161269
161347
|
"@smithy/url-parser": "^4.1.1",
|
|
161270
161348
|
"@smithy/util-base64": "^4.1.0",
|
|
161271
161349
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
161272
161350
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
161273
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
161274
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
161275
|
-
"@smithy/util-endpoints": "^3.1.
|
|
161351
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
161352
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
161353
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
161276
161354
|
"@smithy/util-middleware": "^4.1.1",
|
|
161277
|
-
"@smithy/util-retry": "^4.1.
|
|
161355
|
+
"@smithy/util-retry": "^4.1.2",
|
|
161278
161356
|
"@smithy/util-utf8": "^4.1.0",
|
|
161279
161357
|
"@types/uuid": "^9.0.1",
|
|
161280
161358
|
tslib: "^2.6.2",
|
|
@@ -164493,6 +164571,8 @@ var require_dist_cjs83 = __commonJS({
|
|
|
164493
164571
|
var se_PutMetricFilterRequest = /* @__PURE__ */ __name2((input, context) => {
|
|
164494
164572
|
return (0, import_smithy_client28.take)(input, {
|
|
164495
164573
|
applyOnTransformedLogs: [],
|
|
164574
|
+
emitSystemFieldDimensions: import_smithy_client28._json,
|
|
164575
|
+
fieldSelectionCriteria: [],
|
|
164496
164576
|
filterName: [],
|
|
164497
164577
|
filterPattern: [],
|
|
164498
164578
|
logGroupName: [],
|
|
@@ -164533,6 +164613,8 @@ var require_dist_cjs83 = __commonJS({
|
|
|
164533
164613
|
return (0, import_smithy_client28.take)(output, {
|
|
164534
164614
|
applyOnTransformedLogs: import_smithy_client28.expectBoolean,
|
|
164535
164615
|
creationTime: import_smithy_client28.expectLong,
|
|
164616
|
+
emitSystemFieldDimensions: import_smithy_client28._json,
|
|
164617
|
+
fieldSelectionCriteria: import_smithy_client28.expectString,
|
|
164536
164618
|
filterName: import_smithy_client28.expectString,
|
|
164537
164619
|
filterPattern: import_smithy_client28.expectString,
|
|
164538
164620
|
logGroupName: import_smithy_client28.expectString,
|
|
@@ -165979,7 +166061,7 @@ var require_package11 = __commonJS({
|
|
|
165979
166061
|
module2.exports = {
|
|
165980
166062
|
name: "@aws-sdk/client-codebuild",
|
|
165981
166063
|
description: "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
|
|
165982
|
-
version: "3.
|
|
166064
|
+
version: "3.893.0",
|
|
165983
166065
|
scripts: {
|
|
165984
166066
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
165985
166067
|
"build:cjs": "node ../../scripts/compilation/inline client-codebuild",
|
|
@@ -165998,41 +166080,41 @@ var require_package11 = __commonJS({
|
|
|
165998
166080
|
dependencies: {
|
|
165999
166081
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
166000
166082
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
166001
|
-
"@aws-sdk/core": "3.
|
|
166002
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
166003
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
166004
|
-
"@aws-sdk/middleware-logger": "3.
|
|
166005
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
166006
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
166007
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
166008
|
-
"@aws-sdk/types": "3.
|
|
166009
|
-
"@aws-sdk/util-endpoints": "3.
|
|
166010
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
166011
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
166012
|
-
"@smithy/config-resolver": "^4.2.
|
|
166013
|
-
"@smithy/core": "^3.11.
|
|
166083
|
+
"@aws-sdk/core": "3.893.0",
|
|
166084
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
166085
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
166086
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
166087
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
166088
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
166089
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
166090
|
+
"@aws-sdk/types": "3.893.0",
|
|
166091
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
166092
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
166093
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
166094
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
166095
|
+
"@smithy/core": "^3.11.1",
|
|
166014
166096
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
166015
166097
|
"@smithy/hash-node": "^4.1.1",
|
|
166016
166098
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
166017
166099
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
166018
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
166019
|
-
"@smithy/middleware-retry": "^4.2.
|
|
166100
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
166101
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
166020
166102
|
"@smithy/middleware-serde": "^4.1.1",
|
|
166021
166103
|
"@smithy/middleware-stack": "^4.1.1",
|
|
166022
|
-
"@smithy/node-config-provider": "^4.2.
|
|
166104
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
166023
166105
|
"@smithy/node-http-handler": "^4.2.1",
|
|
166024
166106
|
"@smithy/protocol-http": "^5.2.1",
|
|
166025
|
-
"@smithy/smithy-client": "^4.6.
|
|
166107
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
166026
166108
|
"@smithy/types": "^4.5.0",
|
|
166027
166109
|
"@smithy/url-parser": "^4.1.1",
|
|
166028
166110
|
"@smithy/util-base64": "^4.1.0",
|
|
166029
166111
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
166030
166112
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
166031
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
166032
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
166033
|
-
"@smithy/util-endpoints": "^3.1.
|
|
166113
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
166114
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
166115
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
166034
166116
|
"@smithy/util-middleware": "^4.1.1",
|
|
166035
|
-
"@smithy/util-retry": "^4.1.
|
|
166117
|
+
"@smithy/util-retry": "^4.1.2",
|
|
166036
166118
|
"@smithy/util-utf8": "^4.1.0",
|
|
166037
166119
|
tslib: "^2.6.2"
|
|
166038
166120
|
},
|
|
@@ -169836,7 +169918,7 @@ var require_package12 = __commonJS({
|
|
|
169836
169918
|
module2.exports = {
|
|
169837
169919
|
name: "@aws-sdk/client-ec2",
|
|
169838
169920
|
description: "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
169839
|
-
version: "3.
|
|
169921
|
+
version: "3.893.0",
|
|
169840
169922
|
scripts: {
|
|
169841
169923
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
169842
169924
|
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
|
|
@@ -169855,42 +169937,42 @@ var require_package12 = __commonJS({
|
|
|
169855
169937
|
dependencies: {
|
|
169856
169938
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
169857
169939
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
169858
|
-
"@aws-sdk/core": "3.
|
|
169859
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
169860
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
169861
|
-
"@aws-sdk/middleware-logger": "3.
|
|
169862
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
169863
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
169864
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
169865
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
169866
|
-
"@aws-sdk/types": "3.
|
|
169867
|
-
"@aws-sdk/util-endpoints": "3.
|
|
169868
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
169869
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
169870
|
-
"@smithy/config-resolver": "^4.2.
|
|
169871
|
-
"@smithy/core": "^3.11.
|
|
169940
|
+
"@aws-sdk/core": "3.893.0",
|
|
169941
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
169942
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
169943
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
169944
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
169945
|
+
"@aws-sdk/middleware-sdk-ec2": "3.893.0",
|
|
169946
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
169947
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
169948
|
+
"@aws-sdk/types": "3.893.0",
|
|
169949
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
169950
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
169951
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
169952
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
169953
|
+
"@smithy/core": "^3.11.1",
|
|
169872
169954
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
169873
169955
|
"@smithy/hash-node": "^4.1.1",
|
|
169874
169956
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
169875
169957
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
169876
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
169877
|
-
"@smithy/middleware-retry": "^4.2.
|
|
169958
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
169959
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
169878
169960
|
"@smithy/middleware-serde": "^4.1.1",
|
|
169879
169961
|
"@smithy/middleware-stack": "^4.1.1",
|
|
169880
|
-
"@smithy/node-config-provider": "^4.2.
|
|
169962
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
169881
169963
|
"@smithy/node-http-handler": "^4.2.1",
|
|
169882
169964
|
"@smithy/protocol-http": "^5.2.1",
|
|
169883
|
-
"@smithy/smithy-client": "^4.6.
|
|
169965
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
169884
169966
|
"@smithy/types": "^4.5.0",
|
|
169885
169967
|
"@smithy/url-parser": "^4.1.1",
|
|
169886
169968
|
"@smithy/util-base64": "^4.1.0",
|
|
169887
169969
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
169888
169970
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
169889
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
169890
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
169891
|
-
"@smithy/util-endpoints": "^3.1.
|
|
169971
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
169972
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
169973
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
169892
169974
|
"@smithy/util-middleware": "^4.1.1",
|
|
169893
|
-
"@smithy/util-retry": "^4.1.
|
|
169975
|
+
"@smithy/util-retry": "^4.1.2",
|
|
169894
169976
|
"@smithy/util-utf8": "^4.1.0",
|
|
169895
169977
|
"@smithy/util-waiter": "^4.1.1",
|
|
169896
169978
|
"@types/uuid": "^9.0.1",
|
|
@@ -193108,6 +193190,13 @@ var require_dist_cjs87 = __commonJS({
|
|
|
193108
193190
|
}
|
|
193109
193191
|
return entries;
|
|
193110
193192
|
}, "se_CreateVpnGatewayRequest");
|
|
193193
|
+
var se_CreationDateConditionRequest = /* @__PURE__ */ __name2((input, context) => {
|
|
193194
|
+
const entries = {};
|
|
193195
|
+
if (input[_MDSC] != null) {
|
|
193196
|
+
entries[_MDSC] = input[_MDSC];
|
|
193197
|
+
}
|
|
193198
|
+
return entries;
|
|
193199
|
+
}, "se_CreationDateConditionRequest");
|
|
193111
193200
|
var se_CreditSpecificationRequest = /* @__PURE__ */ __name2((input, context) => {
|
|
193112
193201
|
const entries = {};
|
|
193113
193202
|
if (input[_CCp] != null) {
|
|
@@ -194137,6 +194226,13 @@ var require_dist_cjs87 = __commonJS({
|
|
|
194137
194226
|
}
|
|
194138
194227
|
return entries;
|
|
194139
194228
|
}, "se_DeleteVpnGatewayRequest");
|
|
194229
|
+
var se_DeprecationTimeConditionRequest = /* @__PURE__ */ __name2((input, context) => {
|
|
194230
|
+
const entries = {};
|
|
194231
|
+
if (input[_MDSD] != null) {
|
|
194232
|
+
entries[_MDSD] = input[_MDSD];
|
|
194233
|
+
}
|
|
194234
|
+
return entries;
|
|
194235
|
+
}, "se_DeprecationTimeConditionRequest");
|
|
194140
194236
|
var se_DeprovisionByoipCidrRequest = /* @__PURE__ */ __name2((input, context) => {
|
|
194141
194237
|
const entries = {};
|
|
194142
194238
|
if (input[_C2] != null) {
|
|
@@ -201351,6 +201447,34 @@ var require_dist_cjs87 = __commonJS({
|
|
|
201351
201447
|
entries[loc] = value;
|
|
201352
201448
|
});
|
|
201353
201449
|
}
|
|
201450
|
+
if (input[_MPC] != null) {
|
|
201451
|
+
const memberEntries = se_MarketplaceProductCodeRequestList(input[_MPC], context);
|
|
201452
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
201453
|
+
const loc = `MarketplaceProductCode.${key.substring(key.indexOf(".") + 1)}`;
|
|
201454
|
+
entries[loc] = value;
|
|
201455
|
+
});
|
|
201456
|
+
}
|
|
201457
|
+
if (input[_INm] != null) {
|
|
201458
|
+
const memberEntries = se_ImageNameRequestList(input[_INm], context);
|
|
201459
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
201460
|
+
const loc = `ImageName.${key.substring(key.indexOf(".") + 1)}`;
|
|
201461
|
+
entries[loc] = value;
|
|
201462
|
+
});
|
|
201463
|
+
}
|
|
201464
|
+
if (input[_DTC] != null) {
|
|
201465
|
+
const memberEntries = se_DeprecationTimeConditionRequest(input[_DTC], context);
|
|
201466
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
201467
|
+
const loc = `DeprecationTimeCondition.${key}`;
|
|
201468
|
+
entries[loc] = value;
|
|
201469
|
+
});
|
|
201470
|
+
}
|
|
201471
|
+
if (input[_CDC] != null) {
|
|
201472
|
+
const memberEntries = se_CreationDateConditionRequest(input[_CDC], context);
|
|
201473
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
201474
|
+
const loc = `CreationDateCondition.${key}`;
|
|
201475
|
+
entries[loc] = value;
|
|
201476
|
+
});
|
|
201477
|
+
}
|
|
201354
201478
|
return entries;
|
|
201355
201479
|
}, "se_ImageCriterionRequest");
|
|
201356
201480
|
var se_ImageCriterionRequestList = /* @__PURE__ */ __name2((input, context) => {
|
|
@@ -201433,6 +201557,18 @@ var require_dist_cjs87 = __commonJS({
|
|
|
201433
201557
|
}
|
|
201434
201558
|
return entries;
|
|
201435
201559
|
}, "se_ImageIdStringList");
|
|
201560
|
+
var se_ImageNameRequestList = /* @__PURE__ */ __name2((input, context) => {
|
|
201561
|
+
const entries = {};
|
|
201562
|
+
let counter = 1;
|
|
201563
|
+
for (const entry of input) {
|
|
201564
|
+
if (entry === null) {
|
|
201565
|
+
continue;
|
|
201566
|
+
}
|
|
201567
|
+
entries[`Item.${counter}`] = entry;
|
|
201568
|
+
counter++;
|
|
201569
|
+
}
|
|
201570
|
+
return entries;
|
|
201571
|
+
}, "se_ImageNameRequestList");
|
|
201436
201572
|
var se_ImageProviderRequestList = /* @__PURE__ */ __name2((input, context) => {
|
|
201437
201573
|
const entries = {};
|
|
201438
201574
|
let counter = 1;
|
|
@@ -203798,6 +203934,18 @@ var require_dist_cjs87 = __commonJS({
|
|
|
203798
203934
|
}
|
|
203799
203935
|
return entries;
|
|
203800
203936
|
}, "se_MacSystemIntegrityProtectionConfigurationRequest");
|
|
203937
|
+
var se_MarketplaceProductCodeRequestList = /* @__PURE__ */ __name2((input, context) => {
|
|
203938
|
+
const entries = {};
|
|
203939
|
+
let counter = 1;
|
|
203940
|
+
for (const entry of input) {
|
|
203941
|
+
if (entry === null) {
|
|
203942
|
+
continue;
|
|
203943
|
+
}
|
|
203944
|
+
entries[`Item.${counter}`] = entry;
|
|
203945
|
+
counter++;
|
|
203946
|
+
}
|
|
203947
|
+
return entries;
|
|
203948
|
+
}, "se_MarketplaceProductCodeRequestList");
|
|
203801
203949
|
var se_MemoryGiBPerVCpu = /* @__PURE__ */ __name2((input, context) => {
|
|
203802
203950
|
const entries = {};
|
|
203803
203951
|
if (input[_M] != null) {
|
|
@@ -215120,6 +215268,13 @@ var require_dist_cjs87 = __commonJS({
|
|
|
215120
215268
|
}
|
|
215121
215269
|
return contents;
|
|
215122
215270
|
}, "de_CreateVpnGatewayResult");
|
|
215271
|
+
var de_CreationDateCondition = /* @__PURE__ */ __name2((output, context) => {
|
|
215272
|
+
const contents = {};
|
|
215273
|
+
if (output[_mDSC] != null) {
|
|
215274
|
+
contents[_MDSC] = (0, import_smithy_client28.strictParseInt32)(output[_mDSC]);
|
|
215275
|
+
}
|
|
215276
|
+
return contents;
|
|
215277
|
+
}, "de_CreationDateCondition");
|
|
215123
215278
|
var de_CreditSpecification = /* @__PURE__ */ __name2((output, context) => {
|
|
215124
215279
|
const contents = {};
|
|
215125
215280
|
if (output[_cCp] != null) {
|
|
@@ -215833,6 +215988,13 @@ var require_dist_cjs87 = __commonJS({
|
|
|
215833
215988
|
}
|
|
215834
215989
|
return contents;
|
|
215835
215990
|
}, "de_DeleteVpcPeeringConnectionResult");
|
|
215991
|
+
var de_DeprecationTimeCondition = /* @__PURE__ */ __name2((output, context) => {
|
|
215992
|
+
const contents = {};
|
|
215993
|
+
if (output[_mDSD] != null) {
|
|
215994
|
+
contents[_MDSD] = (0, import_smithy_client28.strictParseInt32)(output[_mDSD]);
|
|
215995
|
+
}
|
|
215996
|
+
return contents;
|
|
215997
|
+
}, "de_DeprecationTimeCondition");
|
|
215836
215998
|
var de_DeprovisionByoipCidrResult = /* @__PURE__ */ __name2((output, context) => {
|
|
215837
215999
|
const contents = {};
|
|
215838
216000
|
if (output[_bC] != null) {
|
|
@@ -221447,6 +221609,22 @@ var require_dist_cjs87 = __commonJS({
|
|
|
221447
221609
|
} else if (output[_iPSm] != null && output[_iPSm][_i] != null) {
|
|
221448
221610
|
contents[_IPm] = de_ImageProviderList((0, import_smithy_client28.getArrayIfSingleItem)(output[_iPSm][_i]), context);
|
|
221449
221611
|
}
|
|
221612
|
+
if (output.marketplaceProductCodeSet === "") {
|
|
221613
|
+
contents[_MPC] = [];
|
|
221614
|
+
} else if (output[_mPCS] != null && output[_mPCS][_i] != null) {
|
|
221615
|
+
contents[_MPC] = de_MarketplaceProductCodeList((0, import_smithy_client28.getArrayIfSingleItem)(output[_mPCS][_i]), context);
|
|
221616
|
+
}
|
|
221617
|
+
if (output.imageNameSet === "") {
|
|
221618
|
+
contents[_INm] = [];
|
|
221619
|
+
} else if (output[_iNS] != null && output[_iNS][_i] != null) {
|
|
221620
|
+
contents[_INm] = de_ImageNameList((0, import_smithy_client28.getArrayIfSingleItem)(output[_iNS][_i]), context);
|
|
221621
|
+
}
|
|
221622
|
+
if (output[_dTC] != null) {
|
|
221623
|
+
contents[_DTC] = de_DeprecationTimeCondition(output[_dTC], context);
|
|
221624
|
+
}
|
|
221625
|
+
if (output[_cDC] != null) {
|
|
221626
|
+
contents[_CDC] = de_CreationDateCondition(output[_cDC], context);
|
|
221627
|
+
}
|
|
221450
221628
|
return contents;
|
|
221451
221629
|
}, "de_ImageCriterion");
|
|
221452
221630
|
var de_ImageCriterionList = /* @__PURE__ */ __name2((output, context) => {
|
|
@@ -221490,6 +221668,11 @@ var require_dist_cjs87 = __commonJS({
|
|
|
221490
221668
|
}
|
|
221491
221669
|
return contents;
|
|
221492
221670
|
}, "de_ImageMetadata");
|
|
221671
|
+
var de_ImageNameList = /* @__PURE__ */ __name2((output, context) => {
|
|
221672
|
+
return (output || []).filter((e3) => e3 != null).map((entry) => {
|
|
221673
|
+
return (0, import_smithy_client28.expectString)(entry);
|
|
221674
|
+
});
|
|
221675
|
+
}, "de_ImageNameList");
|
|
221493
221676
|
var de_ImageProviderList = /* @__PURE__ */ __name2((output, context) => {
|
|
221494
221677
|
return (output || []).filter((e3) => e3 != null).map((entry) => {
|
|
221495
221678
|
return (0, import_smithy_client28.expectString)(entry);
|
|
@@ -225501,6 +225684,11 @@ var require_dist_cjs87 = __commonJS({
|
|
|
225501
225684
|
return de_ManagedPrefixList(entry, context);
|
|
225502
225685
|
});
|
|
225503
225686
|
}, "de_ManagedPrefixListSet");
|
|
225687
|
+
var de_MarketplaceProductCodeList = /* @__PURE__ */ __name2((output, context) => {
|
|
225688
|
+
return (output || []).filter((e3) => e3 != null).map((entry) => {
|
|
225689
|
+
return (0, import_smithy_client28.expectString)(entry);
|
|
225690
|
+
});
|
|
225691
|
+
}, "de_MarketplaceProductCodeList");
|
|
225504
225692
|
var de_MediaAcceleratorInfo = /* @__PURE__ */ __name2((output, context) => {
|
|
225505
225693
|
const contents = {};
|
|
225506
225694
|
if (output.accelerators === "") {
|
|
@@ -234668,6 +234856,7 @@ var require_dist_cjs87 = __commonJS({
|
|
|
234668
234856
|
var _CCp = "CpuCredits";
|
|
234669
234857
|
var _CCu = "CurrencyCode";
|
|
234670
234858
|
var _CD = "CommitmentDuration";
|
|
234859
|
+
var _CDC = "CreationDateCondition";
|
|
234671
234860
|
var _CDH = "CapacityDurationHours";
|
|
234672
234861
|
var _CDM = "CompletionDurationMinutes";
|
|
234673
234862
|
var _CDMVOT = "CreateDelegateMacVolumeOwnershipTask";
|
|
@@ -235225,6 +235414,7 @@ var require_dist_cjs87 = __commonJS({
|
|
|
235225
235414
|
var _DSns = "DnsSupport";
|
|
235226
235415
|
var _DT = "DeleteTags";
|
|
235227
235416
|
var _DTA = "DpdTimeoutAction";
|
|
235417
|
+
var _DTC = "DeprecationTimeCondition";
|
|
235228
235418
|
var _DTCT = "DefaultTargetCapacityType";
|
|
235229
235419
|
var _DTG = "DeleteTransitGateway";
|
|
235230
235420
|
var _DTGA = "DescribeTransitGatewayAttachments";
|
|
@@ -235746,6 +235936,7 @@ var require_dist_cjs87 = __commonJS({
|
|
|
235746
235936
|
var _IN = "Ipv6Native";
|
|
235747
235937
|
var _INL = "Ipv6NetmaskLength";
|
|
235748
235938
|
var _INLp = "Ipv4NetmaskLength";
|
|
235939
|
+
var _INm = "ImageNames";
|
|
235749
235940
|
var _IOA = "ImageOwnerAlias";
|
|
235750
235941
|
var _IOI = "IpOwnerId";
|
|
235751
235942
|
var _IOIn = "InstanceOwnerId";
|
|
@@ -236029,6 +236220,8 @@ var require_dist_cjs87 = __commonJS({
|
|
|
236029
236220
|
var _MDCS = "ModifyDefaultCreditSpecification";
|
|
236030
236221
|
var _MDDS = "MaxDrainDurationSeconds";
|
|
236031
236222
|
var _MDK = "MetaDataKey";
|
|
236223
|
+
var _MDSC = "MaximumDaysSinceCreated";
|
|
236224
|
+
var _MDSD = "MaximumDaysSinceDeprecated";
|
|
236032
236225
|
var _MDV = "MetaDataValue";
|
|
236033
236226
|
var _MDa = "MaintenanceDetails";
|
|
236034
236227
|
var _MDe = "MetaData";
|
|
@@ -236087,6 +236280,7 @@ var require_dist_cjs87 = __commonJS({
|
|
|
236087
236280
|
var _MOSLSV = "MacOSLatestSupportedVersions";
|
|
236088
236281
|
var _MOa = "MaintenanceOptions";
|
|
236089
236282
|
var _MP = "MatchPaths";
|
|
236283
|
+
var _MPC = "MarketplaceProductCodes";
|
|
236090
236284
|
var _MPDNO = "ModifyPrivateDnsNameOptions";
|
|
236091
236285
|
var _MPIDNO = "ModifyPublicIpDnsNameOptions";
|
|
236092
236286
|
var _MPIOL = "MapPublicIpOnLaunch";
|
|
@@ -237460,6 +237654,7 @@ var require_dist_cjs87 = __commonJS({
|
|
|
237460
237654
|
var _cCoi = "coipCidr";
|
|
237461
237655
|
var _cCp = "cpuCredits";
|
|
237462
237656
|
var _cD = "createDate";
|
|
237657
|
+
var _cDC = "creationDateCondition";
|
|
237463
237658
|
var _cDM = "completionDurationMinutes";
|
|
237464
237659
|
var _cDr = "creationDate";
|
|
237465
237660
|
var _cDre = "createdDate";
|
|
@@ -237660,6 +237855,7 @@ var require_dist_cjs87 = __commonJS({
|
|
|
237660
237855
|
var _dSn = "dnsSupport";
|
|
237661
237856
|
var _dT = "deletionTime";
|
|
237662
237857
|
var _dTA = "dpdTimeoutAction";
|
|
237858
|
+
var _dTC = "deprecationTimeCondition";
|
|
237663
237859
|
var _dTCT = "defaultTargetCapacityType";
|
|
237664
237860
|
var _dTPC = "defaultThreadsPerCore";
|
|
237665
237861
|
var _dTPS = "deviceTrustProviderSet";
|
|
@@ -237964,6 +238160,7 @@ var require_dist_cjs87 = __commonJS({
|
|
|
237964
238160
|
var _iMT = "instanceMetadataTags";
|
|
237965
238161
|
var _iMU = "importManifestUrl";
|
|
237966
238162
|
var _iN = "ipv6Native";
|
|
238163
|
+
var _iNS = "imageNameSet";
|
|
237967
238164
|
var _iOA = "imageOwnerAlias";
|
|
237968
238165
|
var _iOI = "imageOwnerId";
|
|
237969
238166
|
var _iOIn = "instanceOwnerId";
|
|
@@ -238206,6 +238403,8 @@ var require_dist_cjs87 = __commonJS({
|
|
|
238206
238403
|
var _mD = "maintenanceDetails";
|
|
238207
238404
|
var _mDA = "multicastDomainAssociations";
|
|
238208
238405
|
var _mDK = "metaDataKey";
|
|
238406
|
+
var _mDSC = "maximumDaysSinceCreated";
|
|
238407
|
+
var _mDSD = "maximumDaysSinceDeprecated";
|
|
238209
238408
|
var _mDV = "metaDataValue";
|
|
238210
238409
|
var _mDe = "metaData";
|
|
238211
238410
|
var _mE = "maxEntries";
|
|
@@ -238231,6 +238430,7 @@ var require_dist_cjs87 = __commonJS({
|
|
|
238231
238430
|
var _mOSLSVS = "macOSLatestSupportedVersionSet";
|
|
238232
238431
|
var _mOa = "maintenanceOptions";
|
|
238233
238432
|
var _mP = "maxPrice";
|
|
238433
|
+
var _mPCS = "marketplaceProductCodeSet";
|
|
238234
238434
|
var _mPIOL = "mapPublicIpOnLaunch";
|
|
238235
238435
|
var _mPL = "maxParallelLaunches";
|
|
238236
238436
|
var _mPS = "metricPointSet";
|
|
@@ -241154,6 +241354,8 @@ var require_dist_cjs87 = __commonJS({
|
|
|
241154
241354
|
mac2_m2_metal: "mac2-m2.metal",
|
|
241155
241355
|
mac2_m2pro_metal: "mac2-m2pro.metal",
|
|
241156
241356
|
mac2_metal: "mac2.metal",
|
|
241357
|
+
mac_m4_metal: "mac-m4.metal",
|
|
241358
|
+
mac_m4pro_metal: "mac-m4pro.metal",
|
|
241157
241359
|
p2_16xlarge: "p2.16xlarge",
|
|
241158
241360
|
p2_8xlarge: "p2.8xlarge",
|
|
241159
241361
|
p2_xlarge: "p2.xlarge",
|
|
@@ -249375,10 +249577,6 @@ var require_dist_cjs87 = __commonJS({
|
|
|
249375
249577
|
inVpc: "InVpc",
|
|
249376
249578
|
moveInProgress: "MoveInProgress"
|
|
249377
249579
|
};
|
|
249378
|
-
var VerificationMethod = {
|
|
249379
|
-
dns_token: "dns-token",
|
|
249380
|
-
remarks_x509: "remarks-x509"
|
|
249381
|
-
};
|
|
249382
249580
|
var GetPasswordDataResultFilterSensitiveLog = /* @__PURE__ */ __name2((obj) => ({
|
|
249383
249581
|
...obj,
|
|
249384
249582
|
...obj.PasswordData && { PasswordData: import_smithy_client28.SENSITIVE_STRING }
|
|
@@ -251308,6 +251506,10 @@ var require_dist_cjs87 = __commonJS({
|
|
|
251308
251506
|
__name2(this, "ReplaceVpnTunnelCommand");
|
|
251309
251507
|
}
|
|
251310
251508
|
};
|
|
251509
|
+
var VerificationMethod = {
|
|
251510
|
+
dns_token: "dns-token",
|
|
251511
|
+
remarks_x509: "remarks-x509"
|
|
251512
|
+
};
|
|
251311
251513
|
var ReportInstanceReasonCodes = {
|
|
251312
251514
|
instance_stuck_in_state: "instance-stuck-in-state",
|
|
251313
251515
|
not_accepting_credentials: "not-accepting-credentials",
|
|
@@ -254778,7 +254980,7 @@ var require_package13 = __commonJS({
|
|
|
254778
254980
|
module2.exports = {
|
|
254779
254981
|
name: "@aws-sdk/client-ecs",
|
|
254780
254982
|
description: "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
254781
|
-
version: "3.
|
|
254983
|
+
version: "3.893.0",
|
|
254782
254984
|
scripts: {
|
|
254783
254985
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
254784
254986
|
"build:cjs": "node ../../scripts/compilation/inline client-ecs",
|
|
@@ -254797,41 +254999,41 @@ var require_package13 = __commonJS({
|
|
|
254797
254999
|
dependencies: {
|
|
254798
255000
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
254799
255001
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
254800
|
-
"@aws-sdk/core": "3.
|
|
254801
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
254802
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
254803
|
-
"@aws-sdk/middleware-logger": "3.
|
|
254804
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
254805
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
254806
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
254807
|
-
"@aws-sdk/types": "3.
|
|
254808
|
-
"@aws-sdk/util-endpoints": "3.
|
|
254809
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
254810
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
254811
|
-
"@smithy/config-resolver": "^4.2.
|
|
254812
|
-
"@smithy/core": "^3.11.
|
|
255002
|
+
"@aws-sdk/core": "3.893.0",
|
|
255003
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
255004
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
255005
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
255006
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
255007
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
255008
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
255009
|
+
"@aws-sdk/types": "3.893.0",
|
|
255010
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
255011
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
255012
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
255013
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
255014
|
+
"@smithy/core": "^3.11.1",
|
|
254813
255015
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
254814
255016
|
"@smithy/hash-node": "^4.1.1",
|
|
254815
255017
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
254816
255018
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
254817
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
254818
|
-
"@smithy/middleware-retry": "^4.2.
|
|
255019
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
255020
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
254819
255021
|
"@smithy/middleware-serde": "^4.1.1",
|
|
254820
255022
|
"@smithy/middleware-stack": "^4.1.1",
|
|
254821
|
-
"@smithy/node-config-provider": "^4.2.
|
|
255023
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
254822
255024
|
"@smithy/node-http-handler": "^4.2.1",
|
|
254823
255025
|
"@smithy/protocol-http": "^5.2.1",
|
|
254824
|
-
"@smithy/smithy-client": "^4.6.
|
|
255026
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
254825
255027
|
"@smithy/types": "^4.5.0",
|
|
254826
255028
|
"@smithy/url-parser": "^4.1.1",
|
|
254827
255029
|
"@smithy/util-base64": "^4.1.0",
|
|
254828
255030
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
254829
255031
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
254830
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
254831
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
254832
|
-
"@smithy/util-endpoints": "^3.1.
|
|
255032
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
255033
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
255034
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
254833
255035
|
"@smithy/util-middleware": "^4.1.1",
|
|
254834
|
-
"@smithy/util-retry": "^4.1.
|
|
255036
|
+
"@smithy/util-retry": "^4.1.2",
|
|
254835
255037
|
"@smithy/util-utf8": "^4.1.0",
|
|
254836
255038
|
"@smithy/util-waiter": "^4.1.1",
|
|
254837
255039
|
"@types/uuid": "^9.0.1",
|
|
@@ -259778,7 +259980,7 @@ var require_package14 = __commonJS({
|
|
|
259778
259980
|
module2.exports = {
|
|
259779
259981
|
name: "@aws-sdk/client-elastic-load-balancing-v2",
|
|
259780
259982
|
description: "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
|
|
259781
|
-
version: "3.
|
|
259983
|
+
version: "3.893.0",
|
|
259782
259984
|
scripts: {
|
|
259783
259985
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
259784
259986
|
"build:cjs": "node ../../scripts/compilation/inline client-elastic-load-balancing-v2",
|
|
@@ -259797,41 +259999,41 @@ var require_package14 = __commonJS({
|
|
|
259797
259999
|
dependencies: {
|
|
259798
260000
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
259799
260001
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
259800
|
-
"@aws-sdk/core": "3.
|
|
259801
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
259802
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
259803
|
-
"@aws-sdk/middleware-logger": "3.
|
|
259804
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
259805
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
259806
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
259807
|
-
"@aws-sdk/types": "3.
|
|
259808
|
-
"@aws-sdk/util-endpoints": "3.
|
|
259809
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
259810
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
259811
|
-
"@smithy/config-resolver": "^4.2.
|
|
259812
|
-
"@smithy/core": "^3.11.
|
|
260002
|
+
"@aws-sdk/core": "3.893.0",
|
|
260003
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
260004
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
260005
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
260006
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
260007
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
260008
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
260009
|
+
"@aws-sdk/types": "3.893.0",
|
|
260010
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
260011
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
260012
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
260013
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
260014
|
+
"@smithy/core": "^3.11.1",
|
|
259813
260015
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
259814
260016
|
"@smithy/hash-node": "^4.1.1",
|
|
259815
260017
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
259816
260018
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
259817
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
259818
|
-
"@smithy/middleware-retry": "^4.2.
|
|
260019
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
260020
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
259819
260021
|
"@smithy/middleware-serde": "^4.1.1",
|
|
259820
260022
|
"@smithy/middleware-stack": "^4.1.1",
|
|
259821
|
-
"@smithy/node-config-provider": "^4.2.
|
|
260023
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
259822
260024
|
"@smithy/node-http-handler": "^4.2.1",
|
|
259823
260025
|
"@smithy/protocol-http": "^5.2.1",
|
|
259824
|
-
"@smithy/smithy-client": "^4.6.
|
|
260026
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
259825
260027
|
"@smithy/types": "^4.5.0",
|
|
259826
260028
|
"@smithy/url-parser": "^4.1.1",
|
|
259827
260029
|
"@smithy/util-base64": "^4.1.0",
|
|
259828
260030
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
259829
260031
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
259830
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
259831
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
259832
|
-
"@smithy/util-endpoints": "^3.1.
|
|
260032
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
260033
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
260034
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
259833
260035
|
"@smithy/util-middleware": "^4.1.1",
|
|
259834
|
-
"@smithy/util-retry": "^4.1.
|
|
260036
|
+
"@smithy/util-retry": "^4.1.2",
|
|
259835
260037
|
"@smithy/util-utf8": "^4.1.0",
|
|
259836
260038
|
"@smithy/util-waiter": "^4.1.1",
|
|
259837
260039
|
tslib: "^2.6.2"
|
|
@@ -268728,7 +268930,7 @@ var require_package15 = __commonJS({
|
|
|
268728
268930
|
module2.exports = {
|
|
268729
268931
|
name: "@aws-sdk/client-iam",
|
|
268730
268932
|
description: "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
|
|
268731
|
-
version: "3.
|
|
268933
|
+
version: "3.893.0",
|
|
268732
268934
|
scripts: {
|
|
268733
268935
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
268734
268936
|
"build:cjs": "node ../../scripts/compilation/inline client-iam",
|
|
@@ -268747,41 +268949,41 @@ var require_package15 = __commonJS({
|
|
|
268747
268949
|
dependencies: {
|
|
268748
268950
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
268749
268951
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
268750
|
-
"@aws-sdk/core": "3.
|
|
268751
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
268752
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
268753
|
-
"@aws-sdk/middleware-logger": "3.
|
|
268754
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
268755
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
268756
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
268757
|
-
"@aws-sdk/types": "3.
|
|
268758
|
-
"@aws-sdk/util-endpoints": "3.
|
|
268759
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
268760
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
268761
|
-
"@smithy/config-resolver": "^4.2.
|
|
268762
|
-
"@smithy/core": "^3.11.
|
|
268952
|
+
"@aws-sdk/core": "3.893.0",
|
|
268953
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
268954
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
268955
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
268956
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
268957
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
268958
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
268959
|
+
"@aws-sdk/types": "3.893.0",
|
|
268960
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
268961
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
268962
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
268963
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
268964
|
+
"@smithy/core": "^3.11.1",
|
|
268763
268965
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
268764
268966
|
"@smithy/hash-node": "^4.1.1",
|
|
268765
268967
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
268766
268968
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
268767
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
268768
|
-
"@smithy/middleware-retry": "^4.2.
|
|
268969
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
268970
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
268769
268971
|
"@smithy/middleware-serde": "^4.1.1",
|
|
268770
268972
|
"@smithy/middleware-stack": "^4.1.1",
|
|
268771
|
-
"@smithy/node-config-provider": "^4.2.
|
|
268973
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
268772
268974
|
"@smithy/node-http-handler": "^4.2.1",
|
|
268773
268975
|
"@smithy/protocol-http": "^5.2.1",
|
|
268774
|
-
"@smithy/smithy-client": "^4.6.
|
|
268976
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
268775
268977
|
"@smithy/types": "^4.5.0",
|
|
268776
268978
|
"@smithy/url-parser": "^4.1.1",
|
|
268777
268979
|
"@smithy/util-base64": "^4.1.0",
|
|
268778
268980
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
268779
268981
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
268780
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
268781
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
268782
|
-
"@smithy/util-endpoints": "^3.1.
|
|
268982
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
268983
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
268984
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
268783
268985
|
"@smithy/util-middleware": "^4.1.1",
|
|
268784
|
-
"@smithy/util-retry": "^4.1.
|
|
268986
|
+
"@smithy/util-retry": "^4.1.2",
|
|
268785
268987
|
"@smithy/util-utf8": "^4.1.0",
|
|
268786
268988
|
"@smithy/util-waiter": "^4.1.1",
|
|
268787
268989
|
tslib: "^2.6.2"
|
|
@@ -282168,7 +282370,7 @@ var require_package16 = __commonJS({
|
|
|
282168
282370
|
module2.exports = {
|
|
282169
282371
|
name: "@aws-sdk/client-kms",
|
|
282170
282372
|
description: "AWS SDK for JavaScript Kms Client for Node.js, Browser and React Native",
|
|
282171
|
-
version: "3.
|
|
282373
|
+
version: "3.893.0",
|
|
282172
282374
|
scripts: {
|
|
282173
282375
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
282174
282376
|
"build:cjs": "node ../../scripts/compilation/inline client-kms",
|
|
@@ -282187,41 +282389,41 @@ var require_package16 = __commonJS({
|
|
|
282187
282389
|
dependencies: {
|
|
282188
282390
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
282189
282391
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
282190
|
-
"@aws-sdk/core": "3.
|
|
282191
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
282192
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
282193
|
-
"@aws-sdk/middleware-logger": "3.
|
|
282194
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
282195
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
282196
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
282197
|
-
"@aws-sdk/types": "3.
|
|
282198
|
-
"@aws-sdk/util-endpoints": "3.
|
|
282199
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
282200
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
282201
|
-
"@smithy/config-resolver": "^4.2.
|
|
282202
|
-
"@smithy/core": "^3.11.
|
|
282392
|
+
"@aws-sdk/core": "3.893.0",
|
|
282393
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
282394
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
282395
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
282396
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
282397
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
282398
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
282399
|
+
"@aws-sdk/types": "3.893.0",
|
|
282400
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
282401
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
282402
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
282403
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
282404
|
+
"@smithy/core": "^3.11.1",
|
|
282203
282405
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
282204
282406
|
"@smithy/hash-node": "^4.1.1",
|
|
282205
282407
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
282206
282408
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
282207
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
282208
|
-
"@smithy/middleware-retry": "^4.2.
|
|
282409
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
282410
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
282209
282411
|
"@smithy/middleware-serde": "^4.1.1",
|
|
282210
282412
|
"@smithy/middleware-stack": "^4.1.1",
|
|
282211
|
-
"@smithy/node-config-provider": "^4.2.
|
|
282413
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
282212
282414
|
"@smithy/node-http-handler": "^4.2.1",
|
|
282213
282415
|
"@smithy/protocol-http": "^5.2.1",
|
|
282214
|
-
"@smithy/smithy-client": "^4.6.
|
|
282416
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
282215
282417
|
"@smithy/types": "^4.5.0",
|
|
282216
282418
|
"@smithy/url-parser": "^4.1.1",
|
|
282217
282419
|
"@smithy/util-base64": "^4.1.0",
|
|
282218
282420
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
282219
282421
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
282220
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
282221
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
282222
|
-
"@smithy/util-endpoints": "^3.1.
|
|
282422
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
282423
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
282424
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
282223
282425
|
"@smithy/util-middleware": "^4.1.1",
|
|
282224
|
-
"@smithy/util-retry": "^4.1.
|
|
282426
|
+
"@smithy/util-retry": "^4.1.2",
|
|
282225
282427
|
"@smithy/util-utf8": "^4.1.0",
|
|
282226
282428
|
tslib: "^2.6.2"
|
|
282227
282429
|
},
|
|
@@ -286869,7 +287071,7 @@ var require_package17 = __commonJS({
|
|
|
286869
287071
|
module2.exports = {
|
|
286870
287072
|
name: "@aws-sdk/client-lambda",
|
|
286871
287073
|
description: "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
|
|
286872
|
-
version: "3.
|
|
287074
|
+
version: "3.893.0",
|
|
286873
287075
|
scripts: {
|
|
286874
287076
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
286875
287077
|
"build:cjs": "node ../../scripts/compilation/inline client-lambda",
|
|
@@ -286888,19 +287090,19 @@ var require_package17 = __commonJS({
|
|
|
286888
287090
|
dependencies: {
|
|
286889
287091
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
286890
287092
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
286891
|
-
"@aws-sdk/core": "3.
|
|
286892
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
286893
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
286894
|
-
"@aws-sdk/middleware-logger": "3.
|
|
286895
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
286896
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
286897
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
286898
|
-
"@aws-sdk/types": "3.
|
|
286899
|
-
"@aws-sdk/util-endpoints": "3.
|
|
286900
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
286901
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
286902
|
-
"@smithy/config-resolver": "^4.2.
|
|
286903
|
-
"@smithy/core": "^3.11.
|
|
287093
|
+
"@aws-sdk/core": "3.893.0",
|
|
287094
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
287095
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
287096
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
287097
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
287098
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
287099
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
287100
|
+
"@aws-sdk/types": "3.893.0",
|
|
287101
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
287102
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
287103
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
287104
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
287105
|
+
"@smithy/core": "^3.11.1",
|
|
286904
287106
|
"@smithy/eventstream-serde-browser": "^4.1.1",
|
|
286905
287107
|
"@smithy/eventstream-serde-config-resolver": "^4.2.1",
|
|
286906
287108
|
"@smithy/eventstream-serde-node": "^4.1.1",
|
|
@@ -286908,25 +287110,25 @@ var require_package17 = __commonJS({
|
|
|
286908
287110
|
"@smithy/hash-node": "^4.1.1",
|
|
286909
287111
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
286910
287112
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
286911
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
286912
|
-
"@smithy/middleware-retry": "^4.2.
|
|
287113
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
287114
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
286913
287115
|
"@smithy/middleware-serde": "^4.1.1",
|
|
286914
287116
|
"@smithy/middleware-stack": "^4.1.1",
|
|
286915
|
-
"@smithy/node-config-provider": "^4.2.
|
|
287117
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
286916
287118
|
"@smithy/node-http-handler": "^4.2.1",
|
|
286917
287119
|
"@smithy/protocol-http": "^5.2.1",
|
|
286918
|
-
"@smithy/smithy-client": "^4.6.
|
|
287120
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
286919
287121
|
"@smithy/types": "^4.5.0",
|
|
286920
287122
|
"@smithy/url-parser": "^4.1.1",
|
|
286921
287123
|
"@smithy/util-base64": "^4.1.0",
|
|
286922
287124
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
286923
287125
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
286924
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
286925
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
286926
|
-
"@smithy/util-endpoints": "^3.1.
|
|
287126
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
287127
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
287128
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
286927
287129
|
"@smithy/util-middleware": "^4.1.1",
|
|
286928
|
-
"@smithy/util-retry": "^4.1.
|
|
286929
|
-
"@smithy/util-stream": "^4.3.
|
|
287130
|
+
"@smithy/util-retry": "^4.1.2",
|
|
287131
|
+
"@smithy/util-stream": "^4.3.2",
|
|
286930
287132
|
"@smithy/util-utf8": "^4.1.0",
|
|
286931
287133
|
"@smithy/util-waiter": "^4.1.1",
|
|
286932
287134
|
tslib: "^2.6.2"
|
|
@@ -293319,7 +293521,7 @@ var require_package18 = __commonJS({
|
|
|
293319
293521
|
module2.exports = {
|
|
293320
293522
|
name: "@aws-sdk/client-route-53",
|
|
293321
293523
|
description: "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native",
|
|
293322
|
-
version: "3.
|
|
293524
|
+
version: "3.893.0",
|
|
293323
293525
|
scripts: {
|
|
293324
293526
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
293325
293527
|
"build:cjs": "node ../../scripts/compilation/inline client-route-53",
|
|
@@ -293338,43 +293540,43 @@ var require_package18 = __commonJS({
|
|
|
293338
293540
|
dependencies: {
|
|
293339
293541
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
293340
293542
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
293341
|
-
"@aws-sdk/core": "3.
|
|
293342
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
293343
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
293344
|
-
"@aws-sdk/middleware-logger": "3.
|
|
293345
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
293346
|
-
"@aws-sdk/middleware-sdk-route53": "3.
|
|
293347
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
293348
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
293349
|
-
"@aws-sdk/types": "3.
|
|
293350
|
-
"@aws-sdk/util-endpoints": "3.
|
|
293351
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
293352
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
293353
|
-
"@aws-sdk/xml-builder": "3.
|
|
293354
|
-
"@smithy/config-resolver": "^4.2.
|
|
293355
|
-
"@smithy/core": "^3.11.
|
|
293543
|
+
"@aws-sdk/core": "3.893.0",
|
|
293544
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
293545
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
293546
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
293547
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
293548
|
+
"@aws-sdk/middleware-sdk-route53": "3.893.0",
|
|
293549
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
293550
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
293551
|
+
"@aws-sdk/types": "3.893.0",
|
|
293552
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
293553
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
293554
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
293555
|
+
"@aws-sdk/xml-builder": "3.893.0",
|
|
293556
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
293557
|
+
"@smithy/core": "^3.11.1",
|
|
293356
293558
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
293357
293559
|
"@smithy/hash-node": "^4.1.1",
|
|
293358
293560
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
293359
293561
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
293360
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
293361
|
-
"@smithy/middleware-retry": "^4.2.
|
|
293562
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
293563
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
293362
293564
|
"@smithy/middleware-serde": "^4.1.1",
|
|
293363
293565
|
"@smithy/middleware-stack": "^4.1.1",
|
|
293364
|
-
"@smithy/node-config-provider": "^4.2.
|
|
293566
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
293365
293567
|
"@smithy/node-http-handler": "^4.2.1",
|
|
293366
293568
|
"@smithy/protocol-http": "^5.2.1",
|
|
293367
|
-
"@smithy/smithy-client": "^4.6.
|
|
293569
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
293368
293570
|
"@smithy/types": "^4.5.0",
|
|
293369
293571
|
"@smithy/url-parser": "^4.1.1",
|
|
293370
293572
|
"@smithy/util-base64": "^4.1.0",
|
|
293371
293573
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
293372
293574
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
293373
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
293374
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
293375
|
-
"@smithy/util-endpoints": "^3.1.
|
|
293575
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
293576
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
293577
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
293376
293578
|
"@smithy/util-middleware": "^4.1.1",
|
|
293377
|
-
"@smithy/util-retry": "^4.1.
|
|
293579
|
+
"@smithy/util-retry": "^4.1.2",
|
|
293378
293580
|
"@smithy/util-utf8": "^4.1.0",
|
|
293379
293581
|
"@smithy/util-waiter": "^4.1.1",
|
|
293380
293582
|
tslib: "^2.6.2"
|
|
@@ -301493,7 +301695,7 @@ var require_package19 = __commonJS({
|
|
|
301493
301695
|
module2.exports = {
|
|
301494
301696
|
name: "@aws-sdk/client-sfn",
|
|
301495
301697
|
description: "AWS SDK for JavaScript Sfn Client for Node.js, Browser and React Native",
|
|
301496
|
-
version: "3.
|
|
301698
|
+
version: "3.893.0",
|
|
301497
301699
|
scripts: {
|
|
301498
301700
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
301499
301701
|
"build:cjs": "node ../../scripts/compilation/inline client-sfn",
|
|
@@ -301512,41 +301714,41 @@ var require_package19 = __commonJS({
|
|
|
301512
301714
|
dependencies: {
|
|
301513
301715
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
301514
301716
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
301515
|
-
"@aws-sdk/core": "3.
|
|
301516
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
301517
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
301518
|
-
"@aws-sdk/middleware-logger": "3.
|
|
301519
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
301520
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
301521
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
301522
|
-
"@aws-sdk/types": "3.
|
|
301523
|
-
"@aws-sdk/util-endpoints": "3.
|
|
301524
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
301525
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
301526
|
-
"@smithy/config-resolver": "^4.2.
|
|
301527
|
-
"@smithy/core": "^3.11.
|
|
301717
|
+
"@aws-sdk/core": "3.893.0",
|
|
301718
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
301719
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
301720
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
301721
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
301722
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
301723
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
301724
|
+
"@aws-sdk/types": "3.893.0",
|
|
301725
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
301726
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
301727
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
301728
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
301729
|
+
"@smithy/core": "^3.11.1",
|
|
301528
301730
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
301529
301731
|
"@smithy/hash-node": "^4.1.1",
|
|
301530
301732
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
301531
301733
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
301532
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
301533
|
-
"@smithy/middleware-retry": "^4.2.
|
|
301734
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
301735
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
301534
301736
|
"@smithy/middleware-serde": "^4.1.1",
|
|
301535
301737
|
"@smithy/middleware-stack": "^4.1.1",
|
|
301536
|
-
"@smithy/node-config-provider": "^4.2.
|
|
301738
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
301537
301739
|
"@smithy/node-http-handler": "^4.2.1",
|
|
301538
301740
|
"@smithy/protocol-http": "^5.2.1",
|
|
301539
|
-
"@smithy/smithy-client": "^4.6.
|
|
301741
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
301540
301742
|
"@smithy/types": "^4.5.0",
|
|
301541
301743
|
"@smithy/url-parser": "^4.1.1",
|
|
301542
301744
|
"@smithy/util-base64": "^4.1.0",
|
|
301543
301745
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
301544
301746
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
301545
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
301546
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
301547
|
-
"@smithy/util-endpoints": "^3.1.
|
|
301747
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
301748
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
301749
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
301548
301750
|
"@smithy/util-middleware": "^4.1.1",
|
|
301549
|
-
"@smithy/util-retry": "^4.1.
|
|
301751
|
+
"@smithy/util-retry": "^4.1.2",
|
|
301550
301752
|
"@smithy/util-utf8": "^4.1.0",
|
|
301551
301753
|
"@types/uuid": "^9.0.1",
|
|
301552
301754
|
tslib: "^2.6.2",
|
|
@@ -305390,7 +305592,7 @@ var require_package20 = __commonJS({
|
|
|
305390
305592
|
module2.exports = {
|
|
305391
305593
|
name: "@aws-sdk/client-ssm",
|
|
305392
305594
|
description: "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
305393
|
-
version: "3.
|
|
305595
|
+
version: "3.893.0",
|
|
305394
305596
|
scripts: {
|
|
305395
305597
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
305396
305598
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm",
|
|
@@ -305409,41 +305611,41 @@ var require_package20 = __commonJS({
|
|
|
305409
305611
|
dependencies: {
|
|
305410
305612
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
305411
305613
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
305412
|
-
"@aws-sdk/core": "3.
|
|
305413
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
305414
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
305415
|
-
"@aws-sdk/middleware-logger": "3.
|
|
305416
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
305417
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
305418
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
305419
|
-
"@aws-sdk/types": "3.
|
|
305420
|
-
"@aws-sdk/util-endpoints": "3.
|
|
305421
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
305422
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
305423
|
-
"@smithy/config-resolver": "^4.2.
|
|
305424
|
-
"@smithy/core": "^3.11.
|
|
305614
|
+
"@aws-sdk/core": "3.893.0",
|
|
305615
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
305616
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
305617
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
305618
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
305619
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
305620
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
305621
|
+
"@aws-sdk/types": "3.893.0",
|
|
305622
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
305623
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
305624
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
305625
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
305626
|
+
"@smithy/core": "^3.11.1",
|
|
305425
305627
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
305426
305628
|
"@smithy/hash-node": "^4.1.1",
|
|
305427
305629
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
305428
305630
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
305429
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
305430
|
-
"@smithy/middleware-retry": "^4.2.
|
|
305631
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
305632
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
305431
305633
|
"@smithy/middleware-serde": "^4.1.1",
|
|
305432
305634
|
"@smithy/middleware-stack": "^4.1.1",
|
|
305433
|
-
"@smithy/node-config-provider": "^4.2.
|
|
305635
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
305434
305636
|
"@smithy/node-http-handler": "^4.2.1",
|
|
305435
305637
|
"@smithy/protocol-http": "^5.2.1",
|
|
305436
|
-
"@smithy/smithy-client": "^4.6.
|
|
305638
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
305437
305639
|
"@smithy/types": "^4.5.0",
|
|
305438
305640
|
"@smithy/url-parser": "^4.1.1",
|
|
305439
305641
|
"@smithy/util-base64": "^4.1.0",
|
|
305440
305642
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
305441
305643
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
305442
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
305443
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
305444
|
-
"@smithy/util-endpoints": "^3.1.
|
|
305644
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
305645
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
305646
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
305445
305647
|
"@smithy/util-middleware": "^4.1.1",
|
|
305446
|
-
"@smithy/util-retry": "^4.1.
|
|
305648
|
+
"@smithy/util-retry": "^4.1.2",
|
|
305447
305649
|
"@smithy/util-utf8": "^4.1.0",
|
|
305448
305650
|
"@smithy/util-waiter": "^4.1.1",
|
|
305449
305651
|
"@types/uuid": "^9.0.1",
|
|
@@ -326151,11 +326353,11 @@ function bootstrapFilter(parameters, qualifier) {
|
|
|
326151
326353
|
const splitBootstrapVersion = bootstrapVersion?.DefaultValue?.split("/");
|
|
326152
326354
|
return qualifier && splitBootstrapVersion && splitBootstrapVersion.length == 4 && splitBootstrapVersion[2] != qualifier;
|
|
326153
326355
|
}
|
|
326154
|
-
async function refreshStacks(
|
|
326356
|
+
async function refreshStacks(props) {
|
|
326155
326357
|
try {
|
|
326156
|
-
const stacks = await fetchAllStackTemplates(cfn, ioHelper, qualifier);
|
|
326358
|
+
const stacks = await fetchAllStackTemplates(props.cfn, props.ioHelper, props.qualifier);
|
|
326157
326359
|
for (const stack of stacks) {
|
|
326158
|
-
activeAssets.rememberStack(stack);
|
|
326360
|
+
props.activeAssets.rememberStack(stack);
|
|
326159
326361
|
}
|
|
326160
326362
|
} catch (err) {
|
|
326161
326363
|
throw new ToolkitError(`Error refreshing stacks: ${err}`);
|
|
@@ -326203,7 +326405,12 @@ var init_stack_refresh = __esm({
|
|
|
326203
326405
|
}
|
|
326204
326406
|
async refresh() {
|
|
326205
326407
|
const startTime = Date.now();
|
|
326206
|
-
await refreshStacks(
|
|
326408
|
+
await refreshStacks({
|
|
326409
|
+
cfn: this.props.cfn,
|
|
326410
|
+
ioHelper: this.props.ioHelper,
|
|
326411
|
+
activeAssets: this.props.activeAssets,
|
|
326412
|
+
qualifier: this.props.qualifier
|
|
326413
|
+
});
|
|
326207
326414
|
this.justRefreshedStacks();
|
|
326208
326415
|
this.timeout = setTimeout(() => this.refresh(), Math.max(startTime + 3e5 - Date.now(), 0));
|
|
326209
326416
|
}
|
|
@@ -326389,7 +326596,12 @@ var init_garbage_collector = __esm({
|
|
|
326389
326596
|
const cfn = sdk.cloudFormation();
|
|
326390
326597
|
const qualifier = await this.bootstrapQualifier(sdk, this.bootstrapStackName);
|
|
326391
326598
|
const activeAssets = new ActiveAssetCache();
|
|
326392
|
-
await refreshStacks(
|
|
326599
|
+
await refreshStacks({
|
|
326600
|
+
cfn,
|
|
326601
|
+
ioHelper: this.ioHelper,
|
|
326602
|
+
activeAssets,
|
|
326603
|
+
qualifier
|
|
326604
|
+
});
|
|
326393
326605
|
const backgroundStackRefresh = new BackgroundStackRefresh({
|
|
326394
326606
|
cfn,
|
|
326395
326607
|
ioHelper: this.ioHelper,
|