From 65539ec4eb5d6a5ea43921d4093799f1d595f8d8 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Fri, 16 Jul 2021 17:48:04 +0000 Subject: [PATCH 1/6] chore(codegen): add postinstall-node-version-check as dependency --- .../amazon/smithy/aws/typescript/codegen/AwsDependency.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsDependency.java b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsDependency.java index 15b3ab044eb7..2a440ca299ac 100644 --- a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsDependency.java +++ b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsDependency.java @@ -70,7 +70,8 @@ public enum AwsDependency implements SymbolDependencyContainer { MIDDLEWARE_USER_AGENT("dependencies", "@aws-sdk/middleware-user-agent"), AWS_SDK_UTIL_USER_AGENT_BROWSER(NORMAL_DEPENDENCY, "@aws-sdk/util-user-agent-browser"), AWS_SDK_UTIL_USER_AGENT_NODE(NORMAL_DEPENDENCY, "@aws-sdk/util-user-agent-node"), - MIDDLEWARE_ENDPOINT_DISCOVERY(NORMAL_DEPENDENCY, "@aws-sdk/middleware-endpoint-discovery"); + MIDDLEWARE_ENDPOINT_DISCOVERY(NORMAL_DEPENDENCY, "@aws-sdk/middleware-endpoint-discovery"), + POSTINSTALL_NODE_VERSION_CHECK(NORMAL_DEPENDENCY, "@aws-sdk/postinstall-node-version-check"); public final String packageName; public final String version; From fe60dc1cd5eb103776b89aea2618af126c9ea939 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Fri, 16 Jul 2021 18:24:27 +0000 Subject: [PATCH 2/6] chore(codegen): add postinstall dependency --- ...PostInstallNodeVersionCheckDependency.java | 42 +++++++++++++++++++ ....codegen.integration.TypeScriptIntegration | 3 +- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddPostInstallNodeVersionCheckDependency.java diff --git a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddPostInstallNodeVersionCheckDependency.java b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddPostInstallNodeVersionCheckDependency.java new file mode 100644 index 000000000000..2aa32f5b69f4 --- /dev/null +++ b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddPostInstallNodeVersionCheckDependency.java @@ -0,0 +1,42 @@ +/* + * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.smithy.aws.typescript.codegen; + +import software.amazon.smithy.codegen.core.SymbolProvider; +import software.amazon.smithy.model.Model; +import software.amazon.smithy.typescript.codegen.TypeScriptSettings; +import software.amazon.smithy.typescript.codegen.TypeScriptWriter; +import software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration; +import software.amazon.smithy.utils.SmithyInternalApi; + +/** + * Add dependency for running postinstall script which displays warnings for + * Node.js versions nearing end-of-support. + */ +@SmithyInternalApi +public class AddPostInstallNodeVersionCheckDependency implements TypeScriptIntegration { + + // TODO: Change to writeAdditionalDependencies or something similar. + @Override + public void writeAdditionalExports( + TypeScriptSettings settings, + Model model, + SymbolProvider symbolProvider, + TypeScriptWriter writer + ) { + writer.addDependency(AwsDependency.POSTINSTALL_NODE_VERSION_CHECK); + } +} diff --git a/codegen/smithy-aws-typescript-codegen/src/main/resources/META-INF/services/software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration b/codegen/smithy-aws-typescript-codegen/src/main/resources/META-INF/services/software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration index ab078748fd37..3f0cd24807d8 100644 --- a/codegen/smithy-aws-typescript-codegen/src/main/resources/META-INF/services/software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration +++ b/codegen/smithy-aws-typescript-codegen/src/main/resources/META-INF/services/software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration @@ -18,4 +18,5 @@ software.amazon.smithy.aws.typescript.codegen.AddOmitRetryHeadersDependency software.amazon.smithy.aws.typescript.codegen.StripNewEnumNames software.amazon.smithy.aws.typescript.codegen.AddCrossRegionCopyingPlugin software.amazon.smithy.aws.typescript.codegen.AddDocumentClientPlugin -software.amazon.smithy.aws.typescript.codegen.AddEndpointDiscoveryPlugin \ No newline at end of file +software.amazon.smithy.aws.typescript.codegen.AddEndpointDiscoveryPlugin +software.amazon.smithy.aws.typescript.codegen.AddPostInstallNodeVersionCheckDependency \ No newline at end of file From 73a4889e6322f35962297bd6fb296703872ece53 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Fri, 16 Jul 2021 19:25:21 +0000 Subject: [PATCH 3/6] chore(codegen): temporarily add postinstall dependency in onShapeWriterUse --- .../codegen/AddPostInstallNodeVersionCheckDependency.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddPostInstallNodeVersionCheckDependency.java b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddPostInstallNodeVersionCheckDependency.java index 2aa32f5b69f4..a97930c0cb8d 100644 --- a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddPostInstallNodeVersionCheckDependency.java +++ b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddPostInstallNodeVersionCheckDependency.java @@ -17,6 +17,7 @@ import software.amazon.smithy.codegen.core.SymbolProvider; import software.amazon.smithy.model.Model; +import software.amazon.smithy.model.shapes.Shape; import software.amazon.smithy.typescript.codegen.TypeScriptSettings; import software.amazon.smithy.typescript.codegen.TypeScriptWriter; import software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration; @@ -31,11 +32,12 @@ public class AddPostInstallNodeVersionCheckDependency implements TypeScriptInteg // TODO: Change to writeAdditionalDependencies or something similar. @Override - public void writeAdditionalExports( + public void onShapeWriterUse( TypeScriptSettings settings, Model model, SymbolProvider symbolProvider, - TypeScriptWriter writer + TypeScriptWriter writer, + Shape definedShape ) { writer.addDependency(AwsDependency.POSTINSTALL_NODE_VERSION_CHECK); } From b9f04302ce493855c1d32a017373ed3bdc5a3fd9 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Fri, 16 Jul 2021 19:27:32 +0000 Subject: [PATCH 4/6] chore(clients): add postinstall-node-version-check dependency --- clients/client-accessanalyzer/package.json | 1 + clients/client-acm-pca/package.json | 1 + clients/client-acm/package.json | 1 + clients/client-alexa-for-business/package.json | 1 + clients/client-amp/package.json | 1 + clients/client-amplify/package.json | 1 + clients/client-amplifybackend/package.json | 1 + clients/client-api-gateway/package.json | 1 + clients/client-apigatewaymanagementapi/package.json | 1 + clients/client-apigatewayv2/package.json | 1 + clients/client-app-mesh/package.json | 1 + clients/client-appconfig/package.json | 1 + clients/client-appflow/package.json | 1 + clients/client-appintegrations/package.json | 1 + clients/client-application-auto-scaling/package.json | 1 + clients/client-application-discovery-service/package.json | 1 + clients/client-application-insights/package.json | 1 + clients/client-applicationcostprofiler/package.json | 1 + clients/client-apprunner/package.json | 1 + clients/client-appstream/package.json | 1 + clients/client-appsync/package.json | 1 + clients/client-athena/package.json | 1 + clients/client-auditmanager/package.json | 1 + clients/client-auto-scaling-plans/package.json | 1 + clients/client-auto-scaling/package.json | 1 + clients/client-backup/package.json | 1 + clients/client-batch/package.json | 1 + clients/client-braket/package.json | 1 + clients/client-budgets/package.json | 1 + clients/client-chime/package.json | 1 + clients/client-cloud9/package.json | 1 + clients/client-clouddirectory/package.json | 1 + clients/client-cloudformation/package.json | 1 + clients/client-cloudfront/package.json | 1 + clients/client-cloudhsm-v2/package.json | 1 + clients/client-cloudhsm/package.json | 1 + clients/client-cloudsearch-domain/package.json | 1 + clients/client-cloudsearch/package.json | 1 + clients/client-cloudtrail/package.json | 1 + clients/client-cloudwatch-events/package.json | 1 + clients/client-cloudwatch-logs/package.json | 1 + clients/client-cloudwatch/package.json | 1 + clients/client-codeartifact/package.json | 1 + clients/client-codebuild/package.json | 1 + clients/client-codecommit/package.json | 1 + clients/client-codedeploy/package.json | 1 + clients/client-codeguru-reviewer/package.json | 1 + clients/client-codeguruprofiler/package.json | 1 + clients/client-codepipeline/package.json | 1 + clients/client-codestar-connections/package.json | 1 + clients/client-codestar-notifications/package.json | 1 + clients/client-codestar/package.json | 1 + clients/client-cognito-identity-provider/package.json | 1 + clients/client-cognito-identity/package.json | 1 + clients/client-cognito-sync/package.json | 1 + clients/client-comprehend/package.json | 1 + clients/client-comprehendmedical/package.json | 1 + clients/client-compute-optimizer/package.json | 1 + clients/client-config-service/package.json | 1 + clients/client-connect-contact-lens/package.json | 1 + clients/client-connect/package.json | 1 + clients/client-connectparticipant/package.json | 1 + clients/client-cost-and-usage-report-service/package.json | 1 + clients/client-cost-explorer/package.json | 1 + clients/client-customer-profiles/package.json | 1 + clients/client-data-pipeline/package.json | 1 + clients/client-database-migration-service/package.json | 1 + clients/client-databrew/package.json | 1 + clients/client-dataexchange/package.json | 1 + clients/client-datasync/package.json | 1 + clients/client-dax/package.json | 1 + clients/client-detective/package.json | 1 + clients/client-device-farm/package.json | 1 + clients/client-devops-guru/package.json | 1 + clients/client-direct-connect/package.json | 1 + clients/client-directory-service/package.json | 1 + clients/client-dlm/package.json | 1 + clients/client-docdb/package.json | 1 + clients/client-dynamodb-streams/package.json | 1 + clients/client-dynamodb/package.json | 1 + clients/client-ebs/package.json | 1 + clients/client-ec2-instance-connect/package.json | 1 + clients/client-ec2/package.json | 1 + clients/client-ecr-public/package.json | 1 + clients/client-ecr/package.json | 1 + clients/client-ecs/package.json | 1 + clients/client-efs/package.json | 1 + clients/client-eks/package.json | 1 + clients/client-elastic-beanstalk/package.json | 1 + clients/client-elastic-inference/package.json | 1 + clients/client-elastic-load-balancing-v2/package.json | 1 + clients/client-elastic-load-balancing/package.json | 1 + clients/client-elastic-transcoder/package.json | 1 + clients/client-elasticache/package.json | 1 + clients/client-elasticsearch-service/package.json | 1 + clients/client-emr-containers/package.json | 1 + clients/client-emr/package.json | 1 + clients/client-eventbridge/package.json | 1 + clients/client-finspace-data/package.json | 1 + clients/client-finspace/package.json | 1 + clients/client-firehose/package.json | 1 + clients/client-fis/package.json | 1 + clients/client-fms/package.json | 1 + clients/client-forecast/package.json | 1 + clients/client-forecastquery/package.json | 1 + clients/client-frauddetector/package.json | 1 + clients/client-fsx/package.json | 1 + clients/client-gamelift/package.json | 1 + clients/client-glacier/package.json | 1 + clients/client-global-accelerator/package.json | 1 + clients/client-glue/package.json | 1 + clients/client-greengrass/package.json | 1 + clients/client-greengrassv2/package.json | 1 + clients/client-groundstation/package.json | 1 + clients/client-guardduty/package.json | 1 + clients/client-health/package.json | 1 + clients/client-healthlake/package.json | 1 + clients/client-honeycode/package.json | 1 + clients/client-iam/package.json | 1 + clients/client-identitystore/package.json | 1 + clients/client-imagebuilder/package.json | 1 + clients/client-inspector/package.json | 1 + clients/client-iot-1click-devices-service/package.json | 1 + clients/client-iot-1click-projects/package.json | 1 + clients/client-iot-data-plane/package.json | 1 + clients/client-iot-events-data/package.json | 1 + clients/client-iot-events/package.json | 1 + clients/client-iot-jobs-data-plane/package.json | 1 + clients/client-iot-wireless/package.json | 1 + clients/client-iot/package.json | 1 + clients/client-iotanalytics/package.json | 1 + clients/client-iotdeviceadvisor/package.json | 1 + clients/client-iotfleethub/package.json | 1 + clients/client-iotsecuretunneling/package.json | 1 + clients/client-iotsitewise/package.json | 1 + clients/client-iotthingsgraph/package.json | 1 + clients/client-ivs/package.json | 1 + clients/client-kafka/package.json | 1 + clients/client-kendra/package.json | 1 + clients/client-kinesis-analytics-v2/package.json | 1 + clients/client-kinesis-analytics/package.json | 1 + clients/client-kinesis-video-archived-media/package.json | 1 + clients/client-kinesis-video-media/package.json | 1 + clients/client-kinesis-video-signaling/package.json | 1 + clients/client-kinesis-video/package.json | 1 + clients/client-kinesis/package.json | 1 + clients/client-kms/package.json | 1 + clients/client-lakeformation/package.json | 1 + clients/client-lambda/package.json | 1 + clients/client-lex-model-building-service/package.json | 1 + clients/client-lex-models-v2/package.json | 1 + clients/client-lex-runtime-service/package.json | 1 + clients/client-lex-runtime-v2/package.json | 1 + clients/client-license-manager/package.json | 1 + clients/client-lightsail/package.json | 1 + clients/client-location/package.json | 1 + clients/client-lookoutequipment/package.json | 1 + clients/client-lookoutmetrics/package.json | 1 + clients/client-lookoutvision/package.json | 1 + clients/client-machine-learning/package.json | 1 + clients/client-macie/package.json | 1 + clients/client-macie2/package.json | 1 + clients/client-managedblockchain/package.json | 1 + clients/client-marketplace-catalog/package.json | 1 + clients/client-marketplace-commerce-analytics/package.json | 1 + clients/client-marketplace-entitlement-service/package.json | 1 + clients/client-marketplace-metering/package.json | 1 + clients/client-mediaconnect/package.json | 1 + clients/client-mediaconvert/package.json | 1 + clients/client-medialive/package.json | 1 + clients/client-mediapackage-vod/package.json | 1 + clients/client-mediapackage/package.json | 1 + clients/client-mediastore-data/package.json | 1 + clients/client-mediastore/package.json | 1 + clients/client-mediatailor/package.json | 1 + clients/client-mgn/package.json | 1 + clients/client-migration-hub/package.json | 1 + clients/client-migrationhub-config/package.json | 1 + clients/client-mobile/package.json | 1 + clients/client-mq/package.json | 1 + clients/client-mturk/package.json | 1 + clients/client-mwaa/package.json | 1 + clients/client-neptune/package.json | 1 + clients/client-network-firewall/package.json | 1 + clients/client-networkmanager/package.json | 1 + clients/client-nimble/package.json | 1 + clients/client-opsworks/package.json | 1 + clients/client-opsworkscm/package.json | 1 + clients/client-organizations/package.json | 1 + clients/client-outposts/package.json | 1 + clients/client-personalize-events/package.json | 1 + clients/client-personalize-runtime/package.json | 1 + clients/client-personalize/package.json | 1 + clients/client-pi/package.json | 1 + clients/client-pinpoint-email/package.json | 1 + clients/client-pinpoint-sms-voice/package.json | 1 + clients/client-pinpoint/package.json | 1 + clients/client-polly/package.json | 1 + clients/client-pricing/package.json | 1 + clients/client-proton/package.json | 1 + clients/client-qldb-session/package.json | 1 + clients/client-qldb/package.json | 1 + clients/client-quicksight/package.json | 1 + clients/client-ram/package.json | 1 + clients/client-rds-data/package.json | 1 + clients/client-rds/package.json | 1 + clients/client-redshift-data/package.json | 1 + clients/client-redshift/package.json | 1 + clients/client-rekognition/package.json | 1 + clients/client-resource-groups-tagging-api/package.json | 1 + clients/client-resource-groups/package.json | 1 + clients/client-robomaker/package.json | 1 + clients/client-route-53-domains/package.json | 1 + clients/client-route-53/package.json | 1 + clients/client-route53resolver/package.json | 1 + clients/client-s3-control/package.json | 1 + clients/client-s3/package.json | 1 + clients/client-s3outposts/package.json | 1 + clients/client-sagemaker-a2i-runtime/package.json | 1 + clients/client-sagemaker-edge/package.json | 1 + clients/client-sagemaker-featurestore-runtime/package.json | 1 + clients/client-sagemaker-runtime/package.json | 1 + clients/client-sagemaker/package.json | 1 + clients/client-savingsplans/package.json | 1 + clients/client-schemas/package.json | 1 + clients/client-secrets-manager/package.json | 1 + clients/client-securityhub/package.json | 1 + clients/client-serverlessapplicationrepository/package.json | 1 + clients/client-service-catalog-appregistry/package.json | 1 + clients/client-service-catalog/package.json | 1 + clients/client-service-quotas/package.json | 1 + clients/client-servicediscovery/package.json | 1 + clients/client-ses/package.json | 1 + clients/client-sesv2/package.json | 1 + clients/client-sfn/package.json | 1 + clients/client-shield/package.json | 1 + clients/client-signer/package.json | 1 + clients/client-sms/package.json | 1 + clients/client-snowball/package.json | 1 + clients/client-sns/package.json | 1 + clients/client-sqs/package.json | 1 + clients/client-ssm-contacts/package.json | 1 + clients/client-ssm-incidents/package.json | 1 + clients/client-ssm/package.json | 1 + clients/client-sso-admin/package.json | 1 + clients/client-sso-oidc/package.json | 1 + clients/client-sso/package.json | 1 + clients/client-storage-gateway/package.json | 1 + clients/client-sts/package.json | 1 + clients/client-support/package.json | 1 + clients/client-swf/package.json | 1 + clients/client-synthetics/package.json | 1 + clients/client-textract/package.json | 1 + clients/client-timestream-query/package.json | 1 + clients/client-timestream-write/package.json | 1 + clients/client-transcribe-streaming/package.json | 1 + clients/client-transcribe/package.json | 1 + clients/client-transfer/package.json | 1 + clients/client-translate/package.json | 1 + clients/client-waf-regional/package.json | 1 + clients/client-waf/package.json | 1 + clients/client-wafv2/package.json | 1 + clients/client-wellarchitected/package.json | 1 + clients/client-workdocs/package.json | 1 + clients/client-worklink/package.json | 1 + clients/client-workmail/package.json | 1 + clients/client-workmailmessageflow/package.json | 1 + clients/client-workspaces/package.json | 1 + clients/client-xray/package.json | 1 + protocol_tests/aws-ec2/package.json | 1 + protocol_tests/aws-json-10/package.json | 1 + protocol_tests/aws-json/package.json | 1 + protocol_tests/aws-query/package.json | 1 + protocol_tests/aws-restjson/package.json | 1 + protocol_tests/aws-restxml/package.json | 1 + 275 files changed, 275 insertions(+) diff --git a/clients/client-accessanalyzer/package.json b/clients/client-accessanalyzer/package.json index 1b7500ecf327..08226b7160e0 100644 --- a/clients/client-accessanalyzer/package.json +++ b/clients/client-accessanalyzer/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-acm-pca/package.json b/clients/client-acm-pca/package.json index 3e3e3327f3da..47b0c3cdd3f3 100644 --- a/clients/client-acm-pca/package.json +++ b/clients/client-acm-pca/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-acm/package.json b/clients/client-acm/package.json index f24b08dfc6d9..c4ff208ccb20 100644 --- a/clients/client-acm/package.json +++ b/clients/client-acm/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-alexa-for-business/package.json b/clients/client-alexa-for-business/package.json index fea2602e37ba..8f0b1ffaadc5 100644 --- a/clients/client-alexa-for-business/package.json +++ b/clients/client-alexa-for-business/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-amp/package.json b/clients/client-amp/package.json index 3d16f5150541..c3704772d424 100644 --- a/clients/client-amp/package.json +++ b/clients/client-amp/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-amplify/package.json b/clients/client-amplify/package.json index ae6d34cdb6e4..69eaba60fb9e 100644 --- a/clients/client-amplify/package.json +++ b/clients/client-amplify/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-amplifybackend/package.json b/clients/client-amplifybackend/package.json index 113707816021..393a8b9afb10 100644 --- a/clients/client-amplifybackend/package.json +++ b/clients/client-amplifybackend/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-api-gateway/package.json b/clients/client-api-gateway/package.json index 7242fb8ae841..51a8053206dd 100644 --- a/clients/client-api-gateway/package.json +++ b/clients/client-api-gateway/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-apigatewaymanagementapi/package.json b/clients/client-apigatewaymanagementapi/package.json index bf2bdb51eec2..359c54e31a0a 100644 --- a/clients/client-apigatewaymanagementapi/package.json +++ b/clients/client-apigatewaymanagementapi/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-apigatewayv2/package.json b/clients/client-apigatewayv2/package.json index 8ca51de7f71d..b5aeee74cf85 100644 --- a/clients/client-apigatewayv2/package.json +++ b/clients/client-apigatewayv2/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-app-mesh/package.json b/clients/client-app-mesh/package.json index 105a36f3d97e..fe64c49c598a 100644 --- a/clients/client-app-mesh/package.json +++ b/clients/client-app-mesh/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-appconfig/package.json b/clients/client-appconfig/package.json index d57fe527f3f7..c8199182c046 100644 --- a/clients/client-appconfig/package.json +++ b/clients/client-appconfig/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-appflow/package.json b/clients/client-appflow/package.json index 454bed6e7e31..f033ff0b69da 100644 --- a/clients/client-appflow/package.json +++ b/clients/client-appflow/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-appintegrations/package.json b/clients/client-appintegrations/package.json index 987321d61100..99735994196e 100644 --- a/clients/client-appintegrations/package.json +++ b/clients/client-appintegrations/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-application-auto-scaling/package.json b/clients/client-application-auto-scaling/package.json index d05f61b43d65..4201e65fd966 100644 --- a/clients/client-application-auto-scaling/package.json +++ b/clients/client-application-auto-scaling/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-application-discovery-service/package.json b/clients/client-application-discovery-service/package.json index 8c2efe82305d..498c3968c0c7 100644 --- a/clients/client-application-discovery-service/package.json +++ b/clients/client-application-discovery-service/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-application-insights/package.json b/clients/client-application-insights/package.json index 3766438730cc..0bf9b1ef3588 100644 --- a/clients/client-application-insights/package.json +++ b/clients/client-application-insights/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-applicationcostprofiler/package.json b/clients/client-applicationcostprofiler/package.json index ea7c32a50808..a849d3ff7532 100644 --- a/clients/client-applicationcostprofiler/package.json +++ b/clients/client-applicationcostprofiler/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-apprunner/package.json b/clients/client-apprunner/package.json index 13ea5656f9e2..ecc89b0e9e63 100644 --- a/clients/client-apprunner/package.json +++ b/clients/client-apprunner/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-appstream/package.json b/clients/client-appstream/package.json index 00638776690d..7377cd9a0322 100644 --- a/clients/client-appstream/package.json +++ b/clients/client-appstream/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-appsync/package.json b/clients/client-appsync/package.json index 3b03ad0997b4..e75d23cdc68a 100644 --- a/clients/client-appsync/package.json +++ b/clients/client-appsync/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-athena/package.json b/clients/client-athena/package.json index e592db333fd8..02bc936d3b29 100644 --- a/clients/client-athena/package.json +++ b/clients/client-athena/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-auditmanager/package.json b/clients/client-auditmanager/package.json index 5f2e363dd4bf..966d09ae3057 100644 --- a/clients/client-auditmanager/package.json +++ b/clients/client-auditmanager/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-auto-scaling-plans/package.json b/clients/client-auto-scaling-plans/package.json index a0753a7655be..80b07cfa0acb 100644 --- a/clients/client-auto-scaling-plans/package.json +++ b/clients/client-auto-scaling-plans/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-auto-scaling/package.json b/clients/client-auto-scaling/package.json index 1d9a70e031ed..71fa15aac772 100644 --- a/clients/client-auto-scaling/package.json +++ b/clients/client-auto-scaling/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-backup/package.json b/clients/client-backup/package.json index 16e3ff29dbea..53233a7ae64f 100644 --- a/clients/client-backup/package.json +++ b/clients/client-backup/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-batch/package.json b/clients/client-batch/package.json index d7f4fb00904d..14c5a07c3293 100644 --- a/clients/client-batch/package.json +++ b/clients/client-batch/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-braket/package.json b/clients/client-braket/package.json index 1b1d25a51aa5..e5ab68b51265 100644 --- a/clients/client-braket/package.json +++ b/clients/client-braket/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-budgets/package.json b/clients/client-budgets/package.json index b29e78bb34b1..d1eee959fa50 100644 --- a/clients/client-budgets/package.json +++ b/clients/client-budgets/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-chime/package.json b/clients/client-chime/package.json index 105dca6856ff..a359cb8b8d2a 100644 --- a/clients/client-chime/package.json +++ b/clients/client-chime/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloud9/package.json b/clients/client-cloud9/package.json index 2b53f1a337e2..cab54f2aa46b 100644 --- a/clients/client-cloud9/package.json +++ b/clients/client-cloud9/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-clouddirectory/package.json b/clients/client-clouddirectory/package.json index 63707e22d597..5df300d7ee75 100644 --- a/clients/client-clouddirectory/package.json +++ b/clients/client-clouddirectory/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudformation/package.json b/clients/client-cloudformation/package.json index 56e345b766f8..bdc83b99fc32 100644 --- a/clients/client-cloudformation/package.json +++ b/clients/client-cloudformation/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudfront/package.json b/clients/client-cloudfront/package.json index 6880f2b13eab..80f5244810ca 100644 --- a/clients/client-cloudfront/package.json +++ b/clients/client-cloudfront/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudhsm-v2/package.json b/clients/client-cloudhsm-v2/package.json index 15269c0a05af..2e59099f5f53 100644 --- a/clients/client-cloudhsm-v2/package.json +++ b/clients/client-cloudhsm-v2/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudhsm/package.json b/clients/client-cloudhsm/package.json index 0d5c13216173..883f8fb67f96 100644 --- a/clients/client-cloudhsm/package.json +++ b/clients/client-cloudhsm/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudsearch-domain/package.json b/clients/client-cloudsearch-domain/package.json index fa63fb36812f..623ae0f39f7d 100644 --- a/clients/client-cloudsearch-domain/package.json +++ b/clients/client-cloudsearch-domain/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudsearch/package.json b/clients/client-cloudsearch/package.json index 8727f253db81..d87eac961c7b 100644 --- a/clients/client-cloudsearch/package.json +++ b/clients/client-cloudsearch/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudtrail/package.json b/clients/client-cloudtrail/package.json index 0a73e1e0d51a..933a63ba4d0e 100644 --- a/clients/client-cloudtrail/package.json +++ b/clients/client-cloudtrail/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudwatch-events/package.json b/clients/client-cloudwatch-events/package.json index cc90b4ef1c6f..c1130d7c9338 100644 --- a/clients/client-cloudwatch-events/package.json +++ b/clients/client-cloudwatch-events/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudwatch-logs/package.json b/clients/client-cloudwatch-logs/package.json index ea620ba58653..608cbb015fbd 100644 --- a/clients/client-cloudwatch-logs/package.json +++ b/clients/client-cloudwatch-logs/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cloudwatch/package.json b/clients/client-cloudwatch/package.json index 5c71cdaab6cb..4abead71dae7 100644 --- a/clients/client-cloudwatch/package.json +++ b/clients/client-cloudwatch/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codeartifact/package.json b/clients/client-codeartifact/package.json index 0d20afcb2e03..381c5a0d32a9 100644 --- a/clients/client-codeartifact/package.json +++ b/clients/client-codeartifact/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codebuild/package.json b/clients/client-codebuild/package.json index acfa23581287..4c159f089fb9 100644 --- a/clients/client-codebuild/package.json +++ b/clients/client-codebuild/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codecommit/package.json b/clients/client-codecommit/package.json index 77a3da680d99..bae89e493826 100644 --- a/clients/client-codecommit/package.json +++ b/clients/client-codecommit/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codedeploy/package.json b/clients/client-codedeploy/package.json index 6e0cebeb14a0..862565e67735 100644 --- a/clients/client-codedeploy/package.json +++ b/clients/client-codedeploy/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codeguru-reviewer/package.json b/clients/client-codeguru-reviewer/package.json index f9b902aea2fb..908ba89c4922 100644 --- a/clients/client-codeguru-reviewer/package.json +++ b/clients/client-codeguru-reviewer/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codeguruprofiler/package.json b/clients/client-codeguruprofiler/package.json index fa9716cdba92..4a256728bd1a 100644 --- a/clients/client-codeguruprofiler/package.json +++ b/clients/client-codeguruprofiler/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codepipeline/package.json b/clients/client-codepipeline/package.json index 1398ec8cea3d..a4ebee8c8d97 100644 --- a/clients/client-codepipeline/package.json +++ b/clients/client-codepipeline/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codestar-connections/package.json b/clients/client-codestar-connections/package.json index ede9880a8b15..db76d66768b9 100644 --- a/clients/client-codestar-connections/package.json +++ b/clients/client-codestar-connections/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codestar-notifications/package.json b/clients/client-codestar-notifications/package.json index fd7f5ab00e0b..18164dc63d60 100644 --- a/clients/client-codestar-notifications/package.json +++ b/clients/client-codestar-notifications/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-codestar/package.json b/clients/client-codestar/package.json index 4f8cd55ab1b4..250306c84e83 100644 --- a/clients/client-codestar/package.json +++ b/clients/client-codestar/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cognito-identity-provider/package.json b/clients/client-cognito-identity-provider/package.json index f04a5544ecdd..c97697cd96e0 100644 --- a/clients/client-cognito-identity-provider/package.json +++ b/clients/client-cognito-identity-provider/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cognito-identity/package.json b/clients/client-cognito-identity/package.json index 0565e8950239..4669328f8eeb 100644 --- a/clients/client-cognito-identity/package.json +++ b/clients/client-cognito-identity/package.json @@ -45,6 +45,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cognito-sync/package.json b/clients/client-cognito-sync/package.json index 51c2acfefacb..8a65c5287293 100644 --- a/clients/client-cognito-sync/package.json +++ b/clients/client-cognito-sync/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-comprehend/package.json b/clients/client-comprehend/package.json index 2237b0b68a6e..49d7c3c0f30b 100644 --- a/clients/client-comprehend/package.json +++ b/clients/client-comprehend/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-comprehendmedical/package.json b/clients/client-comprehendmedical/package.json index bc32e16a8a60..df6646c05a35 100644 --- a/clients/client-comprehendmedical/package.json +++ b/clients/client-comprehendmedical/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-compute-optimizer/package.json b/clients/client-compute-optimizer/package.json index 4b334fd9ee6f..739d7a8176b9 100644 --- a/clients/client-compute-optimizer/package.json +++ b/clients/client-compute-optimizer/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-config-service/package.json b/clients/client-config-service/package.json index 71f0ad56d9a6..bd460fe3b4f9 100644 --- a/clients/client-config-service/package.json +++ b/clients/client-config-service/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-connect-contact-lens/package.json b/clients/client-connect-contact-lens/package.json index 09468ce8a1c0..e04a9eb7d120 100644 --- a/clients/client-connect-contact-lens/package.json +++ b/clients/client-connect-contact-lens/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-connect/package.json b/clients/client-connect/package.json index dd20ac31bd8f..dd7837a31793 100644 --- a/clients/client-connect/package.json +++ b/clients/client-connect/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-connectparticipant/package.json b/clients/client-connectparticipant/package.json index ab8d2c0a2f54..0d079e4d628e 100644 --- a/clients/client-connectparticipant/package.json +++ b/clients/client-connectparticipant/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cost-and-usage-report-service/package.json b/clients/client-cost-and-usage-report-service/package.json index 70aa18db2fcc..a40be4be3ffe 100644 --- a/clients/client-cost-and-usage-report-service/package.json +++ b/clients/client-cost-and-usage-report-service/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-cost-explorer/package.json b/clients/client-cost-explorer/package.json index 2aa35a54f925..109cb8771d3a 100644 --- a/clients/client-cost-explorer/package.json +++ b/clients/client-cost-explorer/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-customer-profiles/package.json b/clients/client-customer-profiles/package.json index 7e8a27f8dea7..71afd2b732d0 100644 --- a/clients/client-customer-profiles/package.json +++ b/clients/client-customer-profiles/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-data-pipeline/package.json b/clients/client-data-pipeline/package.json index bbf1744f8b23..06297fbb29b7 100644 --- a/clients/client-data-pipeline/package.json +++ b/clients/client-data-pipeline/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-database-migration-service/package.json b/clients/client-database-migration-service/package.json index 3744e1dd99cb..970dd182f252 100644 --- a/clients/client-database-migration-service/package.json +++ b/clients/client-database-migration-service/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-databrew/package.json b/clients/client-databrew/package.json index c37c7baeb2e5..2f9dd05dd6c7 100644 --- a/clients/client-databrew/package.json +++ b/clients/client-databrew/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-dataexchange/package.json b/clients/client-dataexchange/package.json index 00dcd1e73cce..2b6b53b76ef1 100644 --- a/clients/client-dataexchange/package.json +++ b/clients/client-dataexchange/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-datasync/package.json b/clients/client-datasync/package.json index 3c349653fbbe..5c3cf90922ed 100644 --- a/clients/client-datasync/package.json +++ b/clients/client-datasync/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-dax/package.json b/clients/client-dax/package.json index 33dadce5f615..275fe98ec019 100644 --- a/clients/client-dax/package.json +++ b/clients/client-dax/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-detective/package.json b/clients/client-detective/package.json index e42acb50a405..d8e7428f8e0f 100644 --- a/clients/client-detective/package.json +++ b/clients/client-detective/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-device-farm/package.json b/clients/client-device-farm/package.json index 97ffec3f0732..2aacbe2b87ed 100644 --- a/clients/client-device-farm/package.json +++ b/clients/client-device-farm/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-devops-guru/package.json b/clients/client-devops-guru/package.json index 62623d2dc075..6406ec7a9384 100644 --- a/clients/client-devops-guru/package.json +++ b/clients/client-devops-guru/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-direct-connect/package.json b/clients/client-direct-connect/package.json index 39cf756ff2f0..57e808b14cd0 100644 --- a/clients/client-direct-connect/package.json +++ b/clients/client-direct-connect/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-directory-service/package.json b/clients/client-directory-service/package.json index c4b5429e2f94..c81191e1f4f1 100644 --- a/clients/client-directory-service/package.json +++ b/clients/client-directory-service/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-dlm/package.json b/clients/client-dlm/package.json index 500ae7ff5dd3..8bcbdecf1ffa 100644 --- a/clients/client-dlm/package.json +++ b/clients/client-dlm/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-docdb/package.json b/clients/client-docdb/package.json index bb75cf8efb86..9bd19214651a 100644 --- a/clients/client-docdb/package.json +++ b/clients/client-docdb/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-dynamodb-streams/package.json b/clients/client-dynamodb-streams/package.json index 377f9fad736d..01da98261874 100644 --- a/clients/client-dynamodb-streams/package.json +++ b/clients/client-dynamodb-streams/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-dynamodb/package.json b/clients/client-dynamodb/package.json index c62cbe513353..84269279de9a 100644 --- a/clients/client-dynamodb/package.json +++ b/clients/client-dynamodb/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ebs/package.json b/clients/client-ebs/package.json index 0a76b11e252b..c16ecb4f70f3 100644 --- a/clients/client-ebs/package.json +++ b/clients/client-ebs/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ec2-instance-connect/package.json b/clients/client-ec2-instance-connect/package.json index 2bab95a03cc8..41f7ad309bb5 100644 --- a/clients/client-ec2-instance-connect/package.json +++ b/clients/client-ec2-instance-connect/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ec2/package.json b/clients/client-ec2/package.json index 2c0ad24b75f1..15ad51630932 100644 --- a/clients/client-ec2/package.json +++ b/clients/client-ec2/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ecr-public/package.json b/clients/client-ecr-public/package.json index daa580a4d452..cf23f6425777 100644 --- a/clients/client-ecr-public/package.json +++ b/clients/client-ecr-public/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ecr/package.json b/clients/client-ecr/package.json index 3bdfdfed2f98..8205c0cafceb 100644 --- a/clients/client-ecr/package.json +++ b/clients/client-ecr/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ecs/package.json b/clients/client-ecs/package.json index 76e00afe2af7..f19e0af65e91 100644 --- a/clients/client-ecs/package.json +++ b/clients/client-ecs/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-efs/package.json b/clients/client-efs/package.json index ba945d555bc7..c93c1d854baf 100644 --- a/clients/client-efs/package.json +++ b/clients/client-efs/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-eks/package.json b/clients/client-eks/package.json index 5a9fa69235ae..eeb839c742fc 100644 --- a/clients/client-eks/package.json +++ b/clients/client-eks/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-elastic-beanstalk/package.json b/clients/client-elastic-beanstalk/package.json index 107382ff4cd5..8e7f28029a8c 100644 --- a/clients/client-elastic-beanstalk/package.json +++ b/clients/client-elastic-beanstalk/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-elastic-inference/package.json b/clients/client-elastic-inference/package.json index a835635e8634..063f57155df4 100644 --- a/clients/client-elastic-inference/package.json +++ b/clients/client-elastic-inference/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-elastic-load-balancing-v2/package.json b/clients/client-elastic-load-balancing-v2/package.json index 88d56f726b4e..083969a16cb2 100644 --- a/clients/client-elastic-load-balancing-v2/package.json +++ b/clients/client-elastic-load-balancing-v2/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-elastic-load-balancing/package.json b/clients/client-elastic-load-balancing/package.json index d816bb2de83d..ea5ce95e1494 100644 --- a/clients/client-elastic-load-balancing/package.json +++ b/clients/client-elastic-load-balancing/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-elastic-transcoder/package.json b/clients/client-elastic-transcoder/package.json index d19dc8b97285..19f80a44cd4a 100644 --- a/clients/client-elastic-transcoder/package.json +++ b/clients/client-elastic-transcoder/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-elasticache/package.json b/clients/client-elasticache/package.json index 590bf03086cd..37c13236d705 100644 --- a/clients/client-elasticache/package.json +++ b/clients/client-elasticache/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-elasticsearch-service/package.json b/clients/client-elasticsearch-service/package.json index b882f5de2eba..715ed5074007 100644 --- a/clients/client-elasticsearch-service/package.json +++ b/clients/client-elasticsearch-service/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-emr-containers/package.json b/clients/client-emr-containers/package.json index 6fa6a923864b..ca77b34a1691 100644 --- a/clients/client-emr-containers/package.json +++ b/clients/client-emr-containers/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-emr/package.json b/clients/client-emr/package.json index 1e81f853d490..31530fc0466d 100644 --- a/clients/client-emr/package.json +++ b/clients/client-emr/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-eventbridge/package.json b/clients/client-eventbridge/package.json index c026bc0ae1ff..65db3414e61b 100644 --- a/clients/client-eventbridge/package.json +++ b/clients/client-eventbridge/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-finspace-data/package.json b/clients/client-finspace-data/package.json index b5b6cb262467..630b0cc5b8bd 100644 --- a/clients/client-finspace-data/package.json +++ b/clients/client-finspace-data/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-finspace/package.json b/clients/client-finspace/package.json index 5626413d8f58..e0475d02ad91 100644 --- a/clients/client-finspace/package.json +++ b/clients/client-finspace/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-firehose/package.json b/clients/client-firehose/package.json index 7372a798a36a..4e63c13bc4b3 100644 --- a/clients/client-firehose/package.json +++ b/clients/client-firehose/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-fis/package.json b/clients/client-fis/package.json index 430566ce406c..1b386783f59f 100644 --- a/clients/client-fis/package.json +++ b/clients/client-fis/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-fms/package.json b/clients/client-fms/package.json index 20b53365e9e8..d1b96f996795 100644 --- a/clients/client-fms/package.json +++ b/clients/client-fms/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-forecast/package.json b/clients/client-forecast/package.json index 7b2496281696..594587923db9 100644 --- a/clients/client-forecast/package.json +++ b/clients/client-forecast/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-forecastquery/package.json b/clients/client-forecastquery/package.json index ef833af841f9..4cc3ecef0ca2 100644 --- a/clients/client-forecastquery/package.json +++ b/clients/client-forecastquery/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-frauddetector/package.json b/clients/client-frauddetector/package.json index 1c7510257f4e..530b98c0f4b5 100644 --- a/clients/client-frauddetector/package.json +++ b/clients/client-frauddetector/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-fsx/package.json b/clients/client-fsx/package.json index 0aab508fac6c..ef9421bdad6b 100644 --- a/clients/client-fsx/package.json +++ b/clients/client-fsx/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-gamelift/package.json b/clients/client-gamelift/package.json index 10e6bd6a95f8..1c403dcc48be 100644 --- a/clients/client-gamelift/package.json +++ b/clients/client-gamelift/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-glacier/package.json b/clients/client-glacier/package.json index 85a7e4497a62..bac423263f29 100644 --- a/clients/client-glacier/package.json +++ b/clients/client-glacier/package.json @@ -46,6 +46,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-global-accelerator/package.json b/clients/client-global-accelerator/package.json index f69ca6b343e6..19b830c7b7d7 100644 --- a/clients/client-global-accelerator/package.json +++ b/clients/client-global-accelerator/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-glue/package.json b/clients/client-glue/package.json index bb8df52bb841..45a5b3ef6c6c 100644 --- a/clients/client-glue/package.json +++ b/clients/client-glue/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-greengrass/package.json b/clients/client-greengrass/package.json index e21f3e0974da..f7f4d120224c 100644 --- a/clients/client-greengrass/package.json +++ b/clients/client-greengrass/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-greengrassv2/package.json b/clients/client-greengrassv2/package.json index 3180468555f6..ad3fe4d8f4de 100644 --- a/clients/client-greengrassv2/package.json +++ b/clients/client-greengrassv2/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-groundstation/package.json b/clients/client-groundstation/package.json index d22457bcab07..25edb985c6de 100644 --- a/clients/client-groundstation/package.json +++ b/clients/client-groundstation/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-guardduty/package.json b/clients/client-guardduty/package.json index 2ba6a29a7bcb..54a767ae213a 100644 --- a/clients/client-guardduty/package.json +++ b/clients/client-guardduty/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-health/package.json b/clients/client-health/package.json index f64304a31a71..84c4bf7857ed 100644 --- a/clients/client-health/package.json +++ b/clients/client-health/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-healthlake/package.json b/clients/client-healthlake/package.json index 33d59a89187e..eca0eb29e653 100644 --- a/clients/client-healthlake/package.json +++ b/clients/client-healthlake/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-honeycode/package.json b/clients/client-honeycode/package.json index 1b8d3cd5bfd4..57f84b7af0a7 100644 --- a/clients/client-honeycode/package.json +++ b/clients/client-honeycode/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iam/package.json b/clients/client-iam/package.json index 91ecf023743c..67f52afd2fbb 100644 --- a/clients/client-iam/package.json +++ b/clients/client-iam/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-identitystore/package.json b/clients/client-identitystore/package.json index d2934c02eca1..68e4087d4085 100644 --- a/clients/client-identitystore/package.json +++ b/clients/client-identitystore/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-imagebuilder/package.json b/clients/client-imagebuilder/package.json index f2e89b42479a..4423783ae206 100644 --- a/clients/client-imagebuilder/package.json +++ b/clients/client-imagebuilder/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-inspector/package.json b/clients/client-inspector/package.json index 4990f31eacc2..4f8d41e19579 100644 --- a/clients/client-inspector/package.json +++ b/clients/client-inspector/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iot-1click-devices-service/package.json b/clients/client-iot-1click-devices-service/package.json index 32191fa12c9d..45a76911c456 100644 --- a/clients/client-iot-1click-devices-service/package.json +++ b/clients/client-iot-1click-devices-service/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iot-1click-projects/package.json b/clients/client-iot-1click-projects/package.json index c996a4abc4da..575ba94bc4c0 100644 --- a/clients/client-iot-1click-projects/package.json +++ b/clients/client-iot-1click-projects/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iot-data-plane/package.json b/clients/client-iot-data-plane/package.json index fa0883aec30c..6c10aab2a894 100644 --- a/clients/client-iot-data-plane/package.json +++ b/clients/client-iot-data-plane/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iot-events-data/package.json b/clients/client-iot-events-data/package.json index e1458eef1f68..ea468e5d8a43 100644 --- a/clients/client-iot-events-data/package.json +++ b/clients/client-iot-events-data/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iot-events/package.json b/clients/client-iot-events/package.json index 9e1c25c1ec53..b8d2c95e5091 100644 --- a/clients/client-iot-events/package.json +++ b/clients/client-iot-events/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iot-jobs-data-plane/package.json b/clients/client-iot-jobs-data-plane/package.json index 07423b747e9d..59500f852ec1 100644 --- a/clients/client-iot-jobs-data-plane/package.json +++ b/clients/client-iot-jobs-data-plane/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iot-wireless/package.json b/clients/client-iot-wireless/package.json index 18348f0319d7..942ccd9f2f0b 100644 --- a/clients/client-iot-wireless/package.json +++ b/clients/client-iot-wireless/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iot/package.json b/clients/client-iot/package.json index 49118f41046a..4cc03b7f8e76 100644 --- a/clients/client-iot/package.json +++ b/clients/client-iot/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iotanalytics/package.json b/clients/client-iotanalytics/package.json index fd19fb463653..bca92c4c1f92 100644 --- a/clients/client-iotanalytics/package.json +++ b/clients/client-iotanalytics/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iotdeviceadvisor/package.json b/clients/client-iotdeviceadvisor/package.json index d5b48ffa9b78..948bbe226898 100644 --- a/clients/client-iotdeviceadvisor/package.json +++ b/clients/client-iotdeviceadvisor/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iotfleethub/package.json b/clients/client-iotfleethub/package.json index f37fccf6d3e4..23776413cabe 100644 --- a/clients/client-iotfleethub/package.json +++ b/clients/client-iotfleethub/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iotsecuretunneling/package.json b/clients/client-iotsecuretunneling/package.json index 00dff0eb95d6..e36ebd8549c5 100644 --- a/clients/client-iotsecuretunneling/package.json +++ b/clients/client-iotsecuretunneling/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iotsitewise/package.json b/clients/client-iotsitewise/package.json index b20d0e80300d..8e8dc32b0ae1 100644 --- a/clients/client-iotsitewise/package.json +++ b/clients/client-iotsitewise/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-iotthingsgraph/package.json b/clients/client-iotthingsgraph/package.json index a62621c15e71..6fa185d5e21a 100644 --- a/clients/client-iotthingsgraph/package.json +++ b/clients/client-iotthingsgraph/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ivs/package.json b/clients/client-ivs/package.json index b1fc94456e05..4fbb2adbdcad 100644 --- a/clients/client-ivs/package.json +++ b/clients/client-ivs/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kafka/package.json b/clients/client-kafka/package.json index 42442701f004..a527af90ca9a 100644 --- a/clients/client-kafka/package.json +++ b/clients/client-kafka/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kendra/package.json b/clients/client-kendra/package.json index 57ca47e8f7d6..ec4fa781f994 100644 --- a/clients/client-kendra/package.json +++ b/clients/client-kendra/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kinesis-analytics-v2/package.json b/clients/client-kinesis-analytics-v2/package.json index 55f0712ad8db..1ab67f31cc12 100644 --- a/clients/client-kinesis-analytics-v2/package.json +++ b/clients/client-kinesis-analytics-v2/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kinesis-analytics/package.json b/clients/client-kinesis-analytics/package.json index d69e49f5d5c1..be5698a2104e 100644 --- a/clients/client-kinesis-analytics/package.json +++ b/clients/client-kinesis-analytics/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kinesis-video-archived-media/package.json b/clients/client-kinesis-video-archived-media/package.json index 01278a1a2fa6..0ade0ad35056 100644 --- a/clients/client-kinesis-video-archived-media/package.json +++ b/clients/client-kinesis-video-archived-media/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kinesis-video-media/package.json b/clients/client-kinesis-video-media/package.json index 4524aa2bbda5..6e3a8ce16f11 100644 --- a/clients/client-kinesis-video-media/package.json +++ b/clients/client-kinesis-video-media/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kinesis-video-signaling/package.json b/clients/client-kinesis-video-signaling/package.json index 6dec742fec2d..a213c77588f3 100644 --- a/clients/client-kinesis-video-signaling/package.json +++ b/clients/client-kinesis-video-signaling/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kinesis-video/package.json b/clients/client-kinesis-video/package.json index 3c0757ff5c25..941bcd907100 100644 --- a/clients/client-kinesis-video/package.json +++ b/clients/client-kinesis-video/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kinesis/package.json b/clients/client-kinesis/package.json index f7a4e5bf1feb..07fe1af5c429 100644 --- a/clients/client-kinesis/package.json +++ b/clients/client-kinesis/package.json @@ -46,6 +46,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-kms/package.json b/clients/client-kms/package.json index 85ccd7f19664..d552717e6204 100644 --- a/clients/client-kms/package.json +++ b/clients/client-kms/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lakeformation/package.json b/clients/client-lakeformation/package.json index c778e760e944..f8810b88cdd5 100644 --- a/clients/client-lakeformation/package.json +++ b/clients/client-lakeformation/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lambda/package.json b/clients/client-lambda/package.json index 0e638549b7a6..b6a448d4c727 100644 --- a/clients/client-lambda/package.json +++ b/clients/client-lambda/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lex-model-building-service/package.json b/clients/client-lex-model-building-service/package.json index 38a9cb55076b..ace9117b5ca4 100644 --- a/clients/client-lex-model-building-service/package.json +++ b/clients/client-lex-model-building-service/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lex-models-v2/package.json b/clients/client-lex-models-v2/package.json index 3c36827565e9..1638a7e42c44 100644 --- a/clients/client-lex-models-v2/package.json +++ b/clients/client-lex-models-v2/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lex-runtime-service/package.json b/clients/client-lex-runtime-service/package.json index 21d6583824d4..d423e8f965d5 100644 --- a/clients/client-lex-runtime-service/package.json +++ b/clients/client-lex-runtime-service/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lex-runtime-v2/package.json b/clients/client-lex-runtime-v2/package.json index fa4f2b4e6187..4248cfb8fba4 100644 --- a/clients/client-lex-runtime-v2/package.json +++ b/clients/client-lex-runtime-v2/package.json @@ -48,6 +48,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-license-manager/package.json b/clients/client-license-manager/package.json index ba490a244228..c230e3fea1ae 100644 --- a/clients/client-license-manager/package.json +++ b/clients/client-license-manager/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lightsail/package.json b/clients/client-lightsail/package.json index d767a920860c..c1fa7d986a2a 100644 --- a/clients/client-lightsail/package.json +++ b/clients/client-lightsail/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-location/package.json b/clients/client-location/package.json index d66e19a2cede..6defee695097 100644 --- a/clients/client-location/package.json +++ b/clients/client-location/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lookoutequipment/package.json b/clients/client-lookoutequipment/package.json index 984e474706e1..155eae050787 100644 --- a/clients/client-lookoutequipment/package.json +++ b/clients/client-lookoutequipment/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lookoutmetrics/package.json b/clients/client-lookoutmetrics/package.json index b0a666b293c2..41c646942e6f 100644 --- a/clients/client-lookoutmetrics/package.json +++ b/clients/client-lookoutmetrics/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-lookoutvision/package.json b/clients/client-lookoutvision/package.json index 579c39a78d12..f3a18df68118 100644 --- a/clients/client-lookoutvision/package.json +++ b/clients/client-lookoutvision/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-machine-learning/package.json b/clients/client-machine-learning/package.json index fb1ef2285130..2d1fc5226238 100644 --- a/clients/client-machine-learning/package.json +++ b/clients/client-machine-learning/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-macie/package.json b/clients/client-macie/package.json index b9db8c557a67..65609452f483 100644 --- a/clients/client-macie/package.json +++ b/clients/client-macie/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-macie2/package.json b/clients/client-macie2/package.json index 43e895d83a01..ee8d7c41378b 100644 --- a/clients/client-macie2/package.json +++ b/clients/client-macie2/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-managedblockchain/package.json b/clients/client-managedblockchain/package.json index 7dcc4973d860..28a6eb98728a 100644 --- a/clients/client-managedblockchain/package.json +++ b/clients/client-managedblockchain/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-marketplace-catalog/package.json b/clients/client-marketplace-catalog/package.json index 9035f21e6f18..eefb93589ffa 100644 --- a/clients/client-marketplace-catalog/package.json +++ b/clients/client-marketplace-catalog/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-marketplace-commerce-analytics/package.json b/clients/client-marketplace-commerce-analytics/package.json index a52ae91c0de2..29ae5f8e17fa 100644 --- a/clients/client-marketplace-commerce-analytics/package.json +++ b/clients/client-marketplace-commerce-analytics/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-marketplace-entitlement-service/package.json b/clients/client-marketplace-entitlement-service/package.json index c5a99df92ebb..2df5dae85ad7 100644 --- a/clients/client-marketplace-entitlement-service/package.json +++ b/clients/client-marketplace-entitlement-service/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-marketplace-metering/package.json b/clients/client-marketplace-metering/package.json index c40cc0e91b4b..e80cc314eb6a 100644 --- a/clients/client-marketplace-metering/package.json +++ b/clients/client-marketplace-metering/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mediaconnect/package.json b/clients/client-mediaconnect/package.json index 9df07d7a69ea..3d2f2455144b 100644 --- a/clients/client-mediaconnect/package.json +++ b/clients/client-mediaconnect/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mediaconvert/package.json b/clients/client-mediaconvert/package.json index 54ca664aa52e..1e6d1d593d58 100644 --- a/clients/client-mediaconvert/package.json +++ b/clients/client-mediaconvert/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-medialive/package.json b/clients/client-medialive/package.json index 86bfd7260b79..97a41b86c16f 100644 --- a/clients/client-medialive/package.json +++ b/clients/client-medialive/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mediapackage-vod/package.json b/clients/client-mediapackage-vod/package.json index 453d1efa1853..9514d12e1f28 100644 --- a/clients/client-mediapackage-vod/package.json +++ b/clients/client-mediapackage-vod/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mediapackage/package.json b/clients/client-mediapackage/package.json index 2eea472e53e9..954a63bf4ae3 100644 --- a/clients/client-mediapackage/package.json +++ b/clients/client-mediapackage/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mediastore-data/package.json b/clients/client-mediastore-data/package.json index 13f3d96e13ed..dc41de3cd357 100644 --- a/clients/client-mediastore-data/package.json +++ b/clients/client-mediastore-data/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mediastore/package.json b/clients/client-mediastore/package.json index 74eb4635bfd4..c41052799209 100644 --- a/clients/client-mediastore/package.json +++ b/clients/client-mediastore/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mediatailor/package.json b/clients/client-mediatailor/package.json index 480a7abf4c11..dc084b9bf915 100644 --- a/clients/client-mediatailor/package.json +++ b/clients/client-mediatailor/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mgn/package.json b/clients/client-mgn/package.json index b56edaabbece..49d3a46d7453 100644 --- a/clients/client-mgn/package.json +++ b/clients/client-mgn/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-migration-hub/package.json b/clients/client-migration-hub/package.json index ffefc4eb80f4..d2060e3a1a50 100644 --- a/clients/client-migration-hub/package.json +++ b/clients/client-migration-hub/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-migrationhub-config/package.json b/clients/client-migrationhub-config/package.json index 417c985ec6a7..b5e63def1639 100644 --- a/clients/client-migrationhub-config/package.json +++ b/clients/client-migrationhub-config/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mobile/package.json b/clients/client-mobile/package.json index 5e3bdedaaacd..4b8c21afacd9 100644 --- a/clients/client-mobile/package.json +++ b/clients/client-mobile/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mq/package.json b/clients/client-mq/package.json index a634b831e025..055ca83f6768 100644 --- a/clients/client-mq/package.json +++ b/clients/client-mq/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mturk/package.json b/clients/client-mturk/package.json index 59beb0078d1d..02821392455d 100644 --- a/clients/client-mturk/package.json +++ b/clients/client-mturk/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-mwaa/package.json b/clients/client-mwaa/package.json index 161d64b1a2ca..7c13bb169202 100644 --- a/clients/client-mwaa/package.json +++ b/clients/client-mwaa/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-neptune/package.json b/clients/client-neptune/package.json index 5a526853a2ac..a1ea17b32129 100644 --- a/clients/client-neptune/package.json +++ b/clients/client-neptune/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-network-firewall/package.json b/clients/client-network-firewall/package.json index 4158d48c1eaf..204b57847e1c 100644 --- a/clients/client-network-firewall/package.json +++ b/clients/client-network-firewall/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-networkmanager/package.json b/clients/client-networkmanager/package.json index b629178ead54..58466d18495a 100644 --- a/clients/client-networkmanager/package.json +++ b/clients/client-networkmanager/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-nimble/package.json b/clients/client-nimble/package.json index 6a7309d18248..bef9514c3fad 100644 --- a/clients/client-nimble/package.json +++ b/clients/client-nimble/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-opsworks/package.json b/clients/client-opsworks/package.json index 9ccef0713a1a..abf49555c62e 100644 --- a/clients/client-opsworks/package.json +++ b/clients/client-opsworks/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-opsworkscm/package.json b/clients/client-opsworkscm/package.json index 0f7c4ebda909..78b3e238b58a 100644 --- a/clients/client-opsworkscm/package.json +++ b/clients/client-opsworkscm/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-organizations/package.json b/clients/client-organizations/package.json index 9fd624bce7ce..6789dc2f9a89 100644 --- a/clients/client-organizations/package.json +++ b/clients/client-organizations/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-outposts/package.json b/clients/client-outposts/package.json index 9476454abc2a..1ad97ba06be8 100644 --- a/clients/client-outposts/package.json +++ b/clients/client-outposts/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-personalize-events/package.json b/clients/client-personalize-events/package.json index 87420531556b..b1fa81614456 100644 --- a/clients/client-personalize-events/package.json +++ b/clients/client-personalize-events/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-personalize-runtime/package.json b/clients/client-personalize-runtime/package.json index 2e68ec9d93a7..fbad1d3a1320 100644 --- a/clients/client-personalize-runtime/package.json +++ b/clients/client-personalize-runtime/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-personalize/package.json b/clients/client-personalize/package.json index 04acdfa85f2b..91a3ae97bcc9 100644 --- a/clients/client-personalize/package.json +++ b/clients/client-personalize/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-pi/package.json b/clients/client-pi/package.json index 8fb97137ad35..6b55ae563d90 100644 --- a/clients/client-pi/package.json +++ b/clients/client-pi/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-pinpoint-email/package.json b/clients/client-pinpoint-email/package.json index 551a47622cc2..d9899baf89b8 100644 --- a/clients/client-pinpoint-email/package.json +++ b/clients/client-pinpoint-email/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-pinpoint-sms-voice/package.json b/clients/client-pinpoint-sms-voice/package.json index 33a39bc39561..1d782db55e3d 100644 --- a/clients/client-pinpoint-sms-voice/package.json +++ b/clients/client-pinpoint-sms-voice/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-pinpoint/package.json b/clients/client-pinpoint/package.json index 5858899f8d4b..723ad5b3e381 100644 --- a/clients/client-pinpoint/package.json +++ b/clients/client-pinpoint/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-polly/package.json b/clients/client-polly/package.json index d6e648e793e7..8d6b4b419c33 100644 --- a/clients/client-polly/package.json +++ b/clients/client-polly/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-pricing/package.json b/clients/client-pricing/package.json index 2eb261f0b37d..1061604f0da2 100644 --- a/clients/client-pricing/package.json +++ b/clients/client-pricing/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-proton/package.json b/clients/client-proton/package.json index 3dd037f96252..44d4be186eba 100644 --- a/clients/client-proton/package.json +++ b/clients/client-proton/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-qldb-session/package.json b/clients/client-qldb-session/package.json index 84ce939694c1..52a763b275a1 100644 --- a/clients/client-qldb-session/package.json +++ b/clients/client-qldb-session/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-qldb/package.json b/clients/client-qldb/package.json index f330061bf5e3..dc331e3f8070 100644 --- a/clients/client-qldb/package.json +++ b/clients/client-qldb/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-quicksight/package.json b/clients/client-quicksight/package.json index 599900cca838..51934ac2215f 100644 --- a/clients/client-quicksight/package.json +++ b/clients/client-quicksight/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ram/package.json b/clients/client-ram/package.json index d4a24df077df..fef9eed46d13 100644 --- a/clients/client-ram/package.json +++ b/clients/client-ram/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-rds-data/package.json b/clients/client-rds-data/package.json index d4c6445169eb..8330ba86ed07 100644 --- a/clients/client-rds-data/package.json +++ b/clients/client-rds-data/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-rds/package.json b/clients/client-rds/package.json index 97917005803b..32ceeeb450d2 100644 --- a/clients/client-rds/package.json +++ b/clients/client-rds/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-redshift-data/package.json b/clients/client-redshift-data/package.json index f5acebe72e7a..5d81e4b7874b 100644 --- a/clients/client-redshift-data/package.json +++ b/clients/client-redshift-data/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-redshift/package.json b/clients/client-redshift/package.json index 3160a2292cdf..6fbd141bb384 100644 --- a/clients/client-redshift/package.json +++ b/clients/client-redshift/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-rekognition/package.json b/clients/client-rekognition/package.json index c541f71e72d2..76dc0bce139f 100644 --- a/clients/client-rekognition/package.json +++ b/clients/client-rekognition/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-resource-groups-tagging-api/package.json b/clients/client-resource-groups-tagging-api/package.json index 11a95a91430f..f20f24e7ee35 100644 --- a/clients/client-resource-groups-tagging-api/package.json +++ b/clients/client-resource-groups-tagging-api/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-resource-groups/package.json b/clients/client-resource-groups/package.json index 6675f79a3a42..abe60a8cf5c0 100644 --- a/clients/client-resource-groups/package.json +++ b/clients/client-resource-groups/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-robomaker/package.json b/clients/client-robomaker/package.json index 566170135a3e..f23c2a73aee1 100644 --- a/clients/client-robomaker/package.json +++ b/clients/client-robomaker/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-route-53-domains/package.json b/clients/client-route-53-domains/package.json index be64be1d6385..bba105451fbb 100644 --- a/clients/client-route-53-domains/package.json +++ b/clients/client-route-53-domains/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-route-53/package.json b/clients/client-route-53/package.json index 6b5b6b4129d6..18ac3092f092 100644 --- a/clients/client-route-53/package.json +++ b/clients/client-route-53/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-route53resolver/package.json b/clients/client-route53resolver/package.json index 83c92c62f775..2657ff8e158d 100644 --- a/clients/client-route53resolver/package.json +++ b/clients/client-route53resolver/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-s3-control/package.json b/clients/client-s3-control/package.json index 140d9fe513f5..2c0a51c8f8f0 100644 --- a/clients/client-s3-control/package.json +++ b/clients/client-s3-control/package.json @@ -49,6 +49,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-s3/package.json b/clients/client-s3/package.json index 2a12853175ac..35e53fcb9425 100644 --- a/clients/client-s3/package.json +++ b/clients/client-s3/package.json @@ -57,6 +57,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-s3outposts/package.json b/clients/client-s3outposts/package.json index 1d468767299f..07d2b2403628 100644 --- a/clients/client-s3outposts/package.json +++ b/clients/client-s3outposts/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sagemaker-a2i-runtime/package.json b/clients/client-sagemaker-a2i-runtime/package.json index e88e5e8415ae..d8bc8043724b 100644 --- a/clients/client-sagemaker-a2i-runtime/package.json +++ b/clients/client-sagemaker-a2i-runtime/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sagemaker-edge/package.json b/clients/client-sagemaker-edge/package.json index 45cc2eb03564..fcca4b608d6d 100644 --- a/clients/client-sagemaker-edge/package.json +++ b/clients/client-sagemaker-edge/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sagemaker-featurestore-runtime/package.json b/clients/client-sagemaker-featurestore-runtime/package.json index 9b46001b4fa8..7d6d9639691c 100644 --- a/clients/client-sagemaker-featurestore-runtime/package.json +++ b/clients/client-sagemaker-featurestore-runtime/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sagemaker-runtime/package.json b/clients/client-sagemaker-runtime/package.json index b03f2b4ea81f..039639055862 100644 --- a/clients/client-sagemaker-runtime/package.json +++ b/clients/client-sagemaker-runtime/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sagemaker/package.json b/clients/client-sagemaker/package.json index b0d78b5712e7..5e1685f3d5cd 100644 --- a/clients/client-sagemaker/package.json +++ b/clients/client-sagemaker/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-savingsplans/package.json b/clients/client-savingsplans/package.json index 6213f776d461..3988aa229416 100644 --- a/clients/client-savingsplans/package.json +++ b/clients/client-savingsplans/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-schemas/package.json b/clients/client-schemas/package.json index d8f400694977..4b03310956bc 100644 --- a/clients/client-schemas/package.json +++ b/clients/client-schemas/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-secrets-manager/package.json b/clients/client-secrets-manager/package.json index ceb0655bb940..86a9a8c3c329 100644 --- a/clients/client-secrets-manager/package.json +++ b/clients/client-secrets-manager/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-securityhub/package.json b/clients/client-securityhub/package.json index 09957017ff4d..d01aceccc845 100644 --- a/clients/client-securityhub/package.json +++ b/clients/client-securityhub/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-serverlessapplicationrepository/package.json b/clients/client-serverlessapplicationrepository/package.json index aab997fad1d4..dfe62c0f7ff8 100644 --- a/clients/client-serverlessapplicationrepository/package.json +++ b/clients/client-serverlessapplicationrepository/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-service-catalog-appregistry/package.json b/clients/client-service-catalog-appregistry/package.json index e70628e7b055..cee7680f5261 100644 --- a/clients/client-service-catalog-appregistry/package.json +++ b/clients/client-service-catalog-appregistry/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-service-catalog/package.json b/clients/client-service-catalog/package.json index b6851923b831..c23528d41411 100644 --- a/clients/client-service-catalog/package.json +++ b/clients/client-service-catalog/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-service-quotas/package.json b/clients/client-service-quotas/package.json index 1b86cd2dab13..0dce8a845924 100644 --- a/clients/client-service-quotas/package.json +++ b/clients/client-service-quotas/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-servicediscovery/package.json b/clients/client-servicediscovery/package.json index a39766ab9610..6c53d4951722 100644 --- a/clients/client-servicediscovery/package.json +++ b/clients/client-servicediscovery/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ses/package.json b/clients/client-ses/package.json index 431618404c1d..50a64c6caac5 100644 --- a/clients/client-ses/package.json +++ b/clients/client-ses/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sesv2/package.json b/clients/client-sesv2/package.json index 63017cbab8f5..178f81e1a0f7 100644 --- a/clients/client-sesv2/package.json +++ b/clients/client-sesv2/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sfn/package.json b/clients/client-sfn/package.json index 4829f3aef74f..868250b327d6 100644 --- a/clients/client-sfn/package.json +++ b/clients/client-sfn/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-shield/package.json b/clients/client-shield/package.json index 2b1cf2fbfc46..8521e775520c 100644 --- a/clients/client-shield/package.json +++ b/clients/client-shield/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-signer/package.json b/clients/client-signer/package.json index 832ff95f9a83..1d48cdf343e6 100644 --- a/clients/client-signer/package.json +++ b/clients/client-signer/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sms/package.json b/clients/client-sms/package.json index 52b56db3b7a8..e8e1c6d8dab8 100644 --- a/clients/client-sms/package.json +++ b/clients/client-sms/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-snowball/package.json b/clients/client-snowball/package.json index b2e89e5b90d8..fff280ddc127 100644 --- a/clients/client-snowball/package.json +++ b/clients/client-snowball/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sns/package.json b/clients/client-sns/package.json index 3e0a510cd453..3683d7ee8739 100644 --- a/clients/client-sns/package.json +++ b/clients/client-sns/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sqs/package.json b/clients/client-sqs/package.json index 3baaf8229e23..8ac289abe929 100644 --- a/clients/client-sqs/package.json +++ b/clients/client-sqs/package.json @@ -45,6 +45,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ssm-contacts/package.json b/clients/client-ssm-contacts/package.json index 612446319c35..747d55da0ebb 100644 --- a/clients/client-ssm-contacts/package.json +++ b/clients/client-ssm-contacts/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ssm-incidents/package.json b/clients/client-ssm-incidents/package.json index 354b297a7d0e..a9a24d1dd5e3 100644 --- a/clients/client-ssm-incidents/package.json +++ b/clients/client-ssm-incidents/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-ssm/package.json b/clients/client-ssm/package.json index 70d5ad41a785..cfc020c5df60 100644 --- a/clients/client-ssm/package.json +++ b/clients/client-ssm/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sso-admin/package.json b/clients/client-sso-admin/package.json index a34ceac6bcfb..79ee25521e23 100644 --- a/clients/client-sso-admin/package.json +++ b/clients/client-sso-admin/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sso-oidc/package.json b/clients/client-sso-oidc/package.json index 8bb47eb68742..bdc9d94abbee 100644 --- a/clients/client-sso-oidc/package.json +++ b/clients/client-sso-oidc/package.json @@ -40,6 +40,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sso/package.json b/clients/client-sso/package.json index e75de047659c..36a807a6d2e9 100644 --- a/clients/client-sso/package.json +++ b/clients/client-sso/package.json @@ -40,6 +40,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-storage-gateway/package.json b/clients/client-storage-gateway/package.json index 378c04212bd4..8d95cf5449a8 100644 --- a/clients/client-storage-gateway/package.json +++ b/clients/client-storage-gateway/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-sts/package.json b/clients/client-sts/package.json index 6400349631d3..9a5077f11b5a 100644 --- a/clients/client-sts/package.json +++ b/clients/client-sts/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-support/package.json b/clients/client-support/package.json index 74a8e4dae156..09beaa8854cc 100644 --- a/clients/client-support/package.json +++ b/clients/client-support/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-swf/package.json b/clients/client-swf/package.json index ad8b3aebf41f..5514082992d4 100644 --- a/clients/client-swf/package.json +++ b/clients/client-swf/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-synthetics/package.json b/clients/client-synthetics/package.json index 58856917e319..ec45f5b0b155 100644 --- a/clients/client-synthetics/package.json +++ b/clients/client-synthetics/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-textract/package.json b/clients/client-textract/package.json index 4999c93482a5..e1e3735cb2b4 100644 --- a/clients/client-textract/package.json +++ b/clients/client-textract/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-timestream-query/package.json b/clients/client-timestream-query/package.json index 219939b7f8d9..9c9c3df885a0 100644 --- a/clients/client-timestream-query/package.json +++ b/clients/client-timestream-query/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-timestream-write/package.json b/clients/client-timestream-write/package.json index b98f3f6c7157..93fe36b5339f 100644 --- a/clients/client-timestream-write/package.json +++ b/clients/client-timestream-write/package.json @@ -44,6 +44,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-transcribe-streaming/package.json b/clients/client-transcribe-streaming/package.json index c82aed2eb7c2..f29389a701ae 100644 --- a/clients/client-transcribe-streaming/package.json +++ b/clients/client-transcribe-streaming/package.json @@ -52,6 +52,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-transcribe/package.json b/clients/client-transcribe/package.json index 94fbcac296d3..ef2dbc7e97be 100644 --- a/clients/client-transcribe/package.json +++ b/clients/client-transcribe/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-transfer/package.json b/clients/client-transfer/package.json index bf6cc0f25e2e..db72880fb65c 100644 --- a/clients/client-transfer/package.json +++ b/clients/client-transfer/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-translate/package.json b/clients/client-translate/package.json index 7c7c06b7cb0e..6c9e8b32b4fa 100644 --- a/clients/client-translate/package.json +++ b/clients/client-translate/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-waf-regional/package.json b/clients/client-waf-regional/package.json index 8f967402ca7d..2802c55bf027 100644 --- a/clients/client-waf-regional/package.json +++ b/clients/client-waf-regional/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-waf/package.json b/clients/client-waf/package.json index 46c3c289d826..198e8eca475d 100644 --- a/clients/client-waf/package.json +++ b/clients/client-waf/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-wafv2/package.json b/clients/client-wafv2/package.json index fc21e063ed80..10ca705639fa 100644 --- a/clients/client-wafv2/package.json +++ b/clients/client-wafv2/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-wellarchitected/package.json b/clients/client-wellarchitected/package.json index 2b86c6fa3737..a53c8cde2a58 100644 --- a/clients/client-wellarchitected/package.json +++ b/clients/client-wellarchitected/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-workdocs/package.json b/clients/client-workdocs/package.json index e19515d3241e..a8c8b9ed9b27 100644 --- a/clients/client-workdocs/package.json +++ b/clients/client-workdocs/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-worklink/package.json b/clients/client-worklink/package.json index dbc87e1102b7..ae464d06fb8a 100644 --- a/clients/client-worklink/package.json +++ b/clients/client-worklink/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-workmail/package.json b/clients/client-workmail/package.json index 77c820770342..17695e23a688 100644 --- a/clients/client-workmail/package.json +++ b/clients/client-workmail/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-workmailmessageflow/package.json b/clients/client-workmailmessageflow/package.json index f8e4f22de20b..b2a8ee36e8ec 100644 --- a/clients/client-workmailmessageflow/package.json +++ b/clients/client-workmailmessageflow/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-workspaces/package.json b/clients/client-workspaces/package.json index a0d48be31fcb..c47277de7d8f 100644 --- a/clients/client-workspaces/package.json +++ b/clients/client-workspaces/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/clients/client-xray/package.json b/clients/client-xray/package.json index 19995c936845..dc90eb21e74c 100644 --- a/clients/client-xray/package.json +++ b/clients/client-xray/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/protocol_tests/aws-ec2/package.json b/protocol_tests/aws-ec2/package.json index c854b49a41c7..756963ae2de4 100644 --- a/protocol_tests/aws-ec2/package.json +++ b/protocol_tests/aws-ec2/package.json @@ -40,6 +40,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/protocol_tests/aws-json-10/package.json b/protocol_tests/aws-json-10/package.json index fa7b04efc187..a7c500d0263a 100644 --- a/protocol_tests/aws-json-10/package.json +++ b/protocol_tests/aws-json-10/package.json @@ -40,6 +40,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/protocol_tests/aws-json/package.json b/protocol_tests/aws-json/package.json index 8cd4e1917dab..0557e6412463 100644 --- a/protocol_tests/aws-json/package.json +++ b/protocol_tests/aws-json/package.json @@ -43,6 +43,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/protocol_tests/aws-query/package.json b/protocol_tests/aws-query/package.json index 3a0067644f73..e187419cb394 100644 --- a/protocol_tests/aws-query/package.json +++ b/protocol_tests/aws-query/package.json @@ -40,6 +40,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", "@aws-sdk/types": "3.20.0", diff --git a/protocol_tests/aws-restjson/package.json b/protocol_tests/aws-restjson/package.json index 702f3ac2b327..28ee8c9bd396 100644 --- a/protocol_tests/aws-restjson/package.json +++ b/protocol_tests/aws-restjson/package.json @@ -40,6 +40,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/querystring-builder": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", diff --git a/protocol_tests/aws-restxml/package.json b/protocol_tests/aws-restxml/package.json index 451d4241b000..a6ad1b96d4b2 100644 --- a/protocol_tests/aws-restxml/package.json +++ b/protocol_tests/aws-restxml/package.json @@ -40,6 +40,7 @@ "@aws-sdk/middleware-user-agent": "3.20.0", "@aws-sdk/node-config-provider": "3.20.0", "@aws-sdk/node-http-handler": "3.21.0", + "@aws-sdk/postinstall-node-version-check": "3.0.0", "@aws-sdk/protocol-http": "3.20.0", "@aws-sdk/querystring-builder": "3.20.0", "@aws-sdk/smithy-client": "3.20.0", From 1222feb6181d572aff8ce4a21b68e6a9032c248d Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Fri, 16 Jul 2021 19:31:23 +0000 Subject: [PATCH 5/6] chore(scripts): add postinstall script to clients --- scripts/generate-clients/copy-to-clients.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/generate-clients/copy-to-clients.js b/scripts/generate-clients/copy-to-clients.js index c47cafbfb4bd..567eddaa5109 100644 --- a/scripts/generate-clients/copy-to-clients.js +++ b/scripts/generate-clients/copy-to-clients.js @@ -53,6 +53,10 @@ const mergeManifest = (fromContent = {}, toContent = {}) => { // Allow target package.json(toContent) has its own special script or // dev dependencies that won't be overwritten in codegen merged[name] = { ...toContent[name], ...merged[name] }; + if (name === "scripts") { + // Overwrite scripts in codegen package.json with scripts in target package.json + merged[name] = { ...merged[name], postinstall: "postinstall-node-version-check" }; + } } if (name === "dependencies" || name === "devDependencies") { // Sort dependencies as done by lerna From 9e21f0a98d79259b97b86db6447a07ae5dd0d034 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Fri, 16 Jul 2021 19:33:48 +0000 Subject: [PATCH 6/6] chore(clients): add postinstall script to clients --- clients/client-accessanalyzer/package.json | 3 ++- clients/client-acm-pca/package.json | 3 ++- clients/client-acm/package.json | 3 ++- clients/client-alexa-for-business/package.json | 3 ++- clients/client-amp/package.json | 3 ++- clients/client-amplify/package.json | 3 ++- clients/client-amplifybackend/package.json | 3 ++- clients/client-api-gateway/package.json | 3 ++- clients/client-apigatewaymanagementapi/package.json | 3 ++- clients/client-apigatewayv2/package.json | 3 ++- clients/client-app-mesh/package.json | 3 ++- clients/client-appconfig/package.json | 3 ++- clients/client-appflow/package.json | 3 ++- clients/client-appintegrations/package.json | 3 ++- clients/client-application-auto-scaling/package.json | 3 ++- clients/client-application-discovery-service/package.json | 3 ++- clients/client-application-insights/package.json | 3 ++- clients/client-applicationcostprofiler/package.json | 3 ++- clients/client-apprunner/package.json | 3 ++- clients/client-appstream/package.json | 3 ++- clients/client-appsync/package.json | 3 ++- clients/client-athena/package.json | 3 ++- clients/client-auditmanager/package.json | 3 ++- clients/client-auto-scaling-plans/package.json | 3 ++- clients/client-auto-scaling/package.json | 3 ++- clients/client-backup/package.json | 3 ++- clients/client-batch/package.json | 3 ++- clients/client-braket/package.json | 3 ++- clients/client-budgets/package.json | 3 ++- clients/client-chime/package.json | 3 ++- clients/client-cloud9/package.json | 3 ++- clients/client-clouddirectory/package.json | 3 ++- clients/client-cloudformation/package.json | 3 ++- clients/client-cloudfront/package.json | 3 ++- clients/client-cloudhsm-v2/package.json | 3 ++- clients/client-cloudhsm/package.json | 3 ++- clients/client-cloudsearch-domain/package.json | 3 ++- clients/client-cloudsearch/package.json | 3 ++- clients/client-cloudtrail/package.json | 3 ++- clients/client-cloudwatch-events/package.json | 3 ++- clients/client-cloudwatch-logs/package.json | 3 ++- clients/client-cloudwatch/package.json | 3 ++- clients/client-codeartifact/package.json | 3 ++- clients/client-codebuild/package.json | 3 ++- clients/client-codecommit/package.json | 3 ++- clients/client-codedeploy/package.json | 3 ++- clients/client-codeguru-reviewer/package.json | 3 ++- clients/client-codeguruprofiler/package.json | 3 ++- clients/client-codepipeline/package.json | 3 ++- clients/client-codestar-connections/package.json | 3 ++- clients/client-codestar-notifications/package.json | 3 ++- clients/client-codestar/package.json | 3 ++- clients/client-cognito-identity-provider/package.json | 3 ++- clients/client-cognito-identity/package.json | 3 ++- clients/client-cognito-sync/package.json | 3 ++- clients/client-comprehend/package.json | 3 ++- clients/client-comprehendmedical/package.json | 3 ++- clients/client-compute-optimizer/package.json | 3 ++- clients/client-config-service/package.json | 3 ++- clients/client-connect-contact-lens/package.json | 3 ++- clients/client-connect/package.json | 3 ++- clients/client-connectparticipant/package.json | 3 ++- clients/client-cost-and-usage-report-service/package.json | 3 ++- clients/client-cost-explorer/package.json | 3 ++- clients/client-customer-profiles/package.json | 3 ++- clients/client-data-pipeline/package.json | 3 ++- clients/client-database-migration-service/package.json | 3 ++- clients/client-databrew/package.json | 3 ++- clients/client-dataexchange/package.json | 3 ++- clients/client-datasync/package.json | 3 ++- clients/client-dax/package.json | 3 ++- clients/client-detective/package.json | 3 ++- clients/client-device-farm/package.json | 3 ++- clients/client-devops-guru/package.json | 3 ++- clients/client-direct-connect/package.json | 3 ++- clients/client-directory-service/package.json | 3 ++- clients/client-dlm/package.json | 3 ++- clients/client-docdb/package.json | 3 ++- clients/client-dynamodb-streams/package.json | 3 ++- clients/client-dynamodb/package.json | 3 ++- clients/client-ebs/package.json | 3 ++- clients/client-ec2-instance-connect/package.json | 3 ++- clients/client-ec2/package.json | 3 ++- clients/client-ecr-public/package.json | 3 ++- clients/client-ecr/package.json | 3 ++- clients/client-ecs/package.json | 3 ++- clients/client-efs/package.json | 3 ++- clients/client-eks/package.json | 3 ++- clients/client-elastic-beanstalk/package.json | 3 ++- clients/client-elastic-inference/package.json | 3 ++- clients/client-elastic-load-balancing-v2/package.json | 3 ++- clients/client-elastic-load-balancing/package.json | 3 ++- clients/client-elastic-transcoder/package.json | 3 ++- clients/client-elasticache/package.json | 3 ++- clients/client-elasticsearch-service/package.json | 3 ++- clients/client-emr-containers/package.json | 3 ++- clients/client-emr/package.json | 3 ++- clients/client-eventbridge/package.json | 3 ++- clients/client-finspace-data/package.json | 3 ++- clients/client-finspace/package.json | 3 ++- clients/client-firehose/package.json | 3 ++- clients/client-fis/package.json | 3 ++- clients/client-fms/package.json | 3 ++- clients/client-forecast/package.json | 3 ++- clients/client-forecastquery/package.json | 3 ++- clients/client-frauddetector/package.json | 3 ++- clients/client-fsx/package.json | 3 ++- clients/client-gamelift/package.json | 3 ++- clients/client-glacier/package.json | 3 ++- clients/client-global-accelerator/package.json | 3 ++- clients/client-glue/package.json | 3 ++- clients/client-greengrass/package.json | 3 ++- clients/client-greengrassv2/package.json | 3 ++- clients/client-groundstation/package.json | 3 ++- clients/client-guardduty/package.json | 3 ++- clients/client-health/package.json | 3 ++- clients/client-healthlake/package.json | 3 ++- clients/client-honeycode/package.json | 3 ++- clients/client-iam/package.json | 3 ++- clients/client-identitystore/package.json | 3 ++- clients/client-imagebuilder/package.json | 3 ++- clients/client-inspector/package.json | 3 ++- clients/client-iot-1click-devices-service/package.json | 3 ++- clients/client-iot-1click-projects/package.json | 3 ++- clients/client-iot-data-plane/package.json | 3 ++- clients/client-iot-events-data/package.json | 3 ++- clients/client-iot-events/package.json | 3 ++- clients/client-iot-jobs-data-plane/package.json | 3 ++- clients/client-iot-wireless/package.json | 3 ++- clients/client-iot/package.json | 3 ++- clients/client-iotanalytics/package.json | 3 ++- clients/client-iotdeviceadvisor/package.json | 3 ++- clients/client-iotfleethub/package.json | 3 ++- clients/client-iotsecuretunneling/package.json | 3 ++- clients/client-iotsitewise/package.json | 3 ++- clients/client-iotthingsgraph/package.json | 3 ++- clients/client-ivs/package.json | 3 ++- clients/client-kafka/package.json | 3 ++- clients/client-kendra/package.json | 3 ++- clients/client-kinesis-analytics-v2/package.json | 3 ++- clients/client-kinesis-analytics/package.json | 3 ++- clients/client-kinesis-video-archived-media/package.json | 3 ++- clients/client-kinesis-video-media/package.json | 3 ++- clients/client-kinesis-video-signaling/package.json | 3 ++- clients/client-kinesis-video/package.json | 3 ++- clients/client-kinesis/package.json | 3 ++- clients/client-kms/package.json | 3 ++- clients/client-lakeformation/package.json | 3 ++- clients/client-lambda/package.json | 3 ++- clients/client-lex-model-building-service/package.json | 3 ++- clients/client-lex-models-v2/package.json | 3 ++- clients/client-lex-runtime-service/package.json | 3 ++- clients/client-lex-runtime-v2/package.json | 3 ++- clients/client-license-manager/package.json | 3 ++- clients/client-lightsail/package.json | 3 ++- clients/client-location/package.json | 3 ++- clients/client-lookoutequipment/package.json | 3 ++- clients/client-lookoutmetrics/package.json | 3 ++- clients/client-lookoutvision/package.json | 3 ++- clients/client-machine-learning/package.json | 3 ++- clients/client-macie/package.json | 3 ++- clients/client-macie2/package.json | 3 ++- clients/client-managedblockchain/package.json | 3 ++- clients/client-marketplace-catalog/package.json | 3 ++- clients/client-marketplace-commerce-analytics/package.json | 3 ++- clients/client-marketplace-entitlement-service/package.json | 3 ++- clients/client-marketplace-metering/package.json | 3 ++- clients/client-mediaconnect/package.json | 3 ++- clients/client-mediaconvert/package.json | 3 ++- clients/client-medialive/package.json | 3 ++- clients/client-mediapackage-vod/package.json | 3 ++- clients/client-mediapackage/package.json | 3 ++- clients/client-mediastore-data/package.json | 3 ++- clients/client-mediastore/package.json | 3 ++- clients/client-mediatailor/package.json | 3 ++- clients/client-mgn/package.json | 3 ++- clients/client-migration-hub/package.json | 3 ++- clients/client-migrationhub-config/package.json | 3 ++- clients/client-mobile/package.json | 3 ++- clients/client-mq/package.json | 3 ++- clients/client-mturk/package.json | 3 ++- clients/client-mwaa/package.json | 3 ++- clients/client-neptune/package.json | 3 ++- clients/client-network-firewall/package.json | 3 ++- clients/client-networkmanager/package.json | 3 ++- clients/client-nimble/package.json | 3 ++- clients/client-opsworks/package.json | 3 ++- clients/client-opsworkscm/package.json | 3 ++- clients/client-organizations/package.json | 3 ++- clients/client-outposts/package.json | 3 ++- clients/client-personalize-events/package.json | 3 ++- clients/client-personalize-runtime/package.json | 3 ++- clients/client-personalize/package.json | 3 ++- clients/client-pi/package.json | 3 ++- clients/client-pinpoint-email/package.json | 3 ++- clients/client-pinpoint-sms-voice/package.json | 3 ++- clients/client-pinpoint/package.json | 3 ++- clients/client-polly/package.json | 3 ++- clients/client-pricing/package.json | 3 ++- clients/client-proton/package.json | 3 ++- clients/client-qldb-session/package.json | 3 ++- clients/client-qldb/package.json | 3 ++- clients/client-quicksight/package.json | 3 ++- clients/client-ram/package.json | 3 ++- clients/client-rds-data/package.json | 3 ++- clients/client-rds/package.json | 3 ++- clients/client-redshift-data/package.json | 3 ++- clients/client-redshift/package.json | 3 ++- clients/client-rekognition/package.json | 3 ++- clients/client-resource-groups-tagging-api/package.json | 3 ++- clients/client-resource-groups/package.json | 3 ++- clients/client-robomaker/package.json | 3 ++- clients/client-route-53-domains/package.json | 3 ++- clients/client-route-53/package.json | 3 ++- clients/client-route53resolver/package.json | 3 ++- clients/client-s3-control/package.json | 3 ++- clients/client-s3/package.json | 3 ++- clients/client-s3outposts/package.json | 3 ++- clients/client-sagemaker-a2i-runtime/package.json | 3 ++- clients/client-sagemaker-edge/package.json | 3 ++- clients/client-sagemaker-featurestore-runtime/package.json | 3 ++- clients/client-sagemaker-runtime/package.json | 3 ++- clients/client-sagemaker/package.json | 3 ++- clients/client-savingsplans/package.json | 3 ++- clients/client-schemas/package.json | 3 ++- clients/client-secrets-manager/package.json | 3 ++- clients/client-securityhub/package.json | 3 ++- clients/client-serverlessapplicationrepository/package.json | 3 ++- clients/client-service-catalog-appregistry/package.json | 3 ++- clients/client-service-catalog/package.json | 3 ++- clients/client-service-quotas/package.json | 3 ++- clients/client-servicediscovery/package.json | 3 ++- clients/client-ses/package.json | 3 ++- clients/client-sesv2/package.json | 3 ++- clients/client-sfn/package.json | 3 ++- clients/client-shield/package.json | 3 ++- clients/client-signer/package.json | 3 ++- clients/client-sms/package.json | 3 ++- clients/client-snowball/package.json | 3 ++- clients/client-sns/package.json | 3 ++- clients/client-sqs/package.json | 3 ++- clients/client-ssm-contacts/package.json | 3 ++- clients/client-ssm-incidents/package.json | 3 ++- clients/client-ssm/package.json | 3 ++- clients/client-sso-admin/package.json | 3 ++- clients/client-sso-oidc/package.json | 3 ++- clients/client-sso/package.json | 3 ++- clients/client-storage-gateway/package.json | 3 ++- clients/client-sts/package.json | 3 ++- clients/client-support/package.json | 3 ++- clients/client-swf/package.json | 3 ++- clients/client-synthetics/package.json | 3 ++- clients/client-textract/package.json | 3 ++- clients/client-timestream-query/package.json | 3 ++- clients/client-timestream-write/package.json | 3 ++- clients/client-transcribe-streaming/package.json | 3 ++- clients/client-transcribe/package.json | 3 ++- clients/client-transfer/package.json | 3 ++- clients/client-translate/package.json | 3 ++- clients/client-waf-regional/package.json | 3 ++- clients/client-waf/package.json | 3 ++- clients/client-wafv2/package.json | 3 ++- clients/client-wellarchitected/package.json | 3 ++- clients/client-workdocs/package.json | 3 ++- clients/client-worklink/package.json | 3 ++- clients/client-workmail/package.json | 3 ++- clients/client-workmailmessageflow/package.json | 3 ++- clients/client-workspaces/package.json | 3 ++- clients/client-xray/package.json | 3 ++- protocol_tests/aws-ec2/package.json | 3 ++- protocol_tests/aws-json-10/package.json | 3 ++- protocol_tests/aws-json/package.json | 3 ++- protocol_tests/aws-query/package.json | 3 ++- protocol_tests/aws-restjson/package.json | 3 ++- protocol_tests/aws-restxml/package.json | 3 ++- 275 files changed, 550 insertions(+), 275 deletions(-) diff --git a/clients/client-accessanalyzer/package.json b/clients/client-accessanalyzer/package.json index 08226b7160e0..e3de0b836e6b 100644 --- a/clients/client-accessanalyzer/package.json +++ b/clients/client-accessanalyzer/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-acm-pca/package.json b/clients/client-acm-pca/package.json index 47b0c3cdd3f3..74c876b9516f 100644 --- a/clients/client-acm-pca/package.json +++ b/clients/client-acm-pca/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-acm/package.json b/clients/client-acm/package.json index c4ff208ccb20..e599b760067d 100644 --- a/clients/client-acm/package.json +++ b/clients/client-acm/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-alexa-for-business/package.json b/clients/client-alexa-for-business/package.json index 8f0b1ffaadc5..b8becf6cfee2 100644 --- a/clients/client-alexa-for-business/package.json +++ b/clients/client-alexa-for-business/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-amp/package.json b/clients/client-amp/package.json index c3704772d424..f352387559b9 100644 --- a/clients/client-amp/package.json +++ b/clients/client-amp/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-amplify/package.json b/clients/client-amplify/package.json index 69eaba60fb9e..f22c4336c457 100644 --- a/clients/client-amplify/package.json +++ b/clients/client-amplify/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-amplifybackend/package.json b/clients/client-amplifybackend/package.json index 393a8b9afb10..6cf049dcf2fe 100644 --- a/clients/client-amplifybackend/package.json +++ b/clients/client-amplifybackend/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-api-gateway/package.json b/clients/client-api-gateway/package.json index 51a8053206dd..67588f5b0455 100644 --- a/clients/client-api-gateway/package.json +++ b/clients/client-api-gateway/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-apigatewaymanagementapi/package.json b/clients/client-apigatewaymanagementapi/package.json index 359c54e31a0a..8b9bbce0c94f 100644 --- a/clients/client-apigatewaymanagementapi/package.json +++ b/clients/client-apigatewaymanagementapi/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-apigatewayv2/package.json b/clients/client-apigatewayv2/package.json index b5aeee74cf85..9ff547a1a915 100644 --- a/clients/client-apigatewayv2/package.json +++ b/clients/client-apigatewayv2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-app-mesh/package.json b/clients/client-app-mesh/package.json index fe64c49c598a..b96c80bf2f18 100644 --- a/clients/client-app-mesh/package.json +++ b/clients/client-app-mesh/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-appconfig/package.json b/clients/client-appconfig/package.json index c8199182c046..4c356afd3809 100644 --- a/clients/client-appconfig/package.json +++ b/clients/client-appconfig/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-appflow/package.json b/clients/client-appflow/package.json index f033ff0b69da..db78962a8f32 100644 --- a/clients/client-appflow/package.json +++ b/clients/client-appflow/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-appintegrations/package.json b/clients/client-appintegrations/package.json index 99735994196e..0a8102ce464e 100644 --- a/clients/client-appintegrations/package.json +++ b/clients/client-appintegrations/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-application-auto-scaling/package.json b/clients/client-application-auto-scaling/package.json index 4201e65fd966..a7fe18b433ab 100644 --- a/clients/client-application-auto-scaling/package.json +++ b/clients/client-application-auto-scaling/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-application-discovery-service/package.json b/clients/client-application-discovery-service/package.json index 498c3968c0c7..e19694219e17 100644 --- a/clients/client-application-discovery-service/package.json +++ b/clients/client-application-discovery-service/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-application-insights/package.json b/clients/client-application-insights/package.json index 0bf9b1ef3588..667f77e379b1 100644 --- a/clients/client-application-insights/package.json +++ b/clients/client-application-insights/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-applicationcostprofiler/package.json b/clients/client-applicationcostprofiler/package.json index a849d3ff7532..6b3878a8891b 100644 --- a/clients/client-applicationcostprofiler/package.json +++ b/clients/client-applicationcostprofiler/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-apprunner/package.json b/clients/client-apprunner/package.json index ecc89b0e9e63..c7a8485d7ff9 100644 --- a/clients/client-apprunner/package.json +++ b/clients/client-apprunner/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-appstream/package.json b/clients/client-appstream/package.json index 7377cd9a0322..08411ca21fe7 100644 --- a/clients/client-appstream/package.json +++ b/clients/client-appstream/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-appsync/package.json b/clients/client-appsync/package.json index e75d23cdc68a..e43e0eb6bb9e 100644 --- a/clients/client-appsync/package.json +++ b/clients/client-appsync/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-athena/package.json b/clients/client-athena/package.json index 02bc936d3b29..19233078c6b4 100644 --- a/clients/client-athena/package.json +++ b/clients/client-athena/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-auditmanager/package.json b/clients/client-auditmanager/package.json index 966d09ae3057..454433cb6a9c 100644 --- a/clients/client-auditmanager/package.json +++ b/clients/client-auditmanager/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-auto-scaling-plans/package.json b/clients/client-auto-scaling-plans/package.json index 80b07cfa0acb..145a68c75829 100644 --- a/clients/client-auto-scaling-plans/package.json +++ b/clients/client-auto-scaling-plans/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-auto-scaling/package.json b/clients/client-auto-scaling/package.json index 71fa15aac772..f9727e1d4911 100644 --- a/clients/client-auto-scaling/package.json +++ b/clients/client-auto-scaling/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-backup/package.json b/clients/client-backup/package.json index 53233a7ae64f..b2bdad4130be 100644 --- a/clients/client-backup/package.json +++ b/clients/client-backup/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-batch/package.json b/clients/client-batch/package.json index 14c5a07c3293..907c157979f8 100644 --- a/clients/client-batch/package.json +++ b/clients/client-batch/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-braket/package.json b/clients/client-braket/package.json index e5ab68b51265..22e5f78c2b3c 100644 --- a/clients/client-braket/package.json +++ b/clients/client-braket/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-budgets/package.json b/clients/client-budgets/package.json index d1eee959fa50..da9f90b6f0dd 100644 --- a/clients/client-budgets/package.json +++ b/clients/client-budgets/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-chime/package.json b/clients/client-chime/package.json index a359cb8b8d2a..2bce26fdd1ad 100644 --- a/clients/client-chime/package.json +++ b/clients/client-chime/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloud9/package.json b/clients/client-cloud9/package.json index cab54f2aa46b..67accf3c8ec2 100644 --- a/clients/client-cloud9/package.json +++ b/clients/client-cloud9/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-clouddirectory/package.json b/clients/client-clouddirectory/package.json index 5df300d7ee75..77c0db5c31a7 100644 --- a/clients/client-clouddirectory/package.json +++ b/clients/client-clouddirectory/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudformation/package.json b/clients/client-cloudformation/package.json index bdc83b99fc32..3af2dfe1ea31 100644 --- a/clients/client-cloudformation/package.json +++ b/clients/client-cloudformation/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudfront/package.json b/clients/client-cloudfront/package.json index 80f5244810ca..a661d0be6749 100644 --- a/clients/client-cloudfront/package.json +++ b/clients/client-cloudfront/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudhsm-v2/package.json b/clients/client-cloudhsm-v2/package.json index 2e59099f5f53..65bd2f68c315 100644 --- a/clients/client-cloudhsm-v2/package.json +++ b/clients/client-cloudhsm-v2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudhsm/package.json b/clients/client-cloudhsm/package.json index 883f8fb67f96..66c377f673c4 100644 --- a/clients/client-cloudhsm/package.json +++ b/clients/client-cloudhsm/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudsearch-domain/package.json b/clients/client-cloudsearch-domain/package.json index 623ae0f39f7d..4936e1695dab 100644 --- a/clients/client-cloudsearch-domain/package.json +++ b/clients/client-cloudsearch-domain/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudsearch/package.json b/clients/client-cloudsearch/package.json index d87eac961c7b..29177104cf98 100644 --- a/clients/client-cloudsearch/package.json +++ b/clients/client-cloudsearch/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudtrail/package.json b/clients/client-cloudtrail/package.json index 933a63ba4d0e..20331dc5f604 100644 --- a/clients/client-cloudtrail/package.json +++ b/clients/client-cloudtrail/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudwatch-events/package.json b/clients/client-cloudwatch-events/package.json index c1130d7c9338..e3c15f680dbf 100644 --- a/clients/client-cloudwatch-events/package.json +++ b/clients/client-cloudwatch-events/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudwatch-logs/package.json b/clients/client-cloudwatch-logs/package.json index 608cbb015fbd..7656444ec8eb 100644 --- a/clients/client-cloudwatch-logs/package.json +++ b/clients/client-cloudwatch-logs/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cloudwatch/package.json b/clients/client-cloudwatch/package.json index 4abead71dae7..22562af79a33 100644 --- a/clients/client-cloudwatch/package.json +++ b/clients/client-cloudwatch/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codeartifact/package.json b/clients/client-codeartifact/package.json index 381c5a0d32a9..e380f76c28a4 100644 --- a/clients/client-codeartifact/package.json +++ b/clients/client-codeartifact/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codebuild/package.json b/clients/client-codebuild/package.json index 4c159f089fb9..bec40e92a1f5 100644 --- a/clients/client-codebuild/package.json +++ b/clients/client-codebuild/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codecommit/package.json b/clients/client-codecommit/package.json index bae89e493826..95cea016f1bd 100644 --- a/clients/client-codecommit/package.json +++ b/clients/client-codecommit/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codedeploy/package.json b/clients/client-codedeploy/package.json index 862565e67735..81518b5057a0 100644 --- a/clients/client-codedeploy/package.json +++ b/clients/client-codedeploy/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codeguru-reviewer/package.json b/clients/client-codeguru-reviewer/package.json index 908ba89c4922..6841f32852a8 100644 --- a/clients/client-codeguru-reviewer/package.json +++ b/clients/client-codeguru-reviewer/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codeguruprofiler/package.json b/clients/client-codeguruprofiler/package.json index 4a256728bd1a..c2dac8f7d66e 100644 --- a/clients/client-codeguruprofiler/package.json +++ b/clients/client-codeguruprofiler/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codepipeline/package.json b/clients/client-codepipeline/package.json index a4ebee8c8d97..746c6574cdb5 100644 --- a/clients/client-codepipeline/package.json +++ b/clients/client-codepipeline/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codestar-connections/package.json b/clients/client-codestar-connections/package.json index db76d66768b9..5784eacfcbf3 100644 --- a/clients/client-codestar-connections/package.json +++ b/clients/client-codestar-connections/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codestar-notifications/package.json b/clients/client-codestar-notifications/package.json index 18164dc63d60..e63e3daff39d 100644 --- a/clients/client-codestar-notifications/package.json +++ b/clients/client-codestar-notifications/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-codestar/package.json b/clients/client-codestar/package.json index 250306c84e83..cbb347d24fa3 100644 --- a/clients/client-codestar/package.json +++ b/clients/client-codestar/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cognito-identity-provider/package.json b/clients/client-cognito-identity-provider/package.json index c97697cd96e0..f40e1a470b2f 100644 --- a/clients/client-cognito-identity-provider/package.json +++ b/clients/client-cognito-identity-provider/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cognito-identity/package.json b/clients/client-cognito-identity/package.json index 4669328f8eeb..fadfdf8d7605 100644 --- a/clients/client-cognito-identity/package.json +++ b/clients/client-cognito-identity/package.json @@ -14,7 +14,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cognito-sync/package.json b/clients/client-cognito-sync/package.json index 8a65c5287293..5e576462096b 100644 --- a/clients/client-cognito-sync/package.json +++ b/clients/client-cognito-sync/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-comprehend/package.json b/clients/client-comprehend/package.json index 49d7c3c0f30b..bd937b5f1990 100644 --- a/clients/client-comprehend/package.json +++ b/clients/client-comprehend/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-comprehendmedical/package.json b/clients/client-comprehendmedical/package.json index df6646c05a35..4a010ec6aa25 100644 --- a/clients/client-comprehendmedical/package.json +++ b/clients/client-comprehendmedical/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-compute-optimizer/package.json b/clients/client-compute-optimizer/package.json index 739d7a8176b9..7f6659192f44 100644 --- a/clients/client-compute-optimizer/package.json +++ b/clients/client-compute-optimizer/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-config-service/package.json b/clients/client-config-service/package.json index bd460fe3b4f9..5995a831162c 100644 --- a/clients/client-config-service/package.json +++ b/clients/client-config-service/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-connect-contact-lens/package.json b/clients/client-connect-contact-lens/package.json index e04a9eb7d120..d8ffce615b07 100644 --- a/clients/client-connect-contact-lens/package.json +++ b/clients/client-connect-contact-lens/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-connect/package.json b/clients/client-connect/package.json index dd7837a31793..284520331f9f 100644 --- a/clients/client-connect/package.json +++ b/clients/client-connect/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-connectparticipant/package.json b/clients/client-connectparticipant/package.json index 0d079e4d628e..7032c089ef81 100644 --- a/clients/client-connectparticipant/package.json +++ b/clients/client-connectparticipant/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cost-and-usage-report-service/package.json b/clients/client-cost-and-usage-report-service/package.json index a40be4be3ffe..a36ef0b65a6f 100644 --- a/clients/client-cost-and-usage-report-service/package.json +++ b/clients/client-cost-and-usage-report-service/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-cost-explorer/package.json b/clients/client-cost-explorer/package.json index 109cb8771d3a..5b45dda37a06 100644 --- a/clients/client-cost-explorer/package.json +++ b/clients/client-cost-explorer/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-customer-profiles/package.json b/clients/client-customer-profiles/package.json index 71afd2b732d0..918f999814e8 100644 --- a/clients/client-customer-profiles/package.json +++ b/clients/client-customer-profiles/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-data-pipeline/package.json b/clients/client-data-pipeline/package.json index 06297fbb29b7..f4b7f9998e79 100644 --- a/clients/client-data-pipeline/package.json +++ b/clients/client-data-pipeline/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-database-migration-service/package.json b/clients/client-database-migration-service/package.json index 970dd182f252..3de55167f11c 100644 --- a/clients/client-database-migration-service/package.json +++ b/clients/client-database-migration-service/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-databrew/package.json b/clients/client-databrew/package.json index 2f9dd05dd6c7..c609b2242fb8 100644 --- a/clients/client-databrew/package.json +++ b/clients/client-databrew/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-dataexchange/package.json b/clients/client-dataexchange/package.json index 2b6b53b76ef1..194d254a1bdb 100644 --- a/clients/client-dataexchange/package.json +++ b/clients/client-dataexchange/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-datasync/package.json b/clients/client-datasync/package.json index 5c3cf90922ed..6830869f10ad 100644 --- a/clients/client-datasync/package.json +++ b/clients/client-datasync/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-dax/package.json b/clients/client-dax/package.json index 275fe98ec019..7424fd0a3564 100644 --- a/clients/client-dax/package.json +++ b/clients/client-dax/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-detective/package.json b/clients/client-detective/package.json index d8e7428f8e0f..ab4f0be52843 100644 --- a/clients/client-detective/package.json +++ b/clients/client-detective/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-device-farm/package.json b/clients/client-device-farm/package.json index 2aacbe2b87ed..6cf31346c881 100644 --- a/clients/client-device-farm/package.json +++ b/clients/client-device-farm/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-devops-guru/package.json b/clients/client-devops-guru/package.json index 6406ec7a9384..b6046d1e8da4 100644 --- a/clients/client-devops-guru/package.json +++ b/clients/client-devops-guru/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-direct-connect/package.json b/clients/client-direct-connect/package.json index 57e808b14cd0..c11ab17d5727 100644 --- a/clients/client-direct-connect/package.json +++ b/clients/client-direct-connect/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-directory-service/package.json b/clients/client-directory-service/package.json index c81191e1f4f1..ed70d138d5ae 100644 --- a/clients/client-directory-service/package.json +++ b/clients/client-directory-service/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-dlm/package.json b/clients/client-dlm/package.json index 8bcbdecf1ffa..c37d3d91bf9a 100644 --- a/clients/client-dlm/package.json +++ b/clients/client-dlm/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-docdb/package.json b/clients/client-docdb/package.json index 9bd19214651a..1c7965e93bad 100644 --- a/clients/client-docdb/package.json +++ b/clients/client-docdb/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-dynamodb-streams/package.json b/clients/client-dynamodb-streams/package.json index 01da98261874..aa0468983ea7 100644 --- a/clients/client-dynamodb-streams/package.json +++ b/clients/client-dynamodb-streams/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-dynamodb/package.json b/clients/client-dynamodb/package.json index 84269279de9a..638e671e8088 100644 --- a/clients/client-dynamodb/package.json +++ b/clients/client-dynamodb/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ebs/package.json b/clients/client-ebs/package.json index c16ecb4f70f3..027e03fd19b8 100644 --- a/clients/client-ebs/package.json +++ b/clients/client-ebs/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ec2-instance-connect/package.json b/clients/client-ec2-instance-connect/package.json index 41f7ad309bb5..4b2c9be98073 100644 --- a/clients/client-ec2-instance-connect/package.json +++ b/clients/client-ec2-instance-connect/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ec2/package.json b/clients/client-ec2/package.json index 15ad51630932..7f6161705987 100644 --- a/clients/client-ec2/package.json +++ b/clients/client-ec2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ecr-public/package.json b/clients/client-ecr-public/package.json index cf23f6425777..82d4da2d535f 100644 --- a/clients/client-ecr-public/package.json +++ b/clients/client-ecr-public/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ecr/package.json b/clients/client-ecr/package.json index 8205c0cafceb..cd6d96adc493 100644 --- a/clients/client-ecr/package.json +++ b/clients/client-ecr/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ecs/package.json b/clients/client-ecs/package.json index f19e0af65e91..0ae90238a17e 100644 --- a/clients/client-ecs/package.json +++ b/clients/client-ecs/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-efs/package.json b/clients/client-efs/package.json index c93c1d854baf..7e1adc5f5bc4 100644 --- a/clients/client-efs/package.json +++ b/clients/client-efs/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-eks/package.json b/clients/client-eks/package.json index eeb839c742fc..8df6bda532ce 100644 --- a/clients/client-eks/package.json +++ b/clients/client-eks/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-elastic-beanstalk/package.json b/clients/client-elastic-beanstalk/package.json index 8e7f28029a8c..bbd97f734c21 100644 --- a/clients/client-elastic-beanstalk/package.json +++ b/clients/client-elastic-beanstalk/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-elastic-inference/package.json b/clients/client-elastic-inference/package.json index 063f57155df4..4f9d1329e9fc 100644 --- a/clients/client-elastic-inference/package.json +++ b/clients/client-elastic-inference/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-elastic-load-balancing-v2/package.json b/clients/client-elastic-load-balancing-v2/package.json index 083969a16cb2..ff863c36101c 100644 --- a/clients/client-elastic-load-balancing-v2/package.json +++ b/clients/client-elastic-load-balancing-v2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-elastic-load-balancing/package.json b/clients/client-elastic-load-balancing/package.json index ea5ce95e1494..5bffbd9b60d5 100644 --- a/clients/client-elastic-load-balancing/package.json +++ b/clients/client-elastic-load-balancing/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-elastic-transcoder/package.json b/clients/client-elastic-transcoder/package.json index 19f80a44cd4a..76aab9268d17 100644 --- a/clients/client-elastic-transcoder/package.json +++ b/clients/client-elastic-transcoder/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-elasticache/package.json b/clients/client-elasticache/package.json index 37c13236d705..f9e925adc289 100644 --- a/clients/client-elasticache/package.json +++ b/clients/client-elasticache/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-elasticsearch-service/package.json b/clients/client-elasticsearch-service/package.json index 715ed5074007..7d3cf1be758b 100644 --- a/clients/client-elasticsearch-service/package.json +++ b/clients/client-elasticsearch-service/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-emr-containers/package.json b/clients/client-emr-containers/package.json index ca77b34a1691..67d29346e7af 100644 --- a/clients/client-emr-containers/package.json +++ b/clients/client-emr-containers/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-emr/package.json b/clients/client-emr/package.json index 31530fc0466d..c722a935938f 100644 --- a/clients/client-emr/package.json +++ b/clients/client-emr/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-eventbridge/package.json b/clients/client-eventbridge/package.json index 65db3414e61b..35eb839ab6a1 100644 --- a/clients/client-eventbridge/package.json +++ b/clients/client-eventbridge/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-finspace-data/package.json b/clients/client-finspace-data/package.json index 630b0cc5b8bd..22d523847e43 100644 --- a/clients/client-finspace-data/package.json +++ b/clients/client-finspace-data/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-finspace/package.json b/clients/client-finspace/package.json index e0475d02ad91..86ecb7fd329d 100644 --- a/clients/client-finspace/package.json +++ b/clients/client-finspace/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-firehose/package.json b/clients/client-firehose/package.json index 4e63c13bc4b3..b722178cf65f 100644 --- a/clients/client-firehose/package.json +++ b/clients/client-firehose/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-fis/package.json b/clients/client-fis/package.json index 1b386783f59f..7360b5eb07a8 100644 --- a/clients/client-fis/package.json +++ b/clients/client-fis/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-fms/package.json b/clients/client-fms/package.json index d1b96f996795..066756ee6165 100644 --- a/clients/client-fms/package.json +++ b/clients/client-fms/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-forecast/package.json b/clients/client-forecast/package.json index 594587923db9..294bb4c48817 100644 --- a/clients/client-forecast/package.json +++ b/clients/client-forecast/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-forecastquery/package.json b/clients/client-forecastquery/package.json index 4cc3ecef0ca2..78849ab3e7ea 100644 --- a/clients/client-forecastquery/package.json +++ b/clients/client-forecastquery/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-frauddetector/package.json b/clients/client-frauddetector/package.json index 530b98c0f4b5..75542246e501 100644 --- a/clients/client-frauddetector/package.json +++ b/clients/client-frauddetector/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-fsx/package.json b/clients/client-fsx/package.json index ef9421bdad6b..f42cb820b1f2 100644 --- a/clients/client-fsx/package.json +++ b/clients/client-fsx/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-gamelift/package.json b/clients/client-gamelift/package.json index 1c403dcc48be..df88cb3b27cd 100644 --- a/clients/client-gamelift/package.json +++ b/clients/client-gamelift/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-glacier/package.json b/clients/client-glacier/package.json index bac423263f29..b25f18a26829 100644 --- a/clients/client-glacier/package.json +++ b/clients/client-glacier/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-global-accelerator/package.json b/clients/client-global-accelerator/package.json index 19b830c7b7d7..afa7183627a0 100644 --- a/clients/client-global-accelerator/package.json +++ b/clients/client-global-accelerator/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-glue/package.json b/clients/client-glue/package.json index 45a5b3ef6c6c..909f1f674dab 100644 --- a/clients/client-glue/package.json +++ b/clients/client-glue/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-greengrass/package.json b/clients/client-greengrass/package.json index f7f4d120224c..935dbe3f9661 100644 --- a/clients/client-greengrass/package.json +++ b/clients/client-greengrass/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-greengrassv2/package.json b/clients/client-greengrassv2/package.json index ad3fe4d8f4de..38efccce8b84 100644 --- a/clients/client-greengrassv2/package.json +++ b/clients/client-greengrassv2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-groundstation/package.json b/clients/client-groundstation/package.json index 25edb985c6de..67e1ff7dae3e 100644 --- a/clients/client-groundstation/package.json +++ b/clients/client-groundstation/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-guardduty/package.json b/clients/client-guardduty/package.json index 54a767ae213a..e0c23792981f 100644 --- a/clients/client-guardduty/package.json +++ b/clients/client-guardduty/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-health/package.json b/clients/client-health/package.json index 84c4bf7857ed..dcf87e74544a 100644 --- a/clients/client-health/package.json +++ b/clients/client-health/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-healthlake/package.json b/clients/client-healthlake/package.json index eca0eb29e653..3f7c3f9542ec 100644 --- a/clients/client-healthlake/package.json +++ b/clients/client-healthlake/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-honeycode/package.json b/clients/client-honeycode/package.json index 57f84b7af0a7..7ca9aec5a216 100644 --- a/clients/client-honeycode/package.json +++ b/clients/client-honeycode/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iam/package.json b/clients/client-iam/package.json index 67f52afd2fbb..9cb849a1c62b 100644 --- a/clients/client-iam/package.json +++ b/clients/client-iam/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-identitystore/package.json b/clients/client-identitystore/package.json index 68e4087d4085..7edf4f4eef88 100644 --- a/clients/client-identitystore/package.json +++ b/clients/client-identitystore/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-imagebuilder/package.json b/clients/client-imagebuilder/package.json index 4423783ae206..f33fa1d5e807 100644 --- a/clients/client-imagebuilder/package.json +++ b/clients/client-imagebuilder/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-inspector/package.json b/clients/client-inspector/package.json index 4f8d41e19579..f9e4e621114d 100644 --- a/clients/client-inspector/package.json +++ b/clients/client-inspector/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iot-1click-devices-service/package.json b/clients/client-iot-1click-devices-service/package.json index 45a76911c456..6819c6d7fbb5 100644 --- a/clients/client-iot-1click-devices-service/package.json +++ b/clients/client-iot-1click-devices-service/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iot-1click-projects/package.json b/clients/client-iot-1click-projects/package.json index 575ba94bc4c0..f9d9e81b973b 100644 --- a/clients/client-iot-1click-projects/package.json +++ b/clients/client-iot-1click-projects/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iot-data-plane/package.json b/clients/client-iot-data-plane/package.json index 6c10aab2a894..0bb203974feb 100644 --- a/clients/client-iot-data-plane/package.json +++ b/clients/client-iot-data-plane/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iot-events-data/package.json b/clients/client-iot-events-data/package.json index ea468e5d8a43..ad4d7cd4458c 100644 --- a/clients/client-iot-events-data/package.json +++ b/clients/client-iot-events-data/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iot-events/package.json b/clients/client-iot-events/package.json index b8d2c95e5091..8d0600419bd1 100644 --- a/clients/client-iot-events/package.json +++ b/clients/client-iot-events/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iot-jobs-data-plane/package.json b/clients/client-iot-jobs-data-plane/package.json index 59500f852ec1..364b0095d503 100644 --- a/clients/client-iot-jobs-data-plane/package.json +++ b/clients/client-iot-jobs-data-plane/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iot-wireless/package.json b/clients/client-iot-wireless/package.json index 942ccd9f2f0b..d33623b86926 100644 --- a/clients/client-iot-wireless/package.json +++ b/clients/client-iot-wireless/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iot/package.json b/clients/client-iot/package.json index 4cc03b7f8e76..57ff1bc63aff 100644 --- a/clients/client-iot/package.json +++ b/clients/client-iot/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iotanalytics/package.json b/clients/client-iotanalytics/package.json index bca92c4c1f92..5aceadf49a46 100644 --- a/clients/client-iotanalytics/package.json +++ b/clients/client-iotanalytics/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iotdeviceadvisor/package.json b/clients/client-iotdeviceadvisor/package.json index 948bbe226898..4675cfa72943 100644 --- a/clients/client-iotdeviceadvisor/package.json +++ b/clients/client-iotdeviceadvisor/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iotfleethub/package.json b/clients/client-iotfleethub/package.json index 23776413cabe..7d534c101621 100644 --- a/clients/client-iotfleethub/package.json +++ b/clients/client-iotfleethub/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iotsecuretunneling/package.json b/clients/client-iotsecuretunneling/package.json index e36ebd8549c5..dd7d9163e07b 100644 --- a/clients/client-iotsecuretunneling/package.json +++ b/clients/client-iotsecuretunneling/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iotsitewise/package.json b/clients/client-iotsitewise/package.json index 8e8dc32b0ae1..4a6479181a2c 100644 --- a/clients/client-iotsitewise/package.json +++ b/clients/client-iotsitewise/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-iotthingsgraph/package.json b/clients/client-iotthingsgraph/package.json index 6fa185d5e21a..8c4660ce0fac 100644 --- a/clients/client-iotthingsgraph/package.json +++ b/clients/client-iotthingsgraph/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ivs/package.json b/clients/client-ivs/package.json index 4fbb2adbdcad..e1303f8778aa 100644 --- a/clients/client-ivs/package.json +++ b/clients/client-ivs/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kafka/package.json b/clients/client-kafka/package.json index a527af90ca9a..22a982935951 100644 --- a/clients/client-kafka/package.json +++ b/clients/client-kafka/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kendra/package.json b/clients/client-kendra/package.json index ec4fa781f994..dc181ce2bba9 100644 --- a/clients/client-kendra/package.json +++ b/clients/client-kendra/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kinesis-analytics-v2/package.json b/clients/client-kinesis-analytics-v2/package.json index 1ab67f31cc12..1dd91e5ec837 100644 --- a/clients/client-kinesis-analytics-v2/package.json +++ b/clients/client-kinesis-analytics-v2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kinesis-analytics/package.json b/clients/client-kinesis-analytics/package.json index be5698a2104e..a72bea581c5d 100644 --- a/clients/client-kinesis-analytics/package.json +++ b/clients/client-kinesis-analytics/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kinesis-video-archived-media/package.json b/clients/client-kinesis-video-archived-media/package.json index 0ade0ad35056..cc5d5bb1d2e8 100644 --- a/clients/client-kinesis-video-archived-media/package.json +++ b/clients/client-kinesis-video-archived-media/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kinesis-video-media/package.json b/clients/client-kinesis-video-media/package.json index 6e3a8ce16f11..2a5b2c32d491 100644 --- a/clients/client-kinesis-video-media/package.json +++ b/clients/client-kinesis-video-media/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kinesis-video-signaling/package.json b/clients/client-kinesis-video-signaling/package.json index a213c77588f3..d9d3e659ab31 100644 --- a/clients/client-kinesis-video-signaling/package.json +++ b/clients/client-kinesis-video-signaling/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kinesis-video/package.json b/clients/client-kinesis-video/package.json index 941bcd907100..d22f5d511cdd 100644 --- a/clients/client-kinesis-video/package.json +++ b/clients/client-kinesis-video/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kinesis/package.json b/clients/client-kinesis/package.json index 07fe1af5c429..180fabf87971 100644 --- a/clients/client-kinesis/package.json +++ b/clients/client-kinesis/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-kms/package.json b/clients/client-kms/package.json index d552717e6204..0d3896a69573 100644 --- a/clients/client-kms/package.json +++ b/clients/client-kms/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lakeformation/package.json b/clients/client-lakeformation/package.json index f8810b88cdd5..9ee9a2b99375 100644 --- a/clients/client-lakeformation/package.json +++ b/clients/client-lakeformation/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lambda/package.json b/clients/client-lambda/package.json index b6a448d4c727..269034d03598 100644 --- a/clients/client-lambda/package.json +++ b/clients/client-lambda/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lex-model-building-service/package.json b/clients/client-lex-model-building-service/package.json index ace9117b5ca4..05c3cfa6567d 100644 --- a/clients/client-lex-model-building-service/package.json +++ b/clients/client-lex-model-building-service/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lex-models-v2/package.json b/clients/client-lex-models-v2/package.json index 1638a7e42c44..74e674ce44bc 100644 --- a/clients/client-lex-models-v2/package.json +++ b/clients/client-lex-models-v2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lex-runtime-service/package.json b/clients/client-lex-runtime-service/package.json index d423e8f965d5..a38bd0bb950e 100644 --- a/clients/client-lex-runtime-service/package.json +++ b/clients/client-lex-runtime-service/package.json @@ -13,7 +13,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lex-runtime-v2/package.json b/clients/client-lex-runtime-v2/package.json index 4248cfb8fba4..386dd736e3a6 100644 --- a/clients/client-lex-runtime-v2/package.json +++ b/clients/client-lex-runtime-v2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-license-manager/package.json b/clients/client-license-manager/package.json index c230e3fea1ae..d5cba815c1fe 100644 --- a/clients/client-license-manager/package.json +++ b/clients/client-license-manager/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lightsail/package.json b/clients/client-lightsail/package.json index c1fa7d986a2a..6403c4473120 100644 --- a/clients/client-lightsail/package.json +++ b/clients/client-lightsail/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-location/package.json b/clients/client-location/package.json index 6defee695097..92cb827816b7 100644 --- a/clients/client-location/package.json +++ b/clients/client-location/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lookoutequipment/package.json b/clients/client-lookoutequipment/package.json index 155eae050787..2d8d9f5395d5 100644 --- a/clients/client-lookoutequipment/package.json +++ b/clients/client-lookoutequipment/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lookoutmetrics/package.json b/clients/client-lookoutmetrics/package.json index 41c646942e6f..bb95b472b382 100644 --- a/clients/client-lookoutmetrics/package.json +++ b/clients/client-lookoutmetrics/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-lookoutvision/package.json b/clients/client-lookoutvision/package.json index f3a18df68118..2e7370f4b6b6 100644 --- a/clients/client-lookoutvision/package.json +++ b/clients/client-lookoutvision/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-machine-learning/package.json b/clients/client-machine-learning/package.json index 2d1fc5226238..9ad69054cb77 100644 --- a/clients/client-machine-learning/package.json +++ b/clients/client-machine-learning/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-macie/package.json b/clients/client-macie/package.json index 65609452f483..090af853cd03 100644 --- a/clients/client-macie/package.json +++ b/clients/client-macie/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-macie2/package.json b/clients/client-macie2/package.json index ee8d7c41378b..e896e74e3c9d 100644 --- a/clients/client-macie2/package.json +++ b/clients/client-macie2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-managedblockchain/package.json b/clients/client-managedblockchain/package.json index 28a6eb98728a..d392df958214 100644 --- a/clients/client-managedblockchain/package.json +++ b/clients/client-managedblockchain/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-marketplace-catalog/package.json b/clients/client-marketplace-catalog/package.json index eefb93589ffa..6e6dccd47115 100644 --- a/clients/client-marketplace-catalog/package.json +++ b/clients/client-marketplace-catalog/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-marketplace-commerce-analytics/package.json b/clients/client-marketplace-commerce-analytics/package.json index 29ae5f8e17fa..8d573bb6a3d1 100644 --- a/clients/client-marketplace-commerce-analytics/package.json +++ b/clients/client-marketplace-commerce-analytics/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-marketplace-entitlement-service/package.json b/clients/client-marketplace-entitlement-service/package.json index 2df5dae85ad7..25c6e159ebd0 100644 --- a/clients/client-marketplace-entitlement-service/package.json +++ b/clients/client-marketplace-entitlement-service/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-marketplace-metering/package.json b/clients/client-marketplace-metering/package.json index e80cc314eb6a..f1533e66ae75 100644 --- a/clients/client-marketplace-metering/package.json +++ b/clients/client-marketplace-metering/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mediaconnect/package.json b/clients/client-mediaconnect/package.json index 3d2f2455144b..451fe347d2c5 100644 --- a/clients/client-mediaconnect/package.json +++ b/clients/client-mediaconnect/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mediaconvert/package.json b/clients/client-mediaconvert/package.json index 1e6d1d593d58..1d6f3142e89a 100644 --- a/clients/client-mediaconvert/package.json +++ b/clients/client-mediaconvert/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-medialive/package.json b/clients/client-medialive/package.json index 97a41b86c16f..d91a6794e061 100644 --- a/clients/client-medialive/package.json +++ b/clients/client-medialive/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mediapackage-vod/package.json b/clients/client-mediapackage-vod/package.json index 9514d12e1f28..7b59001275f2 100644 --- a/clients/client-mediapackage-vod/package.json +++ b/clients/client-mediapackage-vod/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mediapackage/package.json b/clients/client-mediapackage/package.json index 954a63bf4ae3..f2afd48c38f8 100644 --- a/clients/client-mediapackage/package.json +++ b/clients/client-mediapackage/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mediastore-data/package.json b/clients/client-mediastore-data/package.json index dc41de3cd357..d24e56ef875f 100644 --- a/clients/client-mediastore-data/package.json +++ b/clients/client-mediastore-data/package.json @@ -13,7 +13,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mediastore/package.json b/clients/client-mediastore/package.json index c41052799209..6561d1106e53 100644 --- a/clients/client-mediastore/package.json +++ b/clients/client-mediastore/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mediatailor/package.json b/clients/client-mediatailor/package.json index dc084b9bf915..5a045f654d97 100644 --- a/clients/client-mediatailor/package.json +++ b/clients/client-mediatailor/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mgn/package.json b/clients/client-mgn/package.json index 49d3a46d7453..4a1ad18d9ec5 100644 --- a/clients/client-mgn/package.json +++ b/clients/client-mgn/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-migration-hub/package.json b/clients/client-migration-hub/package.json index d2060e3a1a50..4d496fa80aba 100644 --- a/clients/client-migration-hub/package.json +++ b/clients/client-migration-hub/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-migrationhub-config/package.json b/clients/client-migrationhub-config/package.json index b5e63def1639..9457a8dea917 100644 --- a/clients/client-migrationhub-config/package.json +++ b/clients/client-migrationhub-config/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mobile/package.json b/clients/client-mobile/package.json index 4b8c21afacd9..afa713e44fbc 100644 --- a/clients/client-mobile/package.json +++ b/clients/client-mobile/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mq/package.json b/clients/client-mq/package.json index 055ca83f6768..89865722a6f2 100644 --- a/clients/client-mq/package.json +++ b/clients/client-mq/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mturk/package.json b/clients/client-mturk/package.json index 02821392455d..9dead26c92da 100644 --- a/clients/client-mturk/package.json +++ b/clients/client-mturk/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-mwaa/package.json b/clients/client-mwaa/package.json index 7c13bb169202..b8e51fb1b17e 100644 --- a/clients/client-mwaa/package.json +++ b/clients/client-mwaa/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-neptune/package.json b/clients/client-neptune/package.json index a1ea17b32129..1e973baeab32 100644 --- a/clients/client-neptune/package.json +++ b/clients/client-neptune/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-network-firewall/package.json b/clients/client-network-firewall/package.json index 204b57847e1c..5a247249cf45 100644 --- a/clients/client-network-firewall/package.json +++ b/clients/client-network-firewall/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-networkmanager/package.json b/clients/client-networkmanager/package.json index 58466d18495a..f9bf1eaf7401 100644 --- a/clients/client-networkmanager/package.json +++ b/clients/client-networkmanager/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-nimble/package.json b/clients/client-nimble/package.json index bef9514c3fad..24ecbb04e5dd 100644 --- a/clients/client-nimble/package.json +++ b/clients/client-nimble/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-opsworks/package.json b/clients/client-opsworks/package.json index abf49555c62e..6c96864e5cba 100644 --- a/clients/client-opsworks/package.json +++ b/clients/client-opsworks/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-opsworkscm/package.json b/clients/client-opsworkscm/package.json index 78b3e238b58a..336b237b432e 100644 --- a/clients/client-opsworkscm/package.json +++ b/clients/client-opsworkscm/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-organizations/package.json b/clients/client-organizations/package.json index 6789dc2f9a89..2f2a37516481 100644 --- a/clients/client-organizations/package.json +++ b/clients/client-organizations/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-outposts/package.json b/clients/client-outposts/package.json index 1ad97ba06be8..b776bc868af9 100644 --- a/clients/client-outposts/package.json +++ b/clients/client-outposts/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-personalize-events/package.json b/clients/client-personalize-events/package.json index b1fa81614456..6f558f0634e4 100644 --- a/clients/client-personalize-events/package.json +++ b/clients/client-personalize-events/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-personalize-runtime/package.json b/clients/client-personalize-runtime/package.json index fbad1d3a1320..d1fa68a48fb8 100644 --- a/clients/client-personalize-runtime/package.json +++ b/clients/client-personalize-runtime/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-personalize/package.json b/clients/client-personalize/package.json index 91a3ae97bcc9..fec6dc545e1a 100644 --- a/clients/client-personalize/package.json +++ b/clients/client-personalize/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-pi/package.json b/clients/client-pi/package.json index 6b55ae563d90..cbc97cf88f94 100644 --- a/clients/client-pi/package.json +++ b/clients/client-pi/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-pinpoint-email/package.json b/clients/client-pinpoint-email/package.json index d9899baf89b8..de2cd5ee47a4 100644 --- a/clients/client-pinpoint-email/package.json +++ b/clients/client-pinpoint-email/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-pinpoint-sms-voice/package.json b/clients/client-pinpoint-sms-voice/package.json index 1d782db55e3d..bae581317a14 100644 --- a/clients/client-pinpoint-sms-voice/package.json +++ b/clients/client-pinpoint-sms-voice/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-pinpoint/package.json b/clients/client-pinpoint/package.json index 723ad5b3e381..560df6ea70a2 100644 --- a/clients/client-pinpoint/package.json +++ b/clients/client-pinpoint/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-polly/package.json b/clients/client-polly/package.json index 8d6b4b419c33..a49f1a8b9d1c 100644 --- a/clients/client-polly/package.json +++ b/clients/client-polly/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-pricing/package.json b/clients/client-pricing/package.json index 1061604f0da2..80737083c471 100644 --- a/clients/client-pricing/package.json +++ b/clients/client-pricing/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-proton/package.json b/clients/client-proton/package.json index 44d4be186eba..97daad807df8 100644 --- a/clients/client-proton/package.json +++ b/clients/client-proton/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-qldb-session/package.json b/clients/client-qldb-session/package.json index 52a763b275a1..6fce94d9d3dd 100644 --- a/clients/client-qldb-session/package.json +++ b/clients/client-qldb-session/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-qldb/package.json b/clients/client-qldb/package.json index dc331e3f8070..438219578438 100644 --- a/clients/client-qldb/package.json +++ b/clients/client-qldb/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-quicksight/package.json b/clients/client-quicksight/package.json index 51934ac2215f..9009743bd6c0 100644 --- a/clients/client-quicksight/package.json +++ b/clients/client-quicksight/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ram/package.json b/clients/client-ram/package.json index fef9eed46d13..41dbba48151b 100644 --- a/clients/client-ram/package.json +++ b/clients/client-ram/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-rds-data/package.json b/clients/client-rds-data/package.json index 8330ba86ed07..72ddb631d45c 100644 --- a/clients/client-rds-data/package.json +++ b/clients/client-rds-data/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-rds/package.json b/clients/client-rds/package.json index 32ceeeb450d2..8ca07e168066 100644 --- a/clients/client-rds/package.json +++ b/clients/client-rds/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-redshift-data/package.json b/clients/client-redshift-data/package.json index 5d81e4b7874b..9a53f53ab912 100644 --- a/clients/client-redshift-data/package.json +++ b/clients/client-redshift-data/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-redshift/package.json b/clients/client-redshift/package.json index 6fbd141bb384..07706eafe48f 100644 --- a/clients/client-redshift/package.json +++ b/clients/client-redshift/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-rekognition/package.json b/clients/client-rekognition/package.json index 76dc0bce139f..457d0e958992 100644 --- a/clients/client-rekognition/package.json +++ b/clients/client-rekognition/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-resource-groups-tagging-api/package.json b/clients/client-resource-groups-tagging-api/package.json index f20f24e7ee35..910e5805b6c8 100644 --- a/clients/client-resource-groups-tagging-api/package.json +++ b/clients/client-resource-groups-tagging-api/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-resource-groups/package.json b/clients/client-resource-groups/package.json index abe60a8cf5c0..7bcf6c821d21 100644 --- a/clients/client-resource-groups/package.json +++ b/clients/client-resource-groups/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-robomaker/package.json b/clients/client-robomaker/package.json index f23c2a73aee1..0a70067398db 100644 --- a/clients/client-robomaker/package.json +++ b/clients/client-robomaker/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-route-53-domains/package.json b/clients/client-route-53-domains/package.json index bba105451fbb..ba89a8fd6d4e 100644 --- a/clients/client-route-53-domains/package.json +++ b/clients/client-route-53-domains/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-route-53/package.json b/clients/client-route-53/package.json index 18ac3092f092..c753c03191e5 100644 --- a/clients/client-route-53/package.json +++ b/clients/client-route-53/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-route53resolver/package.json b/clients/client-route53resolver/package.json index 2657ff8e158d..5c9cc7e48521 100644 --- a/clients/client-route53resolver/package.json +++ b/clients/client-route53resolver/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-s3-control/package.json b/clients/client-s3-control/package.json index 2c0a51c8f8f0..25b542c157e3 100644 --- a/clients/client-s3-control/package.json +++ b/clients/client-s3-control/package.json @@ -13,7 +13,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-s3/package.json b/clients/client-s3/package.json index 35e53fcb9425..f5cfac9769d3 100644 --- a/clients/client-s3/package.json +++ b/clients/client-s3/package.json @@ -14,7 +14,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-s3outposts/package.json b/clients/client-s3outposts/package.json index 07d2b2403628..3639204c4479 100644 --- a/clients/client-s3outposts/package.json +++ b/clients/client-s3outposts/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sagemaker-a2i-runtime/package.json b/clients/client-sagemaker-a2i-runtime/package.json index d8bc8043724b..58542a48c55c 100644 --- a/clients/client-sagemaker-a2i-runtime/package.json +++ b/clients/client-sagemaker-a2i-runtime/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sagemaker-edge/package.json b/clients/client-sagemaker-edge/package.json index fcca4b608d6d..396e7168e083 100644 --- a/clients/client-sagemaker-edge/package.json +++ b/clients/client-sagemaker-edge/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sagemaker-featurestore-runtime/package.json b/clients/client-sagemaker-featurestore-runtime/package.json index 7d6d9639691c..d66c01995f2d 100644 --- a/clients/client-sagemaker-featurestore-runtime/package.json +++ b/clients/client-sagemaker-featurestore-runtime/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sagemaker-runtime/package.json b/clients/client-sagemaker-runtime/package.json index 039639055862..0a6d6904146d 100644 --- a/clients/client-sagemaker-runtime/package.json +++ b/clients/client-sagemaker-runtime/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sagemaker/package.json b/clients/client-sagemaker/package.json index 5e1685f3d5cd..b1c02c5251f4 100644 --- a/clients/client-sagemaker/package.json +++ b/clients/client-sagemaker/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-savingsplans/package.json b/clients/client-savingsplans/package.json index 3988aa229416..d489298cf6d5 100644 --- a/clients/client-savingsplans/package.json +++ b/clients/client-savingsplans/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-schemas/package.json b/clients/client-schemas/package.json index 4b03310956bc..72e7cdae4778 100644 --- a/clients/client-schemas/package.json +++ b/clients/client-schemas/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-secrets-manager/package.json b/clients/client-secrets-manager/package.json index 86a9a8c3c329..8b6e112d506f 100644 --- a/clients/client-secrets-manager/package.json +++ b/clients/client-secrets-manager/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-securityhub/package.json b/clients/client-securityhub/package.json index d01aceccc845..1234c28d0878 100644 --- a/clients/client-securityhub/package.json +++ b/clients/client-securityhub/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-serverlessapplicationrepository/package.json b/clients/client-serverlessapplicationrepository/package.json index dfe62c0f7ff8..3ad1f7a4c132 100644 --- a/clients/client-serverlessapplicationrepository/package.json +++ b/clients/client-serverlessapplicationrepository/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-service-catalog-appregistry/package.json b/clients/client-service-catalog-appregistry/package.json index cee7680f5261..cfe6fe360791 100644 --- a/clients/client-service-catalog-appregistry/package.json +++ b/clients/client-service-catalog-appregistry/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-service-catalog/package.json b/clients/client-service-catalog/package.json index c23528d41411..cc7318a4ff2b 100644 --- a/clients/client-service-catalog/package.json +++ b/clients/client-service-catalog/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-service-quotas/package.json b/clients/client-service-quotas/package.json index 0dce8a845924..8227477741ce 100644 --- a/clients/client-service-quotas/package.json +++ b/clients/client-service-quotas/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-servicediscovery/package.json b/clients/client-servicediscovery/package.json index 6c53d4951722..7897e0c0db38 100644 --- a/clients/client-servicediscovery/package.json +++ b/clients/client-servicediscovery/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ses/package.json b/clients/client-ses/package.json index 50a64c6caac5..72ad07b26134 100644 --- a/clients/client-ses/package.json +++ b/clients/client-ses/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sesv2/package.json b/clients/client-sesv2/package.json index 178f81e1a0f7..e2eb057df839 100644 --- a/clients/client-sesv2/package.json +++ b/clients/client-sesv2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sfn/package.json b/clients/client-sfn/package.json index 868250b327d6..8ae82b232d97 100644 --- a/clients/client-sfn/package.json +++ b/clients/client-sfn/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-shield/package.json b/clients/client-shield/package.json index 8521e775520c..6a683d4523b3 100644 --- a/clients/client-shield/package.json +++ b/clients/client-shield/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-signer/package.json b/clients/client-signer/package.json index 1d48cdf343e6..b98af58b52f0 100644 --- a/clients/client-signer/package.json +++ b/clients/client-signer/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sms/package.json b/clients/client-sms/package.json index e8e1c6d8dab8..cac33c9b619b 100644 --- a/clients/client-sms/package.json +++ b/clients/client-sms/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-snowball/package.json b/clients/client-snowball/package.json index fff280ddc127..bc9d620eb7c9 100644 --- a/clients/client-snowball/package.json +++ b/clients/client-snowball/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sns/package.json b/clients/client-sns/package.json index 3683d7ee8739..6524f2122e2b 100644 --- a/clients/client-sns/package.json +++ b/clients/client-sns/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sqs/package.json b/clients/client-sqs/package.json index 8ac289abe929..726cdf6a3b26 100644 --- a/clients/client-sqs/package.json +++ b/clients/client-sqs/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ssm-contacts/package.json b/clients/client-ssm-contacts/package.json index 747d55da0ebb..ed8e5dcac8e2 100644 --- a/clients/client-ssm-contacts/package.json +++ b/clients/client-ssm-contacts/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ssm-incidents/package.json b/clients/client-ssm-incidents/package.json index a9a24d1dd5e3..d0071a28167d 100644 --- a/clients/client-ssm-incidents/package.json +++ b/clients/client-ssm-incidents/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-ssm/package.json b/clients/client-ssm/package.json index cfc020c5df60..222c9a9c0d83 100644 --- a/clients/client-ssm/package.json +++ b/clients/client-ssm/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sso-admin/package.json b/clients/client-sso-admin/package.json index 79ee25521e23..f6dcfc85c718 100644 --- a/clients/client-sso-admin/package.json +++ b/clients/client-sso-admin/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sso-oidc/package.json b/clients/client-sso-oidc/package.json index bdc9d94abbee..2481274d020f 100644 --- a/clients/client-sso-oidc/package.json +++ b/clients/client-sso-oidc/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sso/package.json b/clients/client-sso/package.json index 36a807a6d2e9..b296d41c260b 100644 --- a/clients/client-sso/package.json +++ b/clients/client-sso/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-storage-gateway/package.json b/clients/client-storage-gateway/package.json index 8d95cf5449a8..850009883e25 100644 --- a/clients/client-storage-gateway/package.json +++ b/clients/client-storage-gateway/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-sts/package.json b/clients/client-sts/package.json index 9a5077f11b5a..181c07a9cb18 100644 --- a/clients/client-sts/package.json +++ b/clients/client-sts/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-support/package.json b/clients/client-support/package.json index 09beaa8854cc..8c2a93e8a442 100644 --- a/clients/client-support/package.json +++ b/clients/client-support/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-swf/package.json b/clients/client-swf/package.json index 5514082992d4..38f58662f595 100644 --- a/clients/client-swf/package.json +++ b/clients/client-swf/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-synthetics/package.json b/clients/client-synthetics/package.json index ec45f5b0b155..9e3cd0e526eb 100644 --- a/clients/client-synthetics/package.json +++ b/clients/client-synthetics/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-textract/package.json b/clients/client-textract/package.json index e1e3735cb2b4..5fe5f36f03e1 100644 --- a/clients/client-textract/package.json +++ b/clients/client-textract/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-timestream-query/package.json b/clients/client-timestream-query/package.json index 9c9c3df885a0..958c110fcd06 100644 --- a/clients/client-timestream-query/package.json +++ b/clients/client-timestream-query/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-timestream-write/package.json b/clients/client-timestream-write/package.json index 93fe36b5339f..913dc4244736 100644 --- a/clients/client-timestream-write/package.json +++ b/clients/client-timestream-write/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-transcribe-streaming/package.json b/clients/client-transcribe-streaming/package.json index f29389a701ae..4775f5be4e46 100644 --- a/clients/client-transcribe-streaming/package.json +++ b/clients/client-transcribe-streaming/package.json @@ -15,7 +15,8 @@ "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", "postbuild": "cp test/speech.wav dist/cjs/test", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-transcribe/package.json b/clients/client-transcribe/package.json index ef2dbc7e97be..25ed03ab667d 100644 --- a/clients/client-transcribe/package.json +++ b/clients/client-transcribe/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-transfer/package.json b/clients/client-transfer/package.json index db72880fb65c..6c72e8f6555a 100644 --- a/clients/client-transfer/package.json +++ b/clients/client-transfer/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-translate/package.json b/clients/client-translate/package.json index 6c9e8b32b4fa..354bd33d5491 100644 --- a/clients/client-translate/package.json +++ b/clients/client-translate/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-waf-regional/package.json b/clients/client-waf-regional/package.json index 2802c55bf027..1fe05d6c66ed 100644 --- a/clients/client-waf-regional/package.json +++ b/clients/client-waf-regional/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-waf/package.json b/clients/client-waf/package.json index 198e8eca475d..9b64fa7c09f0 100644 --- a/clients/client-waf/package.json +++ b/clients/client-waf/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-wafv2/package.json b/clients/client-wafv2/package.json index 10ca705639fa..112567b910e9 100644 --- a/clients/client-wafv2/package.json +++ b/clients/client-wafv2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-wellarchitected/package.json b/clients/client-wellarchitected/package.json index a53c8cde2a58..514bf56e6981 100644 --- a/clients/client-wellarchitected/package.json +++ b/clients/client-wellarchitected/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-workdocs/package.json b/clients/client-workdocs/package.json index a8c8b9ed9b27..4436d3c3bbbe 100644 --- a/clients/client-workdocs/package.json +++ b/clients/client-workdocs/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-worklink/package.json b/clients/client-worklink/package.json index ae464d06fb8a..e81a5250dd91 100644 --- a/clients/client-worklink/package.json +++ b/clients/client-worklink/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-workmail/package.json b/clients/client-workmail/package.json index 17695e23a688..6f2783bd5e85 100644 --- a/clients/client-workmail/package.json +++ b/clients/client-workmail/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-workmailmessageflow/package.json b/clients/client-workmailmessageflow/package.json index b2a8ee36e8ec..a743bb325127 100644 --- a/clients/client-workmailmessageflow/package.json +++ b/clients/client-workmailmessageflow/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-workspaces/package.json b/clients/client-workspaces/package.json index c47277de7d8f..b211c40bc9b9 100644 --- a/clients/client-workspaces/package.json +++ b/clients/client-workspaces/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/clients/client-xray/package.json b/clients/client-xray/package.json index dc90eb21e74c..05a00688ed80 100644 --- a/clients/client-xray/package.json +++ b/clients/client-xray/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/protocol_tests/aws-ec2/package.json b/protocol_tests/aws-ec2/package.json index 756963ae2de4..3fb041bd3ba3 100644 --- a/protocol_tests/aws-ec2/package.json +++ b/protocol_tests/aws-ec2/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/protocol_tests/aws-json-10/package.json b/protocol_tests/aws-json-10/package.json index a7c500d0263a..d7b1703095c1 100644 --- a/protocol_tests/aws-json-10/package.json +++ b/protocol_tests/aws-json-10/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/protocol_tests/aws-json/package.json b/protocol_tests/aws-json/package.json index 0557e6412463..0f3201385a50 100644 --- a/protocol_tests/aws-json/package.json +++ b/protocol_tests/aws-json/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/protocol_tests/aws-query/package.json b/protocol_tests/aws-query/package.json index e187419cb394..26fd2d233671 100644 --- a/protocol_tests/aws-query/package.json +++ b/protocol_tests/aws-query/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/protocol_tests/aws-restjson/package.json b/protocol_tests/aws-restjson/package.json index 28ee8c9bd396..71111dccd747 100644 --- a/protocol_tests/aws-restjson/package.json +++ b/protocol_tests/aws-restjson/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/protocol_tests/aws-restxml/package.json b/protocol_tests/aws-restxml/package.json index a6ad1b96d4b2..3369792ac3fe 100644 --- a/protocol_tests/aws-restxml/package.json +++ b/protocol_tests/aws-restxml/package.json @@ -12,7 +12,8 @@ "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es", - "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4" + "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4", + "postinstall": "postinstall-node-version-check" }, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts",