diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..ce1546c --- /dev/null +++ b/.eslintignore @@ -0,0 +1,3 @@ +node_modules +*.d.ts +*.js diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..ea53bff --- /dev/null +++ b/.eslintrc @@ -0,0 +1,13 @@ +{ + "extends": [ + "./node_modules/@moia-oss/eslint-prettier-typescript-config/config/eslint.js", + "./node_modules/@moia-oss/eslint-prettier-typescript-config/config/eslint-strict.js" + ], + "parserOptions": { + "project": "./tsconfig.json" + }, + "rules": { + "@typescript-eslint/consistent-type-definitions": ["error", "interface"], + "@typescript-eslint/consistent-type-assertions": [2, { "assertionStyle": "as" }] + } +} diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d83175c..01588a7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,10 +1,10 @@ version: 2 updates: - - package-ecosystem: "npm" - directory: "/" + - package-ecosystem: 'npm' + directory: '/' schedule: - interval: "monthly" - - package-ecosystem: "github-actions" - directory: "/" + interval: 'monthly' + - package-ecosystem: 'github-actions' + directory: '/' schedule: - interval: "monthly" + interval: 'monthly' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index abda774..468ce85 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,7 @@ on: pull_request: types: - opened - - synchronize + - synchronize jobs: test: @@ -17,9 +17,11 @@ jobs: node-version: 16 - name: NPM Install run: npm ci + - name: Format Check + run: npm run format:check - name: Lint run: npm run lint - - name: Test - run: npm run test - name: Build run: npm run build + - name: Test + run: npm run test diff --git a/.gitignore b/.gitignore index 063d1b6..bf629fb 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,7 @@ *.d.ts node_modules .jsii - +.log tags dist/ test/__snapshots__/ diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..87121b7 --- /dev/null +++ b/.prettierrc @@ -0,0 +1 @@ +"@moia-oss/eslint-prettier-typescript-config/config/prettier" diff --git a/README.md b/README.md index 6a8f52a..3ea3e71 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ [![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fmoia-oss%2Fbastion-host-forward%2Fbadge&style=flat)](https://actions-badge.atrox.dev/moia-oss/bastion-host-forward/goto) [![npm version](https://badge.fury.io/js/%40moia-oss%2Fbastion-host-forward.svg)](https://badge.fury.io/js/%40moia-oss%2Fbastion-host-forward) [![PyPI version](https://badge.fury.io/py/moia-dev.bastion-host-forward.svg)](https://badge.fury.io/py/moia-dev.bastion-host-forward) + # Bastion Host Forward This is a CDK Library providing custom bastion host constructs for connecting to @@ -18,11 +19,26 @@ Currently the following AWS Services are supported: | Redshift | `BastionHostRedshiftForward` | | RDS | `BastionHostRDSForward` | +# V1 DISCLAIMER + +We introduced v1.0.0 recently, which now relies on v2 of CDK. This introced an +incompability, because they don't offer a L2 Construct for +[Redshift](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_redshift-readme.html) +anymore. This is why we cant offer the `BastionHostRedshiftForward` Construct +anymore. We would need to accept a CFN L1 Construct instead, but we didn't allow +this for the `BastionHostRedisForward` as well. Instead we decided to rename the +`BastionHostRedisForward` to `GenericBastionHostForward`, which needs only the +endpoint address and the port of the data store to be able to forward connections. + +With the new `GenericBastionHostForward` you are still able to forward +connections to Redis and Redshift and also every other data store in AWS, which +we don't support specifically so far. + # Technical details The bastion hosts are extensions of the official `BastionHostLinux` CDK construct, which allows connecting to the bastion host and from there connect to -the data layer. +the data layer. These constructs additionally install and configure [HAProxy](https://www.haproxy.org/) to forward the endpoint of the chosen data @@ -66,6 +82,7 @@ pip install moia-dev.bastion-host-forward ``` # Examples + The following section includes some examples in supported languages how the Bastion Host can be created for different databases. @@ -132,30 +149,20 @@ that IPs from within the VPC are able to connect to the RDS Database. This needs to be set in the RDS's Security Group. Otherwise the Bastion Host can't connect to the RDS. -## Bastion Host for Redis in Typescript - -The instantiation of a BastionHostRedisForward works very similar to the RDS -example, except that you pass a CfnCacheCluster to the BastionHost like this: - -```typescript -new BastionHostRedisForward(this, 'RedisBastion', { - elasticacheCluster: cluster, - vpc: vpc, -}); -``` - -## Bastion Host for Redshift +## Bastion Host for a generic data store on AWS (Redis, Redshift etc.) ### Typescript -A minimal example for creating the Redshift Forward Construct, which will be used via -username/password could look like this snippet. It's very similar to the RDS -version. The only difference is that we need a Redshift Cluster object instead -of a RDS DatabaseInstance: +A minimal example for creating the Generic Forward Construct, which will be used +via username/password could look like this snippet. In this case we forward a +connection to a RedShift instance, but this can also be a Redis Node or any +other data store on AWS. Instead of passing the complete L2 construct and +letting the library extract the necessary properties, the client is passing them +directly to the construct: ```typescript import * as cdk from '@aws-cdk/core'; -import { BastionHostRedshiftForward } from '@moia-dev/bastion-host-forward'; +import { GenericBastionHostForward } from '@moia-dev/bastion-host-forward'; import { SecurityGroup, Vpc } from '@aws-cdk/aws-ec2'; import { Cluster } from '@aws-cdk/aws-redshift'; @@ -164,29 +171,26 @@ export class PocRedshiftStack extends cdk.Stack { super(scope, id, props); const vpc = Vpc.fromLookup(this, 'MyVpc', { - vpcId: 'vpc-12345678' + vpcId: 'vpc-12345678', }); - const securityGroup = SecurityGroup.fromSecurityGroupId( - this, - 'BastionHostSecurityGroup', - 'sg-1245678', - { mutable: false } - ); + const securityGroup = SecurityGroup.fromSecurityGroupId(this, 'BastionHostSecurityGroup', 'sg-1245678', { + mutable: false, + }); const redshiftCluster = Cluster.fromClusterAttributes(this, 'RedshiftCluster', { clusterName: 'myRedshiftClusterName', clusterEndpointAddress: 'myRedshiftClusterName.abcdefg.eu-central-1.redshift.amazonaws.com', clusterEndpointPort: 5439, - }); - new BastionHostRedshiftForward(this, 'BastionHostRedshiftForward', { + new GenericBastionHostForward(this, 'BastionHostRedshiftForward', { vpc, - name: 'MyRedshiftBastionHost', securityGroup, - redshiftCluster - }) + name: 'MyRedshiftBastionHost', + address: redshiftCluster.clusterEndpointAddress, + port: redshiftCluster.clusterEndpointPort, + }); } } ``` @@ -213,7 +217,7 @@ class PocRedshiftStack(cdk.Stack): self, "sec_group", "sg-12345678" ) - redshiftCluster = aws_redshift.Cluster.from_cluster_attributes( + redshift_cluster = aws_redshift.Cluster.from_cluster_attributes( self, "cluster", cluster_name="myRedshiftClusterName", @@ -221,12 +225,13 @@ class PocRedshiftStack(cdk.Stack): cluster_endpoint_port=5439 ) - bastion_host_forward.BastionHostRedshiftForward( + bastion_host_forward.GenericBastionHostForward( self, "bastion-host", - name="my-vastion-host", + name="my-bastion-host", security_group=security_group, - redshift_cluster=redshiftCluster, + address: redshift_cluster.cluster_endpoint_address, + port: redshift_cluster.cluster_endpoint_port, vpc=vpc ) ``` @@ -266,7 +271,7 @@ export class BastionHostPocStack extends cdk.Stack { ); new BastionHostAuroraServerlessForward(this, 'BastionHost', { - vpc, + vpc, serverlessCluster, }); ``` @@ -305,6 +310,7 @@ AWS](https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manage The Session Manager offers a command to forward a specific port. On the Bastion Host a HAProxy was installed which forwards the connection on the same port as the specified service. Those are by default: + - RDS MySQL: 3306 - RDS PostgreSQL: 5432 - Redis: 6739 @@ -328,11 +334,11 @@ same as the RDS Port. Now you would be able to connect to the RDS as it would run on localhost:5432. -*Note* +_Note_ In the example of a MySQL running in Serverless Aurora, we couldn't connect to the database using localhost. If you face the same issue, make sure to also try to connect via -the local IP 127.0.0.1. +the local IP 127.0.0.1. Example with the MySQL CLI: diff --git a/jest.config.js b/jest.config.js index 9aa0e8d..98bd8c9 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,9 +1,7 @@ module.exports = { - "roots": [ - "/test" - ], - testMatch: [ '**/*.test.ts'], - "transform": { - "^.+\\.tsx?$": "ts-jest" - }, - } + roots: ['/test'], + testMatch: ['**/*.test.ts'], + transform: { + '^.+\\.tsx?$': 'ts-jest', + }, +}; diff --git a/lib/aurora-serverless.ts b/lib/aurora-serverless.ts index 33054ff..3467300 100644 --- a/lib/aurora-serverless.ts +++ b/lib/aurora-serverless.ts @@ -11,23 +11,25 @@ limitations under the License. */ -import * as cdk from '@aws-cdk/core'; -import * as iam from '@aws-cdk/aws-iam'; -import * as rds from '@aws-cdk/aws-rds'; +import { Stack, Token } from 'aws-cdk-lib'; +import * as iam from 'aws-cdk-lib/aws-iam'; +import type { IServerlessCluster } from 'aws-cdk-lib/aws-rds'; +import type { Construct } from 'constructs'; + import { BastionHostForward } from './bastion-host-forward'; -import { BastionHostForwardBaseProps } from './bastion-host-forward-base-props'; +import type { BastionHostForwardBaseProps } from './bastion-host-forward-base-props'; export interface BastionHostAuroraServerlessForwardProps extends BastionHostForwardBaseProps { /* * The Aurora Serverless Cluster where the bastion host should be able to connect to */ - readonly serverlessCluster: rds.IServerlessCluster; + readonly serverlessCluster: IServerlessCluster; /* * The resource identifier of this.serverlessCluster. * Can be omitted, when not using IAM Authentication. * * Is needed for the rds-db:connect permission. This property is currently - * not exported by the rds.ServerlessCluster. + * not exported by the ServerlessCluster. */ readonly resourceIdentifier?: string; @@ -42,13 +44,13 @@ export interface BastionHostAuroraServerlessForwardProps extends BastionHostForw * Creates a Bastion Host to forward to an Aurora Serverless Cluster */ export class BastionHostAuroraServerlessForward extends BastionHostForward { - constructor(scope: cdk.Construct, id: string, props: BastionHostAuroraServerlessForwardProps) { + constructor(scope: Construct, id: string, props: BastionHostAuroraServerlessForwardProps) { super(scope, id, { vpc: props.vpc, name: props.name, securityGroup: props.securityGroup, address: props.serverlessCluster.clusterEndpoint.hostname, - port: cdk.Token.asString(props.serverlessCluster.clusterEndpoint.port), + port: Token.asString(props.serverlessCluster.clusterEndpoint.port), clientTimeout: props.clientTimeout, }); @@ -60,8 +62,8 @@ export class BastionHostAuroraServerlessForward extends BastionHostForward { resources: [ this.genDbUserArnFromRdsArn(props.resourceIdentifier, props.iamUser), props.serverlessCluster.clusterArn, - ] - }) + ], + }), ); } } @@ -70,6 +72,6 @@ export class BastionHostAuroraServerlessForward extends BastionHostForward { * @returns the resource ARN for the the rds-db:connect action */ private genDbUserArnFromRdsArn(dbIdentifier: string, dbUser: string): string { - return `arn:aws:rds-db:${cdk.Stack.of(this).region}:${cdk.Stack.of(this).account}:dbuser:${dbIdentifier}/${dbUser}`; + return `arn:aws:rds-db:${Stack.of(this).region}:${Stack.of(this).account}:dbuser:${dbIdentifier}/${dbUser}`; } } diff --git a/lib/bastion-host-forward-base-props.ts b/lib/bastion-host-forward-base-props.ts index c394bce..cd70902 100644 --- a/lib/bastion-host-forward-base-props.ts +++ b/lib/bastion-host-forward-base-props.ts @@ -11,14 +11,13 @@ limitations under the License. */ -import * as ec2 from '@aws-cdk/aws-ec2'; +import type { ISecurityGroup, IVpc } from 'aws-cdk-lib/aws-ec2'; export interface BastionHostForwardBaseProps { - /** * The Vpc in which to instantiate the Bastion Host */ - readonly vpc: ec2.IVpc; + readonly vpc: IVpc; /** * The name of the bastionHost instance @@ -33,12 +32,12 @@ export interface BastionHostForwardBaseProps { * @default If none is provided a default security group is attached, which * doesn't allow incoming traffic and allows outbound traffic to everywhere */ - readonly securityGroup?: ec2.ISecurityGroup; + readonly securityGroup?: ISecurityGroup; - /** - * The HAProxy client timeout in minutes - * - * @default 1 - */ + /** + * The HAProxy client timeout in minutes + * + * @default 1 + */ readonly clientTimeout?: number; } diff --git a/lib/bastion-host-forward-props.ts b/lib/bastion-host-forward-props.ts index 63f1fc9..99bfd4a 100644 --- a/lib/bastion-host-forward-props.ts +++ b/lib/bastion-host-forward-props.ts @@ -1,4 +1,4 @@ -import { BastionHostForwardBaseProps } from './bastion-host-forward-base-props'; +import type { BastionHostForwardBaseProps } from './bastion-host-forward-base-props'; export interface BastionHostForwardProps extends BastionHostForwardBaseProps { /** @@ -11,4 +11,3 @@ export interface BastionHostForwardProps extends BastionHostForwardBaseProps { */ readonly port: string; } - diff --git a/lib/bastion-host-forward.ts b/lib/bastion-host-forward.ts index 76d37ca..e486683 100644 --- a/lib/bastion-host-forward.ts +++ b/lib/bastion-host-forward.ts @@ -11,73 +11,34 @@ limitations under the License. */ -import * as cdk from '@aws-cdk/core'; -import * as ec2 from '@aws-cdk/aws-ec2'; -import { BastionHostForwardProps } from './bastion-host-forward-props'; +import { Fn } from 'aws-cdk-lib'; +import { BastionHostLinux, SecurityGroup, UserData } from 'aws-cdk-lib/aws-ec2'; +import type { CfnInstance, ISecurityGroup } from 'aws-cdk-lib/aws-ec2'; +import { Construct } from 'constructs'; -export class BastionHostForward extends cdk.Construct { - /** - * @returns the id of the bastion host, which can be used by the session - * manager connect command afterwards - */ - public instanceId?: string; - - /** - * @returns the security group attached to the bastion host - */ - public securityGroup?: ec2.ISecurityGroup; +import type { BastionHostForwardProps } from './bastion-host-forward-props'; - /** - * @returns The BastionHost Instance - */ - protected readonly bastionHost: ec2.BastionHostLinux; - - protected constructor(scope: cdk.Construct, id: string, props: BastionHostForwardProps) { - super(scope, id); - this.securityGroup = props.securityGroup || new ec2.SecurityGroup(this, 'BastionHostSecurityGroup', { - vpc: props.vpc, - allowAllOutbound: true, - }); - - this.bastionHost = new ec2.BastionHostLinux(this, 'BastionHost', { - instanceName: props.name || 'BastionHost', - vpc: props.vpc, - securityGroup: this.securityGroup, - }); - - const cfnBastionHost = this.bastionHost.instance.node.defaultChild as ec2.CfnInstance; - const shellCommands = this.generateEc2UserData( - props.address, - props.port, - props.clientTimeout || 1, - ); - cfnBastionHost.userData = cdk.Fn.base64(shellCommands.render()); - - this.instanceId = this.bastionHost.instance.instanceId; - } - - /* - * Creates a Config entry for HAProxy with the given address and port - */ - private generateHaProxyBaseConfig(address: string, port: string, clientTimeout: number): string { - return `listen database +/* + * Creates a Config entry for HAProxy with the given address and port + */ +const generateHaProxyBaseConfig = (address: string, port: string, clientTimeout: number): string => + `listen database bind 0.0.0.0:${port} timeout connect 10s timeout client ${clientTimeout}m timeout server 1m mode tcp server service ${address}:${port}\n`; - } - /* - * Generates EC2 User Data for Bastion Host Forwarder. This installs HAProxy - * on the Instance as well, as writing a config file for it. - * The User Data is written in MIME format to override the User Data - * application behavior to be applied on every machine restart - */ - private generateEc2UserData(address: string, port: string, clientTimeout: number): ec2.UserData { - return ec2.UserData.custom( - `Content-Type: multipart/mixed; boundary="//" +/* + * Generates EC2 User Data for Bastion Host Forwarder. This installs HAProxy + * on the Instance as well, as writing a config file for it. + * The User Data is written in MIME format to override the User Data + * application behavior to be applied on every machine restart + */ +const generateEc2UserData = (address: string, port: string, clientTimeout: number): UserData => + UserData.custom( + `Content-Type: multipart/mixed; boundary="//" MIME-Version: 1.0 --// Content-Type: text/cloud-config; charset="us-ascii" @@ -96,8 +57,47 @@ Content-Disposition: attachment; filename="userdata.txt" mount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc yum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm yum install -y haproxy -echo "${this.generateHaProxyBaseConfig(address, port, clientTimeout)}" > /etc/haproxy/haproxy.cfg +echo "${generateHaProxyBaseConfig(address, port, clientTimeout)}" > /etc/haproxy/haproxy.cfg service haproxy restart ---//`); +--//`, + ); + +export class BastionHostForward extends Construct { + /** + * @returns the id of the bastion host, which can be used by the session + * manager connect command afterwards + */ + public instanceId?: string; + + /** + * @returns the security group attached to the bastion host + */ + public securityGroup?: ISecurityGroup; + + /** + * @returns The BastionHost Instance + */ + protected readonly bastionHost: BastionHostLinux; + + protected constructor(scope: Construct, id: string, props: BastionHostForwardProps) { + super(scope, id); + this.securityGroup = + props.securityGroup ?? + new SecurityGroup(this, 'BastionHostSecurityGroup', { + vpc: props.vpc, + allowAllOutbound: true, + }); + + this.bastionHost = new BastionHostLinux(this, 'BastionHost', { + instanceName: props.name ?? 'BastionHost', + vpc: props.vpc, + securityGroup: this.securityGroup, + }); + + const cfnBastionHost = this.bastionHost.instance.node.defaultChild as CfnInstance; + const shellCommands = generateEc2UserData(props.address, props.port, props.clientTimeout ?? 1); + cfnBastionHost.userData = Fn.base64(shellCommands.render()); + + this.instanceId = this.bastionHost.instance.instanceId; } } diff --git a/lib/redis.ts b/lib/generic-bastion-host-forward.ts similarity index 61% rename from lib/redis.ts rename to lib/generic-bastion-host-forward.ts index ba3218a..dff8bfd 100644 --- a/lib/redis.ts +++ b/lib/generic-bastion-host-forward.ts @@ -11,21 +11,25 @@ limitations under the License. */ -import * as cdk from '@aws-cdk/core'; -import { BastionHostForwardProps } from './bastion-host-forward-props'; +import type { Construct } from 'constructs'; + import { BastionHostForward } from './bastion-host-forward'; +import type { BastionHostForwardProps } from './bastion-host-forward-props'; /* - * Creates a Bastion Host to forward to a Redis Cluster + * Creates a Bastion Host to forward to a generic Endpoint. It needs the following attributes: + * - vpc: The VPC to deploy the bastion host to + * - address: The endpoint address of the datastore + * - port: The port of the datastore */ -export class BastionHostRedisForward extends BastionHostForward { - constructor(scope: cdk.Construct, id: string, props: BastionHostForwardProps) { +export class GenericBastionHostForward extends BastionHostForward { + constructor(scope: Construct, id: string, props: BastionHostForwardProps) { super(scope, id, { vpc: props.vpc, name: props.name, securityGroup: props.securityGroup, address: props.address, - port: props.port, + port: String(props.port), clientTimeout: props.clientTimeout, }); } diff --git a/lib/index.ts b/lib/index.ts index bf674d0..958b021 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -16,5 +16,4 @@ export * from './bastion-host-forward-props'; export * from './bastion-host-forward'; export * from './rds'; export * from './aurora-serverless'; -export * from './redis'; -export * from './redshift'; +export * from './generic-bastion-host-forward'; diff --git a/lib/rds.ts b/lib/rds.ts index 2561112..6054532 100644 --- a/lib/rds.ts +++ b/lib/rds.ts @@ -11,24 +11,26 @@ limitations under the License. */ -import * as cdk from '@aws-cdk/core'; -import * as iam from '@aws-cdk/aws-iam'; -import * as rds from '@aws-cdk/aws-rds'; -import { BastionHostForwardBaseProps } from './bastion-host-forward-base-props'; +import { Stack } from 'aws-cdk-lib'; +import { Effect, PolicyStatement } from 'aws-cdk-lib/aws-iam'; +import type { IDatabaseInstance } from 'aws-cdk-lib/aws-rds'; +import type { Construct } from 'constructs'; + import { BastionHostForward } from './bastion-host-forward'; +import type { BastionHostForwardBaseProps } from './bastion-host-forward-base-props'; export interface BastionHostRDSForwardProps extends BastionHostForwardBaseProps { /* * The RDS instance where the bastion host should be able to connect to */ - readonly rdsInstance: rds.IDatabaseInstance; + readonly rdsInstance: IDatabaseInstance; /* * The resource identifier of this.rdsInstance. * Can be omitted, when not using IAM Authentication. * * Is needed for the rds-db:connect permission. This property is currently - * not exported by the rds.DatabaseInstance. + * not exported by the DatabaseInstance. */ readonly rdsResourceIdentifier?: string; @@ -43,7 +45,7 @@ export interface BastionHostRDSForwardProps extends BastionHostForwardBaseProps * Creates a Bastion Host to forward to an RDS Instance */ export class BastionHostRDSForward extends BastionHostForward { - constructor(scope: cdk.Construct, id: string, props: BastionHostRDSForwardProps) { + constructor(scope: Construct, id: string, props: BastionHostRDSForwardProps) { super(scope, id, { vpc: props.vpc, name: props.name, @@ -55,14 +57,14 @@ export class BastionHostRDSForward extends BastionHostForward { if (props.iamUser !== undefined && props.rdsResourceIdentifier !== undefined) { this.bastionHost.instance.addToRolePolicy( - new iam.PolicyStatement({ - effect: iam.Effect.ALLOW, + new PolicyStatement({ + effect: Effect.ALLOW, actions: ['rds-db:connect', 'rds:*'], resources: [ this.genDbUserArnFromRdsArn(props.rdsResourceIdentifier, props.iamUser), props.rdsInstance.instanceArn, - ] - }) + ], + }), ); } } @@ -71,6 +73,6 @@ export class BastionHostRDSForward extends BastionHostForward { * @returns the resource ARN for the the rds-db:connect action */ private genDbUserArnFromRdsArn(dbIdentifier: string, dbUser: string): string { - return `arn:aws:rds-db:${cdk.Stack.of(this).region}:${cdk.Stack.of(this).account}:dbuser:${dbIdentifier}/${dbUser}`; + return `arn:aws:rds-db:${Stack.of(this).region}:${Stack.of(this).account}:dbuser:${dbIdentifier}/${dbUser}`; } } diff --git a/lib/redshift.ts b/lib/redshift.ts deleted file mode 100644 index 08db9c8..0000000 --- a/lib/redshift.ts +++ /dev/null @@ -1,40 +0,0 @@ -/* - Copyright 2020 MOIA GmbH - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License 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. -*/ - -import * as cdk from '@aws-cdk/core'; -import { BastionHostForwardBaseProps } from './bastion-host-forward-base-props'; -import { BastionHostForward } from './bastion-host-forward'; -import { ICluster } from '@aws-cdk/aws-redshift'; - -export interface BastionHostRedshiftForwardProps extends BastionHostForwardBaseProps { - /* - * The Redshift Cluster where the bastion host should be able to connect to - */ - readonly redshiftCluster: ICluster; -} - -/* - * Creates a Bastion Host to forward to a Redshift Cluster - */ -export class BastionHostRedshiftForward extends BastionHostForward { - constructor(scope: cdk.Construct, id: string, props: BastionHostRedshiftForwardProps) { - super(scope, id, { - vpc: props.vpc, - name: props.name, - securityGroup: props.securityGroup, - address: props.redshiftCluster.clusterEndpoint.hostname, - port: String(props.redshiftCluster.clusterEndpoint.port), - clientTimeout: props.clientTimeout, - }); - } -} diff --git a/package-lock.json b/package-lock.json index a31c7b9..2d50a44 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,1799 +8,2007 @@ "name": "@moia-oss/bastion-host-forward", "version": "0.0.0", "license": "Apache-2.0", - "dependencies": { - "@aws-cdk/aws-ec2": "^1.137.0", - "@aws-cdk/aws-elasticache": "^1.137.0", - "@aws-cdk/aws-iam": "^1.137.0", - "@aws-cdk/aws-rds": "^1.137.0", - "@aws-cdk/aws-redshift": "^1.137.0", - "@aws-cdk/core": "^1.137.0" - }, "devDependencies": { - "@aws-cdk/assert": "^1.137.0", + "@moia-oss/eslint-prettier-typescript-config": "^0.11.3", "@types/jest": "^27.0.0", "@types/node": "16.11.12", + "aws-cdk-lib": "2.7.0", + "constructs": "10.0.31", + "eslint": "^8.6.0", "jest": "^26.6.3", - "jsii": "^1.30.0", - "jsii-pacmak": "^1.32.0", + "jsii": "^1.52.1", + "jsii-pacmak": "^1.52.1", "jsii-release": "^0.2.30", + "prettier": "^2.5.1", "ts-jest": "^26.5.6", "tslint": "^6.1.3", "typescript": "^4.5.2" }, "peerDependencies": { - "@aws-cdk/aws-ec2": "^1.137.0", - "@aws-cdk/aws-elasticache": "^1.137.0", - "@aws-cdk/aws-iam": "^1.137.0", - "@aws-cdk/aws-rds": "^1.137.0", - "@aws-cdk/aws-redshift": "^1.137.0", - "@aws-cdk/core": "^1.137.0", - "constructs": "^3.0.3" + "aws-cdk-lib": "^2.7.0", + "constructs": "^10.0.31" } }, - "node_modules/@aws-cdk/assert": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/assert/-/assert-1.139.0.tgz", - "integrity": "sha512-SGNlbh8hrBYoERctUqxKDPNhjP2JGUH1rlauGAdVdtokVCW4ntfC/u9wOYr0Sny2UqpB9ooSSKdOnoC6a6/jIQ==", + "node_modules/@babel/code-frame": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "dev": true, "dependencies": { - "@aws-cdk/cloudformation-diff": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "@babel/highlight": "^7.16.7" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69", - "jest": ">=26.6.3" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/assets": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/assets/-/assets-1.139.0.tgz", - "integrity": "sha512-qyXfGbb8zWFQhkcZoFOzi15K6rMnSSPDtuBxDxm/3tbyn+d5eTtnuL/rWJgWXYaewWtv1fZAG+R6PHQNquEyBg==", - "dependencies": { - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - }, + "node_modules/@babel/compat-data": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.8.tgz", + "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==", + "dev": true, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-applicationautoscaling": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-applicationautoscaling/-/aws-applicationautoscaling-1.139.0.tgz", - "integrity": "sha512-CSP96IK6DjnDHMqgHhnDkz99jhujJUzmngHv0w8DwXKtDlFGdFq68Nzc2UZHDzyxQCPbsQwTFCF8w4WA9RHlTg==", - "dependencies": { - "@aws-cdk/aws-autoscaling-common": "1.139.0", - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node_modules/@babel/core": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", + "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.16.7", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helpers": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" + "node": ">=6.9.0" }, - "peerDependencies": { - "@aws-cdk/aws-autoscaling-common": "1.139.0", - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" } }, - "node_modules/@aws-cdk/aws-autoscaling-common": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-autoscaling-common/-/aws-autoscaling-common-1.139.0.tgz", - "integrity": "sha512-HsJ+ob8h6bYJniYCCc7kQo8cU1aW3RRscsNLBtP1jlfaJACbOnTFrHR1DTZn2mN/yndYI4FAbzdMn9wjZBdcsg==", - "dependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - }, + "node_modules/@babel/core/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node": ">=0.10.0" } }, - "node_modules/@aws-cdk/aws-cloudformation": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-cloudformation/-/aws-cloudformation-1.139.0.tgz", - "integrity": "sha512-JdecIidqJhSXd17qipT/UL5De9OywjbKUEIpvnMW/SJbr1+mvTXoXKxMNorNN6oScAmlwSTxig7vhcH95QX5Bg==", + "node_modules/@babel/generator": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz", + "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==", + "dev": true, "dependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-sns": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "@babel/types": "^7.16.8", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-sns": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@aws-cdk/aws-cloudwatch": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-cloudwatch/-/aws-cloudwatch-1.139.0.tgz", - "integrity": "sha512-LsuBLRuvVT3L95BsSJvqQajtoSUkmHpHs66BRE7jU2WXeeHitUBUE5dfkregGflzsqIA+huWwrC4dbAb4/cy5w==", + "node_modules/@babel/helper-compilation-targets": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz", + "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", + "dev": true, "dependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "@babel/compat-data": "^7.16.4", + "@babel/helper-validator-option": "^7.16.7", + "browserslist": "^4.17.5", + "semver": "^6.3.0" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" + "node": ">=6.9.0" }, "peerDependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "@babel/core": "^7.0.0" } }, - "node_modules/@aws-cdk/aws-codeguruprofiler": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-codeguruprofiler/-/aws-codeguruprofiler-1.139.0.tgz", - "integrity": "sha512-vuP9ZxDqNCyJBD7CfBVvzvT8hMUIH7ZZ7oi0u3znN+Kj6lvjn96474sXeCnWfYrm5p2gKJoZRCQeGxINkrP7sQ==", + "node_modules/@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", + "dev": true, "dependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "@babel/types": "^7.16.7" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-codestarnotifications": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-codestarnotifications/-/aws-codestarnotifications-1.139.0.tgz", - "integrity": "sha512-MNnG4AzSJd3niGMGsDwIxGZ4FGBOMZYOd6kxRvu5zI/oB03eATNGGRRV52UC/2YGMYX+LrCLG3cWf4lHovOfhQ==", + "node_modules/@babel/helper-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", + "dev": true, "dependencies": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-ec2": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-ec2/-/aws-ec2-1.139.0.tgz", - "integrity": "sha512-09tVqk/eKDxImhEsffGLjp3asOCmn1fYEpCLTg/UEdAdAxyKYWTyxofKtvHOfUu6FjjuXAY50Bogku4e9FRqEQ==", + "node_modules/@babel/helper-get-function-arity": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", + "dev": true, "dependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-s3-assets": "1.139.0", - "@aws-cdk/aws-ssm": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" + "@babel/types": "^7.16.7" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-s3-assets": "1.139.0", - "@aws-cdk/aws-ssm": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-ecr": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-ecr/-/aws-ecr-1.139.0.tgz", - "integrity": "sha512-KVko/0NnqsFx0Ihza6PHfg43Mf9cHGzt7wgSINd4oGxXpyJF54vRWf14zHs2i+D1emlCWpx65fDZ7VkX4cTJyg==", + "node_modules/@babel/helper-hoist-variables": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", + "dev": true, "dependencies": { - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "@babel/types": "^7.16.7" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-ecr-assets": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-ecr-assets/-/aws-ecr-assets-1.139.0.tgz", - "integrity": "sha512-4/6kSwizP0Ft8kCXE0doocUY6uwFBCjZKddzWPuwkL/qeu+NGF15ixEZGGxiU2FISZ3Ln0x1NMnv6bZme8QnwA==", - "bundleDependencies": [ - "minimatch" - ], + "node_modules/@babel/helper-module-imports": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", + "dev": true, "dependencies": { - "@aws-cdk/assets": "1.139.0", - "@aws-cdk/aws-ecr": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69", - "minimatch": "^3.0.4" + "@babel/types": "^7.16.7" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/assets": "1.139.0", - "@aws-cdk/aws-ecr": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-ecr-assets/node_modules/balanced-match": { - "version": "1.0.2", - "inBundle": true, - "license": "MIT" - }, - "node_modules/@aws-cdk/aws-ecr-assets/node_modules/brace-expansion": { - "version": "1.1.11", - "inBundle": true, - "license": "MIT", + "node_modules/@babel/helper-module-transforms": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz", + "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==", + "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-ecr-assets/node_modules/concat-map": { - "version": "0.0.1", - "inBundle": true, - "license": "MIT" + "node_modules/@babel/helper-plugin-utils": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } }, - "node_modules/@aws-cdk/aws-ecr-assets/node_modules/minimatch": { - "version": "3.0.4", - "inBundle": true, - "license": "ISC", + "node_modules/@babel/helper-simple-access": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz", + "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", + "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "@babel/types": "^7.16.7" }, "engines": { - "node": "*" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-efs": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-efs/-/aws-efs-1.139.0.tgz", - "integrity": "sha512-v7ehXT97yIZhkTdViOlIzef/r/Muad6mUjqnz/3C5KeiVRHJ/FuspCFhaCZA7tYoP/4ZAOOidx9lTEfnj/oBsA==", + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", + "dev": true, "dependencies": { - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "@babel/types": "^7.16.7" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-elasticache": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-elasticache/-/aws-elasticache-1.139.0.tgz", - "integrity": "sha512-dMWeYSp6mIFxmujc7k4ZfycztuXZBQyMCKAEO5v/dz1EbgsF7DmcuA6q1f8/3e77XPnd5gRAHcfyoSH5lhqBuw==", - "dependencies": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "dev": true, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-events": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-events/-/aws-events-1.139.0.tgz", - "integrity": "sha512-RGb5yLxj1SaF6YbLevoNCxzVUp/L6IHA2yqDCRu6lA1G8NtAgzBRCYTncxFBUzncqb9ShiybLD15F2BAAuo1jg==", - "dependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - }, + "node_modules/@babel/helper-validator-option": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", + "dev": true, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-iam": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-iam/-/aws-iam-1.139.0.tgz", - "integrity": "sha512-IYDQGMQX+eOhKLPn+cZ8RzOAQZlOSmFdOI6j8jArHv9owpdgmB7ZLNPSusnDY2bVhq75pPVI4VNPpUj3Wwz7VQ==", + "node_modules/@babel/helpers": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz", + "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==", + "dev": true, "dependencies": { - "@aws-cdk/core": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/core": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-kms": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-kms/-/aws-kms-1.139.0.tgz", - "integrity": "sha512-etCwzz1yictUS69eGT4FoKJWVk5klZNFfmRCEyBzzTRosCub/fpltKCJyLPazf98GD6uc2X7nRJ+qS4urClSZA==", + "node_modules/@babel/highlight": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz", + "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", + "dev": true, "dependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "@babel/helper-validator-identifier": "^7.16.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "node_modules/@aws-cdk/aws-lambda": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-lambda/-/aws-lambda-1.139.0.tgz", - "integrity": "sha512-55vlcYJ44x4j7H98xYExusm8OWegAPisiy+viXDvQYuVrVTz5jw2pjU1CzK2m2trY0rtTmZrd8EpzB8mGcvX2g==", - "dependencies": { - "@aws-cdk/aws-applicationautoscaling": "1.139.0", - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-codeguruprofiler": "1.139.0", - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-ecr": "1.139.0", - "@aws-cdk/aws-ecr-assets": "1.139.0", - "@aws-cdk/aws-efs": "1.139.0", - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-s3-assets": "1.139.0", - "@aws-cdk/aws-signer": "1.139.0", - "@aws-cdk/aws-sqs": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" - }, - "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-applicationautoscaling": "1.139.0", - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-codeguruprofiler": "1.139.0", - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-ecr": "1.139.0", - "@aws-cdk/aws-ecr-assets": "1.139.0", - "@aws-cdk/aws-efs": "1.139.0", - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-s3-assets": "1.139.0", - "@aws-cdk/aws-signer": "1.139.0", - "@aws-cdk/aws-sqs": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" - } - }, - "node_modules/@aws-cdk/aws-logs": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-logs/-/aws-logs-1.139.0.tgz", - "integrity": "sha512-j/eQzb+fnQqP+v+JuOMBqga1FekbBfW3NyNa1va+nlGtQxOWISjYgq0YShhJcFf5xp9lfQyX5S2uTSDc/H9yTA==", - "dependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-s3-assets": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - }, - "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-s3-assets": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "node_modules/@aws-cdk/aws-rds": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-rds/-/aws-rds-1.139.0.tgz", - "integrity": "sha512-K4dRr9Q6Ckvx/vnZBiDzNP7sYLoDbho7uwiXh0CF+8qvhxnj15wI/PWSeKLaF35DVjfGrtxW1pvu5u6Fd3kU+Q==", - "dependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-secretsmanager": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - }, - "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-secretsmanager": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "node_modules/@aws-cdk/aws-redshift": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-redshift/-/aws-redshift-1.139.0.tgz", - "integrity": "sha512-iHUmpZj/6j5UTVQl7siz2Fc7LD7q8toVmKGZgeX2Mw8M9cfZLyDOKaN51tu1trD5jSIOjv7/ggeJgyW+TJvfCg==", - "dependencies": { - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-secretsmanager": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/custom-resources": "1.139.0", - "constructs": "^3.3.69" - }, - "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-secretsmanager": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/custom-resources": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/aws-s3": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-s3/-/aws-s3-1.139.0.tgz", - "integrity": "sha512-99xvOtpOFIa2BkTKUKGG5JLtMbg8oUZI0Xc1ya7+h88SnpEtPT1hCTFtOZofFxWEOb2xqd5z/wR+9GIMCHVT3g==", + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "dependencies": { - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "color-convert": "^1.9.0" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "node": ">=4" } }, - "node_modules/@aws-cdk/aws-s3-assets": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-s3-assets/-/aws-s3-assets-1.139.0.tgz", - "integrity": "sha512-oX0NUcOoOMfBdnuBrGaqhnpEi4+lyz7tBlZ6buZXVKpXJxIDOVu+o7KEbJnMkeQbTMqkLJ/Wz9pYqKZ6PqXSoA==", + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "dependencies": { - "@aws-cdk/assets": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/assets": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "node": ">=4" } }, - "node_modules/@aws-cdk/aws-sam": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-sam/-/aws-sam-1.139.0.tgz", - "integrity": "sha512-FefgTW/2uDpmuv+LMMY3zFVXTW4aZGIKddxmUTpTBAUObNncKwThjr6t7/sYmWAJwtRvJuZT8GAGGnl76Fum9g==", + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "dependencies": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - }, + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node": ">=0.8.0" } }, - "node_modules/@aws-cdk/aws-secretsmanager": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-secretsmanager/-/aws-secretsmanager-1.139.0.tgz", - "integrity": "sha512-GP/p5B3aB54Up91/P2j3H2Ohw2Hnlvu6ohdU+Z4tcRAHgy1aLvEc7rkIrR5axWsBtNfuy/Q7893xKJt4T1EXFg==", - "dependencies": { - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-sam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-sam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" + "node": ">=4" } }, - "node_modules/@aws-cdk/aws-signer": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-signer/-/aws-signer-1.139.0.tgz", - "integrity": "sha512-e7gjv7wzstvKsc/WCWrchiDWgHRckx2u/uzu709PeWcDrwxA8d8yRf1UnSMOia8VdGLkvtBqGbEo/XwKTxrmTQ==", + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "dependencies": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "has-flag": "^3.0.0" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node": ">=4" } }, - "node_modules/@aws-cdk/aws-sns": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-sns/-/aws-sns-1.139.0.tgz", - "integrity": "sha512-g7ni3nUa/umG7I1OEVwYfIRa82rB93KJKs965TushglpCT+w4IO0qVwoXbzJ/n/5Uvy6zsFNDRP7SKMRH0pFeA==", - "dependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-codestarnotifications": "1.139.0", - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-sqs": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node_modules/@babel/parser": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz", + "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-codestarnotifications": "1.139.0", - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-sqs": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node": ">=6.0.0" } }, - "node_modules/@aws-cdk/aws-sqs": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-sqs/-/aws-sqs-1.139.0.tgz", - "integrity": "sha512-OE/Khw1gBHi24DGBtR1D93gzZL6BHjIyM2veekFh2SjjR+NWKd8b5UDZQ3NMzRgpmqIew7psdPVXwbFjqwwxzg==", + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, "dependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - }, - "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" + "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/aws-ssm": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-ssm/-/aws-ssm-1.139.0.tgz", - "integrity": "sha512-fUr6KP6c+7FWEk4+paoskYWwu2BbMwVVp82S9EO/ZbAaprYK/cSLM5cN9AJiykt3PDRr+ksz762/XPvGunHpjA==", + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, "dependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - }, - "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" + "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/cfnspec": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/cfnspec/-/cfnspec-1.139.0.tgz", - "integrity": "sha512-M2qD48aIEGojOZcHopsjACyJHWv9eAxcBSGBFase0e4IaFSEybqm5EW9r5pkK9W2KpyUltZPxV8L5KCIQ9JgRA==", + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "dependencies": { - "fs-extra": "^9.1.0", - "md5": "^2.3.0" + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/cloud-assembly-schema": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/cloud-assembly-schema/-/cloud-assembly-schema-1.139.0.tgz", - "integrity": "sha512-1pbwrFfH72NggzKms6no+BtQ3E/pS/JBcCdNSHAh9Tyn3qrQY/SGYV7qaDZ/uGTDauZSoiSw35KNPGuxc6n9xw==", - "bundleDependencies": [ - "jsonschema", - "semver" - ], - "dependencies": { - "jsonschema": "^1.4.0", - "semver": "^7.3.5" - }, - "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - } - }, - "node_modules/@aws-cdk/cloud-assembly-schema/node_modules/jsonschema": { - "version": "1.4.0", - "inBundle": true, - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/@aws-cdk/cloud-assembly-schema/node_modules/lru-cache": { - "version": "6.0.0", - "inBundle": true, - "license": "ISC", + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, "dependencies": { - "yallist": "^4.0.0" + "@babel/helper-plugin-utils": "^7.10.4" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/cloud-assembly-schema/node_modules/semver": { - "version": "7.3.5", - "inBundle": true, - "license": "ISC", + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "@babel/helper-plugin-utils": "^7.8.0" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/cloud-assembly-schema/node_modules/yallist": { - "version": "4.0.0", - "inBundle": true, - "license": "ISC" - }, - "node_modules/@aws-cdk/cloudformation-diff": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/cloudformation-diff/-/cloudformation-diff-1.139.0.tgz", - "integrity": "sha512-RKnPVJF1VNZ8XSXsa3WLj7fo4eWBNtvJyiYBJDbnf1MWFelTm0qW641yEkuu5Zn3zld9ojFH/09xTtuHLI0v3w==", + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "dependencies": { - "@aws-cdk/cfnspec": "1.139.0", - "@types/node": "^10.17.60", - "colors": "1.4.0", - "diff": "^5.0.0", - "fast-deep-equal": "^3.1.3", - "string-width": "^4.2.3", - "table": "^6.8.0" + "@babel/helper-plugin-utils": "^7.10.4" }, - "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/cloudformation-diff/node_modules/@types/node": { - "version": "10.17.60", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", - "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==", - "dev": true - }, - "node_modules/@aws-cdk/core": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/core/-/core-1.139.0.tgz", - "integrity": "sha512-12JOM+iOYMk+BuTNT9R9B6WPQ8NfTv399TXMCZB0Sjf47ZDfMkktVJ46w2w8hBJL6y3vTRmEt98cwx2U7HgjxA==", - "bundleDependencies": [ - "fs-extra", - "minimatch", - "@balena/dockerignore", - "ignore" - ], + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, "dependencies": { - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "@balena/dockerignore": "^1.0.2", - "constructs": "^3.3.69", - "fs-extra": "^9.1.0", - "ignore": "^5.2.0", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" + "@babel/helper-plugin-utils": "^7.8.0" }, "peerDependencies": { - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" - } - }, - "node_modules/@aws-cdk/core/node_modules/@balena/dockerignore": { - "version": "1.0.2", - "inBundle": true, - "license": "Apache-2.0" - }, - "node_modules/@aws-cdk/core/node_modules/at-least-node": { - "version": "1.0.0", - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">= 4.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/core/node_modules/balanced-match": { - "version": "1.0.2", - "inBundle": true, - "license": "MIT" - }, - "node_modules/@aws-cdk/core/node_modules/brace-expansion": { - "version": "1.1.11", - "inBundle": true, - "license": "MIT", + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/core/node_modules/concat-map": { - "version": "0.0.1", - "inBundle": true, - "license": "MIT" - }, - "node_modules/@aws-cdk/core/node_modules/fs-extra": { - "version": "9.1.0", - "inBundle": true, - "license": "MIT", + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@babel/helper-plugin-utils": "^7.8.0" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/core/node_modules/graceful-fs": { - "version": "4.2.9", - "inBundle": true, - "license": "ISC" - }, - "node_modules/@aws-cdk/core/node_modules/ignore": { - "version": "5.2.0", - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 4" + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/core/node_modules/jsonfile": { - "version": "6.1.0", - "inBundle": true, - "license": "MIT", + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, "dependencies": { - "universalify": "^2.0.0" + "@babel/helper-plugin-utils": "^7.8.0" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/core/node_modules/minimatch": { - "version": "3.0.4", - "inBundle": true, - "license": "ISC", + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "@babel/helper-plugin-utils": "^7.14.5" }, "engines": { - "node": "*" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@aws-cdk/core/node_modules/universalify": { - "version": "2.0.0", - "inBundle": true, - "license": "MIT", + "node_modules/@babel/runtime": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz", + "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, "engines": { - "node": ">= 10.0.0" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/custom-resources": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/custom-resources/-/custom-resources-1.139.0.tgz", - "integrity": "sha512-uuQvsxh7zcz32aSmr93XnEtJB6jmzlqpy42I4q4478UCO/70aZc5xfXn/VNIQ2MmnO1u+PvlVO2EYquzVSyYew==", + "node_modules/@babel/runtime-corejs3": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.16.8.tgz", + "integrity": "sha512-3fKhuICS1lMz0plI5ktOE/yEtBRMVxplzRkdn6mJQ197XiY0JnrzYV0+Mxozq3JZ8SBV9Ecurmw1XsGbwOf+Sg==", + "dev": true, "dependencies": { - "@aws-cdk/aws-cloudformation": "1.139.0", - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-sns": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "core-js-pure": "^3.20.2", + "regenerator-runtime": "^0.13.4" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/aws-cloudformation": "1.139.0", - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-sns": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "node_modules/@aws-cdk/cx-api": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/cx-api/-/cx-api-1.139.0.tgz", - "integrity": "sha512-SZwWJE5ck6Vmw9K+F4KiniRgMwDDROSRoOPYJrrBtWCszskVc9CqxPTws69HDh7cuS0SVz5DWZHsvHIsBnYVKw==", - "bundleDependencies": [ - "semver" - ], + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "dev": true, "dependencies": { - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "semver": "^7.3.5" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" - }, - "peerDependencies": { - "@aws-cdk/cloud-assembly-schema": "1.139.0" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/cx-api/node_modules/lru-cache": { - "version": "6.0.0", - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" + "node_modules/@babel/traverse": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz", + "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.16.8", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.16.8", + "@babel/types": "^7.16.8", + "debug": "^4.1.0", + "globals": "^11.1.0" }, "engines": { - "node": ">=10" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/cx-api/node_modules/semver": { - "version": "7.3.5", - "inBundle": true, - "license": "ISC", + "node_modules/@babel/types": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz", + "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==", + "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "@babel/helper-validator-identifier": "^7.16.7", + "to-fast-properties": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=6.9.0" } }, - "node_modules/@aws-cdk/cx-api/node_modules/yallist": { - "version": "4.0.0", - "inBundle": true, - "license": "ISC" + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true }, - "node_modules/@aws-cdk/region-info": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/region-info/-/region-info-1.139.0.tgz", - "integrity": "sha512-dIc43+iy5khYrSGj38hiZhs8KBKq+c32OdjvJFqE14DWBrAvwTR6yKGRWlaO+biNszC4iY1bFP54ve9VQv4xpg==", + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dev": true, + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, "engines": { - "node": ">= 10.13.0 <13 || >=13.7.0" + "node": ">=0.1.95" } }, - "node_modules/@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "node_modules/@eslint/eslintrc": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.5.tgz", + "integrity": "sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==", "dev": true, "dependencies": { - "@babel/highlight": "^7.12.13" + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.2.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/@babel/compat-data": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.0.tgz", - "integrity": "sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==", + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/@babel/core": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.14.3.tgz", - "integrity": "sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.3", - "@babel/helper-compilation-targets": "^7.13.16", - "@babel/helper-module-transforms": "^7.14.2", - "@babel/helpers": "^7.14.0", - "@babel/parser": "^7.14.3", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz", + "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" }, "engines": { - "node": ">=6.9.0" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@babel/core/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/generator": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.3.tgz", - "integrity": "sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==", + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "@babel/types": "^7.14.2", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/@babel/generator/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz", - "integrity": "sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.13.15", - "@babel/helper-validator-option": "^7.12.17", - "browserslist": "^4.14.5", - "semver": "^6.3.0" + "node": ">=10" }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@babel/helper-function-name": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz", - "integrity": "sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==", + "node_modules/@humanwhocodes/config-array": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.2.tgz", + "integrity": "sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==", "dev": true, "dependencies": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.14.2" + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" } }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", - "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.12.13" - } + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz", - "integrity": "sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==", + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "dependencies": { - "@babel/types": "^7.13.12" + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, - "dependencies": { - "@babel/types": "^7.13.12" + "engines": { + "node": ">=8" } }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz", - "integrity": "sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==", + "node_modules/@jest/console": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.13.12", - "@babel/helper-replace-supers": "^7.13.12", - "@babel/helper-simple-access": "^7.13.12", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/helper-validator-identifier": "^7.14.0", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2" + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" } }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", - "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", + "node_modules/@jest/core": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", "dev": true, "dependencies": { - "@babel/types": "^7.12.13" + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">= 10.14.2" } }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==", - "dev": true - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.3.tgz", - "integrity": "sha512-Rlh8qEWZSTfdz+tgNV/N4gz1a0TMNwCUcENhMjHTHKp3LseYH5Jha0NSlyTQWMnjbYcwFt+bqAMqSLHVXkQ6UA==", + "node_modules/@jest/environment": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", "dev": true, "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2" + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" } }, - "node_modules/@babel/helper-simple-access": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz", - "integrity": "sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==", + "node_modules/@jest/fake-timers": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", "dev": true, "dependencies": { - "@babel/types": "^7.13.12" + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" } }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", - "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", + "node_modules/@jest/globals": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", "dev": true, "dependencies": { - "@babel/types": "^7.12.13" + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" } }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==", - "dev": true - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.12.17", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", - "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==", - "dev": true - }, - "node_modules/@babel/helpers": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.0.tgz", - "integrity": "sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==", + "node_modules/@jest/reporters": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", "dev": true, "dependencies": { - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.0", - "@babel/types": "^7.14.0" + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "node-notifier": "^8.0.0" } }, - "node_modules/@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", + "node_modules/@jest/source-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.14.0", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 10.14.2" } }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/@jest/test-result": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", "dev": true, "dependencies": { - "color-convert": "^1.9.0" + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" }, "engines": { - "node": ">=4" + "node": ">= 10.14.2" } }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/@jest/test-sequencer": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" }, "engines": { - "node": ">=4" + "node": ">= 10.14.2" } }, - "node_modules/@babel/highlight/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/@jest/transform": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", "dev": true, "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "node_modules/@babel/highlight/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true, + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, "engines": { - "node": ">=4" + "node": ">= 10.14.2" } }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">= 10.14.2" } }, - "node_modules/@babel/parser": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.3.tgz", - "integrity": "sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==", + "node_modules/@jsii/check-node": { + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.52.1.tgz", + "integrity": "sha512-B+vpPwXrKTWA1dBHuStp0sg+YpFZ9APjS6qeDiknMHPMatlT7VA0RVk/LmCLaPZhsfNzByJ+zhRFs0R83zTr1Q==", "dev": true, - "bin": { - "parser": "bin/babel-parser.js" + "dependencies": { + "chalk": "^4.1.2", + "semver": "^7.3.5" }, "engines": { - "node": ">=6.0.0" + "node": ">= 10.3.0" } }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "node_modules/@jsii/check-node/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "lru-cache": "^6.0.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "node_modules/@jsii/spec": { + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/@jsii/spec/-/spec-1.52.1.tgz", + "integrity": "sha512-Mt5yzqR/DYZhxjOBTuQsstYh0gdlwSWvjTAfUGf5Rp76j8gddkADlrMRFeVrXBy/Y+ccJLUYWMSsEf1Ti6ERcQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "jsonschema": "^1.4.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">= 12.7.0" } }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "node_modules/@moia-oss/eslint-prettier-typescript-config": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/@moia-oss/eslint-prettier-typescript-config/-/eslint-prettier-typescript-config-0.11.3.tgz", + "integrity": "sha512-HEq3d1yqdQSoNtSXwhBPF1MVKiakelVG4LCDRN9L815XVe+44AqkBIJFZSusyj6aPjfjXUfGIuvanvUrYo8zuA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" + "@typescript-eslint/eslint-plugin": "^5.7.0", + "@typescript-eslint/parser": "^5.7.0", + "eslint-config-airbnb": "^19.0.2", + "eslint-config-airbnb-typescript": "^16.1.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "eslint": "^8.4.1", + "prettier": "^2.5.1", + "typescript": "^4.5.2" } }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">= 8" } }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">= 8" } }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">= 8" } }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "node_modules/@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "type-detect": "4.0.8" } }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "node_modules/@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@sinonjs/commons": "^1.7.0" } }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">= 6" } }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "node_modules/@types/babel__core": { + "version": "7.1.18", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz", + "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/types": "^7.0.0" } }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz", - "integrity": "sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==", + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "node_modules/@babel/template": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", - "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", + "node_modules/@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13" + "@babel/types": "^7.3.0" } }, - "node_modules/@babel/traverse": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.2.tgz", - "integrity": "sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==", + "node_modules/@types/fs-extra": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.2.tgz", + "integrity": "sha512-SvSrYXfWSc7R4eqnOzbQF4TZmfpNSM9FrSWLU3EUnWBuyZqNBOrv1B1JA3byUDPUl9z4Ab3jeZG2eDdySlgNMg==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.2", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.14.2", - "@babel/types": "^7.14.2", - "debug": "^4.1.0", - "globals": "^11.1.0" + "@types/node": "*" } }, - "node_modules/@babel/types": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.2.tgz", - "integrity": "sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==", + "node_modules/@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.14.0", - "to-fast-properties": "^2.0.0" + "@types/node": "*" } }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", "dev": true }, - "node_modules/@cnakazawa/watch": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", - "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, "dependencies": { - "exec-sh": "^0.3.2", - "minimist": "^1.2.0" - }, - "bin": { - "watch": "cli.js" - }, - "engines": { - "node": ">=0.1.95" + "@types/istanbul-lib-coverage": "*" } }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" + "@types/istanbul-lib-report": "*" } }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "node_modules/@types/jest": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.4.0.tgz", + "integrity": "sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==", + "dev": true, + "dependencies": { + "jest-diff": "^27.0.0", + "pretty-format": "^27.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", + "dev": true + }, + "node_modules/@types/node": { + "version": "16.11.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.12.tgz", + "integrity": "sha512-+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw==", + "dev": true + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.3.tgz", + "integrity": "sha512-QzSuZMBuG5u8HqYz01qtMdg/Jfctlnvj1z/lYnIDXs/golxw0fxtRAHd9KrzjR7Yxz1qVeI00o0kiO3PmVdJ9w==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "15.0.14", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", + "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "20.2.1", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz", + "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", + "dev": true + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.9.1.tgz", + "integrity": "sha512-Xv9tkFlyD4MQGpJgTo6wqDqGvHIRmRgah/2Sjz1PUnJTawjHWIwBivUE9x0QtU2WVii9baYgavo/bHjrZJkqTw==", "dev": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "5.9.1", + "@typescript-eslint/scope-manager": "5.9.1", + "@typescript-eslint/type-utils": "5.9.1", + "debug": "^4.3.2", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@jest/console": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", - "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", "dev": true, "dependencies": { - "@jest/types": "^26.6.2", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^26.6.2", - "jest-util": "^26.6.2", - "slash": "^3.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">= 10.14.2" + "node": ">=10" } }, - "node_modules/@jest/core": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", - "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, "dependencies": { - "@jest/console": "^26.6.2", - "@jest/reporters": "^26.6.2", - "@jest/test-result": "^26.6.2", - "@jest/transform": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-changed-files": "^26.6.2", - "jest-config": "^26.6.3", - "jest-haste-map": "^26.6.2", - "jest-message-util": "^26.6.2", - "jest-regex-util": "^26.0.0", - "jest-resolve": "^26.6.2", - "jest-resolve-dependencies": "^26.6.3", - "jest-runner": "^26.6.3", - "jest-runtime": "^26.6.3", - "jest-snapshot": "^26.6.2", - "jest-util": "^26.6.2", - "jest-validate": "^26.6.2", - "jest-watcher": "^26.6.2", - "micromatch": "^4.0.2", - "p-each-series": "^2.1.0", - "rimraf": "^3.0.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" + "tslib": "^1.8.1" }, "engines": { - "node": ">= 10.14.2" + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, - "node_modules/@jest/environment": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", - "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.9.1.tgz", + "integrity": "sha512-cb1Njyss0mLL9kLXgS/eEY53SZQ9sT519wpX3i+U457l2UXRDuo87hgKfgRazmu9/tQb0x2sr3Y0yrU+Zz0y+w==", "dev": true, "dependencies": { - "@jest/fake-timers": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/node": "*", - "jest-mock": "^26.6.2" + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.9.1", + "@typescript-eslint/types": "5.9.1", + "@typescript-eslint/typescript-estree": "5.9.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" }, "engines": { - "node": ">= 10.14.2" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@jest/fake-timers": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", - "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "@jest/types": "^26.6.2", - "@sinonjs/fake-timers": "^6.0.1", - "@types/node": "*", - "jest-message-util": "^26.6.2", - "jest-mock": "^26.6.2", - "jest-util": "^26.6.2" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, "engines": { - "node": ">= 10.14.2" + "node": ">=8.0.0" } }, - "node_modules/@jest/globals": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", - "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "node_modules/@typescript-eslint/experimental-utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.9.1.tgz", + "integrity": "sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g==", "dev": true, "dependencies": { - "@jest/environment": "^26.6.2", - "@jest/types": "^26.6.2", - "expect": "^26.6.2" + "@typescript-eslint/scope-manager": "5.9.1", + "@typescript-eslint/types": "5.9.1", + "@typescript-eslint/typescript-estree": "5.9.1", + "debug": "^4.3.2" }, "engines": { - "node": ">= 10.14.2" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@jest/reporters": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", - "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.9.1.tgz", + "integrity": "sha512-8BwvWkho3B/UOtzRyW07ffJXPaLSUKFBjpq8aqsRvu6HdEuzCY57+ffT7QoV4QXJXWSU1+7g3wE4AlgImmQ9pQ==", "dev": true, "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^26.6.2", - "@jest/test-result": "^26.6.2", - "@jest/transform": "^26.6.2", - "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.2.4", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^4.0.3", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "jest-haste-map": "^26.6.2", - "jest-resolve": "^26.6.2", - "jest-util": "^26.6.2", - "jest-worker": "^26.6.2", - "slash": "^3.0.0", - "source-map": "^0.6.0", - "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^7.0.0" + "@typescript-eslint/types": "5.9.1", + "@typescript-eslint/visitor-keys": "5.9.1" }, "engines": { - "node": ">= 10.14.2" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "optionalDependencies": { - "node-notifier": "^8.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@jest/source-map": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", - "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "node_modules/@typescript-eslint/type-utils": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.9.1.tgz", + "integrity": "sha512-tRSpdBnPRssjlUh35rE9ug5HrUvaB9ntREy7gPXXKwmIx61TNN7+l5YKgi1hMKxo5NvqZCfYhA5FvyuJG6X6vg==", "dev": true, "dependencies": { - "callsites": "^3.0.0", - "graceful-fs": "^4.2.4", - "source-map": "^0.6.0" + "@typescript-eslint/experimental-utils": "5.9.1", + "debug": "^4.3.2", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/type-utils/node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.9.1.tgz", + "integrity": "sha512-SsWegWudWpkZCwwYcKoDwuAjoZXnM1y2EbEerTHho19Hmm+bQ56QG4L4jrtCu0bI5STaRTvRTZmjprWlTw/5NQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.9.1.tgz", + "integrity": "sha512-gL1sP6A/KG0HwrahVXI9fZyeVTxEYV//6PmcOn1tD0rw8VhUWYeZeuWHwwhnewnvEMcHjhnJLOBhA9rK4vmb8A==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.9.1", + "@typescript-eslint/visitor-keys": "5.9.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.9.1.tgz", + "integrity": "sha512-Xh37pNz9e9ryW4TVdwiFzmr4hloty8cFj8GTWMXh3Z8swGwyQWeCcNgF0hm6t09iZd6eiZmIf4zHedQVP6TVtg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.9.1", + "eslint-visitor-keys": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.0.tgz", + "integrity": "sha512-7wVnF+rKrVDEo1xjzkkidTG0grclaVnX0vKa0z9JSXcEdtftUJjvU33jLGg6SHyvs3eeqEsI7jZ6NxYfRypEEg==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz", + "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", + "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-cdk-lib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/aws-cdk-lib/-/aws-cdk-lib-2.7.0.tgz", + "integrity": "sha512-9mxm9WD5rioZxTCQ6FqMzkZ0NH5+4oBFtlNL10duXJ+P+7Zcs82mHHycX7wjD689Gnl6hZla/DOlUV04HQvNhw==", + "bundleDependencies": [ + "@balena/dockerignore", + "case", + "fs-extra", + "ignore", + "jsonschema", + "minimatch", + "punycode", + "semver", + "yaml" + ], + "dev": true, + "dependencies": { + "@balena/dockerignore": "^1.0.2", + "case": "1.6.3", + "fs-extra": "^9.1.0", + "ignore": "^5.2.0", + "jsonschema": "^1.4.0", + "minimatch": "^3.0.4", + "punycode": "^2.1.1", + "semver": "^7.3.5", + "yaml": "1.10.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "peerDependencies": { + "constructs": "^10.0.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/@balena/dockerignore": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "Apache-2.0" + }, + "node_modules/aws-cdk-lib/node_modules/at-least-node": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/brace-expansion": { + "version": "1.1.11", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/aws-cdk-lib/node_modules/case": { + "version": "1.6.3", + "dev": true, + "inBundle": true, + "license": "(MIT OR GPL-3.0-or-later)", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/fs-extra": { + "version": "9.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/aws-cdk-lib/node_modules/graceful-fs": { + "version": "4.2.9", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/aws-cdk-lib/node_modules/ignore": { + "version": "5.2.0", + "dev": true, + "inBundle": true, + "license": "MIT", "engines": { - "node": ">= 10.14.2" + "node": ">= 4" } }, - "node_modules/@jest/test-result": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", - "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "node_modules/aws-cdk-lib/node_modules/jsonfile": { + "version": "6.1.0", "dev": true, + "inBundle": true, + "license": "MIT", "dependencies": { - "@jest/console": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" + "universalify": "^2.0.0" }, - "engines": { - "node": ">= 10.14.2" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/@jest/test-sequencer": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", - "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "node_modules/aws-cdk-lib/node_modules/jsonschema": { + "version": "1.4.0", "dev": true, - "dependencies": { - "@jest/test-result": "^26.6.2", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^26.6.2", - "jest-runner": "^26.6.3", - "jest-runtime": "^26.6.3" - }, + "inBundle": true, + "license": "MIT", "engines": { - "node": ">= 10.14.2" + "node": "*" } }, - "node_modules/@jest/transform": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", - "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "node_modules/aws-cdk-lib/node_modules/lru-cache": { + "version": "6.0.0", "dev": true, + "inBundle": true, + "license": "ISC", "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^26.6.2", - "babel-plugin-istanbul": "^6.0.0", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^26.6.2", - "jest-regex-util": "^26.0.0", - "jest-util": "^26.6.2", - "micromatch": "^4.0.2", - "pirates": "^4.0.1", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 10.14.2" + "node": ">=10" } }, - "node_modules/@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "node_modules/aws-cdk-lib/node_modules/minimatch": { + "version": "3.0.4", "dev": true, + "inBundle": true, + "license": "ISC", "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^15.0.0", - "chalk": "^4.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 10.14.2" + "node": "*" } }, - "node_modules/@jsii/check-node": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.47.0.tgz", - "integrity": "sha512-LSlbKTpMVYw1R3Be70sJJdJbuLWEFAMbGEHE731Je1QDTXTRm6Gc3NDvPUvTTuHEry8f2Wys+1pXNX06X4PKxQ==", + "node_modules/aws-cdk-lib/node_modules/punycode": { + "version": "2.1.1", "dev": true, - "dependencies": { - "chalk": "^4.1.2", - "semver": "^7.3.5" - }, + "inBundle": true, + "license": "MIT", "engines": { - "node": ">= 10.3.0" + "node": ">=6" } }, - "node_modules/@jsii/check-node/node_modules/semver": { + "node_modules/aws-cdk-lib/node_modules/semver": { "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", "dev": true, + "inBundle": true, + "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" }, @@ -1811,952 +2019,1097 @@ "node": ">=10" } }, - "node_modules/@jsii/spec": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/@jsii/spec/-/spec-1.47.0.tgz", - "integrity": "sha512-5F9Qw0lnK8mCumHvpA+XhoBJezgW6q92sLM2jsvo7bzXWXyRRfr1cHl1g5fxQ0yS82B5NMa1fN2n28BsEKs+Gw==", + "node_modules/aws-cdk-lib/node_modules/universalify": { + "version": "2.0.0", "dev": true, - "dependencies": { - "jsonschema": "^1.4.0" - }, + "inBundle": true, + "license": "MIT", "engines": { - "node": ">= 12.7.0" + "node": ">= 10.0.0" } }, - "node_modules/@sinonjs/commons": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "node_modules/aws-cdk-lib/node_modules/yallist": { + "version": "4.0.0", "dev": true, - "dependencies": { - "type-detect": "4.0.8" + "inBundle": true, + "license": "ISC" + }, + "node_modules/aws-cdk-lib/node_modules/yaml": { + "version": "1.10.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">= 6" } }, - "node_modules/@sinonjs/fake-timers": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", - "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "node_modules/axe-core": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz", + "integrity": "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==", "dev": true, - "dependencies": { - "@sinonjs/commons": "^1.7.0" + "engines": { + "node": ">=4" } }, - "node_modules/@types/babel__core": { - "version": "7.1.14", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.14.tgz", - "integrity": "sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g==", + "node_modules/axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", "dev": true, "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", - "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "dependencies": { - "@babel/types": "^7.0.0" + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/@types/babel__template": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", - "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", "dev": true, "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/@types/babel__traverse": { - "version": "7.11.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz", - "integrity": "sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==", + "node_modules/babel-plugin-jest-hoist": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", "dev": true, "dependencies": { - "@babel/types": "^7.3.0" + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 10.14.2" } }, - "node_modules/@types/fs-extra": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.1.tgz", - "integrity": "sha512-TcUlBem321DFQzBNuz8p0CLLKp0VvF/XH9E4KHNmgwyp4E3AfgI5cjiIVZWlbfThBop2qxFIh4+LeY6hVWWZ2w==", + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "dependencies": { - "@types/node": "*" + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "node_modules/babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", "dev": true, "dependencies": { - "@types/node": "*" + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", - "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "*" + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", - "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "@types/istanbul-lib-report": "*" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/@types/jest": { - "version": "27.0.0", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.0.0.tgz", - "integrity": "sha512-IlpQZVpxufe+3qPaAqEoSPHVSxnJh1cf0BqqWHJeKiAUbwnHdmNzjP3ZCWSZSTbmAGXQPNk9QmM3Bif0pR54rg==", + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { - "jest-diff": "^26.0.0", - "pretty-format": "^26.0.0" + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/@types/node": { - "version": "16.11.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.12.tgz", - "integrity": "sha512-+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw==", - "dev": true - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "dev": true }, - "node_modules/@types/prettier": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.3.tgz", - "integrity": "sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==", - "dev": true + "node_modules/browserslist": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz", + "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==", + "dev": true, + "dependencies": { + "caniuse-lite": "^1.0.30001286", + "electron-to-chromium": "^1.4.17", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } }, - "node_modules/@types/stack-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", - "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==", - "dev": true + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } }, - "node_modules/@types/yargs": { - "version": "15.0.13", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz", - "integrity": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==", + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "node-int64": "^0.4.0" } }, - "node_modules/@types/yargs-parser": { - "version": "20.2.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz", - "integrity": "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==", + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, - "node_modules/@xmldom/xmldom": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz", - "integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==", + "node_modules/builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", "dev": true, "engines": { - "node": ">=10.0.0" + "node": ">=0.10.0" } }, - "node_modules/abab": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", - "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", - "dev": true - }, - "node_modules/acorn": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.2.4.tgz", - "integrity": "sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg==", + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, - "bin": { - "acorn": "bin/acorn" + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" }, "engines": { - "node": ">=0.4.0" + "node": ">=0.10.0" } }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "dev": true, "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, - "bin": { - "acorn": "bin/acorn" - }, "engines": { - "node": ">=0.4.0" + "node": ">=6" } }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, "engines": { - "node": ">=0.4.0" + "node": ">=6" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/caniuse-lite": { + "version": "1.0.30001299", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001299.tgz", + "integrity": "sha512-iujN4+x7QzqA2NCSrS5VUy+4gLmRd4xv6vbBBsmfVqTx8bLAD8097euLqQgKxSVLvxjSDcvF1T/i9ocgnUFexw==", "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "type": "opencollective", + "url": "https://opencollective.com/browserslist" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", "dev": true, "dependencies": { - "type-fest": "^0.21.3" + "rsvp": "^4.8.4" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/case": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", + "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.8.0" } }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, "engines": { - "node": ">= 8" + "node": ">=10" } }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "node_modules/cjs-module-lexer": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==", + "dev": true + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/array.prototype.filter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.0.tgz", - "integrity": "sha512-TfO1gz+tLm+Bswq0FBOXPqAchtCr2Rn48T8dLJoRFl8NoEosjZmzptmuo1X8aZBzZcqsR1W8U761tjACJtngTQ==", + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.5" + "kind-of": "^3.0.2" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, "dependencies": { - "safer-buffer": "~2.1.0" + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, "engines": { - "node": ">=0.8" + "node": ">=0.10.0" } }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" } }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "dev": true - }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true, "engines": { - "node": ">= 4.0.0" + "node": ">=0.8" } }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", "dev": true, - "bin": { - "atob": "bin/atob.js" - }, "engines": { - "node": ">= 4.5.0" + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" } }, - "node_modules/available-typed-arrays": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.3.tgz", - "integrity": "sha512-CuPhFULixV/d89POo1UG4GqGbR7dmrefY2ZdmsYakeR4gOSJXoF7tfeaiqMHGOMrlTiJoeEs87fpLsBYmE2BMw==", + "node_modules/codemaker": { + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/codemaker/-/codemaker-1.52.1.tgz", + "integrity": "sha512-yCEUas8OlyuAu3NZ9mKopBlEnwudUrxUokSjQkw3Zk4hYkgtYJEtu1ZXuPlXtTKQYCqTPEPsUiHayTeC1qZjUA==", "dev": true, "dependencies": { - "array.prototype.filter": "^1.0.0" + "camelcase": "^6.2.1", + "decamelize": "^5.0.1", + "fs-extra": "^9.1.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 12.7.0" } }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "node_modules/codemaker/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "engines": { - "node": "*" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, - "node_modules/babel-jest": { - "version": "26.6.3", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", - "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", "dev": true, "dependencies": { - "@jest/transform": "^26.6.2", - "@jest/types": "^26.6.2", - "@types/babel__core": "^7.1.7", - "babel-plugin-istanbul": "^6.0.0", - "babel-preset-jest": "^26.6.2", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "slash": "^3.0.0" + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" }, "engines": { - "node": ">= 10.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "node": ">=0.10.0" } }, - "node_modules/babel-plugin-istanbul": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", - "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^4.0.0", - "test-exclude": "^6.0.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=8" + "node": ">=7.0.0" } }, - "node_modules/babel-plugin-jest-hoist": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", - "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", "dev": true, - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", - "@types/babel__traverse": "^7.0.6" - }, "engines": { - "node": ">= 10.14.2" + "node": ">=0.1.90" } }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" + "delayed-stream": "~1.0.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "engines": { + "node": ">= 0.8" } }, - "node_modules/babel-preset-jest": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", - "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/commonmark": { + "version": "0.30.0", + "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.30.0.tgz", + "integrity": "sha512-j1yoUo4gxPND1JWV9xj5ELih0yMv1iCWDG6eEQIPLSWLxzCXiFoyS7kvB+WwU+tZMf4snwJMMtaubV0laFpiBA==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^26.6.2", - "babel-preset-current-node-syntax": "^1.0.0" + "entities": "~2.0", + "mdurl": "~1.0.1", + "minimist": ">=1.2.2", + "string.prototype.repeat": "^0.2.0" }, - "engines": { - "node": ">= 10.14.2" + "bin": { + "commonmark": "bin/commonmark" }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "engines": { + "node": "*" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true + }, + "node_modules/constructs": { + "version": "10.0.31", + "resolved": "https://registry.npmjs.org/constructs/-/constructs-10.0.31.tgz", + "integrity": "sha512-ihiX53hDGN2w4NYdsQdmH+1TUggNDf0HDqQm4NucuPDoHsrj1h2jq92zQWbn3xPVnl/f4SB9+EMfjJEhYAxa/Q==", "dev": true, - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, "engines": { - "node": ">=0.10.0" + "node": ">= 12.7.0" } }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, "dependencies": { - "is-descriptor": "^1.0.0" - }, + "safe-buffer": "~5.1.1" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "node_modules/core-js-pure": { + "version": "3.20.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.20.2.tgz", + "integrity": "sha512-CmWHvSKn2vNL6p6StNp1EmMIfVY/pqn3JLAjfZQ8WZGPOlGoO92EkX9/Mk81i6GxvoPXjUqEQnpM3rJ5QxxIOg==", "dev": true, - "dependencies": { - "tweetnacl": "^0.14.3" + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, "dependencies": { - "fill-range": "^7.0.1" + "cssom": "~0.3.6" }, "engines": { "node": ">=8" } }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true }, - "node_modules/browserslist": { - "version": "4.16.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", - "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, "dependencies": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" - }, - "bin": { - "browserslist": "cli.js" + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" + "node": ">=10" } }, - "node_modules/bs-logger": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "node_modules/date-format": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz", + "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==", "dev": true, - "dependencies": { - "fast-json-stable-stringify": "2.x" - }, "engines": { - "node": ">= 6" + "node": ">=4.0" } }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "node_modules/debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "dependencies": { - "node-int64": "^0.4.0" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "node_modules/builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "node_modules/decamelize": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", + "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "node_modules/decimal.js": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", + "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", + "dev": true + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", "dev": true, - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=0.10" } }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "node_modules/deep-equal": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.0.5.tgz", + "integrity": "sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw==", "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "call-bind": "^1.0.0", + "es-get-iterator": "^1.1.1", + "get-intrinsic": "^1.0.1", + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.2", + "is-regex": "^1.1.1", + "isarray": "^2.0.5", + "object-is": "^1.1.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "regexp.prototype.flags": "^1.3.0", + "side-channel": "^1.0.3", + "which-boxed-primitive": "^1.0.1", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.2" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "dev": true, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "dev": true, + "dependencies": { + "object-keys": "^1.0.12" + }, "engines": { - "node": ">=6" + "node": ">= 0.4" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001228", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001228.tgz", - "integrity": "sha512-QQmLOGJ3DEgokHbMSA8cj2a+geXqmnpyOFT0lhQV6P3/YOJvGDEwoedcwxEQ30gJIwIIunHIicunJ2rzK5gB2A==", + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/capture-exit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", - "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", "dev": true, - "dependencies": { - "rsvp": "^4.8.4" - }, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=0.4.0" } }, - "node_modules/case": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", - "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", + "node_modules/detect-indent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", + "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": ">=4" } }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", - "dev": true - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8" } }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, "engines": { - "node": ">=10" + "node": ">=0.3.1" } }, - "node_modules/charenc": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", - "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", + "node_modules/diff-sequences": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.4.0.tgz", + "integrity": "sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==", "dev": true, "engines": { - "node": "*" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true - }, - "node_modules/cjs-module-lexer": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", - "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==", - "dev": true - }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" + "path-type": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { - "is-descriptor": "^0.1.0" + "esutils": "^2.0.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=6.0.0" } }, - "node_modules/class-utils/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "dev": true, "dependencies": { - "kind-of": "^3.0.2" + "webidl-conversions": "^5.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/class-utils/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "node_modules/electron-to-chromium": { + "version": "1.4.43", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.43.tgz", + "integrity": "sha512-PO3kEfcxPrti/4STbXvCkNIF4fgWvCKl2508e6UI7KomCDffpIfeBZLXsh5DK/XGsjUw3kwq6WEsi0MJTlGAdg==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" + "once": "^1.4.0" } }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "ansi-colors": "^4.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8.6" } }, - "node_modules/class-utils/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/entities": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", + "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", + "dev": true }, - "node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" + "is-arrayish": "^0.2.1" } }, - "node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "node_modules/es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, "engines": { - "node": ">=0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "node_modules/es-get-iterator": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz", + "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==", "dev": true, - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.0", + "has-symbols": "^1.0.1", + "is-arguments": "^1.1.0", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.5", + "isarray": "^2.0.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/codemaker": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/codemaker/-/codemaker-1.47.0.tgz", - "integrity": "sha512-3Ab891O2IKCAOJE1rrgHS1z91AKlxoeQ2gfvL9bDv2K7zSrEN0IwI/YCgrIsUsf1RQFIOKDnizhFjn2PAap8Wg==", + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "dependencies": { - "camelcase": "^6.2.1", - "decamelize": "^5.0.1", - "fs-extra": "^9.1.0" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, "engines": { - "node": ">= 12.7.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/codemaker/node_modules/camelcase": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.1.tgz", - "integrity": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==", + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { "node": ">=10" @@ -2765,538 +3118,559 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true - }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "node_modules/escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/eslint": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.6.0.tgz", + "integrity": "sha512-UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw==", "dev": true, "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" + "@eslint/eslintrc": "^1.0.5", + "@humanwhocodes/config-array": "^0.9.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.0", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.3.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.2.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" }, "engines": { - "node": ">=0.10.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/eslint-config-airbnb": { + "version": "19.0.4", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz", + "integrity": "sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "eslint-config-airbnb-base": "^15.0.0", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5" }, "engines": { - "node": ">=7.0.0" + "node": "^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.28.0", + "eslint-plugin-react-hooks": "^4.3.0" } }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==", - "dev": true - }, - "node_modules/colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "node_modules/eslint-config-airbnb-base": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", + "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", "dev": true, + "dependencies": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5", + "semver": "^6.3.0" + }, "engines": { - "node": ">=0.1.90" + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.2" } }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/eslint-config-airbnb-typescript": { + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-16.1.0.tgz", + "integrity": "sha512-W5Cq20KpEx5ZLC54bnVrC37zq2+WD956Kp/Ma3nYFRjT1v9KM63v+DPkrrmmrVqrlDKaD0ivm/qeYmyHV6qKlw==", "dev": true, "dependencies": { - "delayed-stream": "~1.0.0" + "eslint-config-airbnb-base": "^15.0.0" }, - "engines": { - "node": ">= 0.8" + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0", + "@typescript-eslint/parser": "^5.0.0" } }, - "node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "node_modules/commonmark": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.30.0.tgz", - "integrity": "sha512-j1yoUo4gxPND1JWV9xj5ELih0yMv1iCWDG6eEQIPLSWLxzCXiFoyS7kvB+WwU+tZMf4snwJMMtaubV0laFpiBA==", + "node_modules/eslint-config-prettier": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz", + "integrity": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==", "dev": true, - "dependencies": { - "entities": "~2.0", - "mdurl": "~1.0.1", - "minimist": ">=1.2.2", - "string.prototype.repeat": "^0.2.0" - }, "bin": { - "commonmark": "bin/commonmark" + "eslint-config-prettier": "bin/cli.js" }, - "engines": { - "node": "*" - } - }, - "node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "node_modules/constructs": { - "version": "3.3.75", - "resolved": "https://registry.npmjs.org/constructs/-/constructs-3.3.75.tgz", - "integrity": "sha512-q10foASSSfDWmS99OQLfnWDXCzqLvoORISAVWPFg0AmIGlBv2ZdDOtXxLqrJARPxVlOldmW2JzWzdRI+4+0/ZA==", - "engines": { - "node": ">= 10.17.0" + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "node_modules/convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "node_modules/eslint-import-resolver-node": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", "dev": true, "dependencies": { - "safe-buffer": "~5.1.1" + "debug": "^3.2.7", + "resolve": "^1.20.0" } }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/eslint-module-utils": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.2.tgz", + "integrity": "sha512-zquepFnWCY2ISMFwD/DqzaM++H+7PDzOpUvotJWm/y1BAFt5R4oeULgdrTejKqLkz7MA/tgstsUMNYc7wNdTrg==", "dev": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "debug": "^3.2.7", + "find-up": "^2.1.0" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/crypt": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", - "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", - "dev": true, - "engines": { - "node": "*" + "node": ">=4" } }, - "node_modules/cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", - "dev": true - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "cssom": "~0.3.6" - }, - "engines": { - "node": ">=8" + "ms": "^2.1.1" } }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "node_modules/eslint-module-utils/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", "dev": true, "dependencies": { - "assert-plus": "^1.0.0" + "locate-path": "^2.0.0" }, "engines": { - "node": ">=0.10" + "node": ">=4" } }, - "node_modules/data-urls": { + "node_modules/eslint-module-utils/node_modules/locate-path": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", "dev": true, "dependencies": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/date-format": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz", - "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==", + "node_modules/eslint-module-utils/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, "engines": { - "node": ">=4.0" + "node": ">=4" } }, - "node_modules/debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "node_modules/eslint-module-utils/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", "dev": true, "dependencies": { - "ms": "2.1.2" + "p-limit": "^1.1.0" }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">=4" } }, - "node_modules/decamelize": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", - "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", + "node_modules/eslint-module-utils/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/decimal.js": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", - "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==", - "dev": true - }, - "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "node_modules/eslint-module-utils/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", "dev": true, "engines": { - "node": ">=0.10" + "node": ">=4" } }, - "node_modules/deep-equal": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.0.5.tgz", - "integrity": "sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw==", + "node_modules/eslint-plugin-import": { + "version": "2.25.4", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz", + "integrity": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==", "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "es-get-iterator": "^1.1.1", - "get-intrinsic": "^1.0.1", - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.2", - "is-regex": "^1.1.1", - "isarray": "^2.0.5", - "object-is": "^1.1.4", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "regexp.prototype.flags": "^1.3.0", - "side-channel": "^1.0.3", - "which-boxed-primitive": "^1.0.1", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.2" + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.2", + "has": "^1.0.3", + "is-core-module": "^2.8.0", + "is-glob": "^4.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.5", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.12.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "dependencies": { - "object-keys": "^1.0.12" + "esutils": "^2.0.2" }, "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "node_modules/eslint-plugin-import/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", + "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", "dev": true, - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" + "dependencies": { + "@babel/runtime": "^7.16.3", + "aria-query": "^4.2.2", + "array-includes": "^3.1.4", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.3.5", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.7", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.2.1", + "language-tags": "^1.0.5", + "minimatch": "^3.0.4" }, "engines": { - "node": ">=0.10.0" + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/eslint-plugin-react": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.28.0.tgz", + "integrity": "sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==", "dev": true, + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flatmap": "^1.2.5", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.0", + "object.values": "^1.1.5", + "prop-types": "^15.7.2", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.6" + }, "engines": { - "node": ">=0.4.0" + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/detect-indent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", - "integrity": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=", + "node_modules/eslint-plugin-react-hooks": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz", + "integrity": "sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==", "dev": true, "engines": { - "node": ">=4" + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" } }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/diff": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", - "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz", + "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", "dev": true, - "engines": { - "node": ">=0.3.1" + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/diff-sequences": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", - "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "node_modules/eslint-scope": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.0.tgz", + "integrity": "sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg==", "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, "engines": { - "node": ">= 10.14.2" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "dev": true, "dependencies": { - "webidl-conversions": "^5.0.0" + "eslint-visitor-keys": "^2.0.0" }, "engines": { - "node": ">=8" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "node_modules/eslint-visitor-keys": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz", + "integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==", "dev": true, - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/electron-to-chromium": { - "version": "1.3.735", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.735.tgz", - "integrity": "sha512-cp7MWzC3NseUJV2FJFgaiesdrS+A8ZUjX5fLAxdRlcaPDkaPGFplX930S5vf84yqDp4LjuLdKouWuVOTwUfqHQ==", + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/emittery": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", - "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", + "node_modules/eslint/node_modules/globals": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz", + "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==", "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "once": "^1.4.0" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/entities": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", - "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", - "dev": true - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/eslint/node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { - "is-arrayish": "^0.2.1" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/es-abstract": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", - "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", + "node_modules/eslint/node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.8.0" } }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "dev": true - }, - "node_modules/es-get-iterator": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz", - "integrity": "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==", + "node_modules/eslint/node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.0", - "has-symbols": "^1.0.1", - "is-arguments": "^1.1.0", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.5", - "isarray": "^2.0.5" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/eslint/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", "dev": true, "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "lru-cache": "^6.0.0" }, - "engines": { - "node": ">= 0.4" + "bin": { + "semver": "bin/semver.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=10" } }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/eslint/node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, "engines": { - "node": ">=6" + "node": ">= 0.8.0" } }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { "node": ">=10" @@ -3305,26 +3679,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "node_modules/espree": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.0.tgz", + "integrity": "sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==", "dev": true, "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" + "acorn": "^8.7.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^3.1.0" }, "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/esprima": { @@ -3340,10 +3706,34 @@ "node": ">=4" } }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, "node_modules/estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { "node": ">=4.0" @@ -3550,12 +3940,6 @@ "node": ">= 10.14.2" } }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, "node_modules/extend-shallow": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", @@ -3621,21 +4005,40 @@ "node": ">=0.10.0" } }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "dev": true, - "engines": [ - "node >=0.6.0" - ] - }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "node_modules/fast-glob": { + "version": "3.2.10", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.10.tgz", + "integrity": "sha512-s9nFhFnvR63wls6/kM88kQqDhMu0AfdjqouE2l5GVQPbqLgyFjjU5ry/r2yKsJxpb9Py1EYNqieFrmMaX4v++A==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -3648,6 +4051,15 @@ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, "node_modules/fb-watchman": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", @@ -3657,6 +4069,18 @@ "bser": "2.1.1" } }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -3682,6 +4106,25 @@ "node": ">=8" } }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flat-cache/node_modules/flatted": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz", + "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==", + "dev": true + }, "node_modules/flatted": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", @@ -3703,27 +4146,18 @@ "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", "dev": true }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "dev": true, - "engines": { - "node": "*" - } - }, "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "dependencies": { "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", + "combined-stream": "^1.0.8", "mime-types": "^2.1.12" }, "engines": { - "node": ">= 0.12" + "node": ">= 6" } }, "node_modules/fragment-cache": { @@ -3742,6 +4176,7 @@ "version": "9.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -3778,6 +4213,12 @@ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -3834,6 +4275,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", @@ -3843,19 +4300,10 @@ "node": ">=0.10.0" } }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0" - } - }, "node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -3872,6 +4320,18 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -3881,10 +4341,40 @@ "node": ">=4" } }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, "node_modules/graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", + "dev": true }, "node_modules/growly": { "version": "1.3.0", @@ -3893,29 +4383,6 @@ "dev": true, "optional": true }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "dev": true, - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -3958,6 +4425,21 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", @@ -4045,19 +4527,31 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", "dev": true, "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" + "node": ">= 6" } }, "node_modules/human-signals": { @@ -4081,10 +4575,44 @@ "node": ">=0.10.0" } }, + "node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/import-local": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", - "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "dependencies": { "pkg-dir": "^4.2.0", @@ -4095,6 +4623,9 @@ }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/imurmurhash": { @@ -4122,6 +4653,20 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/is-accessor-descriptor": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", @@ -4135,12 +4680,13 @@ } }, "node_modules/is-arguments": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", - "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, "dependencies": { - "call-bind": "^1.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -4156,21 +4702,25 @@ "dev": true }, "node_modules/is-bigint": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz", - "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-boolean-object": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz", - "integrity": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -4186,9 +4736,9 @@ "dev": true }, "node_modules/is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", "dev": true, "engines": { "node": ">= 0.4" @@ -4210,9 +4760,9 @@ } }, "node_modules/is-core-module": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz", - "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -4234,10 +4784,13 @@ } }, "node_modules/is-date-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", - "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -4287,6 +4840,15 @@ "node": ">=0.10.0" } }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -4305,6 +4867,18 @@ "node": ">=6" } }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-map": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", @@ -4315,9 +4889,9 @@ } }, "node_modules/is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", "dev": true, "engines": { "node": ">= 0.4" @@ -4336,10 +4910,13 @@ } }, "node_modules/is-number-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz", - "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -4366,13 +4943,13 @@ "dev": true }, "node_modules/is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -4390,20 +4967,35 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -4427,16 +5019,16 @@ } }, "node_modules/is-typed-array": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz", - "integrity": "sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==", + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.8.tgz", + "integrity": "sha512-HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.2", + "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", - "es-abstract": "^1.18.0-next.2", + "es-abstract": "^1.18.5", "foreach": "^2.0.5", - "has-symbols": "^1.0.1" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -4460,11 +5052,27 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-weakset": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.1.tgz", - "integrity": "sha512-pi4vhbhVHGLxohUw7PhGsueT4vRGFoXhP7+RGN0jKIv9+8PWYCQTqtADngrxOm2g46hoH0+g8uZZBzMrvVGDmw==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -4512,16 +5120,10 @@ "node": ">=0.10.0" } }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", - "dev": true - }, "node_modules/istanbul-lib-coverage": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", - "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, "engines": { "node": ">=8" @@ -4557,9 +5159,9 @@ } }, "node_modules/istanbul-lib-source-maps": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", - "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "dependencies": { "debug": "^4.1.1", @@ -4567,13 +5169,13 @@ "source-map": "^0.6.1" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-reports": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", - "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.3.tgz", + "integrity": "sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -4678,19 +5280,43 @@ } } }, - "node_modules/jest-diff": { + "node_modules/jest-config/node_modules/pretty-format": { "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", - "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/jest-diff": { + "version": "27.4.6", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.6.tgz", + "integrity": "sha512-zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^26.6.2", - "jest-get-type": "^26.3.0", - "pretty-format": "^26.6.2" + "diff-sequences": "^27.4.0", + "jest-get-type": "^27.4.0", + "pretty-format": "^27.4.6" }, "engines": { - "node": ">= 10.14.2" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-diff/node_modules/jest-get-type": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz", + "integrity": "sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/jest-docblock": { @@ -4712,13 +5338,28 @@ "dev": true, "dependencies": { "@jest/types": "^26.6.2", - "chalk": "^4.0.0", - "jest-get-type": "^26.3.0", - "jest-util": "^26.6.2", - "pretty-format": "^26.6.2" + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-each/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" }, "engines": { - "node": ">= 10.14.2" + "node": ">= 10" } }, "node_modules/jest-environment-jsdom": { @@ -4821,6 +5462,21 @@ "node": ">= 10.14.2" } }, + "node_modules/jest-jasmine2/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, "node_modules/jest-leak-detector": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", @@ -4834,6 +5490,21 @@ "node": ">= 10.14.2" } }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, "node_modules/jest-matcher-utils": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", @@ -4849,6 +5520,45 @@ "node": ">= 10.14.2" } }, + "node_modules/jest-matcher-utils/node_modules/diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "dev": true, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-matcher-utils/node_modules/jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, "node_modules/jest-message-util": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", @@ -4869,6 +5579,21 @@ "node": ">= 10.14.2" } }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, "node_modules/jest-mock": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", @@ -5053,6 +5778,45 @@ "node": ">= 10.14.2" } }, + "node_modules/jest-snapshot/node_modules/diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "dev": true, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, "node_modules/jest-snapshot/node_modules/semver": { "version": "7.3.5", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", @@ -5103,9 +5867,9 @@ } }, "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "engines": { "node": ">=10" @@ -5114,6 +5878,21 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, "node_modules/jest-watcher": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", @@ -5165,20 +5944,14 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "dev": true - }, "node_modules/jsdom": { - "version": "16.5.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.5.3.tgz", - "integrity": "sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==", + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, "dependencies": { "abab": "^2.0.5", - "acorn": "^8.1.0", + "acorn": "^8.2.4", "acorn-globals": "^6.0.0", "cssom": "^0.4.4", "cssstyle": "^2.3.0", @@ -5186,12 +5959,13 @@ "decimal.js": "^10.2.1", "domexception": "^2.0.1", "escodegen": "^2.0.0", + "form-data": "^3.0.0", "html-encoding-sniffer": "^2.0.1", - "is-potential-custom-element-name": "^1.0.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.0", "parse5": "6.0.1", - "request": "^2.88.2", - "request-promise-native": "^1.0.9", "saxes": "^5.0.1", "symbol-tree": "^3.2.4", "tough-cookie": "^4.0.0", @@ -5201,7 +5975,7 @@ "whatwg-encoding": "^1.0.5", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.5.0", - "ws": "^7.4.4", + "ws": "^7.4.6", "xml-name-validator": "^3.0.0" }, "engines": { @@ -5229,15 +6003,15 @@ } }, "node_modules/jsii": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/jsii/-/jsii-1.47.0.tgz", - "integrity": "sha512-cJ1cQfanSl+0vLVRJTwaWdx0dZ4DxIxYhydRlhuv/EFbQzeAVosy6fEnZ5IlPtWR89tF3k89R6w8DHVhPigjjQ==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/jsii/-/jsii-1.52.1.tgz", + "integrity": "sha512-kILHStPX3xeADtB/2Wda56Mzz/6KUw8xNr/k+dp84qn9YlZA81cW85tKK5biYCy/XAh5IPsWIZVFRqR8CSPMMw==", "dev": true, "dependencies": { - "@jsii/check-node": "1.47.0", - "@jsii/spec": "^1.47.0", + "@jsii/check-node": "1.52.1", + "@jsii/spec": "^1.52.1", "case": "^1.6.3", - "colors": "^1.4.0", + "colors": "1.4.0", "deep-equal": "^2.0.5", "fs-extra": "^9.1.0", "log4js": "^6.3.0", @@ -5256,20 +6030,20 @@ } }, "node_modules/jsii-pacmak": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.47.0.tgz", - "integrity": "sha512-VGrHZsK2jv7NuPBULvJBJGF0hLpGwdJa7esI2qzOeX1UbHxXSOah9oboheYELbX5KCH3hSe2uDbcPSnEqIT68Q==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.52.1.tgz", + "integrity": "sha512-6bIGCtfu8UAr3dmddbyqGGyFyz4TOr5aC1eo4Cqwl23v/elkzxYV8TFCra9HksVxDi6UtTYJuypnExb4gsOcgQ==", "dev": true, "dependencies": { - "@jsii/check-node": "1.47.0", - "@jsii/spec": "^1.47.0", + "@jsii/check-node": "1.52.1", + "@jsii/spec": "^1.52.1", "clone": "^2.1.2", - "codemaker": "^1.47.0", + "codemaker": "^1.52.1", "commonmark": "^0.30.0", "escape-string-regexp": "^4.0.0", "fs-extra": "^9.1.0", - "jsii-reflect": "^1.47.0", - "jsii-rosetta": "^1.47.0", + "jsii-reflect": "^1.52.1", + "jsii-rosetta": "^1.52.1", "semver": "^7.3.5", "spdx-license-list": "^6.4.0", "xmlbuilder": "^15.1.1", @@ -5353,16 +6127,16 @@ } }, "node_modules/jsii-reflect": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.47.0.tgz", - "integrity": "sha512-UgRWqkPI03wB6dGrTPA9UqUa37ORAnvaHGthWxNTcHIGIRHb4EfM29lYdbsRYO/+4/OiQLvdnZno1kw5rMyYcw==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.52.1.tgz", + "integrity": "sha512-OsTquiUJkgUu5jlK2VeshLFP9mBd1NU7vhHvcJZ+0xc/u2byfzPT0Irj2o6XLp30Vx/+uGGK6Nf6KyKtmUe82w==", "dev": true, "dependencies": { - "@jsii/check-node": "1.47.0", - "@jsii/spec": "^1.47.0", - "colors": "^1.4.0", + "@jsii/check-node": "1.52.1", + "@jsii/spec": "^1.52.1", + "colors": "1.4.0", "fs-extra": "^9.1.0", - "oo-ascii-tree": "^1.47.0", + "oo-ascii-tree": "^1.52.1", "yargs": "^16.2.0" }, "bin": { @@ -5428,14 +6202,14 @@ } }, "node_modules/jsii-release": { - "version": "0.2.38", - "resolved": "https://registry.npmjs.org/jsii-release/-/jsii-release-0.2.38.tgz", - "integrity": "sha512-u+n6nKqgRKIjpmJPfHkzwCYjKHehX+Gycd9eSJJT9PMntZucCkvrrckOTkyne5Wpn+OAsTeSjUhSK/hQ5PKmdg==", + "version": "0.2.228", + "resolved": "https://registry.npmjs.org/jsii-release/-/jsii-release-0.2.228.tgz", + "integrity": "sha512-Rj/sThDL4JVealO/Vv/UtnNbP2FmTpq6gxXwIs15U3rXmQkAhHlYyPNxHElf7fCESb8RjP2xaoHALnnhi22iFQ==", "dev": true, "dependencies": { "@types/fs-extra": "^8.0.0", "fs-extra": "^8.0.0", - "shlex": "^2.0.2" + "shlex": "^2.1.0" }, "bin": { "jsii-release": "bin/jsii-release", @@ -5479,17 +6253,17 @@ } }, "node_modules/jsii-rosetta": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.47.0.tgz", - "integrity": "sha512-2XyGNsTOr027bRhDuVy0Ygfkg3/u0jV7F5jvpGWq8lbl0yw90mgfi7epQxFfcFZ7zYgEIx5pXfC5UInl/Ntaqw==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.52.1.tgz", + "integrity": "sha512-iFpupZWQusVYGHaUPooaO6xVAtRp+o1EOMBS2FcJBZcWGbB8fRG3zzpeMSkoqu/Pjqtu7boh45V90CXtSmVfMQ==", "dev": true, "dependencies": { - "@jsii/check-node": "1.47.0", - "@jsii/spec": "1.47.0", - "@xmldom/xmldom": "^0.7.5", + "@jsii/check-node": "1.52.1", + "@jsii/spec": "1.52.1", + "@xmldom/xmldom": "^0.8.0", "commonmark": "^0.30.0", "fs-extra": "^9.1.0", - "jsii": "1.47.0", + "jsii": "1.52.1", "sort-json": "^2.0.0", "typescript": "~3.9.10", "workerpool": "^6.1.5", @@ -5659,22 +6433,16 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "node_modules/json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", - "dev": true - }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true }, "node_modules/json5": { @@ -5696,6 +6464,7 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, "dependencies": { "universalify": "^2.0.0" }, @@ -5707,23 +6476,22 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.4.0.tgz", "integrity": "sha512-/YgW6pRMr6M7C+4o8kS+B/2myEpHCrxO4PEWnqJNBFMjn7EWXqlQ4tGwL6xTHeRplwuZmcAncdvfOad1nT2yMw==", + "dev": true, "engines": { "node": "*" } }, - "node_modules/jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "node_modules/jsx-ast-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz", + "integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==", "dev": true, - "engines": [ - "node >=0.6.0" - ], "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" + "array-includes": "^3.1.3", + "object.assign": "^4.1.2" + }, + "engines": { + "node": ">=4.0" } }, "node_modules/kind-of": { @@ -5744,6 +6512,21 @@ "node": ">=6" } }, + "node_modules/language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", + "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==", + "dev": true + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "dev": true, + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -5767,9 +6550,9 @@ } }, "node_modules/lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, "node_modules/locate-path": { @@ -5790,10 +6573,10 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "node_modules/log4js": { @@ -5812,6 +6595,18 @@ "node": ">=8.0" } }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -5846,12 +6641,12 @@ "dev": true }, "node_modules/makeerror": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", - "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "dependencies": { - "tmpl": "1.0.x" + "tmpl": "1.0.5" } }, "node_modules/map-cache": { @@ -5875,17 +6670,6 @@ "node": ">=0.10.0" } }, - "node_modules/md5": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", - "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", - "dev": true, - "dependencies": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" - } - }, "node_modules/mdurl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", @@ -5898,6 +6682,15 @@ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, "node_modules/micromatch": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", @@ -5912,21 +6705,21 @@ } }, "node_modules/mime-db": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz", - "integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==", + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", "dev": true, "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { - "version": "2.1.30", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz", - "integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==", + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", "dev": true, "dependencies": { - "mime-db": "1.47.0" + "mime-db": "1.51.0" }, "engines": { "node": ">= 0.6" @@ -5945,6 +6738,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, @@ -6029,15 +6823,6 @@ "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", "dev": true }, - "node_modules/node-modules-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", - "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/node-notifier": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz", @@ -6070,9 +6855,9 @@ } }, "node_modules/node-releases": { - "version": "1.1.72", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.72.tgz", - "integrity": "sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", + "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==", "dev": true }, "node_modules/normalize-package-data": { @@ -6123,13 +6908,13 @@ "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", "dev": true }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true, "engines": { - "node": "*" + "node": ">=0.10.0" } }, "node_modules/object-copy": { @@ -6218,9 +7003,9 @@ } }, "node_modules/object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -6281,6 +7066,50 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", + "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz", + "integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/object.pick": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", @@ -6293,6 +7122,23 @@ "node": ">=0.10.0" } }, + "node_modules/object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -6318,9 +7164,9 @@ } }, "node_modules/oo-ascii-tree": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.47.0.tgz", - "integrity": "sha512-m8ZGdK0JSMFOZyjV0kkzBwcbPMGqW5WhCYp4CgPrJz4/y128hwhWGB8x4G7b5CAKRNo583y51kL0UCklaxt1Nw==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.52.1.tgz", + "integrity": "sha512-hcQSkW/WkZFWqK878X+Bo8vD2Axo9FBQBGeTLANgWOay7IVFUvLmqbFUyfovzD+/L4ak1n/BdsWfSL/0a3NT2w==", "dev": true, "engines": { "node": ">= 12.7.0" @@ -6400,6 +7246,18 @@ "node": ">=6" } }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", @@ -6460,22 +7318,31 @@ "node": ">=8" } }, - "node_modules/path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "node_modules/picomatch": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz", - "integrity": "sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "engines": { "node": ">=8.6" @@ -6485,13 +7352,10 @@ } }, "node_modules/pirates": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", - "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", + "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==", "dev": true, - "dependencies": { - "node-modules-regexp": "^1.0.0" - }, "engines": { "node": ">= 6" } @@ -6526,25 +7390,57 @@ "node": ">= 0.8.0" } }, + "node_modules/prettier": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", + "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "version": "27.4.6", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.6.tgz", + "integrity": "sha512-NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g==", "dev": true, "dependencies": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", "react-is": "^17.0.1" }, "engines": { - "node": ">= 10" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" } }, "node_modules/prompts": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz", - "integrity": "sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "dependencies": { "kleur": "^3.0.3", @@ -6554,6 +7450,23 @@ "node": ">= 6" } }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, "node_modules/psl": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", @@ -6579,14 +7492,25 @@ "node": ">=6" } }, - "node_modules/qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, - "engines": { - "node": ">=0.6" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, "node_modules/react-is": { "version": "17.0.2", @@ -6644,6 +7568,12 @@ "node": ">=8" } }, + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", + "dev": true + }, "node_modules/regex-not": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", @@ -6673,6 +7603,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, "node_modules/remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", @@ -6697,106 +7639,6 @@ "node": ">=0.10" } }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "dev": true, - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", - "dev": true, - "dependencies": { - "lodash": "^4.17.19" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request-promise-native": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", - "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", - "deprecated": "request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", - "dev": true, - "dependencies": { - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - }, - "engines": { - "node": ">=0.12.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request-promise-native/node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/request/node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/request/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "dev": true, - "bin": { - "uuid": "bin/uuid" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -6806,15 +7648,6 @@ "node": ">=0.10.0" } }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", @@ -6822,13 +7655,17 @@ "dev": true }, "node_modules/resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", + "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", "dev": true, "dependencies": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "is-core-module": "^2.8.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -6871,6 +7708,16 @@ "node": ">=0.12" } }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, "node_modules/rfdc": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", @@ -6901,6 +7748,29 @@ "node": "6.* || >= 7.*" } }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", @@ -6926,6 +7796,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "deprecated": "some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added", "dev": true, "dependencies": { "@cnakazawa/watch": "^1.0.3", @@ -7231,6 +8102,7 @@ "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, "bin": { "semver": "bin/semver.js" } @@ -7324,9 +8196,9 @@ "optional": true }, "node_modules/shlex": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/shlex/-/shlex-2.0.2.tgz", - "integrity": "sha512-i4p9nNXgBTILspHwZlBCNsZzwuVWW8SFx5dyIONrjL0R+AbMOPbg7ndqgGfjYivkYRTtZMKqIT8HT+QyOhPQWA==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/shlex/-/shlex-2.1.0.tgz", + "integrity": "sha512-Tk8PjohJbWpGu2NtAlsEi/9AS4GU2zW2ZWLFrWRDskZpSJmyBIU3nTkBtocxD90r3w4BwRevsNtIqIP9HMuYiQ==", "dev": true }, "node_modules/side-channel": { @@ -7344,9 +8216,9 @@ } }, "node_modules/signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", + "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", "dev": true }, "node_modules/sisteransi": { @@ -7364,23 +8236,6 @@ "node": ">=8" } }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, "node_modules/snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -7614,6 +8469,7 @@ "version": "0.5.3", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", "dev": true, "dependencies": { "atob": "^2.1.2", @@ -7624,9 +8480,9 @@ } }, "node_modules/source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "dependencies": { "buffer-from": "^1.0.0", @@ -7637,6 +8493,7 @@ "version": "0.4.1", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", "dev": true }, "node_modules/spdx-correct": { @@ -7666,9 +8523,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.8.tgz", - "integrity": "sha512-NDgA96EnaLSvtbM7trJj+t1LUR3pirkDCcz9nOUlPb5DMBGsH7oES6C3hs3j7R9oHEa1EMvReS/BUAIT5Tcr0g==", + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", "dev": true }, "node_modules/spdx-license-list": { @@ -7701,35 +8558,10 @@ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, - "node_modules/sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "dev": true, - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/stack-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", "dev": true, "dependencies": { "escape-string-regexp": "^2.0.0" @@ -7843,15 +8675,6 @@ "node": ">=0.10.0" } }, - "node_modules/stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/streamroller": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz", @@ -7934,6 +8757,25 @@ "node": ">=8" } }, + "node_modules/string.prototype.matchall": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", + "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/string.prototype.repeat": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz", @@ -8005,6 +8847,18 @@ "node": ">=6" } }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -8030,48 +8884,22 @@ "node": ">=8" } }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true - }, - "node_modules/table": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", - "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, - "dependencies": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/table/node_modules/ajv": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", - "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "node": ">= 0.4" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, "node_modules/terminal-link": { @@ -8104,6 +8932,12 @@ "node": ">=8" } }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, "node_modules/throat": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", @@ -8111,9 +8945,9 @@ "dev": true }, "node_modules/tmpl": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", - "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, "node_modules/to-fast-properties": { @@ -8200,9 +9034,9 @@ } }, "node_modules/tr46": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", - "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "dev": true, "dependencies": { "punycode": "^2.1.1" @@ -8254,6 +9088,39 @@ "node": ">=10" } }, + "node_modules/tsconfig-paths": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz", + "integrity": "sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", @@ -8323,24 +9190,15 @@ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/tslint/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "node_modules/tslint/node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "engines": { - "node": ">=0.3.1" + "color-name": "1.1.3" } }, + "node_modules/tslint/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, "node_modules/tslint/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", @@ -8404,24 +9262,6 @@ "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev" } }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dev": true, - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "dev": true - }, "node_modules/type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", @@ -8465,9 +9305,9 @@ } }, "node_modules/typescript": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", - "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz", + "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -8520,6 +9360,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, "engines": { "node": ">= 10.0.0" } @@ -8613,6 +9454,12 @@ "uuid": "dist/bin/uuid" } }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, "node_modules/v8-to-istanbul": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz", @@ -8646,20 +9493,6 @@ "spdx-expression-parse": "^3.0.0" } }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "dev": true, - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, "node_modules/w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", @@ -8682,12 +9515,12 @@ } }, "node_modules/walker": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", - "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "dependencies": { - "makeerror": "1.0.x" + "makeerror": "1.0.12" } }, "node_modules/webidl-conversions": { @@ -8715,13 +9548,13 @@ "dev": true }, "node_modules/whatwg-url": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.5.0.tgz", - "integrity": "sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg==", + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dev": true, "dependencies": { "lodash": "^4.7.0", - "tr46": "^2.0.2", + "tr46": "^2.1.0", "webidl-conversions": "^6.1.0" }, "engines": { @@ -8781,18 +9614,17 @@ "dev": true }, "node_modules/which-typed-array": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", - "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.7.tgz", + "integrity": "sha512-vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.0", - "es-abstract": "^1.18.0-next.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", "foreach": "^2.0.5", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.1", - "is-typed-array": "^1.1.3" + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.7" }, "engines": { "node": ">= 0.4" @@ -8849,9 +9681,9 @@ } }, "node_modules/ws": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz", - "integrity": "sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==", + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz", + "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", "dev": true, "engines": { "node": ">=8.3.0" @@ -8897,674 +9729,96 @@ "dev": true }, "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.7", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz", - "integrity": "sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs/node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/yargs/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } - } - }, - "dependencies": { - "@aws-cdk/assert": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/assert/-/assert-1.139.0.tgz", - "integrity": "sha512-SGNlbh8hrBYoERctUqxKDPNhjP2JGUH1rlauGAdVdtokVCW4ntfC/u9wOYr0Sny2UqpB9ooSSKdOnoC6a6/jIQ==", - "dev": true, - "requires": { - "@aws-cdk/cloudformation-diff": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/assets": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/assets/-/assets-1.139.0.tgz", - "integrity": "sha512-qyXfGbb8zWFQhkcZoFOzi15K6rMnSSPDtuBxDxm/3tbyn+d5eTtnuL/rWJgWXYaewWtv1fZAG+R6PHQNquEyBg==", - "requires": { - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-applicationautoscaling": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-applicationautoscaling/-/aws-applicationautoscaling-1.139.0.tgz", - "integrity": "sha512-CSP96IK6DjnDHMqgHhnDkz99jhujJUzmngHv0w8DwXKtDlFGdFq68Nzc2UZHDzyxQCPbsQwTFCF8w4WA9RHlTg==", - "requires": { - "@aws-cdk/aws-autoscaling-common": "1.139.0", - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-autoscaling-common": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-autoscaling-common/-/aws-autoscaling-common-1.139.0.tgz", - "integrity": "sha512-HsJ+ob8h6bYJniYCCc7kQo8cU1aW3RRscsNLBtP1jlfaJACbOnTFrHR1DTZn2mN/yndYI4FAbzdMn9wjZBdcsg==", - "requires": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-cloudformation": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-cloudformation/-/aws-cloudformation-1.139.0.tgz", - "integrity": "sha512-JdecIidqJhSXd17qipT/UL5De9OywjbKUEIpvnMW/SJbr1+mvTXoXKxMNorNN6oScAmlwSTxig7vhcH95QX5Bg==", - "requires": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-sns": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-cloudwatch": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-cloudwatch/-/aws-cloudwatch-1.139.0.tgz", - "integrity": "sha512-LsuBLRuvVT3L95BsSJvqQajtoSUkmHpHs66BRE7jU2WXeeHitUBUE5dfkregGflzsqIA+huWwrC4dbAb4/cy5w==", - "requires": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-codeguruprofiler": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-codeguruprofiler/-/aws-codeguruprofiler-1.139.0.tgz", - "integrity": "sha512-vuP9ZxDqNCyJBD7CfBVvzvT8hMUIH7ZZ7oi0u3znN+Kj6lvjn96474sXeCnWfYrm5p2gKJoZRCQeGxINkrP7sQ==", - "requires": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-codestarnotifications": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-codestarnotifications/-/aws-codestarnotifications-1.139.0.tgz", - "integrity": "sha512-MNnG4AzSJd3niGMGsDwIxGZ4FGBOMZYOd6kxRvu5zI/oB03eATNGGRRV52UC/2YGMYX+LrCLG3cWf4lHovOfhQ==", - "requires": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-ec2": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-ec2/-/aws-ec2-1.139.0.tgz", - "integrity": "sha512-09tVqk/eKDxImhEsffGLjp3asOCmn1fYEpCLTg/UEdAdAxyKYWTyxofKtvHOfUu6FjjuXAY50Bogku4e9FRqEQ==", - "requires": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-s3-assets": "1.139.0", - "@aws-cdk/aws-ssm": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-ecr": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-ecr/-/aws-ecr-1.139.0.tgz", - "integrity": "sha512-KVko/0NnqsFx0Ihza6PHfg43Mf9cHGzt7wgSINd4oGxXpyJF54vRWf14zHs2i+D1emlCWpx65fDZ7VkX4cTJyg==", - "requires": { - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-ecr-assets": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-ecr-assets/-/aws-ecr-assets-1.139.0.tgz", - "integrity": "sha512-4/6kSwizP0Ft8kCXE0doocUY6uwFBCjZKddzWPuwkL/qeu+NGF15ixEZGGxiU2FISZ3Ln0x1NMnv6bZme8QnwA==", - "requires": { - "@aws-cdk/assets": "1.139.0", - "@aws-cdk/aws-ecr": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69", - "minimatch": "^3.0.4" - }, - "dependencies": { - "balanced-match": { - "version": "1.0.2", - "bundled": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "concat-map": { - "version": "0.0.1", - "bundled": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "@aws-cdk/aws-efs": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-efs/-/aws-efs-1.139.0.tgz", - "integrity": "sha512-v7ehXT97yIZhkTdViOlIzef/r/Muad6mUjqnz/3C5KeiVRHJ/FuspCFhaCZA7tYoP/4ZAOOidx9lTEfnj/oBsA==", - "requires": { - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-elasticache": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-elasticache/-/aws-elasticache-1.139.0.tgz", - "integrity": "sha512-dMWeYSp6mIFxmujc7k4ZfycztuXZBQyMCKAEO5v/dz1EbgsF7DmcuA6q1f8/3e77XPnd5gRAHcfyoSH5lhqBuw==", - "requires": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-events": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-events/-/aws-events-1.139.0.tgz", - "integrity": "sha512-RGb5yLxj1SaF6YbLevoNCxzVUp/L6IHA2yqDCRu6lA1G8NtAgzBRCYTncxFBUzncqb9ShiybLD15F2BAAuo1jg==", - "requires": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-iam": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-iam/-/aws-iam-1.139.0.tgz", - "integrity": "sha512-IYDQGMQX+eOhKLPn+cZ8RzOAQZlOSmFdOI6j8jArHv9owpdgmB7ZLNPSusnDY2bVhq75pPVI4VNPpUj3Wwz7VQ==", - "requires": { - "@aws-cdk/core": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-kms": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-kms/-/aws-kms-1.139.0.tgz", - "integrity": "sha512-etCwzz1yictUS69eGT4FoKJWVk5klZNFfmRCEyBzzTRosCub/fpltKCJyLPazf98GD6uc2X7nRJ+qS4urClSZA==", - "requires": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-lambda": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-lambda/-/aws-lambda-1.139.0.tgz", - "integrity": "sha512-55vlcYJ44x4j7H98xYExusm8OWegAPisiy+viXDvQYuVrVTz5jw2pjU1CzK2m2trY0rtTmZrd8EpzB8mGcvX2g==", - "requires": { - "@aws-cdk/aws-applicationautoscaling": "1.139.0", - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-codeguruprofiler": "1.139.0", - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-ecr": "1.139.0", - "@aws-cdk/aws-ecr-assets": "1.139.0", - "@aws-cdk/aws-efs": "1.139.0", - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-s3-assets": "1.139.0", - "@aws-cdk/aws-signer": "1.139.0", - "@aws-cdk/aws-sqs": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-logs": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-logs/-/aws-logs-1.139.0.tgz", - "integrity": "sha512-j/eQzb+fnQqP+v+JuOMBqga1FekbBfW3NyNa1va+nlGtQxOWISjYgq0YShhJcFf5xp9lfQyX5S2uTSDc/H9yTA==", - "requires": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-s3-assets": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-rds": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-rds/-/aws-rds-1.139.0.tgz", - "integrity": "sha512-K4dRr9Q6Ckvx/vnZBiDzNP7sYLoDbho7uwiXh0CF+8qvhxnj15wI/PWSeKLaF35DVjfGrtxW1pvu5u6Fd3kU+Q==", - "requires": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-secretsmanager": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-redshift": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-redshift/-/aws-redshift-1.139.0.tgz", - "integrity": "sha512-iHUmpZj/6j5UTVQl7siz2Fc7LD7q8toVmKGZgeX2Mw8M9cfZLyDOKaN51tu1trD5jSIOjv7/ggeJgyW+TJvfCg==", - "requires": { - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/aws-secretsmanager": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/custom-resources": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-s3": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-s3/-/aws-s3-1.139.0.tgz", - "integrity": "sha512-99xvOtpOFIa2BkTKUKGG5JLtMbg8oUZI0Xc1ya7+h88SnpEtPT1hCTFtOZofFxWEOb2xqd5z/wR+9GIMCHVT3g==", - "requires": { - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-s3-assets": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-s3-assets/-/aws-s3-assets-1.139.0.tgz", - "integrity": "sha512-oX0NUcOoOMfBdnuBrGaqhnpEi4+lyz7tBlZ6buZXVKpXJxIDOVu+o7KEbJnMkeQbTMqkLJ/Wz9pYqKZ6PqXSoA==", - "requires": { - "@aws-cdk/assets": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-s3": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-sam": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-sam/-/aws-sam-1.139.0.tgz", - "integrity": "sha512-FefgTW/2uDpmuv+LMMY3zFVXTW4aZGIKddxmUTpTBAUObNncKwThjr6t7/sYmWAJwtRvJuZT8GAGGnl76Fum9g==", - "requires": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-secretsmanager": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-secretsmanager/-/aws-secretsmanager-1.139.0.tgz", - "integrity": "sha512-GP/p5B3aB54Up91/P2j3H2Ohw2Hnlvu6ohdU+Z4tcRAHgy1aLvEc7rkIrR5axWsBtNfuy/Q7893xKJt4T1EXFg==", - "requires": { - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-sam": "1.139.0", - "@aws-cdk/core": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-signer": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-signer/-/aws-signer-1.139.0.tgz", - "integrity": "sha512-e7gjv7wzstvKsc/WCWrchiDWgHRckx2u/uzu709PeWcDrwxA8d8yRf1UnSMOia8VdGLkvtBqGbEo/XwKTxrmTQ==", - "requires": { - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-sns": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-sns/-/aws-sns-1.139.0.tgz", - "integrity": "sha512-g7ni3nUa/umG7I1OEVwYfIRa82rB93KJKs965TushglpCT+w4IO0qVwoXbzJ/n/5Uvy6zsFNDRP7SKMRH0pFeA==", - "requires": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-codestarnotifications": "1.139.0", - "@aws-cdk/aws-events": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/aws-sqs": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-sqs": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-sqs/-/aws-sqs-1.139.0.tgz", - "integrity": "sha512-OE/Khw1gBHi24DGBtR1D93gzZL6BHjIyM2veekFh2SjjR+NWKd8b5UDZQ3NMzRgpmqIew7psdPVXwbFjqwwxzg==", - "requires": { - "@aws-cdk/aws-cloudwatch": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/aws-ssm": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/aws-ssm/-/aws-ssm-1.139.0.tgz", - "integrity": "sha512-fUr6KP6c+7FWEk4+paoskYWwu2BbMwVVp82S9EO/ZbAaprYK/cSLM5cN9AJiykt3PDRr+ksz762/XPvGunHpjA==", - "requires": { - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-kms": "1.139.0", - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" - } - }, - "@aws-cdk/cfnspec": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/cfnspec/-/cfnspec-1.139.0.tgz", - "integrity": "sha512-M2qD48aIEGojOZcHopsjACyJHWv9eAxcBSGBFase0e4IaFSEybqm5EW9r5pkK9W2KpyUltZPxV8L5KCIQ9JgRA==", - "dev": true, - "requires": { - "fs-extra": "^9.1.0", - "md5": "^2.3.0" - } - }, - "@aws-cdk/cloud-assembly-schema": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/cloud-assembly-schema/-/cloud-assembly-schema-1.139.0.tgz", - "integrity": "sha512-1pbwrFfH72NggzKms6no+BtQ3E/pS/JBcCdNSHAh9Tyn3qrQY/SGYV7qaDZ/uGTDauZSoiSw35KNPGuxc6n9xw==", - "requires": { - "jsonschema": "^1.4.0", - "semver": "^7.3.5" - }, - "dependencies": { - "jsonschema": { - "version": "1.4.0", - "bundled": true - }, - "lru-cache": { - "version": "6.0.0", - "bundled": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.5", - "bundled": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "bundled": true - } - } - }, - "@aws-cdk/cloudformation-diff": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/cloudformation-diff/-/cloudformation-diff-1.139.0.tgz", - "integrity": "sha512-RKnPVJF1VNZ8XSXsa3WLj7fo4eWBNtvJyiYBJDbnf1MWFelTm0qW641yEkuu5Zn3zld9ojFH/09xTtuHLI0v3w==", - "dev": true, - "requires": { - "@aws-cdk/cfnspec": "1.139.0", - "@types/node": "^10.17.60", - "colors": "1.4.0", - "diff": "^5.0.0", - "fast-deep-equal": "^3.1.3", - "string-width": "^4.2.3", - "table": "^6.8.0" - }, - "dependencies": { - "@types/node": { - "version": "10.17.60", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", - "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==", - "dev": true - } - } - }, - "@aws-cdk/core": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/core/-/core-1.139.0.tgz", - "integrity": "sha512-12JOM+iOYMk+BuTNT9R9B6WPQ8NfTv399TXMCZB0Sjf47ZDfMkktVJ46w2w8hBJL6y3vTRmEt98cwx2U7HgjxA==", - "requires": { - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "@aws-cdk/cx-api": "1.139.0", - "@aws-cdk/region-info": "1.139.0", - "@balena/dockerignore": "^1.0.2", - "constructs": "^3.3.69", - "fs-extra": "^9.1.0", - "ignore": "^5.2.0", - "minimatch": "^3.0.4" - }, - "dependencies": { - "@balena/dockerignore": { - "version": "1.0.2", - "bundled": true - }, - "at-least-node": { - "version": "1.0.0", - "bundled": true - }, - "balanced-match": { - "version": "1.0.2", - "bundled": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "concat-map": { - "version": "0.0.1", - "bundled": true - }, - "fs-extra": { - "version": "9.1.0", - "bundled": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "graceful-fs": { - "version": "4.2.9", - "bundled": true - }, - "ignore": { - "version": "5.2.0", - "bundled": true - }, - "jsonfile": { - "version": "6.1.0", - "bundled": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "universalify": { - "version": "2.0.0", - "bundled": true - } - } + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "@aws-cdk/custom-resources": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/custom-resources/-/custom-resources-1.139.0.tgz", - "integrity": "sha512-uuQvsxh7zcz32aSmr93XnEtJB6jmzlqpy42I4q4478UCO/70aZc5xfXn/VNIQ2MmnO1u+PvlVO2EYquzVSyYew==", - "requires": { - "@aws-cdk/aws-cloudformation": "1.139.0", - "@aws-cdk/aws-ec2": "1.139.0", - "@aws-cdk/aws-iam": "1.139.0", - "@aws-cdk/aws-lambda": "1.139.0", - "@aws-cdk/aws-logs": "1.139.0", - "@aws-cdk/aws-sns": "1.139.0", - "@aws-cdk/core": "1.139.0", - "constructs": "^3.3.69" + "node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" } }, - "@aws-cdk/cx-api": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/cx-api/-/cx-api-1.139.0.tgz", - "integrity": "sha512-SZwWJE5ck6Vmw9K+F4KiniRgMwDDROSRoOPYJrrBtWCszskVc9CqxPTws69HDh7cuS0SVz5DWZHsvHIsBnYVKw==", - "requires": { - "@aws-cdk/cloud-assembly-schema": "1.139.0", - "semver": "^7.3.5" - }, - "dependencies": { - "lru-cache": { - "version": "6.0.0", - "bundled": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "semver": { - "version": "7.3.5", - "bundled": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "bundled": true - } + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" } }, - "@aws-cdk/region-info": { - "version": "1.139.0", - "resolved": "https://registry.npmjs.org/@aws-cdk/region-info/-/region-info-1.139.0.tgz", - "integrity": "sha512-dIc43+iy5khYrSGj38hiZhs8KBKq+c32OdjvJFqE14DWBrAvwTR6yKGRWlaO+biNszC4iY1bFP54ve9VQv4xpg==" + "node_modules/yargs/node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + } + }, + "dependencies": { "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "dev": true, "requires": { - "@babel/highlight": "^7.12.13" + "@babel/highlight": "^7.16.7" } }, "@babel/compat-data": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.0.tgz", - "integrity": "sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.8.tgz", + "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==", "dev": true }, "@babel/core": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.14.3.tgz", - "integrity": "sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.3", - "@babel/helper-compilation-targets": "^7.13.16", - "@babel/helper-module-transforms": "^7.14.2", - "@babel/helpers": "^7.14.0", - "@babel/parser": "^7.14.3", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", + "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.16.7", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helpers": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -9582,12 +9836,12 @@ } }, "@babel/generator": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.3.tgz", - "integrity": "sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz", + "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==", "dev": true, "requires": { - "@babel/types": "^7.14.2", + "@babel/types": "^7.16.8", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, @@ -9601,146 +9855,134 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.13.16", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz", - "integrity": "sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz", + "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", "dev": true, "requires": { - "@babel/compat-data": "^7.13.15", - "@babel/helper-validator-option": "^7.12.17", - "browserslist": "^4.14.5", + "@babel/compat-data": "^7.16.4", + "@babel/helper-validator-option": "^7.16.7", + "browserslist": "^4.17.5", "semver": "^6.3.0" } }, - "@babel/helper-function-name": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz", - "integrity": "sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==", + "@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.12.13", - "@babel/template": "^7.12.13", - "@babel/types": "^7.14.2" + "@babel/types": "^7.16.7" } }, - "@babel/helper-get-function-arity": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", - "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", + "@babel/helper-function-name": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", "dev": true, "requires": { - "@babel/types": "^7.12.13" + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" } }, - "@babel/helper-member-expression-to-functions": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz", - "integrity": "sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==", + "@babel/helper-get-function-arity": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", "dev": true, "requires": { - "@babel/types": "^7.13.12" + "@babel/types": "^7.16.7" } }, - "@babel/helper-module-imports": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", - "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", + "@babel/helper-hoist-variables": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", "dev": true, "requires": { - "@babel/types": "^7.13.12" + "@babel/types": "^7.16.7" } }, - "@babel/helper-module-transforms": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz", - "integrity": "sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==", + "@babel/helper-module-imports": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.13.12", - "@babel/helper-replace-supers": "^7.13.12", - "@babel/helper-simple-access": "^7.13.12", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/helper-validator-identifier": "^7.14.0", - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2" + "@babel/types": "^7.16.7" } }, - "@babel/helper-optimise-call-expression": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", - "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", + "@babel/helper-module-transforms": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz", + "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==", "dev": true, "requires": { - "@babel/types": "^7.12.13" + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" } }, "@babel/helper-plugin-utils": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", - "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", "dev": true }, - "@babel/helper-replace-supers": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.3.tgz", - "integrity": "sha512-Rlh8qEWZSTfdz+tgNV/N4gz1a0TMNwCUcENhMjHTHKp3LseYH5Jha0NSlyTQWMnjbYcwFt+bqAMqSLHVXkQ6UA==", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.13.12", - "@babel/helper-optimise-call-expression": "^7.12.13", - "@babel/traverse": "^7.14.2", - "@babel/types": "^7.14.2" - } - }, "@babel/helper-simple-access": { - "version": "7.13.12", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz", - "integrity": "sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz", + "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", "dev": true, "requires": { - "@babel/types": "^7.13.12" + "@babel/types": "^7.16.7" } }, "@babel/helper-split-export-declaration": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", - "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", "dev": true, "requires": { - "@babel/types": "^7.12.13" + "@babel/types": "^7.16.7" } }, "@babel/helper-validator-identifier": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz", - "integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", "dev": true }, "@babel/helper-validator-option": { - "version": "7.12.17", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", - "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", "dev": true }, "@babel/helpers": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.0.tgz", - "integrity": "sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz", + "integrity": "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==", "dev": true, "requires": { - "@babel/template": "^7.12.13", - "@babel/traverse": "^7.14.0", - "@babel/types": "^7.14.0" + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" } }, "@babel/highlight": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz", - "integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz", + "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.14.0", + "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -9804,9 +10046,9 @@ } }, "@babel/parser": { - "version": "7.14.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.3.tgz", - "integrity": "sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz", + "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==", "dev": true }, "@babel/plugin-syntax-async-generators": { @@ -9909,48 +10151,69 @@ } }, "@babel/plugin-syntax-top-level-await": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz", - "integrity": "sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.12.13" + "@babel/helper-plugin-utils": "^7.14.5" } }, - "@babel/template": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", - "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", + "@babel/runtime": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz", + "integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==", "dev": true, "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13" + "regenerator-runtime": "^0.13.4" } }, - "@babel/traverse": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.2.tgz", - "integrity": "sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==", + "@babel/runtime-corejs3": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.16.8.tgz", + "integrity": "sha512-3fKhuICS1lMz0plI5ktOE/yEtBRMVxplzRkdn6mJQ197XiY0JnrzYV0+Mxozq3JZ8SBV9Ecurmw1XsGbwOf+Sg==", + "dev": true, + "requires": { + "core-js-pure": "^3.20.2", + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "dev": true, "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.14.2", - "@babel/helper-function-name": "^7.14.2", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.14.2", - "@babel/types": "^7.14.2", + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "@babel/traverse": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz", + "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.16.8", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.16.8", + "@babel/types": "^7.16.8", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.14.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.2.tgz", - "integrity": "sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz", + "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.14.0", + "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" } }, @@ -9970,6 +10233,72 @@ "minimist": "^1.2.0" } }, + "@eslint/eslintrc": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.5.tgz", + "integrity": "sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.2.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "globals": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz", + "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "@humanwhocodes/config-array": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.2.tgz", + "integrity": "sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -10182,9 +10511,9 @@ } }, "@jsii/check-node": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.47.0.tgz", - "integrity": "sha512-LSlbKTpMVYw1R3Be70sJJdJbuLWEFAMbGEHE731Je1QDTXTRm6Gc3NDvPUvTTuHEry8f2Wys+1pXNX06X4PKxQ==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.52.1.tgz", + "integrity": "sha512-B+vpPwXrKTWA1dBHuStp0sg+YpFZ9APjS6qeDiknMHPMatlT7VA0RVk/LmCLaPZhsfNzByJ+zhRFs0R83zTr1Q==", "dev": true, "requires": { "chalk": "^4.1.2", @@ -10203,14 +10532,57 @@ } }, "@jsii/spec": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/@jsii/spec/-/spec-1.47.0.tgz", - "integrity": "sha512-5F9Qw0lnK8mCumHvpA+XhoBJezgW6q92sLM2jsvo7bzXWXyRRfr1cHl1g5fxQ0yS82B5NMa1fN2n28BsEKs+Gw==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/@jsii/spec/-/spec-1.52.1.tgz", + "integrity": "sha512-Mt5yzqR/DYZhxjOBTuQsstYh0gdlwSWvjTAfUGf5Rp76j8gddkADlrMRFeVrXBy/Y+ccJLUYWMSsEf1Ti6ERcQ==", "dev": true, "requires": { "jsonschema": "^1.4.0" } }, + "@moia-oss/eslint-prettier-typescript-config": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/@moia-oss/eslint-prettier-typescript-config/-/eslint-prettier-typescript-config-0.11.3.tgz", + "integrity": "sha512-HEq3d1yqdQSoNtSXwhBPF1MVKiakelVG4LCDRN9L815XVe+44AqkBIJFZSusyj6aPjfjXUfGIuvanvUrYo8zuA==", + "dev": true, + "requires": { + "@typescript-eslint/eslint-plugin": "^5.7.0", + "@typescript-eslint/parser": "^5.7.0", + "eslint-config-airbnb": "^19.0.2", + "eslint-config-airbnb-typescript": "^16.1.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, "@sinonjs/commons": { "version": "1.8.3", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", @@ -10229,10 +10601,16 @@ "@sinonjs/commons": "^1.7.0" } }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true + }, "@types/babel__core": { - "version": "7.1.14", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.14.tgz", - "integrity": "sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g==", + "version": "7.1.18", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz", + "integrity": "sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==", "dev": true, "requires": { "@babel/parser": "^7.1.0", @@ -10243,128 +10621,310 @@ } }, "@types/babel__generator": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", - "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, "requires": { "@babel/types": "^7.0.0" } }, "@types/babel__template": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", - "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, "requires": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, - "@types/babel__traverse": { - "version": "7.11.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz", - "integrity": "sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==", + "@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/fs-extra": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.2.tgz", + "integrity": "sha512-SvSrYXfWSc7R4eqnOzbQF4TZmfpNSM9FrSWLU3EUnWBuyZqNBOrv1B1JA3byUDPUl9z4Ab3jeZG2eDdySlgNMg==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.4.0.tgz", + "integrity": "sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==", + "dev": true, + "requires": { + "jest-diff": "^27.0.0", + "pretty-format": "^27.0.0" + } + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", + "dev": true + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", + "dev": true + }, + "@types/node": { + "version": "16.11.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.12.tgz", + "integrity": "sha512-+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "@types/prettier": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.3.tgz", + "integrity": "sha512-QzSuZMBuG5u8HqYz01qtMdg/Jfctlnvj1z/lYnIDXs/golxw0fxtRAHd9KrzjR7Yxz1qVeI00o0kiO3PmVdJ9w==", + "dev": true + }, + "@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "@types/yargs": { + "version": "15.0.14", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", + "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "20.2.1", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz", + "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.9.1.tgz", + "integrity": "sha512-Xv9tkFlyD4MQGpJgTo6wqDqGvHIRmRgah/2Sjz1PUnJTawjHWIwBivUE9x0QtU2WVii9baYgavo/bHjrZJkqTw==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "5.9.1", + "@typescript-eslint/scope-manager": "5.9.1", + "@typescript-eslint/type-utils": "5.9.1", + "debug": "^4.3.2", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "dependencies": { + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.9.1.tgz", + "integrity": "sha512-cb1Njyss0mLL9kLXgS/eEY53SZQ9sT519wpX3i+U457l2UXRDuo87hgKfgRazmu9/tQb0x2sr3Y0yrU+Zz0y+w==", "dev": true, "requires": { - "@babel/types": "^7.3.0" + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.9.1", + "@typescript-eslint/types": "5.9.1", + "@typescript-eslint/typescript-estree": "5.9.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + } } }, - "@types/fs-extra": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.1.tgz", - "integrity": "sha512-TcUlBem321DFQzBNuz8p0CLLKp0VvF/XH9E4KHNmgwyp4E3AfgI5cjiIVZWlbfThBop2qxFIh4+LeY6hVWWZ2w==", + "@typescript-eslint/parser": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.9.1.tgz", + "integrity": "sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g==", "dev": true, "requires": { - "@types/node": "*" + "@typescript-eslint/scope-manager": "5.9.1", + "@typescript-eslint/types": "5.9.1", + "@typescript-eslint/typescript-estree": "5.9.1", + "debug": "^4.3.2" } }, - "@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "@typescript-eslint/scope-manager": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.9.1.tgz", + "integrity": "sha512-8BwvWkho3B/UOtzRyW07ffJXPaLSUKFBjpq8aqsRvu6HdEuzCY57+ffT7QoV4QXJXWSU1+7g3wE4AlgImmQ9pQ==", "dev": true, "requires": { - "@types/node": "*" + "@typescript-eslint/types": "5.9.1", + "@typescript-eslint/visitor-keys": "5.9.1" } }, - "@types/istanbul-lib-coverage": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", - "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", - "dev": true - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "@typescript-eslint/type-utils": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.9.1.tgz", + "integrity": "sha512-tRSpdBnPRssjlUh35rE9ug5HrUvaB9ntREy7gPXXKwmIx61TNN7+l5YKgi1hMKxo5NvqZCfYhA5FvyuJG6X6vg==", "dev": true, "requires": { - "@types/istanbul-lib-coverage": "*" + "@typescript-eslint/experimental-utils": "5.9.1", + "debug": "^4.3.2", + "tsutils": "^3.21.0" + }, + "dependencies": { + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + } } }, - "@types/istanbul-reports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", - "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", - "dev": true, - "requires": { - "@types/istanbul-lib-report": "*" - } + "@typescript-eslint/types": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.9.1.tgz", + "integrity": "sha512-SsWegWudWpkZCwwYcKoDwuAjoZXnM1y2EbEerTHho19Hmm+bQ56QG4L4jrtCu0bI5STaRTvRTZmjprWlTw/5NQ==", + "dev": true }, - "@types/jest": { - "version": "27.0.0", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.0.0.tgz", - "integrity": "sha512-IlpQZVpxufe+3qPaAqEoSPHVSxnJh1cf0BqqWHJeKiAUbwnHdmNzjP3ZCWSZSTbmAGXQPNk9QmM3Bif0pR54rg==", + "@typescript-eslint/typescript-estree": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.9.1.tgz", + "integrity": "sha512-gL1sP6A/KG0HwrahVXI9fZyeVTxEYV//6PmcOn1tD0rw8VhUWYeZeuWHwwhnewnvEMcHjhnJLOBhA9rK4vmb8A==", "dev": true, "requires": { - "jest-diff": "^26.0.0", - "pretty-format": "^26.0.0" + "@typescript-eslint/types": "5.9.1", + "@typescript-eslint/visitor-keys": "5.9.1", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "dependencies": { + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + } } }, - "@types/node": { - "version": "16.11.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.12.tgz", - "integrity": "sha512-+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw==", - "dev": true - }, - "@types/normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", - "dev": true - }, - "@types/prettier": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.3.tgz", - "integrity": "sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==", - "dev": true - }, - "@types/stack-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", - "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==", - "dev": true - }, - "@types/yargs": { - "version": "15.0.13", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz", - "integrity": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==", + "@typescript-eslint/visitor-keys": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.9.1.tgz", + "integrity": "sha512-Xh37pNz9e9ryW4TVdwiFzmr4hloty8cFj8GTWMXh3Z8swGwyQWeCcNgF0hm6t09iZd6eiZmIf4zHedQVP6TVtg==", "dev": true, "requires": { - "@types/yargs-parser": "*" + "@typescript-eslint/types": "5.9.1", + "eslint-visitor-keys": "^3.0.0" } }, - "@types/yargs-parser": { - "version": "20.2.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz", - "integrity": "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==", - "dev": true - }, "@xmldom/xmldom": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz", - "integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==", + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.0.tgz", + "integrity": "sha512-7wVnF+rKrVDEo1xjzkkidTG0grclaVnX0vKa0z9JSXcEdtftUJjvU33jLGg6SHyvs3eeqEsI7jZ6NxYfRypEEg==", "dev": true }, "abab": { @@ -10374,9 +10934,9 @@ "dev": true }, "acorn": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.2.4.tgz", - "integrity": "sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg==", + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz", + "integrity": "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==", "dev": true }, "acorn-globals": { @@ -10397,12 +10957,28 @@ } } }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, "acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + } + }, "ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", @@ -10415,6 +10991,12 @@ "uri-js": "^4.2.2" } }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, "ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -10458,6 +11040,16 @@ "sprintf-js": "~1.0.2" } }, + "aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + } + }, "arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", @@ -10476,50 +11068,63 @@ "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", "dev": true }, + "array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, "array-unique": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", "dev": true }, - "array.prototype.filter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.0.tgz", - "integrity": "sha512-TfO1gz+tLm+Bswq0FBOXPqAchtCr2Rn48T8dLJoRFl8NoEosjZmzptmuo1X8aZBzZcqsR1W8U761tjACJtngTQ==", + "array.prototype.flat": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz", + "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", - "es-abstract": "^1.18.0", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.5" + "es-abstract": "^1.19.0" } }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "array.prototype.flatmap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", + "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", "dev": true, "requires": { - "safer-buffer": "~2.1.0" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" } }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "dev": true - }, "assign-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", "dev": true }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=", "dev": true }, "asynckit": { @@ -10531,7 +11136,8 @@ "at-least-node": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true }, "atob": { "version": "2.1.2", @@ -10540,24 +11146,153 @@ "dev": true }, "available-typed-arrays": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.3.tgz", - "integrity": "sha512-CuPhFULixV/d89POo1UG4GqGbR7dmrefY2ZdmsYakeR4gOSJXoF7tfeaiqMHGOMrlTiJoeEs87fpLsBYmE2BMw==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true + }, + "aws-cdk-lib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/aws-cdk-lib/-/aws-cdk-lib-2.7.0.tgz", + "integrity": "sha512-9mxm9WD5rioZxTCQ6FqMzkZ0NH5+4oBFtlNL10duXJ+P+7Zcs82mHHycX7wjD689Gnl6hZla/DOlUV04HQvNhw==", "dev": true, "requires": { - "array.prototype.filter": "^1.0.0" + "@balena/dockerignore": "^1.0.2", + "case": "1.6.3", + "fs-extra": "^9.1.0", + "ignore": "^5.2.0", + "jsonschema": "^1.4.0", + "minimatch": "^3.0.4", + "punycode": "^2.1.1", + "semver": "^7.3.5", + "yaml": "1.10.2" + }, + "dependencies": { + "@balena/dockerignore": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "at-least-node": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "balanced-match": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "case": { + "version": "1.6.3", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "fs-extra": { + "version": "9.1.0", + "bundled": true, + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "graceful-fs": { + "version": "4.2.9", + "bundled": true, + "dev": true + }, + "ignore": { + "version": "5.2.0", + "bundled": true, + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "bundled": true, + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonschema": { + "version": "1.4.0", + "bundled": true, + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "bundled": true, + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "punycode": { + "version": "2.1.1", + "bundled": true, + "dev": true + }, + "semver": { + "version": "7.3.5", + "bundled": true, + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "4.0.0", + "bundled": true, + "dev": true + }, + "yaml": { + "version": "1.10.2", + "bundled": true, + "dev": true + } } }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "axe-core": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz", + "integrity": "sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==", "dev": true }, - "aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", "dev": true }, "babel-jest": { @@ -10577,16 +11312,31 @@ } }, "babel-plugin-istanbul": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", - "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" + }, + "dependencies": { + "istanbul-lib-instrument": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + } } }, "babel-plugin-jest-hoist": { @@ -10634,7 +11384,8 @@ "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "base": { "version": "0.11.2", @@ -10662,19 +11413,11 @@ } } }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -10696,16 +11439,16 @@ "dev": true }, "browserslist": { - "version": "4.16.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", - "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz", + "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", + "caniuse-lite": "^1.0.30001286", + "electron-to-chromium": "^1.4.17", "escalade": "^3.1.1", - "node-releases": "^1.1.71" + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" } }, "bs-logger": { @@ -10727,9 +11470,9 @@ } }, "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, "builtin-modules": { @@ -10778,9 +11521,9 @@ "dev": true }, "caniuse-lite": { - "version": "1.0.30001228", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001228.tgz", - "integrity": "sha512-QQmLOGJ3DEgokHbMSA8cj2a+geXqmnpyOFT0lhQV6P3/YOJvGDEwoedcwxEQ30gJIwIIunHIicunJ2rzK5gB2A==", + "version": "1.0.30001299", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001299.tgz", + "integrity": "sha512-iujN4+x7QzqA2NCSrS5VUy+4gLmRd4xv6vbBBsmfVqTx8bLAD8097euLqQgKxSVLvxjSDcvF1T/i9ocgnUFexw==", "dev": true }, "capture-exit": { @@ -10795,13 +11538,7 @@ "case": { "version": "1.6.3", "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", - "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", - "dev": true - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", "dev": true }, "chalk": { @@ -10820,12 +11557,6 @@ "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true }, - "charenc": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", - "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", - "dev": true - }, "ci-info": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", @@ -10942,9 +11673,9 @@ "dev": true }, "codemaker": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/codemaker/-/codemaker-1.47.0.tgz", - "integrity": "sha512-3Ab891O2IKCAOJE1rrgHS1z91AKlxoeQ2gfvL9bDv2K7zSrEN0IwI/YCgrIsUsf1RQFIOKDnizhFjn2PAap8Wg==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/codemaker/-/codemaker-1.52.1.tgz", + "integrity": "sha512-yCEUas8OlyuAu3NZ9mKopBlEnwudUrxUokSjQkw3Zk4hYkgtYJEtu1ZXuPlXtTKQYCqTPEPsUiHayTeC1qZjUA==", "dev": true, "requires": { "camelcase": "^6.2.1", @@ -10953,9 +11684,9 @@ }, "dependencies": { "camelcase": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.1.tgz", - "integrity": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true } } @@ -10991,12 +11722,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==", - "dev": true - }, "colors": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", @@ -11039,17 +11764,25 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true }, "constructs": { - "version": "3.3.75", - "resolved": "https://registry.npmjs.org/constructs/-/constructs-3.3.75.tgz", - "integrity": "sha512-q10foASSSfDWmS99OQLfnWDXCzqLvoORISAVWPFg0AmIGlBv2ZdDOtXxLqrJARPxVlOldmW2JzWzdRI+4+0/ZA==" + "version": "10.0.31", + "resolved": "https://registry.npmjs.org/constructs/-/constructs-10.0.31.tgz", + "integrity": "sha512-ihiX53hDGN2w4NYdsQdmH+1TUggNDf0HDqQm4NucuPDoHsrj1h2jq92zQWbn3xPVnl/f4SB9+EMfjJEhYAxa/Q==", + "dev": true }, "convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, "requires": { "safe-buffer": "~5.1.1" @@ -11061,10 +11794,10 @@ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", "dev": true }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "core-js-pure": { + "version": "3.20.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.20.2.tgz", + "integrity": "sha512-CmWHvSKn2vNL6p6StNp1EmMIfVY/pqn3JLAjfZQ8WZGPOlGoO92EkX9/Mk81i6GxvoPXjUqEQnpM3rJ5QxxIOg==", "dev": true }, "cross-spawn": { @@ -11078,12 +11811,6 @@ "which": "^2.0.1" } }, - "crypt": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", - "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", - "dev": true - }, "cssom": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", @@ -11107,14 +11834,11 @@ } } }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } + "damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true }, "data-urls": { "version": "2.0.0", @@ -11134,9 +11858,9 @@ "dev": true }, "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" @@ -11149,9 +11873,9 @@ "dev": true }, "decimal.js": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", - "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==", + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", + "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", "dev": true }, "decode-uri-component": { @@ -11184,9 +11908,9 @@ } }, "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "deepmerge": { @@ -11233,17 +11957,35 @@ "dev": true }, "diff": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", - "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true }, "diff-sequences": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", - "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.4.0.tgz", + "integrity": "sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==", "dev": true }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, "domexception": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", @@ -11261,20 +12003,10 @@ } } }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "dev": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, "electron-to-chromium": { - "version": "1.3.735", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.735.tgz", - "integrity": "sha512-cp7MWzC3NseUJV2FJFgaiesdrS+A8ZUjX5fLAxdRlcaPDkaPGFplX930S5vf84yqDp4LjuLdKouWuVOTwUfqHQ==", + "version": "1.4.43", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.43.tgz", + "integrity": "sha512-PO3kEfcxPrti/4STbXvCkNIF4fgWvCKl2508e6UI7KomCDffpIfeBZLXsh5DK/XGsjUw3kwq6WEsi0MJTlGAdg==", "dev": true }, "emittery": { @@ -11298,6 +12030,15 @@ "once": "^1.4.0" } }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, "entities": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", @@ -11314,35 +12055,33 @@ } }, "es-abstract": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", - "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", "dev": true, "requires": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", "has": "^1.0.3", "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", "object-keys": "^1.1.1", "object.assign": "^4.1.2", "string.prototype.trimend": "^1.0.4", "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" + "unbox-primitive": "^1.0.1" } }, - "es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "dev": true - }, "es-get-iterator": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz", @@ -11395,16 +12134,459 @@ "source-map": "~0.6.1" } }, + "eslint": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.6.0.tgz", + "integrity": "sha512-UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw==", + "dev": true, + "requires": { + "@eslint/eslintrc": "^1.0.5", + "@humanwhocodes/config-array": "^0.9.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.0", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.3.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.2.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "globals": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz", + "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "eslint-config-airbnb": { + "version": "19.0.4", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz", + "integrity": "sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==", + "dev": true, + "requires": { + "eslint-config-airbnb-base": "^15.0.0", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5" + } + }, + "eslint-config-airbnb-base": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", + "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", + "dev": true, + "requires": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5", + "semver": "^6.3.0" + } + }, + "eslint-config-airbnb-typescript": { + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-16.1.0.tgz", + "integrity": "sha512-W5Cq20KpEx5ZLC54bnVrC37zq2+WD956Kp/Ma3nYFRjT1v9KM63v+DPkrrmmrVqrlDKaD0ivm/qeYmyHV6qKlw==", + "dev": true, + "requires": { + "eslint-config-airbnb-base": "^15.0.0" + } + }, + "eslint-config-prettier": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz", + "integrity": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==", + "dev": true, + "requires": {} + }, + "eslint-import-resolver-node": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-module-utils": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.2.tgz", + "integrity": "sha512-zquepFnWCY2ISMFwD/DqzaM++H+7PDzOpUvotJWm/y1BAFt5R4oeULgdrTejKqLkz7MA/tgstsUMNYc7wNdTrg==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "find-up": "^2.1.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + } + } + }, + "eslint-plugin-import": { + "version": "2.25.4", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.4.tgz", + "integrity": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==", + "dev": true, + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.2", + "has": "^1.0.3", + "is-core-module": "^2.8.0", + "is-glob": "^4.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.5", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.12.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", + "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", + "dev": true, + "requires": { + "@babel/runtime": "^7.16.3", + "aria-query": "^4.2.2", + "array-includes": "^3.1.4", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.3.5", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.7", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.2.1", + "language-tags": "^1.0.5", + "minimatch": "^3.0.4" + }, + "dependencies": { + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + } + } + }, + "eslint-plugin-react": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.28.0.tgz", + "integrity": "sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==", + "dev": true, + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flatmap": "^1.2.5", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.0", + "object.values": "^1.1.5", + "prop-types": "^15.7.2", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.6" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "2.0.0-next.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz", + "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz", + "integrity": "sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==", + "dev": true, + "requires": {} + }, + "eslint-scope": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.0.tgz", + "integrity": "sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz", + "integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==", + "dev": true + }, + "espree": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.0.tgz", + "integrity": "sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==", + "dev": true, + "requires": { + "acorn": "^8.7.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^3.1.0" + } + }, "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, "estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true }, "esutils": { @@ -11569,12 +12751,6 @@ "jest-regex-util": "^26.0.0" } }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, "extend-shallow": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", @@ -11627,18 +12803,36 @@ } } }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "dev": true - }, "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "fast-glob": { + "version": "3.2.10", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.10.tgz", + "integrity": "sha512-s9nFhFnvR63wls6/kM88kQqDhMu0AfdjqouE2l5GVQPbqLgyFjjU5ry/r2yKsJxpb9Py1EYNqieFrmMaX4v++A==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -11651,6 +12845,15 @@ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, "fb-watchman": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", @@ -11660,6 +12863,15 @@ "bser": "2.1.1" } }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -11679,6 +12891,24 @@ "path-exists": "^4.0.0" } }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "dependencies": { + "flatted": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz", + "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==", + "dev": true + } + } + }, "flatted": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", @@ -11697,20 +12927,14 @@ "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=", "dev": true }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "dev": true - }, "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "requires": { "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", + "combined-stream": "^1.0.8", "mime-types": "^2.1.12" } }, @@ -11727,6 +12951,7 @@ "version": "9.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, "requires": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -11753,6 +12978,12 @@ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -11791,25 +13022,26 @@ "pump": "^3.0.0" } }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, "get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", "dev": true }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, "glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, "requires": { "fs.realpath": "^1.0.0", @@ -11820,16 +13052,48 @@ "path-is-absolute": "^1.0.0" } }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "dependencies": { + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + } + } + }, "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", + "dev": true }, "growly": { "version": "1.3.0", @@ -11838,22 +13102,6 @@ "dev": true, "optional": true }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "dev": true - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "dev": true, - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -11881,6 +13129,15 @@ "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", "dev": true }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, "has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", @@ -11954,15 +13211,25 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", "dev": true, "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "agent-base": "6", + "debug": "4" } }, "human-signals": { @@ -11980,10 +13247,34 @@ "safer-buffer": ">= 2.1.2 < 3" } }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + } + } + }, "import-local": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", - "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "requires": { "pkg-dir": "^4.2.0", @@ -12012,6 +13303,17 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, "is-accessor-descriptor": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", @@ -12022,12 +13324,13 @@ } }, "is-arguments": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", - "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, "requires": { - "call-bind": "^1.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, "is-arrayish": { @@ -12037,18 +13340,22 @@ "dev": true }, "is-bigint": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz", - "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==", - "dev": true + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } }, "is-boolean-object": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz", - "integrity": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "requires": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, "is-buffer": { @@ -12058,9 +13365,9 @@ "dev": true }, "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", "dev": true }, "is-ci": { @@ -12073,9 +13380,9 @@ } }, "is-core-module": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz", - "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", "dev": true, "requires": { "has": "^1.0.3" @@ -12091,10 +13398,13 @@ } }, "is-date-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", - "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==", - "dev": true + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-descriptor": { "version": "1.0.2", @@ -12123,6 +13433,12 @@ "is-plain-object": "^2.0.4" } }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -12135,6 +13451,15 @@ "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, "is-map": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", @@ -12142,9 +13467,9 @@ "dev": true }, "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", "dev": true }, "is-number": { @@ -12154,10 +13479,13 @@ "dev": true }, "is-number-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz", - "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==", - "dev": true + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-plain-object": { "version": "2.0.4", @@ -12175,13 +13503,13 @@ "dev": true }, "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "requires": { "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" + "has-tostringtag": "^1.0.0" } }, "is-set": { @@ -12190,17 +13518,26 @@ "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", "dev": true }, + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "dev": true + }, "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true }, "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==", - "dev": true + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-symbol": { "version": "1.0.4", @@ -12212,16 +13549,16 @@ } }, "is-typed-array": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz", - "integrity": "sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==", + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.8.tgz", + "integrity": "sha512-HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA==", "dev": true, "requires": { - "available-typed-arrays": "^1.0.2", + "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", - "es-abstract": "^1.18.0-next.2", + "es-abstract": "^1.18.5", "foreach": "^2.0.5", - "has-symbols": "^1.0.1" + "has-tostringtag": "^1.0.0" } }, "is-typedarray": { @@ -12236,11 +13573,24 @@ "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", "dev": true }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, "is-weakset": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.1.tgz", - "integrity": "sha512-pi4vhbhVHGLxohUw7PhGsueT4vRGFoXhP7+RGN0jKIv9+8PWYCQTqtADngrxOm2g46hoH0+g8uZZBzMrvVGDmw==", - "dev": true + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } }, "is-windows": { "version": "1.0.2", @@ -12276,16 +13626,10 @@ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", "dev": true }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", - "dev": true - }, "istanbul-lib-coverage": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", - "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true }, "istanbul-lib-instrument": { @@ -12312,9 +13656,9 @@ } }, "istanbul-lib-source-maps": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", - "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "requires": { "debug": "^4.1.1", @@ -12323,9 +13667,9 @@ } }, "istanbul-reports": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", - "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.3.tgz", + "integrity": "sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==", "dev": true, "requires": { "html-escaper": "^2.0.0", @@ -12399,18 +13743,40 @@ "jest-validate": "^26.6.2", "micromatch": "^4.0.2", "pretty-format": "^26.6.2" + }, + "dependencies": { + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } + } } }, "jest-diff": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", - "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "version": "27.4.6", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.6.tgz", + "integrity": "sha512-zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w==", "dev": true, "requires": { "chalk": "^4.0.0", - "diff-sequences": "^26.6.2", - "jest-get-type": "^26.3.0", - "pretty-format": "^26.6.2" + "diff-sequences": "^27.4.0", + "jest-get-type": "^27.4.0", + "pretty-format": "^27.4.6" + }, + "dependencies": { + "jest-get-type": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz", + "integrity": "sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==", + "dev": true + } } }, "jest-docblock": { @@ -12433,6 +13799,20 @@ "jest-get-type": "^26.3.0", "jest-util": "^26.6.2", "pretty-format": "^26.6.2" + }, + "dependencies": { + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } + } } }, "jest-environment-jsdom": { @@ -12516,6 +13896,20 @@ "jest-util": "^26.6.2", "pretty-format": "^26.6.2", "throat": "^5.0.0" + }, + "dependencies": { + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } + } } }, "jest-leak-detector": { @@ -12526,6 +13920,20 @@ "requires": { "jest-get-type": "^26.3.0", "pretty-format": "^26.6.2" + }, + "dependencies": { + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } + } } }, "jest-matcher-utils": { @@ -12538,6 +13946,38 @@ "jest-diff": "^26.6.2", "jest-get-type": "^26.3.0", "pretty-format": "^26.6.2" + }, + "dependencies": { + "diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "dev": true + }, + "jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } + } } }, "jest-message-util": { @@ -12555,6 +13995,20 @@ "pretty-format": "^26.6.2", "slash": "^3.0.0", "stack-utils": "^2.0.2" + }, + "dependencies": { + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } + } } }, "jest-mock": { @@ -12704,6 +14158,36 @@ "semver": "^7.3.2" }, "dependencies": { + "diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "dev": true + }, + "jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } + }, "semver": { "version": "7.3.5", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", @@ -12744,10 +14228,22 @@ }, "dependencies": { "camelcase": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true + }, + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dev": true, + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } } } }, @@ -12793,20 +14289,14 @@ "esprima": "^4.0.0" } }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "dev": true - }, "jsdom": { - "version": "16.5.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.5.3.tgz", - "integrity": "sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==", + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, "requires": { "abab": "^2.0.5", - "acorn": "^8.1.0", + "acorn": "^8.2.4", "acorn-globals": "^6.0.0", "cssom": "^0.4.4", "cssstyle": "^2.3.0", @@ -12814,12 +14304,13 @@ "decimal.js": "^10.2.1", "domexception": "^2.0.1", "escodegen": "^2.0.0", + "form-data": "^3.0.0", "html-encoding-sniffer": "^2.0.1", - "is-potential-custom-element-name": "^1.0.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", "nwsapi": "^2.2.0", "parse5": "6.0.1", - "request": "^2.88.2", - "request-promise-native": "^1.0.9", "saxes": "^5.0.1", "symbol-tree": "^3.2.4", "tough-cookie": "^4.0.0", @@ -12829,7 +14320,7 @@ "whatwg-encoding": "^1.0.5", "whatwg-mimetype": "^2.3.0", "whatwg-url": "^8.5.0", - "ws": "^7.4.4", + "ws": "^7.4.6", "xml-name-validator": "^3.0.0" } }, @@ -12840,15 +14331,15 @@ "dev": true }, "jsii": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/jsii/-/jsii-1.47.0.tgz", - "integrity": "sha512-cJ1cQfanSl+0vLVRJTwaWdx0dZ4DxIxYhydRlhuv/EFbQzeAVosy6fEnZ5IlPtWR89tF3k89R6w8DHVhPigjjQ==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/jsii/-/jsii-1.52.1.tgz", + "integrity": "sha512-kILHStPX3xeADtB/2Wda56Mzz/6KUw8xNr/k+dp84qn9YlZA81cW85tKK5biYCy/XAh5IPsWIZVFRqR8CSPMMw==", "dev": true, "requires": { - "@jsii/check-node": "1.47.0", - "@jsii/spec": "^1.47.0", + "@jsii/check-node": "1.52.1", + "@jsii/spec": "^1.52.1", "case": "^1.6.3", - "colors": "^1.4.0", + "colors": "1.4.0", "deep-equal": "^2.0.5", "fs-extra": "^9.1.0", "log4js": "^6.3.0", @@ -12921,20 +14412,20 @@ } }, "jsii-pacmak": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.47.0.tgz", - "integrity": "sha512-VGrHZsK2jv7NuPBULvJBJGF0hLpGwdJa7esI2qzOeX1UbHxXSOah9oboheYELbX5KCH3hSe2uDbcPSnEqIT68Q==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.52.1.tgz", + "integrity": "sha512-6bIGCtfu8UAr3dmddbyqGGyFyz4TOr5aC1eo4Cqwl23v/elkzxYV8TFCra9HksVxDi6UtTYJuypnExb4gsOcgQ==", "dev": true, "requires": { - "@jsii/check-node": "1.47.0", - "@jsii/spec": "^1.47.0", + "@jsii/check-node": "1.52.1", + "@jsii/spec": "^1.52.1", "clone": "^2.1.2", - "codemaker": "^1.47.0", + "codemaker": "^1.52.1", "commonmark": "^0.30.0", "escape-string-regexp": "^4.0.0", "fs-extra": "^9.1.0", - "jsii-reflect": "^1.47.0", - "jsii-rosetta": "^1.47.0", + "jsii-reflect": "^1.52.1", + "jsii-rosetta": "^1.52.1", "semver": "^7.3.5", "spdx-license-list": "^6.4.0", "xmlbuilder": "^15.1.1", @@ -12996,16 +14487,16 @@ } }, "jsii-reflect": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.47.0.tgz", - "integrity": "sha512-UgRWqkPI03wB6dGrTPA9UqUa37ORAnvaHGthWxNTcHIGIRHb4EfM29lYdbsRYO/+4/OiQLvdnZno1kw5rMyYcw==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.52.1.tgz", + "integrity": "sha512-OsTquiUJkgUu5jlK2VeshLFP9mBd1NU7vhHvcJZ+0xc/u2byfzPT0Irj2o6XLp30Vx/+uGGK6Nf6KyKtmUe82w==", "dev": true, "requires": { - "@jsii/check-node": "1.47.0", - "@jsii/spec": "^1.47.0", - "colors": "^1.4.0", + "@jsii/check-node": "1.52.1", + "@jsii/spec": "^1.52.1", + "colors": "1.4.0", "fs-extra": "^9.1.0", - "oo-ascii-tree": "^1.47.0", + "oo-ascii-tree": "^1.52.1", "yargs": "^16.2.0" }, "dependencies": { @@ -13055,14 +14546,14 @@ } }, "jsii-release": { - "version": "0.2.38", - "resolved": "https://registry.npmjs.org/jsii-release/-/jsii-release-0.2.38.tgz", - "integrity": "sha512-u+n6nKqgRKIjpmJPfHkzwCYjKHehX+Gycd9eSJJT9PMntZucCkvrrckOTkyne5Wpn+OAsTeSjUhSK/hQ5PKmdg==", + "version": "0.2.228", + "resolved": "https://registry.npmjs.org/jsii-release/-/jsii-release-0.2.228.tgz", + "integrity": "sha512-Rj/sThDL4JVealO/Vv/UtnNbP2FmTpq6gxXwIs15U3rXmQkAhHlYyPNxHElf7fCESb8RjP2xaoHALnnhi22iFQ==", "dev": true, "requires": { "@types/fs-extra": "^8.0.0", "fs-extra": "^8.0.0", - "shlex": "^2.0.2" + "shlex": "^2.1.0" }, "dependencies": { "fs-extra": { @@ -13094,17 +14585,17 @@ } }, "jsii-rosetta": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.47.0.tgz", - "integrity": "sha512-2XyGNsTOr027bRhDuVy0Ygfkg3/u0jV7F5jvpGWq8lbl0yw90mgfi7epQxFfcFZ7zYgEIx5pXfC5UInl/Ntaqw==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.52.1.tgz", + "integrity": "sha512-iFpupZWQusVYGHaUPooaO6xVAtRp+o1EOMBS2FcJBZcWGbB8fRG3zzpeMSkoqu/Pjqtu7boh45V90CXtSmVfMQ==", "dev": true, "requires": { - "@jsii/check-node": "1.47.0", - "@jsii/spec": "1.47.0", - "@xmldom/xmldom": "^0.7.5", + "@jsii/check-node": "1.52.1", + "@jsii/spec": "1.52.1", + "@xmldom/xmldom": "^0.8.0", "commonmark": "^0.30.0", "fs-extra": "^9.1.0", - "jsii": "1.47.0", + "jsii": "1.52.1", "sort-json": "^2.0.0", "typescript": "~3.9.10", "workerpool": "^6.1.5", @@ -13168,22 +14659,16 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", - "dev": true - }, "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true }, "json5": { @@ -13199,6 +14684,7 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, "requires": { "graceful-fs": "^4.1.6", "universalify": "^2.0.0" @@ -13207,18 +14693,17 @@ "jsonschema": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/jsonschema/-/jsonschema-1.4.0.tgz", - "integrity": "sha512-/YgW6pRMr6M7C+4o8kS+B/2myEpHCrxO4PEWnqJNBFMjn7EWXqlQ4tGwL6xTHeRplwuZmcAncdvfOad1nT2yMw==" + "integrity": "sha512-/YgW6pRMr6M7C+4o8kS+B/2myEpHCrxO4PEWnqJNBFMjn7EWXqlQ4tGwL6xTHeRplwuZmcAncdvfOad1nT2yMw==", + "dev": true }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "jsx-ast-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz", + "integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==", "dev": true, "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" + "array-includes": "^3.1.3", + "object.assign": "^4.1.2" } }, "kind-of": { @@ -13233,6 +14718,21 @@ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true }, + "language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", + "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==", + "dev": true + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "dev": true, + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, "leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -13250,9 +14750,9 @@ } }, "lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, "locate-path": { @@ -13270,10 +14770,10 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, "log4js": { @@ -13289,6 +14789,15 @@ "streamroller": "^2.2.4" } }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -13314,12 +14823,12 @@ "dev": true }, "makeerror": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", - "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "requires": { - "tmpl": "1.0.x" + "tmpl": "1.0.5" } }, "map-cache": { @@ -13337,17 +14846,6 @@ "object-visit": "^1.0.0" } }, - "md5": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", - "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", - "dev": true, - "requires": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" - } - }, "mdurl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", @@ -13360,6 +14858,12 @@ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, "micromatch": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", @@ -13371,18 +14875,18 @@ } }, "mime-db": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz", - "integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==", + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", "dev": true }, "mime-types": { - "version": "2.1.30", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz", - "integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==", + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", "dev": true, "requires": { - "mime-db": "1.47.0" + "mime-db": "1.51.0" } }, "mimic-fn": { @@ -13395,6 +14899,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "requires": { "brace-expansion": "^1.1.7" } @@ -13464,12 +14969,6 @@ "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", "dev": true }, - "node-modules-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", - "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", - "dev": true - }, "node-notifier": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz", @@ -13498,9 +14997,9 @@ } }, "node-releases": { - "version": "1.1.72", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.72.tgz", - "integrity": "sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", + "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==", "dev": true }, "normalize-package-data": { @@ -13544,10 +15043,10 @@ "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", "dev": true }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true }, "object-copy": { @@ -13619,9 +15118,9 @@ } }, "object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", "dev": true }, "object-is": { @@ -13661,6 +15160,38 @@ "object-keys": "^1.1.1" } }, + "object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", + "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.hasown": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz", + "integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, "object.pick": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", @@ -13670,6 +15201,17 @@ "isobject": "^3.0.1" } }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -13689,9 +15231,9 @@ } }, "oo-ascii-tree": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.47.0.tgz", - "integrity": "sha512-m8ZGdK0JSMFOZyjV0kkzBwcbPMGqW5WhCYp4CgPrJz4/y128hwhWGB8x4G7b5CAKRNo583y51kL0UCklaxt1Nw==", + "version": "1.52.1", + "resolved": "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.52.1.tgz", + "integrity": "sha512-hcQSkW/WkZFWqK878X+Bo8vD2Axo9FBQBGeTLANgWOay7IVFUvLmqbFUyfovzD+/L4ak1n/BdsWfSL/0a3NT2w==", "dev": true }, "optionator": { @@ -13744,6 +15286,15 @@ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, "parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", @@ -13787,31 +15338,34 @@ "dev": true }, "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "picomatch": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz", - "integrity": "sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true }, "pirates": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", - "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", - "dev": true, - "requires": { - "node-modules-regexp": "^1.0.0" - } + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", + "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==", + "dev": true }, "pkg-dir": { "version": "4.2.0", @@ -13834,28 +15388,66 @@ "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", "dev": true }, + "prettier": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", + "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", + "dev": true + }, "pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "version": "27.4.6", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.6.tgz", + "integrity": "sha512-NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g==", "dev": true, "requires": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } } }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, "prompts": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.1.tgz", - "integrity": "sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "requires": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" } }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + } + } + }, "psl": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", @@ -13878,10 +15470,10 @@ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, "react-is": { @@ -13929,6 +15521,12 @@ } } }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==", + "dev": true + }, "regex-not": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", @@ -13949,6 +15547,12 @@ "define-properties": "^1.1.3" } }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, "remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", @@ -13967,96 +15571,12 @@ "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", "dev": true }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "dev": true - } - } - }, - "request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", - "dev": true, - "requires": { - "lodash": "^4.17.19" - } - }, - "request-promise-native": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", - "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", - "dev": true, - "requires": { - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - }, - "dependencies": { - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - } - } - }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, "require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", @@ -14064,13 +15584,14 @@ "dev": true }, "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", + "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", "dev": true, "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "is-core-module": "^2.8.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" } }, "resolve-cwd": { @@ -14100,6 +15621,12 @@ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, "rfdc": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", @@ -14121,6 +15648,15 @@ "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", "dev": true }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", @@ -14389,7 +15925,8 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true }, "semver-intersect": { "version": "1.4.0", @@ -14466,9 +16003,9 @@ "optional": true }, "shlex": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/shlex/-/shlex-2.0.2.tgz", - "integrity": "sha512-i4p9nNXgBTILspHwZlBCNsZzwuVWW8SFx5dyIONrjL0R+AbMOPbg7ndqgGfjYivkYRTtZMKqIT8HT+QyOhPQWA==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/shlex/-/shlex-2.1.0.tgz", + "integrity": "sha512-Tk8PjohJbWpGu2NtAlsEi/9AS4GU2zW2ZWLFrWRDskZpSJmyBIU3nTkBtocxD90r3w4BwRevsNtIqIP9HMuYiQ==", "dev": true }, "side-channel": { @@ -14483,9 +16020,9 @@ } }, "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", + "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", "dev": true }, "sisteransi": { @@ -14500,17 +16037,6 @@ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true }, - "slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - } - }, "snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -14712,9 +16238,9 @@ } }, "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "requires": { "buffer-from": "^1.0.0", @@ -14754,9 +16280,9 @@ } }, "spdx-license-ids": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.8.tgz", - "integrity": "sha512-NDgA96EnaLSvtbM7trJj+t1LUR3pirkDCcz9nOUlPb5DMBGsH7oES6C3hs3j7R9oHEa1EMvReS/BUAIT5Tcr0g==", + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==", "dev": true }, "spdx-license-list": { @@ -14780,27 +16306,10 @@ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", "dev": true }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "dev": true, - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, "stack-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", "dev": true, "requires": { "escape-string-regexp": "^2.0.0" @@ -14892,12 +16401,6 @@ } } }, - "stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", - "dev": true - }, "streamroller": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz", @@ -14964,6 +16467,22 @@ "strip-ansi": "^6.0.1" } }, + "string.prototype.matchall": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", + "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + } + }, "string.prototype.repeat": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz", @@ -15017,6 +16536,12 @@ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -15036,45 +16561,18 @@ "supports-color": "^7.0.0" } }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, "symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, - "table": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", - "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", - "dev": true, - "requires": { - "ajv": "^8.0.1", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ajv": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", - "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } - } - }, "terminal-link": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", @@ -15096,6 +16594,12 @@ "minimatch": "^3.0.4" } }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, "throat": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", @@ -15103,9 +16607,9 @@ "dev": true }, "tmpl": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", - "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, "to-fast-properties": { @@ -15175,9 +16679,9 @@ } }, "tr46": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", - "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "dev": true, "requires": { "punycode": "^2.1.1" @@ -15212,6 +16716,35 @@ } } }, + "tsconfig-paths": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz", + "integrity": "sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==", + "dev": true, + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + } + } + }, "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", @@ -15274,12 +16807,6 @@ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true - }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", @@ -15327,21 +16854,6 @@ "tslib": "^1.8.1" } }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dev": true, - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "dev": true - }, "type-check": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", @@ -15373,9 +16885,9 @@ } }, "typescript": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", - "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz", + "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==", "dev": true }, "unbox-primitive": { @@ -15413,7 +16925,8 @@ "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true }, "unset-value": { "version": "1.0.0", @@ -15489,6 +17002,12 @@ "dev": true, "optional": true }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, "v8-to-istanbul": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz", @@ -15518,17 +17037,6 @@ "spdx-expression-parse": "^3.0.0" } }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, "w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", @@ -15548,12 +17056,12 @@ } }, "walker": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", - "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "requires": { - "makeerror": "1.0.x" + "makeerror": "1.0.12" } }, "webidl-conversions": { @@ -15578,13 +17086,13 @@ "dev": true }, "whatwg-url": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.5.0.tgz", - "integrity": "sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg==", + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dev": true, "requires": { "lodash": "^4.7.0", - "tr46": "^2.0.2", + "tr46": "^2.1.0", "webidl-conversions": "^6.1.0" } }, @@ -15629,18 +17137,17 @@ "dev": true }, "which-typed-array": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", - "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.7.tgz", + "integrity": "sha512-vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw==", "dev": true, "requires": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.0", - "es-abstract": "^1.18.0-next.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.18.5", "foreach": "^2.0.5", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.1", - "is-typed-array": "^1.1.3" + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.7" } }, "word-wrap": { @@ -15685,9 +17192,9 @@ } }, "ws": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz", - "integrity": "sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==", + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz", + "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", "dev": true, "requires": {} }, @@ -15759,9 +17266,9 @@ } }, "yargs-parser": { - "version": "20.2.7", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz", - "integrity": "sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==", + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true } } diff --git a/package.json b/package.json index 7ae60d9..534cfba 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,10 @@ "release-npm": "jsii-release-npm", "release-pypi": "jsii-release-pypi", "test": "jest", - "lint": "tslint --project tsconfig.json --config tslint.yaml" + "lint": "eslint --ext .js,.jsx,.ts,.tsx ./lib/", + "lint:fix": "eslint --ext .js,.jsx,.ts,.tsx ./lib/ --fix", + "format": "prettier . --write", + "format:check": "prettier . --check" }, "jsii": { "outdir": "dist", @@ -40,34 +43,26 @@ } }, "devDependencies": { - "@aws-cdk/assert": "^1.137.0", + "@moia-oss/eslint-prettier-typescript-config": "^0.11.3", "@types/jest": "^27.0.0", "@types/node": "16.11.12", + "constructs": "10.0.31", + "aws-cdk-lib": "2.7.0", + "eslint": "^8.6.0", "jest": "^26.6.3", - "jsii": "^1.30.0", - "jsii-pacmak": "^1.32.0", + "jsii": "^1.52.1", + "jsii-pacmak": "^1.52.1", "jsii-release": "^0.2.30", + "prettier": "^2.5.1", "ts-jest": "^26.5.6", "tslint": "^6.1.3", "typescript": "^4.5.2" }, "peerDependencies": { - "@aws-cdk/aws-ec2": "^1.137.0", - "@aws-cdk/aws-elasticache": "^1.137.0", - "@aws-cdk/aws-iam": "^1.137.0", - "@aws-cdk/aws-rds": "^1.137.0", - "@aws-cdk/aws-redshift": "^1.137.0", - "@aws-cdk/core": "^1.137.0", - "constructs": "^3.0.3" - }, - "dependencies": { - "@aws-cdk/aws-ec2": "^1.137.0", - "@aws-cdk/aws-elasticache": "^1.137.0", - "@aws-cdk/aws-iam": "^1.137.0", - "@aws-cdk/aws-rds": "^1.137.0", - "@aws-cdk/aws-redshift": "^1.137.0", - "@aws-cdk/core": "^1.137.0" + "constructs": "^10.0.31", + "aws-cdk-lib": "^2.7.0" }, + "dependencies": {}, "jest": { "moduleFileExtensions": [ "js" diff --git a/test/aurora-serverless.test.ts b/test/aurora-serverless.test.ts index 160e128..2460d20 100644 --- a/test/aurora-serverless.test.ts +++ b/test/aurora-serverless.test.ts @@ -11,19 +11,19 @@ limitations under the License. */ -import { expect as expectCDK, haveResource } from '@aws-cdk/assert'; +import { Template } from 'aws-cdk-lib/assertions'; import { strict as assert } from 'assert'; -import * as cdk from '@aws-cdk/core'; -import * as ec2 from '@aws-cdk/aws-ec2'; -import * as rds from '@aws-cdk/aws-rds'; +import { App, Stack } from 'aws-cdk-lib'; +import { SecurityGroup, Vpc } from 'aws-cdk-lib/aws-ec2'; +import { DatabaseClusterEngine, ServerlessCluster } from 'aws-cdk-lib/aws-rds'; import { BastionHostAuroraServerlessForward } from '../lib/aurora-serverless'; test('Bastion Host created for normal username/password access', () => { - const app = new cdk.App(); - const stack = new cdk.Stack(app, 'TestStack'); - const testVpc = new ec2.Vpc(stack, 'TestVpc'); - const testAurora = new rds.ServerlessCluster(stack, 'TestAurora', { - engine: rds.DatabaseClusterEngine.AURORA, + const app = new App(); + const stack = new Stack(app, 'TestStack'); + const testVpc = new Vpc(stack, 'TestVpc'); + const testAurora = new ServerlessCluster(stack, 'TestAurora', { + engine: DatabaseClusterEngine.AURORA, vpc: testVpc, }); @@ -35,55 +35,48 @@ test('Bastion Host created for normal username/password access', () => { clientTimeout: 2, }); + const template = Template.fromStack(stack); + // THEN - expectCDK(stack).to(haveResource('AWS::EC2::Instance', { + template.hasResourceProperties('AWS::EC2::Instance', { UserData: { 'Fn::Base64': { 'Fn::Join': [ '', [ - 'Content-Type: multipart/mixed; boundary=\"//\"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"cloud-config.txt\"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"userdata.txt\"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho \"listen database\n bind 0.0.0.0:', + 'Content-Type: multipart/mixed; boundary="//"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="cloud-config.txt"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="userdata.txt"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho "listen database\n bind 0.0.0.0:', { - "Fn::GetAtt": [ - "TestAurora252434E9", - "Endpoint.Port" - ] + 'Fn::GetAtt': ['TestAurora252434E9', 'Endpoint.Port'], }, '\n timeout connect 10s\n timeout client 2m\n timeout server 1m\n mode tcp\n server service ', { - 'Fn::GetAtt': [ - 'TestAurora252434E9', - 'Endpoint.Address' - ] + 'Fn::GetAtt': ['TestAurora252434E9', 'Endpoint.Address'], }, ':', { - "Fn::GetAtt": [ - "TestAurora252434E9", - "Endpoint.Port" - ] + 'Fn::GetAtt': ['TestAurora252434E9', 'Endpoint.Port'], }, - '\n\" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//' - ] - ] + '\n" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//', + ], + ], }, }, Tags: [ { Key: 'Name', - Value: 'MyBastion' - } + Value: 'MyBastion', + }, ], - })); + }); }); test('Bastion Host created with extended Role for IAM Connection', () => { - const app = new cdk.App(); - const stack = new cdk.Stack(app, 'TestStack'); - const testVpc = new ec2.Vpc(stack, 'TestVpc'); - const testAurora = new rds.ServerlessCluster(stack, 'TestAurora', { - engine: rds.DatabaseClusterEngine.AURORA, - vpc: testVpc + const app = new App(); + const stack = new Stack(app, 'TestStack'); + const testVpc = new Vpc(stack, 'TestVpc'); + const testAurora = new ServerlessCluster(stack, 'TestAurora', { + engine: DatabaseClusterEngine.AURORA, + vpc: testVpc, }); // WHEN @@ -95,64 +88,49 @@ test('Bastion Host created with extended Role for IAM Connection', () => { resourceIdentifier: 'db-ABCDEFGH', }); + const template = Template.fromStack(stack); // THEN - expectCDK(stack).to(haveResource('AWS::EC2::Instance', { + template.hasResourceProperties('AWS::EC2::Instance', { UserData: { 'Fn::Base64': { 'Fn::Join': [ '', [ - 'Content-Type: multipart/mixed; boundary=\"//\"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"cloud-config.txt\"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"userdata.txt\"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho \"listen database\n bind 0.0.0.0:', + 'Content-Type: multipart/mixed; boundary="//"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="cloud-config.txt"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="userdata.txt"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho "listen database\n bind 0.0.0.0:', { - "Fn::GetAtt": [ - "TestAurora252434E9", - "Endpoint.Port" - ] + 'Fn::GetAtt': ['TestAurora252434E9', 'Endpoint.Port'], }, '\n timeout connect 10s\n timeout client 1m\n timeout server 1m\n mode tcp\n server service ', { - 'Fn::GetAtt': [ - 'TestAurora252434E9', - 'Endpoint.Address' - ] + 'Fn::GetAtt': ['TestAurora252434E9', 'Endpoint.Address'], }, ':', { - "Fn::GetAtt": [ - "TestAurora252434E9", - "Endpoint.Port" - ] + 'Fn::GetAtt': ['TestAurora252434E9', 'Endpoint.Port'], }, - '\n\" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//' - ] - ] + '\n" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//', + ], + ], }, }, Tags: [ { Key: 'Name', - Value: 'MyBastionWithIAMAccess' - } + Value: 'MyBastionWithIAMAccess', + }, ], - })); - expectCDK(stack).to(haveResource('AWS::IAM::Policy', { + }); + template.hasResourceProperties('AWS::IAM::Policy', { PolicyDocument: { Version: '2012-10-17', Statement: [ { - Action: [ - 'ssmmessages:*', - 'ssm:UpdateInstanceInformation', - 'ec2messages:*' - ], + Action: ['ssmmessages:*', 'ssm:UpdateInstanceInformation', 'ec2messages:*'], Effect: 'Allow', - Resource: '*' + Resource: '*', }, { - Action: [ - 'rds-db:connect', - 'rds:*' - ], + Action: ['rds-db:connect', 'rds:*'], Effect: 'Allow', Resource: [ { @@ -161,15 +139,15 @@ test('Bastion Host created with extended Role for IAM Connection', () => { [ 'arn:aws:rds-db:', { - 'Ref': 'AWS::Region' + Ref: 'AWS::Region', }, ':', { - 'Ref': 'AWS::AccountId' + Ref: 'AWS::AccountId', }, - ':dbuser:db-ABCDEFGH/iamuser' - ] - ] + ':dbuser:db-ABCDEFGH/iamuser', + ], + ], }, { 'Fn::Join': [ @@ -177,44 +155,44 @@ test('Bastion Host created with extended Role for IAM Connection', () => { [ 'arn:', { - 'Ref': 'AWS::Partition' + Ref: 'AWS::Partition', }, ':rds:', { - 'Ref': 'AWS::Region' + Ref: 'AWS::Region', }, ':', { - 'Ref': 'AWS::AccountId' + Ref: 'AWS::AccountId', }, ':cluster:', { - 'Ref': 'TestAurora252434E9', - } - ] - ] - } - ] - } - ] - } - })); + Ref: 'TestAurora252434E9', + }, + ], + ], + }, + ], + }, + ], + }, + }); }); test('Bastion Host with own securityGroup', () => { - const app = new cdk.App(); - const stack = new cdk.Stack(app, 'TestStack'); - const testVpc = new ec2.Vpc(stack, 'TestVpc'); - const securityGroup = new ec2.SecurityGroup(stack, 'SecurityGroup', { + const app = new App(); + const stack = new Stack(app, 'TestStack'); + const testVpc = new Vpc(stack, 'TestVpc'); + const securityGroup = new SecurityGroup(stack, 'SecurityGroup', { vpc: testVpc, allowAllOutbound: false, description: 'My test securityGroup description', securityGroupName: 'MyTestSecurityGroupName', }); - const testAurora = new rds.ServerlessCluster(stack, 'TestAurora', { - engine: rds.DatabaseClusterEngine.AURORA, - vpc: testVpc + const testAurora = new ServerlessCluster(stack, 'TestAurora', { + engine: DatabaseClusterEngine.AURORA, + vpc: testVpc, }); // WHEN @@ -224,8 +202,8 @@ test('Bastion Host with own securityGroup', () => { serverlessCluster: testAurora, securityGroup, }); - const bastionHostSecurityGroup = bastionHost.securityGroup as ec2.SecurityGroup; + const bastionHostSecurityGroup = bastionHost.securityGroup as SecurityGroup; - assert.equal(securityGroup.securityGroupName, bastionHostSecurityGroup.securityGroupName); + assert.equal(securityGroup.securityGroupId, bastionHostSecurityGroup.securityGroupId); assert.equal(securityGroup.allowAllOutbound, bastionHostSecurityGroup.allowAllOutbound); }); diff --git a/test/generic-bastion-host-forward.test.ts b/test/generic-bastion-host-forward.test.ts new file mode 100644 index 0000000..12953f6 --- /dev/null +++ b/test/generic-bastion-host-forward.test.ts @@ -0,0 +1,73 @@ +/* + Copyright 2020 MOIA GmbH + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License 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. +*/ + +import { Template } from 'aws-cdk-lib/assertions'; +import { App, Stack } from 'aws-cdk-lib'; +import { strict as assert } from 'assert'; +import { SecurityGroup, Vpc } from 'aws-cdk-lib/aws-ec2'; +import { GenericBastionHostForward } from '../lib/generic-bastion-host-forward'; + +test('Bastion Host created for normal access', () => { + const app = new App(); + const stack = new Stack(app, 'TestStack'); + const testVpc = new Vpc(stack, 'TestVpc'); + // WHEN + new GenericBastionHostForward(stack, 'MyTestConstruct', { + vpc: testVpc, + name: 'MyRedisBastion', + address: '127.0.0.1', + port: '6379', + clientTimeout: 20, + }); + + const template = Template.fromStack(stack); + + // THEN + template.hasResourceProperties('AWS::EC2::Instance', { + UserData: { + 'Fn::Base64': + 'Content-Type: multipart/mixed; boundary="//"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="cloud-config.txt"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="userdata.txt"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho "listen database\n bind 0.0.0.0:6379\n timeout connect 10s\n timeout client 20m\n timeout server 1m\n mode tcp\n server service 127.0.0.1:6379\n" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//', + }, + Tags: [ + { + Key: 'Name', + Value: 'MyRedisBastion', + }, + ], + }); +}); + +test('Bastion Host with own securityGroup', () => { + const app = new App(); + const stack = new Stack(app, 'TestStack'); + const testVpc = new Vpc(stack, 'TestVpc'); + const securityGroup = new SecurityGroup(stack, 'SecurityGroup', { + vpc: testVpc, + allowAllOutbound: false, + description: 'My test securityGroup description', + securityGroupName: 'MyTestSecurityGroupName', + }); + + // WHEN + const bastionHost = new GenericBastionHostForward(stack, 'MyTestConstruct', { + vpc: testVpc, + name: 'MyRedShiftBastion', + securityGroup, + address: '127.0.0.1', + port: '6379', + }); + const bastionHostSecurityGroup = bastionHost.securityGroup as SecurityGroup; + + assert.equal(securityGroup.securityGroupId, bastionHostSecurityGroup.securityGroupId); + assert.equal(securityGroup.allowAllOutbound, bastionHostSecurityGroup.allowAllOutbound); +}); diff --git a/test/rds.test.ts b/test/rds.test.ts index a91e662..8fc5cc5 100644 --- a/test/rds.test.ts +++ b/test/rds.test.ts @@ -11,223 +11,202 @@ limitations under the License. */ -import { expect as expectCDK, haveResource } from '@aws-cdk/assert'; +import { Template } from 'aws-cdk-lib/assertions'; import { strict as assert } from 'assert'; -import * as cdk from '@aws-cdk/core'; -import * as ec2 from '@aws-cdk/aws-ec2'; -import * as rds from '@aws-cdk/aws-rds'; +import { App, Stack } from 'aws-cdk-lib'; +import { InstanceClass, InstanceSize, InstanceType, SecurityGroup, Vpc } from 'aws-cdk-lib/aws-ec2'; +import { DatabaseInstance, DatabaseInstanceEngine } from 'aws-cdk-lib/aws-rds'; import { BastionHostRDSForward } from '../lib/rds'; test('Bastion Host created for normal username/password access', () => { - const app = new cdk.App(); - const stack = new cdk.Stack(app, 'TestStack'); - const testVpc = new ec2.Vpc(stack, 'TestVpc'); - const testRds = new rds.DatabaseInstance(stack, 'TestRDS', { - engine: rds.DatabaseInstanceEngine.POSTGRES, - instanceType: ec2.InstanceType.of(ec2.InstanceClass.T3, ec2.InstanceSize.MICRO), - vpc: testVpc - }); + const app = new App(); + const stack = new Stack(app, 'TestStack'); + const testVpc = new Vpc(stack, 'TestVpc'); + const testRds = new DatabaseInstance(stack, 'TestRDS', { + engine: DatabaseInstanceEngine.POSTGRES, + instanceType: InstanceType.of(InstanceClass.T3, InstanceSize.MICRO), + vpc: testVpc, + }); - // WHEN - new BastionHostRDSForward(stack, 'MyTestConstruct', { - vpc: testVpc, - name: 'MyBastion', - rdsInstance: testRds, - clientTimeout: 2, - }); + // WHEN + new BastionHostRDSForward(stack, 'MyTestConstruct', { + vpc: testVpc, + name: 'MyBastion', + rdsInstance: testRds, + clientTimeout: 2, + }); - // THEN - expectCDK(stack).to(haveResource('AWS::EC2::Instance', { - UserData: { - 'Fn::Base64': { - 'Fn::Join': [ - '', - [ - 'Content-Type: multipart/mixed; boundary=\"//\"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"cloud-config.txt\"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"userdata.txt\"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho \"listen database\n bind 0.0.0.0:', - { - 'Fn::GetAtt': [ - 'TestRDSDF309CB7', - 'Endpoint.Port' - ] - }, - '\n timeout connect 10s\n timeout client 2m\n timeout server 1m\n mode tcp\n server service ', - { - 'Fn::GetAtt': [ - 'TestRDSDF309CB7', - 'Endpoint.Address' - ] - }, - ':', - { - 'Fn::GetAtt': [ - 'TestRDSDF309CB7', - 'Endpoint.Port' - ] - }, - '\n\" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//' - ] - ] - }, + const template = Template.fromStack(stack); + + // THEN + template.hasResourceProperties('AWS::EC2::Instance', { + UserData: { + 'Fn::Base64': { + 'Fn::Join': [ + '', + [ + 'Content-Type: multipart/mixed; boundary="//"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="cloud-config.txt"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="userdata.txt"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho "listen database\n bind 0.0.0.0:', + { + 'Fn::GetAtt': ['TestRDSDF309CB7', 'Endpoint.Port'], + }, + '\n timeout connect 10s\n timeout client 2m\n timeout server 1m\n mode tcp\n server service ', + { + 'Fn::GetAtt': ['TestRDSDF309CB7', 'Endpoint.Address'], + }, + ':', + { + 'Fn::GetAtt': ['TestRDSDF309CB7', 'Endpoint.Port'], + }, + '\n" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//', + ], + ], }, - Tags: [ - { - Key: 'Name', - Value: 'MyBastion' - } - ], - })); + }, + Tags: [ + { + Key: 'Name', + Value: 'MyBastion', + }, + ], + }); }); test('Bastion Host created with extended Role for IAM RDS Connection', () => { - const app = new cdk.App(); - const stack = new cdk.Stack(app, 'TestStack'); - const testVpc = new ec2.Vpc(stack, 'TestVpc'); - const testRds = new rds.DatabaseInstance(stack, 'TestRDS', { - engine: rds.DatabaseInstanceEngine.POSTGRES, - instanceType: ec2.InstanceType.of(ec2.InstanceClass.T3, ec2.InstanceSize.MICRO), - vpc: testVpc - }); + const app = new App(); + const stack = new Stack(app, 'TestStack'); + const testVpc = new Vpc(stack, 'TestVpc'); + const testRds = new DatabaseInstance(stack, 'TestRDS', { + engine: DatabaseInstanceEngine.POSTGRES, + instanceType: InstanceType.of(InstanceClass.T3, InstanceSize.MICRO), + vpc: testVpc, + }); - // WHEN - new BastionHostRDSForward(stack, 'MyTestConstruct', { - vpc: testVpc, - name: 'MyBastionWithIAMAccess', - rdsInstance: testRds, - iamUser: 'iamuser', - rdsResourceIdentifier: 'db-ABCDEFGH', - }); + // WHEN + new BastionHostRDSForward(stack, 'MyTestConstruct', { + vpc: testVpc, + name: 'MyBastionWithIAMAccess', + rdsInstance: testRds, + iamUser: 'iamuser', + rdsResourceIdentifier: 'db-ABCDEFGH', + }); - // THEN - expectCDK(stack).to(haveResource('AWS::EC2::Instance', { - UserData: { - 'Fn::Base64': { - 'Fn::Join': [ - '', - [ - 'Content-Type: multipart/mixed; boundary=\"//\"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"cloud-config.txt\"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"userdata.txt\"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho \"listen database\n bind 0.0.0.0:', { - 'Fn::GetAtt': [ - 'TestRDSDF309CB7', - 'Endpoint.Port' - ] - }, - '\n timeout connect 10s\n timeout client 1m\n timeout server 1m\n mode tcp\n server service ', - { - 'Fn::GetAtt': [ - 'TestRDSDF309CB7', - 'Endpoint.Address' - ] - }, - ':', - { - 'Fn::GetAtt': [ - 'TestRDSDF309CB7', - 'Endpoint.Port' - ] - }, - '\n\" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//' - ] - ] - }, + const template = Template.fromStack(stack); + // THEN + template.hasResourceProperties('AWS::EC2::Instance', { + UserData: { + 'Fn::Base64': { + 'Fn::Join': [ + '', + [ + 'Content-Type: multipart/mixed; boundary="//"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="cloud-config.txt"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename="userdata.txt"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho "listen database\n bind 0.0.0.0:', + { + 'Fn::GetAtt': ['TestRDSDF309CB7', 'Endpoint.Port'], + }, + '\n timeout connect 10s\n timeout client 1m\n timeout server 1m\n mode tcp\n server service ', + { + 'Fn::GetAtt': ['TestRDSDF309CB7', 'Endpoint.Address'], + }, + ':', + { + 'Fn::GetAtt': ['TestRDSDF309CB7', 'Endpoint.Port'], + }, + '\n" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//', + ], + ], + }, + }, + Tags: [ + { + Key: 'Name', + Value: 'MyBastionWithIAMAccess', }, - Tags: [ + ], + }); + template.hasResourceProperties('AWS::IAM::Policy', { + PolicyDocument: { + Version: '2012-10-17', + Statement: [ { - Key: 'Name', - Value: 'MyBastionWithIAMAccess' - } + Action: ['ssmmessages:*', 'ssm:UpdateInstanceInformation', 'ec2messages:*'], + Effect: 'Allow', + Resource: '*', + }, + { + Action: ['rds-db:connect', 'rds:*'], + Effect: 'Allow', + Resource: [ + { + 'Fn::Join': [ + '', + [ + 'arn:aws:rds-db:', + { + Ref: 'AWS::Region', + }, + ':', + { + Ref: 'AWS::AccountId', + }, + ':dbuser:db-ABCDEFGH/iamuser', + ], + ], + }, + { + 'Fn::Join': [ + '', + [ + 'arn:', + { + Ref: 'AWS::Partition', + }, + ':rds:', + { + Ref: 'AWS::Region', + }, + ':', + { + Ref: 'AWS::AccountId', + }, + ':db:', + { + Ref: 'TestRDSDF309CB7', + }, + ], + ], + }, + ], + }, ], - })); - expectCDK(stack).to(haveResource('AWS::IAM::Policy', { - PolicyDocument: { - Version: '2012-10-17', - Statement: [ - { - Action: [ - 'ssmmessages:*', - 'ssm:UpdateInstanceInformation', - 'ec2messages:*' - ], - Effect: 'Allow', - Resource: '*' - }, - { - Action: [ - 'rds-db:connect', - 'rds:*' - ], - Effect: 'Allow', - Resource: [ - { - 'Fn::Join': [ - '', - [ - 'arn:aws:rds-db:', - { - 'Ref': 'AWS::Region' - }, - ':', - { - 'Ref': 'AWS::AccountId' - }, - ':dbuser:db-ABCDEFGH/iamuser' - ] - ] - }, - { - 'Fn::Join': [ - '', - [ - 'arn:', - { - 'Ref': 'AWS::Partition' - }, - ':rds:', - { - 'Ref': 'AWS::Region' - }, - ':', - { - 'Ref': 'AWS::AccountId' - }, - ':db:', - { - 'Ref': 'TestRDSDF309CB7' - } - ] - ] - } - ] - } - ] - } - })); + }, + }); }); test('Bastion Host with own securityGroup', () => { - const app = new cdk.App(); - const stack = new cdk.Stack(app, 'TestStack'); - const testVpc = new ec2.Vpc(stack, 'TestVpc'); - const securityGroup = new ec2.SecurityGroup(stack, 'SecurityGroup', { - vpc: testVpc, - allowAllOutbound: false, - description: 'My test securityGroup description', - securityGroupName: 'MyTestSecurityGroupName', - }); + const app = new App(); + const stack = new Stack(app, 'TestStack'); + const testVpc = new Vpc(stack, 'TestVpc'); + const securityGroup = new SecurityGroup(stack, 'SecurityGroup', { + vpc: testVpc, + allowAllOutbound: false, + description: 'My test securityGroup description', + securityGroupName: 'MyTestSecurityGroupName', + }); - const testRds = new rds.DatabaseInstance(stack, 'TestRDS', { - engine: rds.DatabaseInstanceEngine.POSTGRES, - instanceType: ec2.InstanceType.of(ec2.InstanceClass.T3, ec2.InstanceSize.MICRO), - vpc: testVpc - }); + const testRds = new DatabaseInstance(stack, 'TestRDS', { + engine: DatabaseInstanceEngine.POSTGRES, + instanceType: InstanceType.of(InstanceClass.T3, InstanceSize.MICRO), + vpc: testVpc, + }); - // WHEN - const bastionHost = new BastionHostRDSForward(stack, 'MyTestConstruct', { - vpc: testVpc, - name: 'MyBastion', - rdsInstance: testRds, - securityGroup, - }); - const bastionHostSecurityGroup = bastionHost.securityGroup as ec2.SecurityGroup; + // WHEN + const bastionHost = new BastionHostRDSForward(stack, 'MyTestConstruct', { + vpc: testVpc, + name: 'MyBastion', + rdsInstance: testRds, + securityGroup, + }); + const bastionHostSecurityGroup = bastionHost.securityGroup as SecurityGroup; - assert.equal(securityGroup.securityGroupName, bastionHostSecurityGroup.securityGroupName); - assert.equal(securityGroup.allowAllOutbound, bastionHostSecurityGroup.allowAllOutbound); + assert.equal(securityGroup.securityGroupId, bastionHostSecurityGroup.securityGroupId); + assert.equal(securityGroup.allowAllOutbound, bastionHostSecurityGroup.allowAllOutbound); }); diff --git a/test/redis.test.ts b/test/redis.test.ts deleted file mode 100644 index e7ff3f8..0000000 --- a/test/redis.test.ts +++ /dev/null @@ -1,70 +0,0 @@ -/* - Copyright 2020 MOIA GmbH - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License 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. -*/ - -import { expect as expectCDK, haveResource } from '@aws-cdk/assert'; -import { strict as assert } from 'assert'; -import * as cdk from '@aws-cdk/core'; -import * as ec2 from '@aws-cdk/aws-ec2'; -import { BastionHostRedisForward } from '../lib/redis'; - -test('Bastion Host created for normal access', () => { - const app = new cdk.App(); - const stack = new cdk.Stack(app, 'TestStack'); - const testVpc = new ec2.Vpc(stack, 'TestVpc'); - // WHEN - new BastionHostRedisForward(stack, 'MyTestConstruct', { - vpc: testVpc, - name: 'MyRedisBastion', - address: '127.0.0.1', - port: '6379', - clientTimeout: 20, - }); - - // THEN - expectCDK(stack).to(haveResource('AWS::EC2::Instance', { - UserData: { - 'Fn::Base64': 'Content-Type: multipart/mixed; boundary=\"//\"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"cloud-config.txt\"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"userdata.txt\"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho \"listen database\n bind 0.0.0.0:6379\n timeout connect 10s\n timeout client 20m\n timeout server 1m\n mode tcp\n server service 127.0.0.1:6379\n\" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//' - }, - Tags: [ - { - Key: 'Name', - Value: 'MyRedisBastion' - } - ], - })); -}); - -test('Bastion Host with own securityGroup', () => { - const app = new cdk.App(); - const stack = new cdk.Stack(app, 'TestStack'); - const testVpc = new ec2.Vpc(stack, 'TestVpc'); - const securityGroup = new ec2.SecurityGroup(stack, 'SecurityGroup', { - vpc: testVpc, - allowAllOutbound: false, - description: 'My test securityGroup description', - securityGroupName: 'MyTestSecurityGroupName', - }); - - // WHEN - const bastionHost = new BastionHostRedisForward(stack, 'MyTestConstruct', { - vpc: testVpc, - name: 'MyRedisBastion', - securityGroup, - address: '127.0.0.1', - port: '6379', - }); - const bastionHostSecurityGroup = bastionHost.securityGroup as ec2.SecurityGroup; - - assert.equal(securityGroup.securityGroupName, bastionHostSecurityGroup.securityGroupName); - assert.equal(securityGroup.allowAllOutbound, bastionHostSecurityGroup.allowAllOutbound); -}); diff --git a/test/redshift.test.ts b/test/redshift.test.ts deleted file mode 100644 index 954324f..0000000 --- a/test/redshift.test.ts +++ /dev/null @@ -1,64 +0,0 @@ -/* - Copyright 2020 MOIA GmbH - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License 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. -*/ - -import { expect as expectCDK, haveResource } from '@aws-cdk/assert'; -import { App, Stack } from '@aws-cdk/core'; -import { Vpc } from '@aws-cdk/aws-ec2'; -import { Cluster } from '@aws-cdk/aws-redshift'; -import { BastionHostRedshiftForward } from '../lib/redshift'; - -test('Bastion Host created for normal username/password access', () => { - const app = new App(); - const stack = new Stack(app, 'TestStack'); - const testVpc = new Vpc(stack, 'TestVpc'); - const testRedshift = new Cluster(stack, 'TestRedshift', { - masterUser: {masterUsername: 'myMasterUser'}, - vpc: testVpc, - clusterName: 'myClusterName', - }); - - // WHEN - new BastionHostRedshiftForward(stack, 'MyTestConstruct', { - vpc: testVpc, - name: 'MyBastion', - redshiftCluster: testRedshift, - clientTimeout: 2, - }); - - // THEN - expectCDK(stack).to(haveResource('AWS::EC2::Instance', { - UserData: { - 'Fn::Base64': { - 'Fn::Join': [ - '', - [ - `Content-Type: multipart/mixed; boundary=\"//\"\nMIME-Version: 1.0\n--//\nContent-Type: text/cloud-config; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"cloud-config.txt\"\n#cloud-config\ncloud_final_modules:\n- [scripts-user, always]\n--//\nContent-Type: text/x-shellscript; charset=\"us-ascii\"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nContent-Disposition: attachment; filename=\"userdata.txt\"\n#!/bin/bash\nmount -o remount,rw,nosuid,nodev,noexec,relatime,hidepid=2 /proc\nyum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm\nyum install -y haproxy\necho \"listen database\n bind 0.0.0.0:${testRedshift.clusterEndpoint.port}\n timeout connect 10s\n timeout client 2m\n timeout server 1m\n mode tcp\n server service `, - { - 'Fn::GetAtt': [ - 'TestRedshift8D950AC2', - 'Endpoint.Address' - ] - }, - `:${testRedshift.clusterEndpoint.port}\n\" > /etc/haproxy/haproxy.cfg\nservice haproxy restart\n--//` - ] - ] - }, - }, - Tags: [ - { - Key: 'Name', - Value: 'MyBastion' - } - ], - })); -}); diff --git a/tsconfig.json b/tsconfig.json index 1b7d2ba..9d07aaf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,9 +7,7 @@ "incremental": true, "inlineSourceMap": true, "inlineSources": true, - "lib": [ - "es2018" - ], + "lib": ["es2019"], "module": "CommonJS", "newLine": "lf", "noEmitOnError": true, @@ -24,15 +22,11 @@ "strictNullChecks": true, "strictPropertyInitialization": true, "stripInternal": false, - "target": "ES2018", + "target": "ES2019", "composite": false, "tsBuildInfoFile": "tsconfig.tsbuildinfo" }, - "include": [ - "**/*.ts" - ], - "exclude": [ - "node_modules" - ], + "include": ["**/*.ts"], + "exclude": ["node_modules"], "_generated_by_jsii_": "Generated by jsii - safe to delete, and ideally should be in .gitignore" } diff --git a/tsconfig.tsbuildinfo b/tsconfig.tsbuildinfo new file mode 100644 index 0000000..42833be --- /dev/null +++ b/tsconfig.tsbuildinfo @@ -0,0 +1,15430 @@ +{ + "program": { + "fileInfos": { + "./node_modules/jsii/node_modules/typescript/lib/lib.es5.d.ts": { + "version": "70ae6416528e68c2ee7b62892200d2ca631759943d4429f8b779b947ff1e124d", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.d.ts": { + "version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6", + "affectsGlobalScope": false + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2016.d.ts": { + "version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467", + "affectsGlobalScope": false + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.d.ts": { + "version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9", + "affectsGlobalScope": false + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.d.ts": { + "version": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06", + "affectsGlobalScope": false + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.d.ts": { + "version": "94b4108552f078722078d7c4a010ca4851063882f6c0c51a1468aa7a39aed4b3", + "affectsGlobalScope": false + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.core.d.ts": { + "version": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.collection.d.ts": { + "version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.generator.d.ts": { + "version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.iterable.d.ts": { + "version": "42f5e41e5893da663dbf0394268f54f1da4b43dc0ddd2ea4bf471fe5361d6faf", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.promise.d.ts": { + "version": "0b7a905675e6cb4211c128f0a3aa47d414b275180a299a9aad5d3ec298abbfc4", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.proxy.d.ts": { + "version": "dfff68b3c34338f6b307a25d4566de15eed7973b0dc5d69f9fde2bcac1c25315", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.reflect.d.ts": { + "version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.symbol.d.ts": { + "version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { + "version": "4670208dd7da9d6c774ab1b75c1527a810388c7989c4905de6aaea8561cb9dce", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2016.array.include.d.ts": { + "version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.object.d.ts": { + "version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": { + "version": "d0db416bccdb33975548baf09a42ee8c47eace1aac7907351a000f1e568e7232", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.string.d.ts": { + "version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.intl.d.ts": { + "version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": { + "version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": { + "version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": { + "version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.intl.d.ts": { + "version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.promise.d.ts": { + "version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.regexp.d.ts": { + "version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.array.d.ts": { + "version": "9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.object.d.ts": { + "version": "6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.string.d.ts": { + "version": "93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.symbol.d.ts": { + "version": "2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.bigint.d.ts": { + "version": "4f435f794b7853c55e2ae7cff6206025802aa79232d2867544178f2ca8ff5eaa", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.promise.d.ts": { + "version": "7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.string.d.ts": { + "version": "faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": { + "version": "936d7d2e8851af9ccfa5333b15e877a824417d352b1d7fd06388639dc69ef80a", + "affectsGlobalScope": true + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.esnext.intl.d.ts": { + "version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd", + "affectsGlobalScope": true + }, + "./node_modules/constructs/lib/dependency.d.ts": { + "version": "b8936446ed2b552611e05de95881b64a4704ba003aac44ba21b4b18ddf1e98e6", + "affectsGlobalScope": false + }, + "./node_modules/constructs/lib/metadata.d.ts": { + "version": "d89b0d88d62df2b051eb3a8be576e8d772ab54b4e4757f45f5f86fdbeea64954", + "affectsGlobalScope": false + }, + "./node_modules/constructs/lib/construct.d.ts": { + "version": "8dd56e05e1d06d44eb18b60e230f5ef0da4ba1aa57308ccd7a3a7f90179ec8b2", + "affectsGlobalScope": false + }, + "./node_modules/constructs/lib/index.d.ts": { + "version": "f15dc8cc0d4a4f64505b4f2cc43f1814453528d0a614ed80bbebc9b51a23b79b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/aspect.d.ts": { + "version": "1260a813b7334548a6239f4ce858b5fd0848a985bfd636923888ff91bad4885e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/artifact-schema.d.ts": { + "version": "92363d3c421d95624dc602881cecba5dc596aa0ca3f4ef029ab161d0ee92264b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/metadata-schema.d.ts": { + "version": "ac1450c6177bd43407e5af3c98f0eccbf701a844b6bc20d0633e4aebefde9692", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/context-queries.d.ts": { + "version": "fc2b14f7d56954e1f6abe0e60ebb54bf604498d9912d9912dcf4b120046df355", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/schema.d.ts": { + "version": "1e58c656bb7ea4222e45caa2ebe65bb1cccac998ba82aafe31243e427b60c78e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/index.d.ts": { + "version": "74c863ecedb45fcb4f990b80f11bf01914c563930ede1f0ee297753436d2b54d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/aws-destination.d.ts": { + "version": "59eba7da7270b613a407a06b00df7d6a8993a6e8f7def2db0f59d7903e124dc8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/docker-image-asset.d.ts": { + "version": "6098719d05144a25494c2a7b8be9041f363413015811e8215f71ba7849b2c7ce", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/file-asset.d.ts": { + "version": "485bba738d209f1f16726c050220cc1002f6cfec96c38bf4909d2ba3542ad081", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/schema.d.ts": { + "version": "3e142070df7b7182c7233373007c7d7b198811080e234ff60805c45dff85cf35", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/index.d.ts": { + "version": "34f5728ea96206f292548044255dd2478bd64598c56f6d4a7447d4b68fedc96c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/manifest.d.ts": { + "version": "e41fcbbac1778f8311edb05962ade4817df7e6847ede2266dec2c958db52c817", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/index.d.ts": { + "version": "044008a1c34bca8cddf96b066c64c41ad9f43349a71b9966d3d98b7ed911c1a5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/cxapi.d.ts": { + "version": "9ba27dccf474676a8170db891ea250c917dfc1862508e288c43a41be8de1c806", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/context/vpc.d.ts": { + "version": "2277f133c0dfbe14c83756160fcee550be06fb96ff6af924461d03194aa1658f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/context/ami.d.ts": { + "version": "e6eb82d9c859c823e349290871cf81f3453bb7fb9c165c9419308dbe87f96745", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/context/load-balancer.d.ts": { + "version": "4e0fa162d1668d02e665e909507a025296fbc78070b63ad3b14e41472ecd000a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/context/availability-zones.d.ts": { + "version": "12a9a23072b7b69c8492219d35c2218756622920f4dd84c70ae321a779b104db", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/context/endpoint-service-availability-zones.d.ts": { + "version": "88efd6e9c55bddfedef06a7766e1e1ca78930069354ef6d234894e7b25134020", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/context/security-group.d.ts": { + "version": "ce9012f3d6c88e336097f22c9dc668a2759fdf41a4e74111654b74e3b9a5438d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/context/key.d.ts": { + "version": "168bd976df56b914829ff63ec838289b1d4f8ab9ec8e625b5ce96745f2650691", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/environment.d.ts": { + "version": "a50b936e4f5da6f7170c0c8ba7fee11104651da37ab971ec4bd57b80d90e4267", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/cloudformation-artifact.d.ts": { + "version": "cf7ede872d8839fedb2b3a94046dc596feead766f7c0a3e63b30c6c809066b6f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/nested-cloud-assembly-artifact.d.ts": { + "version": "7d25e36562fff90d575e8da2893ac0c2c06aea55d24e525769f51fadde8c6c61", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/tree-cloud-artifact.d.ts": { + "version": "9b669cba77aa61cb4b2793fa5feb707c1fcbfe78020ed1a0c8cfb577fdafe98d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-assembly.d.ts": { + "version": "e4084fc6e8a32cd883ff559eed2a96d0c9519ff2db9ae1d832d02046ed70a5e5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/metadata.d.ts": { + "version": "ec7fe2802006d2498d794dd76f766d3eac7baf67a8cbe1fefc909d1a1f3838f0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-artifact.d.ts": { + "version": "31e68fed2d9c8d78affcaa699adeaa15887b09c6a1136b0872cf4f6a1fb05757", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/asset-manifest-artifact.d.ts": { + "version": "0f5cb8831266f5c29f9726e5a8f99f0f05c04845e574bd5a5911313e54d5a9d8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/assets.d.ts": { + "version": "ecd466ac82ee7d6ce73ad4d40ea3ae4af749e79b9f71419ab9676a64367dc697", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/features.d.ts": { + "version": "f1ac6b70b12d533ade67137c5c312c7efc91b076c4e3c093938f2de0156e6aa7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/placeholders.d.ts": { + "version": "b89c05c8432260c2a9d2c1f9af6c7958ad82d06756a39bb82fb8ed68f5efa1fe", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/app.d.ts": { + "version": "aaf2bc9c4d98ba06cf37e6e2322bbbc796214c3d102ff1af2a64f91c81fac24a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/lib/index.d.ts": { + "version": "0482904c32bca283cd3aed18fd5f1cbc0630eb99d25774dc24e970ebee1a20b1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cx-api/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/arn.d.ts": { + "version": "4e3caac406f26705ea1e6c3282c0174e95a824f5ee9113572901f7044e51a5d1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/bundling.d.ts": { + "version": "2782eae569db992dd77af7dbe77594d1af9377a2220cc860bcde4752f395fc44", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts": { + "version": "691d3709be3d1e8a02b6e439522c04f9913190acc9f66b6d88512b391b8faf65", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/environment.d.ts": { + "version": "837e05611aad4f5507e6f0ce16e55ca47fa8f7b9f33c9fccc45419a890a5413f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/string-fragments.d.ts": { + "version": "4ae30b37fc70d5f163bd0323c3168333ff463f16ad4efc718837bf34d72c45e1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts": { + "version": "6699d69e0bf88a7903c14d76ccc98d31324fa8ac093b2471c8287141f94f2f90", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/private/intrinsic.d.ts": { + "version": "6cb5e7c39dc12a67ea4bf0aa6f0eb553d642ad85c74e03dbedc2a92174c45e9c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/reference.d.ts": { + "version": "f973114e995ba4fce15b9638e59d321557790f922a0443f13f582b1d00fcc2e4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/types.d.ts": { + "version": "b91a0545c5a731bd2e8adaf15fb80dea26169a36631bd39d06e6ee94c1e2baeb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/stack-synthesizer.d.ts": { + "version": "7898838d0dea755c6e010df5737264d72e4495c7523b622fa6655d2393626dbe", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/default-synthesizer.d.ts": { + "version": "240240b7f8b35de155dbb8d5f62364efcf53dea6424c3fb7ea4e03ee43b6b5c2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/legacy.d.ts": { + "version": "86c167e0ab909fa28fd09adc67a6f88a5af26a4f36dadacaa394e4c78ddf2b4b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/bootstrapless-synthesizer.d.ts": { + "version": "0034b4839c0fa6857a7f569fc53a82263a6b8f9b973d371fac4391ff85716c41", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/nested.d.ts": { + "version": "ce098687cabfb385698ff255dfab5d321e23ebbe6a50083b8e8d302f14a8e9f1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/index.d.ts": { + "version": "b698d6570ba4024043fe8923119a93532317ed08060c2f54541be8edffede18f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts": { + "version": "7592b6c5199739004a40c74eeb649cd859a046a0532caee82544c37c31d822cf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts": { + "version": "cd95a2210e66c027c7d0bc66fc90f65f18de5f244173abaa2d2d64f86341d505", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-condition.d.ts": { + "version": "a44fc808fc3ed366d6ec50de7d73882181b9e64e504b61c076f57ca721587dc8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-resource-policy.d.ts": { + "version": "d021a83623829de81fc3086761963a69a2ce446890060b5dde49aa33bee7c89f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/removal-policy.d.ts": { + "version": "305580b1f477418a72ce549ddb1d00397c96921427eb56ed9605e9dfd287b3bf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-resource.d.ts": { + "version": "cacce098b337b9361ba03ba8a5fc288f2fdf806f3d046175673927a73f5571ce", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/tag-manager.d.ts": { + "version": "65a87072170ddf58ddb96355720286a528f1bb93fbad84e043dfce2075b52b28", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/tag-aspect.d.ts": { + "version": "f18ee0bdc1a0be617b17fca79ff9f4d8d8920930e97e22aae6210d27e6c41647", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/token.d.ts": { + "version": "ab7db5070ecaeebc8e9af685fbb1a094c366a4324382af175b0f921819673c0f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/lazy.d.ts": { + "version": "66325ea7a22c0853d5c0786e4c6450a3dd9fbcf3e06fa839d4b0b08078b56acf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-fn.d.ts": { + "version": "0ea968edd95a13b16489d85b4b0ca680a3890c6f4c7bc6ad6779986c97d4df04", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-hook.d.ts": { + "version": "bae498df1270f5f726d288adc40eb625560ee9cc32ce4d074d4a2b4b73f278da", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-mapping.d.ts": { + "version": "507faa2938a9916dbfb0f83aecb258a6e530b7e2186dda684ce957417416da3a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-tag.d.ts": { + "version": "d512887bd792d46ab734160bddd4bc36cb402c6864a34e12b785f83ba8b49655", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/runtime.d.ts": { + "version": "00d823ff4ee71e5d6dd79d9f830a77317c45ff8643be9043eded1ac9e36a525b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts": { + "version": "689eaa08d26d59cd96d89ad09f3da3eaa07f38141767e879850274e1d77860e3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-codedeploy-blue-green-hook.d.ts": { + "version": "e0f0a32d936616f875c8d345ebc701885061491921871d34ffd276950af44f34", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-include.d.ts": { + "version": "aa66d256a69db2102e4de6a099243e3a40b717e6fe1a7a6931009abab0b9649a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-output.d.ts": { + "version": "75bdf8ce484a4bba833bce16f6334d103937de6d1d96eae35dbb3a40e511c9e9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-parameter.d.ts": { + "version": "4d903dd7a429a49c18d89c5e36d5dc530ce9c3eb33293db6c0693e54f3e8e8c7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-pseudo.d.ts": { + "version": "ea355a8fe7f4e93c698672f41062a13be4c3c9b5602de0692d352b0725083aaa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-rule.d.ts": { + "version": "b0b6e04c46119849996a359103df6d925147513da8031f4787b0732aa64b9e0b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stage.d.ts": { + "version": "aee6a2aa7c48d06f1e2be9156dca6d4178b41a3fb33408fe548b116d0d96beda", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-dynamic-reference.d.ts": { + "version": "df7298fdc190d08bd7ccd3d1e388b850c393107e91e98b02417af6954c5c5d4d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-json.d.ts": { + "version": "fd3b6f4fd738263c0e25bcfad790d494d3f346ffaee01112e35f160ec27cda07", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/duration.d.ts": { + "version": "17dced8ef377e3f162fb8abcb81facaba3cdb5deb4cde693582c99ae6cb60458", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/expiration.d.ts": { + "version": "ea341c8ec627b8c73f54d4a268f96c4fa09825bb24e766993adbd223cd839f67", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/size.d.ts": { + "version": "a0225faaccd0a1315ad8c8439c81092d2cc16a0f97a1a3c427696553ce0cdfcb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/stack-trace.d.ts": { + "version": "0abac1682418e7ac6a7f3cf5fccab465e427f4a03cd457f654c4655d8d24b305", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/private/synthesis.d.ts": { + "version": "400511b7404614b7cd169ac62c1f5c99bd22adfd7e333dae220ba5461eeff92d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/app.d.ts": { + "version": "9088a78f8b59b17b56845e0fab4739214edc13a986acaa35b45415b7ad9baf6b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/context-provider.d.ts": { + "version": "99608aaf7786e2c2444a25c7ed97846a5ac17c53a4556fde5ec1c5d7f2a2de77", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/annotations.d.ts": { + "version": "cdece04ff5e2b9b45f1f7272ad9d8b8849a84f284c58676fea0a66983097d811", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/secret-value.d.ts": { + "version": "86e2f70340f08992f6860c3073b58086248ca8fb2cf53c74ab8da71e69ffd795", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/resource.d.ts": { + "version": "4a1b06edb065bcf3da87882a7ad9f5a20aa703df1b1081b7e0c3d7a069556a6e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/physical-name.d.ts": { + "version": "cffd76bddd40d0b8c07e628bb1bf04b1b3356c2e33baf4556116739d8088322e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/tree.d.ts": { + "version": "dc51f2133ecd47b2d9f964fac72796499571488e3d3ac2f758aea4d00c0dee57", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/fs/options.d.ts": { + "version": "d05ef81177e1819114fb88897f672f3ff50f745398a7139b30e56bc15180f7cf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/fs/ignore.d.ts": { + "version": "893774e0c405d9591928bd9067453ed4a7956e332b5d58f12d0b196d747856f9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/fs/index.d.ts": { + "version": "8c7e3e1a6f4556c47c5e3713e9f343d66fdd82f93d58036eedef4c74ee841ab4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/asset-staging.d.ts": { + "version": "7fe3c59e1175c2a4968aa900bb56d90b0d55c8a61b688e38867d36ab585a79bb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/custom-resource.d.ts": { + "version": "8c719854a4f24109d936449aa4c42ff385b5ab65a84f063bb6f6cee8914e04e1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/nested-stack.d.ts": { + "version": "7d593c3f7e748b8b30e4c17a243223ea87dc20b9339b52ff2fdc66ce53d535be", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/custom-resource-provider/custom-resource-provider.d.ts": { + "version": "31951bfe27c4d8dd5b267f77f3bdb42461c8bb4c3a3936f5cb2ecf1f9a2025c4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/custom-resource-provider/index.d.ts": { + "version": "a719c70bd2280479af2555463633fd202b14b55e271a15905eb86e9a35cd6eb6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cfn-capabilities.d.ts": { + "version": "f5ec98abe0a11ab336f7b1260ea3618038d6e9cf16f6eb04ec2653ff1f236c7b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/cloudformation.generated.d.ts": { + "version": "84ae3575e363b59cbacfda9df0cddae7311a730269c8466d6ed8d6e728a51234", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/feature-flags.d.ts": { + "version": "bf9c1fd2b82128bfa3643e80451f98ad2addfa78a838e8aded9dbf88877baba6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/names.d.ts": { + "version": "45d46d308b8ac44a5f8d9181b40fa71bc1e138cd04bb3a6f6724c6cb1190f651", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/lib/index.d.ts": { + "version": "5dee83ebd61bc45bb6bd6f3829d5c97c787c781af38e131f63bd752311a76b8e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/core/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/alexa-ask/lib/ask.generated.d.ts": { + "version": "7b209b8c873d99c6a50d3d29502aba6ff855aed76da016e43e8b698e2b723fc1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/alexa-ask/lib/index.d.ts": { + "version": "715af4b85aaa4a96e53ef0703bca45380aedee22b56dcc6bd1c70803851c6942", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/alexa-ask/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assertions/lib/matcher.d.ts": { + "version": "4ef9095b474400c388be0ef939706ada612d94511f3829cc93c55297f04b7d63", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assertions/lib/capture.d.ts": { + "version": "5fffa1bae04d5569f6f2b4fb9696b423a6f49a8eaf13150cd6b05d0ae27da229", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assertions/lib/template.d.ts": { + "version": "87a22856bebf42257fc728023d43d88d4bbefa4148173f988a23f57c3e1833bc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assertions/lib/match.d.ts": { + "version": "cdd137c8e416d5517a856bea16c54f6959e739aa43d4532b8e5f2eaf5f214eb9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assertions/lib/index.d.ts": { + "version": "9ece383a7cafd2cd8c0e66788709a1dd45bb365ff9051642ee6448d6bcddbf3e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assertions/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assets/lib/api.d.ts": { + "version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assets/lib/fs/follow-mode.d.ts": { + "version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assets/lib/fs/options.d.ts": { + "version": "74907221572d1e3d933c005009140a6e9071c8a3202f567eb86084c57ad618ef", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assets/lib/staging.d.ts": { + "version": "66aab8fbda44b46805483338e0d29135d739f221810e437a548dc8e2d889d8a9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assets/lib/index.d.ts": { + "version": "3d6ef778cb2b2484a152f5f815834bd6a6b2f0ec633e7c2ec8b1e1693732563a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/assets/index.d.ts": { + "version": "4a5e71e886ee2a2e0f3135aafbd51321a3039671747f8b06ee7e36c56e500449", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-accessanalyzer/lib/accessanalyzer.generated.d.ts": { + "version": "6e1bdd8ce5225ee1cc907036fec4c9e59570278d6c11951569058270e6803f6e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-accessanalyzer/lib/index.d.ts": { + "version": "e9dcde11aa468096e07ac1d8720f810f3aab31d42e86301435cdbdea6fbaef56", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-accessanalyzer/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-acmpca/lib/acmpca.generated.d.ts": { + "version": "be3b5b89df411b87c6438664e30adc6f01bed259179072a310cd4d0b30fe1b35", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-acmpca/lib/certificate-authority.d.ts": { + "version": "c947c83c0b73bbe83b80c55f606141d126aa1414e67dfdae0cadbfcc0195d1ae", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-acmpca/lib/index.d.ts": { + "version": "e09d7ecee24d3e78d0f1f00b7d579e05802f453b2bb0dd6306fb6e548a62bb26", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-acmpca/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-amazonmq/lib/amazonmq.generated.d.ts": { + "version": "96b1b2080256b2818cbe437d16383bcaaf07fbdfb0abfac0d2d802cfa7ddf60c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-amazonmq/lib/index.d.ts": { + "version": "80d994cca0d7b41685cf53b2e3e957b06df6a2bac99021ac0958f9524dac9285", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-amazonmq/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-amplify/lib/amplify.generated.d.ts": { + "version": "4186c2575290b45149cf5f0687803e20806c94af52002d46f09edbfd1f5cad78", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-amplify/lib/index.d.ts": { + "version": "d159d545db3bd448a631c4c01b3e58a5626e3661c6a1d80dd0102c662f015060", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-amplify/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-amplifyuibuilder/lib/amplifyuibuilder.generated.d.ts": { + "version": "92b7d08ac503fff51615edeff1d9ddb44b1e4ac55a1e4ad7f4ff237a687d3447", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-amplifyuibuilder/lib/index.d.ts": { + "version": "322f759a098f075c21533b14ef6466bf8c1fccb8e4d01306575284d3969359ad", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-amplifyuibuilder/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/cors.d.ts": { + "version": "37596aff43e8537b4897700d68cce9cc1d58ef7163ed7c083a100dc834a9b78a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/oidc-provider.d.ts": { + "version": "78d65a096ee9cefa2d2c3cd9dff8182077cb649352790615b8b4e9e4e4b899c6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/saml-provider.d.ts": { + "version": "f339290c832da9cc94263fa73524b7fe2c37beceafe2238dae090c79934a84fd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts": { + "version": "c4c036a49b128d9b8700b57db1f9163db3bc0e438e5155ac3a54afa639ff43f6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts": { + "version": "d09b0414ba927aa7b251b4c4b94eb3fe1e8bba62527d3028953b7e688fa24f01", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-document.d.ts": { + "version": "041c8b7464298903efac243b2c60bc995e30514adbbf60f1a4587ba4a71bcc06", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/grant.d.ts": { + "version": "6d1ce74d2b20a4cda5e8d8a897821057fe381418de4d9be0f2e1d87a5a228db4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/role.d.ts": { + "version": "f6859548ca680d3f26b45ddc6273567d27cd7d3d657b118034e9f031efa0c17f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/user.d.ts": { + "version": "d5674bf61ca5c679bd7420e51ab0e06841c80baf26c40db2997ea3ad3d4e0798", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/policy.d.ts": { + "version": "b0965a8b765a09740d9239b8af92eda21e13b68617cfb7bad21d119364ad3f49", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/identity-base.d.ts": { + "version": "1c14f3e16a277302515856b50d93f38a422787cae5b991448e8dada1d9e7ca5d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/group.d.ts": { + "version": "99aee497bd34bad1bfbf865306eb7e930f1dc5bd6ddf93bd8918ccb3de2c3b0b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/managed-policy.d.ts": { + "version": "f57560564452c9be67afd6faacc840087cca3bc67a9abb453ca8b6760d91f4a2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/lazy-role.d.ts": { + "version": "28bab2fa73461127300dee957905dc2a38da32f27998f65ba091c62ac5cd8b96", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/unknown-principal.d.ts": { + "version": "3d2e1e2b3e8d7a1f925e1fa35cc34636dda7c802aecda0b3933bc13f867ecd97", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/permissions-boundary.d.ts": { + "version": "5a0fdb2afd9b564f418ae7d72ad2f56c677bcd24d768c976e3186a3c3a6d5474", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/access-key.d.ts": { + "version": "f299af165256d41167e4d138f95bc154d8a875617f8b9ad18c9a8d5493130042", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/iam.generated.d.ts": { + "version": "3441b69f0c52906ebf990034f24813f41e37fcc138453b06632bfe497cb8dfe8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/lib/index.d.ts": { + "version": "b0a5d519375c369d8eb64d3707dfa80bbfc05f710afce869156083e9bd128307", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizer.d.ts": { + "version": "d6af68d4d44618c585fcc7d32c8a4768bc85ddcb024b02c5b33b63e434850661", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/json-schema.d.ts": { + "version": "68b2d0472da2f425233368461ccb48eb7555947ff92751993c0d5cc985899126", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/model.d.ts": { + "version": "db07fae6d7d4ca81fc0019870d6bbe9f93c10581d6a88b97c470234eddf877e3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/methodresponse.d.ts": { + "version": "905471d0fd85e7d65f94c6f58fdf52ae9d62a4849cf26c86ef0cb1c8aa04cb97", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/requestvalidator.d.ts": { + "version": "afdf398ad167e3b5388bc902cd60e8c82c920f364afbf5637d9cfd33bd62457d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts": { + "version": "8f108c83b12c8084051ddd248ddfc28669c9816269109412546350ab299232db", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/elasticloadbalancingv2.generated.d.ts": { + "version": "a5bcb91bf9a055e6f8b1951d3063d02ab510114ce924d67198afba78cf40eccb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/aspects/require-imdsv2-aspect.d.ts": { + "version": "88e46a701053806241ec163457e09e31a76742fb6ce58dea91316af4e42041ea", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/aspects/index.d.ts": { + "version": "6d23d54eece68bc6937367aa0411d97a106d6a532069c9253c6eee9d6af06ee2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/rule-ref.d.ts": { + "version": "780641d9d4cba57f7ad9ba150da2922b498115e1db796d49fa6b07cf4a45427b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/input.d.ts": { + "version": "76e15670ec7a9e3e40d70f83759d9ba1a197219df357d4177f9e5482218ba0b2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/event-pattern.d.ts": { + "version": "ce8fb177de10365056e227b0078b92c036d076cf5c6942db3affffda8fc7769f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/archive.d.ts": { + "version": "2d6ba4a738529699da1170d06847390d1ac6cde45c2eb1aad87dfdeabe5010a4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/event-bus.d.ts": { + "version": "f7cd22e13cc2c2c3328a15abfa155407d9e86607330b99c7fb470148e6612085", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/schedule.d.ts": { + "version": "42790493e33cc15a2802ecf453b125e5b3a6e9847f18eab1cbca9596a12fccee", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/events.generated.d.ts": { + "version": "a71388baac76cde173dec259bbff97eea3faae0aae8f67beaca5d945a6e21144", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/target.d.ts": { + "version": "151adf20a2ed2a0eace7d52f5cb4648f945cc56839fb643ad82d178fd02022ef", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/rule.d.ts": { + "version": "3e1375a3bc23727c37eb48a5989ef919c405f653885af6ed26ca19e1e55480df", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/on-event-options.d.ts": { + "version": "845edc5dc1f5c0a125cf921eb1c17a258dcbe9e4889e4e9f62e8d96dd145150a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/lib/index.d.ts": { + "version": "d03d20fda933084a618a4b8c7639c33f45e30b9c191d151bcacfe4cb3f0405a8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kms/lib/alias.d.ts": { + "version": "33c9d0296489559a5aee5bcc9bcf7b118a1c78ec3d40168979b3a1f65d654b26", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kms/lib/key-lookup.d.ts": { + "version": "bfcd3cc1debea7d6fa0532c5b6a940e5b26bd9271a8f802264575169e2a5e267", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kms/lib/kms.generated.d.ts": { + "version": "c83b55cdde68cff49e4765eec8671d6f0f60b6d9a6c7430901daf75c5a09c6fa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kms/lib/key.d.ts": { + "version": "65187bc4c5de588745705e5b3e753acfddc9b13d5f40f6e7bf417789308b8320", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kms/lib/via-service-principal.d.ts": { + "version": "0bb268f1a9a58fe7f2f6c31a307c277231d8d7d50c11f81b74f526df5d0ccf38", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kms/lib/index.d.ts": { + "version": "466050e85fd8a8735d8fd5c9a6d2e4eced0236e105a1a6d9054325a41f5b23d9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3/lib/bucket-policy.d.ts": { + "version": "e6be6579899608c48c19e5b3d78957472ddc4975b1f5d9bc8919bb84c2380483", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3/lib/destination.d.ts": { + "version": "c2a8c6e62672f6b36539a928a34993e192c78bb7b264d00c73ade8ba1a182b19", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3/lib/rule.d.ts": { + "version": "86f05b780495363cf3a2cd50284526f8cb8d58266b632f4f2a2074ef281b3851", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3/lib/bucket.d.ts": { + "version": "e91cd9f374bba4b1dbfad990e3e94f0d2980af169f64c3923e33f80ad5e15dd1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3/lib/location.d.ts": { + "version": "6ce13b04b648fdd37be25b85b4f885dcadbbb327b0e0df6283cc335be70b24e5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3/lib/s3.generated.d.ts": { + "version": "314e3e9c7b9f639f4e1ee4a4ff5f9a3bb7b3f60cf95e9a75a368d3a95bda6c5e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3/lib/index.d.ts": { + "version": "63ce2da7f3c25c7e4a122efd02358534a22e4283d27b8cc311a44fbe4fc07487", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-assets/lib/asset.d.ts": { + "version": "2e96cd0f8eece7163481703acbc50bf8e0ab4457678fc2fc66310d8c77359c73", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-assets/lib/index.d.ts": { + "version": "8b5f46aa0d289867b76064db0d47126f7a557e35ac99cc896e8269882da851d1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/private/cfn-init-internal.d.ts": { + "version": "e2d25fdbce6bdfb65dd3f512777c81b2cee96f719629bf100833cbe7774357ba", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/cfn-init-elements.d.ts": { + "version": "3122a6df93337307fd7e679dcc1bb3b57e6c4c85736413aa02eacf7842da2501", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/user-data.d.ts": { + "version": "9a527f6744f8f06b2632b79a51d81c521b0cd5a21b04498f983b65c1f48f1a01", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/windows-versions.d.ts": { + "version": "9ac0717ab702b84c1f1f7df80a8d28355516f5e82c68e047b35c3cfffd179174", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/machine-image.d.ts": { + "version": "ebd4497864f54c6acda0e48531f1a8eb116d7bd2c08974dcce0296c5de10049d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/cfn-init.d.ts": { + "version": "830c93e29bef57e1bc844dafc27664efa1fce128014a3e1aafc49006c7fb218f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/peer.d.ts": { + "version": "42070a4dc44c15a5954566de1c2e2e2b397297c885feb1a643eb2a67561134da", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/port.d.ts": { + "version": "4501b93e10a6191c0df275245f761dbcbff375588866b407f88e6b10191e035d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-base.d.ts": { + "version": "c2fac42e130961cacc37b7bd82d3bf1ac223f59a5674e0c478941deb47d01cc4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-action.d.ts": { + "version": "b6641e696c4da1050dbd58eb0419df44bc1639df24a30b80e2ba14f02060051d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric-types.d.ts": { + "version": "1f3b66ccf191e0592255f469bff0bec2b7e76250fb8d8ed7ae6e09992fdbdf68", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/widget.d.ts": { + "version": "e9ab7f9322a354d2887a29ecbc644ae7ebb868ff0232c73491007e0351b31902", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/graph.d.ts": { + "version": "a8e67e7d6dbd83d4991b923376026153a10610ec3f22974097d05171cf0b112e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric.d.ts": { + "version": "16523c38872081eece6f498224d63fdc09bb4e41e9a99bb19a4e903123c94da6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm.d.ts": { + "version": "6dbd520234bdef5bfe6c0104310e1c2951bcbc09b84b48f0a6b3446d785a6b74", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-rule.d.ts": { + "version": "0d51be57636ec007f3745d561c49db544d10111c505782266c9dc8346ad7eeac", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/composite-alarm.d.ts": { + "version": "830b8a3e94011c00b67b51834f321e232c1107255fc48968aaa79c112cd3361b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/dashboard.d.ts": { + "version": "1f223279ddc44c059b003ec613bb3cdcfd045e5e466e0d15173bac0bc219e9f6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/layout.d.ts": { + "version": "29dd6a24ffc6cbd75d8b89e620dd1c9e305044fbe0fd3c8476d53f44ce7eb29c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/log-query.d.ts": { + "version": "3522720524cd1da8f2fbcb5ecc16af14ec3e626f67895624af7221c65464b925", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/text.d.ts": { + "version": "8ac71a1b7808bfcd4e6092409e5646c763c923c7cda76733b735ac64cac44e52", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-status-widget.d.ts": { + "version": "6d05d71437e20afaaccbc7df146f1996b28531484b702f34eabff15fcd9ac276", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/cloudwatch.generated.d.ts": { + "version": "0e103daf1a5f3beaa0e7ac25b6eceb5c018f8b01e5dd34a81ba8cd9c5df95148", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/index.d.ts": { + "version": "0b1640f8dbf20789ddc459cc041401e80a556df30c67c8a3de73496d0a1fece9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/log-stream.d.ts": { + "version": "1f1e0955fe84f9618a15a8ae89ce864a11ea338b6c3e1d4855a9a8c722600ef5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/metric-filter.d.ts": { + "version": "9de0ab1279e59990bc677d1f443bc07ef99c131ab7354ad647cf789869b9aaf6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/pattern.d.ts": { + "version": "bb5baf20dbd05a507848450d33b7edc940c4b8f759187b9c1a2c056b3fe0132b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/subscription-filter.d.ts": { + "version": "d49f24c0622eaed6c5b4259912846b1c50e9a1ccdbdc7145c30bf74b48c2b622", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/log-group.d.ts": { + "version": "582d6546cb21644e9e810e33df86665ccb342efcda1f6d2475f972cba3deb75e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/cross-account-destination.d.ts": { + "version": "d823c15c275c3273a6c6152fda5908e92b219a0897ec552f6f7ddb696a5c682a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/log-retention.d.ts": { + "version": "b0cffee9c5eff7bd1b71298b6e9154f95f4e2dc7850189e9aa153351086792b9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/policy.d.ts": { + "version": "5474674deb2b06d8a478ed3fbf9e393f796a8625e192f1a3bf7fd8f7d2f2b730", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/logs.generated.d.ts": { + "version": "f275610bdd1669c3fed8577271fe972febc918581801685ffcb188fd64cdd505", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/lib/index.d.ts": { + "version": "0df38a0c2597cdd0ca48df2766c04decbd690324a2c66074c2e1cd16a11a6b02", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint-types.d.ts": { + "version": "9500874cbf079328c97fd8559ab8eb43d6eb755e1089c31b5bd88a9bf9e3e511", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-authorization-rule.d.ts": { + "version": "499ba06faa5cf2a4e249982d6a89e6d950c4e4fd75fefe4fca3b37db059ec3e0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-route.d.ts": { + "version": "9bba28bfc49f241fc8a4dba9032ff0bb1e5e501a7d4d7982b46def41d0f32885", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint.d.ts": { + "version": "b3f8bd5ccc734e45e1970b71989da71d9d8984c2a30ae8936d73ca04b5f5f980", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/ec2.generated.d.ts": { + "version": "139995be534fd5e9556c99bab8a63ef4c21e0b2c54b89d9d026fe44bffe2499e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance-types.d.ts": { + "version": "b183bba130793deebfa46133d4ae89fb02fd6504b1fed2d926f9b7d787d11763", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/nat.d.ts": { + "version": "d9fb8bb7937a8a056168738a9c03472086c4e88e904c9731ec6e69959136c789", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/network-acl-types.d.ts": { + "version": "5a7e13e07e940785972d1f1050d74cd12bb2ec343b7575cb58d2dbb845457b7c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/network-acl.d.ts": { + "version": "64322b4b0d07f50d24085abdfc7df925aa8f216c4cdeddb796a3c62c53c08ea9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/subnet.d.ts": { + "version": "ee47bb540e86682d11c5fdc7fd58937e0c12e1d25ae4a32f47efb60ef8b75fde", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.d.ts": { + "version": "8cf2c075482fe283e88c8a73385bde72b6e905253f6aae0c226d40ed53a61cea", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-flow-logs.d.ts": { + "version": "5fd4226b456c35aa7f634559c0b6a79391699b91a905c2d6ea4b49b1798e217b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-lookup.d.ts": { + "version": "08719b837d4d44d7e776e82e439fed2030471c19dd4fc04a5842a9ec9f8f8d5b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpn.d.ts": { + "version": "5830f7c64a326a07d12ca644c2f55fafd47994530a1d6825cd3a94714c544dae", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts": { + "version": "661fae677a98e43dfc381d3b29bc5fc651f5c4b1ffbb8c1fd6c2e61a8dbe25c1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts": { + "version": "741f5866cdf1515aeae1ffe28ea9f299d9d0df0926e6bff262565aab915ded84", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts": { + "version": "28025fe76fdcdcf7662c1712fad9f855f96b5fd8f68c0badd71c66acd62a9367", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/volume.d.ts": { + "version": "fd7f58f5180356ab22198c47841f5ebdf8c9101b318ca3fa3ca5a975c0574225", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance.d.ts": { + "version": "328c1c1cbfc25e00d60414fece8695b2686749f80d9d73f1302a63116580c6e4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/bastion-host.d.ts": { + "version": "fb4ddbb64c452ca8dbc98efb3552aff0bd46b336ed44cd5fdfec30cb44758f46", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/launch-template.d.ts": { + "version": "bbe73a51a3cff5343b2361ae7c80f65269a379d61b47604fa4c660fb1ea45d1a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-endpoint-service.d.ts": { + "version": "c0eeb0dcf256c344ce50a45ce511822796753a8bbc9681cea8b32814df8ba0d2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/ec2-augmentations.generated.d.ts": { + "version": "759da1035d215bedcf4b183ee05f43c8ff78d2fabb5445e90e756575b8ae762b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/lib/index.d.ts": { + "version": "4b7e1eb231636a6d0fba40a5ab9d0dd5760d82a0e7a1187b7ff091931b82acd5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-action.d.ts": { + "version": "3421a74ff0ecb16e5c48b2a764257be25ca97ad30f215bfb7c04178ae9c7acc7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-listener.d.ts": { + "version": "2c1ab3ad1e99c78428ae9ed3e998d17a3a47339182c13cc83080abc3c5b01b49", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.d.ts": { + "version": "5178f90d6e7c692fcc4bbdb33f8d21a435aab707dda83ab596a20954cb8be191", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.d.ts": { + "version": "aa8e0ce02a3a9c2bc0ee9186ed751e0984c0b3f312ecec77f95b2035d14c3be3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-ref.d.ts": { + "version": "d5db74b7776fa225c6f3313f39cc6c1fd07375e4639c9495a47a46cc19c64757", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53/lib/record-set.d.ts": { + "version": "5d4ddfb4086427576a9fa0992d25ddaf1ecf33d1952777f6f8a2f5b093d14200", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53/lib/alias-record-target.d.ts": { + "version": "d42c2687f5f3d670b7597e65ebcf4b7c94c8843df99b318c867c0bca3e6aa974", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-provider.d.ts": { + "version": "2e09352f75918851c173f15e2b09bb8209d469db0e8154b10e785f5cd215357b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53/lib/route53.generated.d.ts": { + "version": "d0217e7a116ed915e18292a0ef2c17a8f34500f9396eba2ef7c481b8362bc7ea", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone.d.ts": { + "version": "01e98ad0fd98381a875a7781e4700800ba890c364bde3fc3a519edb976180638", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53/lib/vpc-endpoint-service-domain-name.d.ts": { + "version": "0f067fd8ec2fe24e13d814fb40ecbaf2cc893f48f3fa304be2d954ff3fcdc391", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53/lib/index.d.ts": { + "version": "ea7ef23171c7f7b3eaff54b46dd1bc560dc526d07d6e55872e465c09dddae990", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate-base.d.ts": { + "version": "315a283bf41094c1aca9ee9832ac55611986a7f24afe7307fc5a348dd5256151", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate.d.ts": { + "version": "a18d9b70f49db65530b86b9838a75ab582126cf7244b314cabcb7b268748f478", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/dns-validated-certificate.d.ts": { + "version": "16cae7f82d62ee529c2379d9ae32e9f538646d96c8423bf6b4b22ec4feb95a45", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/private-certificate.d.ts": { + "version": "954b1c3e129c7f27993e28a0660e8fa8337ff4b5c0520265a4d106c124dbc6bc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/util.d.ts": { + "version": "2b12b2d8da470cbab53f003763be70026cd98ab7d0624490090da72cf5e87a0a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificatemanager.generated.d.ts": { + "version": "45526253ed6753832dc6b87c02415493f1b93dc602066b8f1c1886bfba6c5bfd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/index.d.ts": { + "version": "84733c683bf75c6dea361ebf8f52d25f698e0e9acc2e61d785b512838ad2d92d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-certificate.d.ts": { + "version": "134e3d8c9c6cdadd5c0803361070d477a9872781adb921ba2a1ac98a70544a29", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-load-balancer.d.ts": { + "version": "ea2ca9387037993aa60f7336c86cda4a3bd1c6ab957f31d79d3703f1effc74c1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-load-balancer.d.ts": { + "version": "3eda13cd5816ef6cf1b84767d467fbd3f28361060d9c31f5a2a928b9a60825c7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-target-group.d.ts": { + "version": "b64d5b5299f4bd82573a58d082bf71f1fa234d98151981aaf70b417d2d9bb791", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-action.d.ts": { + "version": "45d4c34fa2d32b2ad0444ba8411695e9b9cb57bcbf3a214c12297caaac5c6f36", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/conditions.d.ts": { + "version": "a1a17387a0abc1c12ecbe55ee4e2b87377531cfcf663f45cca6f3a7845fa34c4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-rule.d.ts": { + "version": "badbf5f87245897dbec2023fdb60c53a372346274ff62a1281bf84abf0353af9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener.d.ts": { + "version": "2dc4b67281c84785997c0c00ac71dd26f865a3b27ddcd826de1a006505025627", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-certificate.d.ts": { + "version": "8e11e1346528a2c4961e3d18063fc84c7547321e114569c35893a051a85b62ff", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-target-group.d.ts": { + "version": "dff31e391880bcd527fe9d066c339f5204482b21c62083dd5d59ddb53afc95c8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener-action.d.ts": { + "version": "dbaa205cf8d2944cc70c8f672eac24fcb0640b37b874458e631369cee2e342da", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-load-balancer.d.ts": { + "version": "037355559084ca6adecfc761d6aa528d4db6cb09e7161d2b748b03c8fc2c4f6f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener.d.ts": { + "version": "f6eb8f15f05a8b7e8274e621ceb673f0afce2d393252c2be0d0c69f1b7bebd3f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/load-balancer-targets.d.ts": { + "version": "a0ec53f1ba522a3fd3e74be35c5e28b9f7f2a9e42f3efebc414fca77d5e4b7fc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/index.d.ts": { + "version": "ddb7ebb6e08cb435fb3105d502552c9a27a091223f3c3c9493d246ebd16ea214", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/vpc-link.d.ts": { + "version": "cecf16d5f40041729d940b1c0c8e039181529c0833c75b07fb2239af5e70c78d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts": { + "version": "24c28406be1e4eea084f194d3c33e82edc24e18369547080f2c195e92e0bb427", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/resource.d.ts": { + "version": "a44778b9014653edac3b6b35e928187d766f6381f6b06a11ecc9d2a561203d45", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/api-definition.d.ts": { + "version": "089da148e44bcc6640a980e4abf69ffdef9fecd8f9bd5c0bb8b7f841aec1db05", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/access-log.d.ts": { + "version": "d52e75dae9615880ba454bdf0069629900eb01125e300edbf96a5072fdcccb6d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/deployment.d.ts": { + "version": "b69d971fdbccac8815799d4c74668144b2f471dd5e1bd896350599bae72e7bf8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stage.d.ts": { + "version": "1fc2e1a7c9419c7262019fff59cf0caac301785c54dc6487254fb775b7cb45b4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/usage-plan.d.ts": { + "version": "60daf6953275cf2c35aa101a58069e420c435fd4723d88843ce632ee01645aa4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/api-key.d.ts": { + "version": "8be9f6b815a4364a6f00975565ec99bb5ef5d642e905a2832158376681332918", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/apigateway.generated.d.ts": { + "version": "ad61dcc77c19e8ce78a85d614bbb9a267e6a4a96ae2100c9de4cad3c774a6665", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/base-path-mapping.d.ts": { + "version": "2c52b1957a3d9c484f49b35d2a47baa5fe2c760e02bc50b72256865cbd028736", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/domain-name.d.ts": { + "version": "f831daa938dda078cf2ac82fb9d55256d48686dd077aebe0f06fcb80a7661330", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/gateway-response.d.ts": { + "version": "6bd8b587e706d39f65819c76f9dfbd3d4348a27af1429f1035a8a16a9168d136", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts": { + "version": "a0546b0c9a90019ca32efb027cbcddadc37f7afd783ff0b09eb38c9eb6d1a37f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/aws.d.ts": { + "version": "301ad1ff7d638c456b77896706a59381513cbe15d6aafb6426a5f98b80da785f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts": { + "version": "95a627b79be61e9b3ccbce6736070ab5de62779964b5f5c5b84adf2a2fcea057", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source.d.ts": { + "version": "1720b2a2fd30f6c8d86734f46a40cbfdf7ea22d509133b7c91048694e079a6c4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/dlq.d.ts": { + "version": "d5f1eff5a6b449222587589e1e328f88cab03ea5ca139b543fe814a3abb0de77", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source-mapping.d.ts": { + "version": "ca2baf796edecdd4b2c10ac0700e9fd9f8f90509095ac86ec0385611297aa67c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-version.d.ts": { + "version": "20397ca8dfeef03b4fcf8ee1b06c9b22956c1771999f4f6d9d103a5d172a8ef2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/permission.d.ts": { + "version": "bf5a30196840f8f6c1db0951d436bb9e53d8ddc976ef6d81d722aea4f5542b77", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts": { + "version": "a67a5259350ba7507ec140cf3a6cd3df41d3285d1c83250ab57b51d48f240f10", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/destination.d.ts": { + "version": "979985e719c751dd8ec509c32b987082de7ac1a0ddb70ec1a5253c870a91069a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-invoke-config.d.ts": { + "version": "69bb91abd2f5e9ea4c64e34f0e53d1813675be24918a52f162773c41893ea46c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/applicationautoscaling.generated.d.ts": { + "version": "6c019b1f45e107a17d246b8a11665e19c44847ecf39f6f7688e3463210bb6fb7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/schedule.d.ts": { + "version": "d6a27e12ef87571ff8a7bd7df280c8592004364be1332dc542ffa425e940950c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-action.d.ts": { + "version": "b004095104e3a265283ad872f3e6d530517da0f2a0030428ce17cf4d277d078d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-policy.d.ts": { + "version": "6afc1ed149b1fb6b4dde6f30311effcbd8de260309f039b58dccf03524e1fcef", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/target-tracking-scaling-policy.d.ts": { + "version": "984ad36886938b9e416367ad366669344708b86c2d25337633c24462104e2398", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/scalable-target.d.ts": { + "version": "4423bb91e4de216171d6441deb8f437c32144c710d4963dda732958d3df76eb3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/base-scalable-attribute.d.ts": { + "version": "b2fc139fb732d7c0e76ac125ed001b518c2f6c2d35000c077637a472185e14ae", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/index.d.ts": { + "version": "b29ef08f595c3af2bd38eab4365a7e3cff7008cce9e347ffe1f7ae20303804ef", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/scalable-attribute-api.d.ts": { + "version": "62f8087fe66008151d3f14c58e83a3d61d028138c8de26a86128d4d53840b0c9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/alias.d.ts": { + "version": "4660bba1e7d2c29e984e78e390d5edb727d1adee19120e4df00923c3271f48aa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/lib/codeguruprofiler.generated.d.ts": { + "version": "18664be90220d6f30747f7dcf1d483f817790d51ea09272f96619b04a9e328bf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/lib/profiling-group.d.ts": { + "version": "63d8a684d9cc94753af6b4d638d52f4c0dfde22f21e4fafeeeace2fd009643ab", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/lib/index.d.ts": { + "version": "a5bb5e4357a30973b3a1adfacbe4b558ba6fa3a10cc1ab77217d392c7f56ff9a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sqs/lib/queue-base.d.ts": { + "version": "fb571989dda5b3c455a570cbdf283922cd34fb76aa54a14bccf9eaa0226c39ec", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sqs/lib/policy.d.ts": { + "version": "fcc69b5f3a1de931c90a022104e421649acf20060d5aaedd6bb75cad9a3d6086", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sqs/lib/queue.d.ts": { + "version": "84fbf6315cabc9124e10acb6469768ecfc4b028f44a8a8dad3134d2cd5b983c4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sqs/lib/sqs.generated.d.ts": { + "version": "99bf82c29b628b2b277d0073e426c50a3963c59588274b30db90ec27b5697b92", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sqs/lib/sqs-augmentations.generated.d.ts": { + "version": "c050abaf24bbb456389c0986970bee2efadb77884edb5c1f1bfe1ad2fb27b431", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sqs/lib/index.d.ts": { + "version": "118e05e9b18bdaf4aec845e8a9bbfc4982d6ac716950d65b4974e8ab0e2ec74a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr/lib/ecr.generated.d.ts": { + "version": "3411fd7a833d1bf5d79008147567bb27c596f8a693e421ad2ed6695b5c0f2162", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr/lib/lifecycle.d.ts": { + "version": "021bed3135de53adb488d0e52cee72ba8ca9431560f15e5a128f246cd2224566", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr/lib/repository.d.ts": { + "version": "43e08998cca5c128f59949cc1e99c017eea468767abd3387a99189aae178ba50", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr/lib/auth-token.d.ts": { + "version": "1788d24064e07d711b5b685713c8421fdf5c5275e1fd8dac7e6d6c68244e60f6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr/lib/index.d.ts": { + "version": "1b8ad5a1e2d7fc9e9f7b2f9201e887f941031eea30d8d55b32eb3297fcd95636", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr-assets/lib/image-asset.d.ts": { + "version": "905a16aa76dd6b4529da8a8244363184ccf261010c955dc6635e6ecbb683fa0e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr-assets/lib/tarball-asset.d.ts": { + "version": "d9b1081f90528090462f181f596fed84b14837a23d256cf684a88a948435e23b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr-assets/lib/index.d.ts": { + "version": "9bd90926661ddc2eedd37b868dc12f05982223ecd574ce85d2c6619e6db567e3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecr-assets/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/code.d.ts": { + "version": "0ac07c6653b7efcf9ff5d7f9a8b08b0318b1ca68823e6620ea8c2e669b3c94eb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-signer/lib/signer.generated.d.ts": { + "version": "a54fdd513edcefc70730f17c96cf5077fca772debd9fea20dc3528e207a70d68", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-signer/lib/signing-profile.d.ts": { + "version": "188cdd5bcb0b10a5828fdac1b578de6bd601384415caf470d49c403176b2ab3b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-signer/lib/index.d.ts": { + "version": "b4bb1e63dec32e3a9238ca689a2fdabd99413d4e929542a099392937e5d03b52", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-signer/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/code-signing-config.d.ts": { + "version": "f33d42bb2b911c171029de7b556605c621d97669a9fbc4ba185dcc1dede76532", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-efs/lib/efs-file-system.d.ts": { + "version": "3b7f98b1c1432a559b31456812aac00495868c7dcb289854dc02c53943290726", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-efs/lib/access-point.d.ts": { + "version": "bd66a3aef4bb70449b2385c3dfcf64332ecb2232ecc20fd3a468543771764d9e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-efs/lib/efs.generated.d.ts": { + "version": "2911f4154acccf89cb7cc0ae576e0f98837410c73b4cbde7b482de0a4f838312", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-efs/lib/index.d.ts": { + "version": "8b9ac46b4d15cd632cf4138a750f8b8d6a130731b7c1c843f97bb96837e8b32c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-efs/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/filesystem.d.ts": { + "version": "5595566a3932cb526c580b726154bd46b0413a74589e1e852914f034c46aa642", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-insights.d.ts": { + "version": "9ea2c5c54d63121522ecc70bd65f1a01f6ef6144c8e6473e2d61066de7e770c3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/runtime.d.ts": { + "version": "490d57154632ac0dd930eac12b5ac64ebe26d527dfc3a8e9374517c088b2bb75", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/layers.d.ts": { + "version": "9e5f7eeee5e583a849d25d043dead78d04cffcd5ebf1117dabcb56dbd1a8481d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/log-retention.d.ts": { + "version": "cd1d1065ae902e4d6effd111268a864ce7c56de8653764e87964f15424b6a164", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/function.d.ts": { + "version": "2afeb31e5818e62ee7a9b13b7bcf4e49bd73ec4e87401ebfd24b722aef836d79", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/handler.d.ts": { + "version": "2a911a9a73ff4745eb6a22c3a87ac039190e1a3067510e5e9586d5d52ef8c6d5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/image-function.d.ts": { + "version": "004c6a347a6d33825de79e4a7dd89abfcf4e4f3711154d5f91acde2394991182", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/singleton-lambda.d.ts": { + "version": "319f7f0a36745cb6e4bb01507631e98789855ca9ac90d260d6991eaba0c06fa1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda.generated.d.ts": { + "version": "5ff9edfcc29cb8b108174a1b0b29fb332acbe0b6c360221326e1eec5628aa524", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-augmentations.generated.d.ts": { + "version": "4ce2e8a7be5f04bb6dfdd79378326cbd2c962660489a95a84364d311e9c0a85d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/lib/index.d.ts": { + "version": "1ca863a03c9db5333671ffd1e0a377a7c5e43f9a6665b68ac787394bb5774849", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/lambda.d.ts": { + "version": "3ac9734823190b43079f51452da044e8fa078833042b5a9248e60e1f06000e61", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/http.d.ts": { + "version": "e2e301978765bec9eba56e44fb6f39c565dc58aac15ac42f30f956413932e0ca", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/mock.d.ts": { + "version": "fbae60ce71656adece04e5096ff9af6060009e11cea02d91b03545cf53219686", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/fields.d.ts": { + "version": "6a40cfd3943a4658e1ff1ae0e18e3cd3c6493423321c9d4db5273de77e6fed0b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/activity.d.ts": { + "version": "bbee8b932e5228d11e24d40a44c1b71a347d7a53920f343d3b522120553f82b3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/input.d.ts": { + "version": "dafbd28576d739c10e3c5f339706e72bb6e82dadd14295cc15f0ddd07b207e62", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/condition.d.ts": { + "version": "bfbf9272ebce26704e89e61e94bb0d95bcf5d242d76f9329f9ce33a96bf040c9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts": { + "version": "a6939a165c5e543ed41bb6192e40ea6e66da3ecec6db333aa5fcd18e07b37279", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-graph.d.ts": { + "version": "08f767594f7847c1b49b065826aeb067e26cc17efa769a84d2410aaa4dfeb17e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/parallel.d.ts": { + "version": "1e098984678af9fa77dec29ba75407207a9fcf9d16102b56ad6f10d9458eb48b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts": { + "version": "71b3c80dd984646926260e419c1ac8e02a13ea72b37e7dfe4a9c5d27b7ad53fd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts": { + "version": "6e356a5c35f595f17a8afd3faf6aae03be308ce1239e9213fa60fd4efa450855", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-machine.d.ts": { + "version": "a78be1ebf4b28d966700bbb2d035b1f806674e6066f7db327fada780ccc70a66", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-machine-fragment.d.ts": { + "version": "dfb7f35932342b71566dedaa3c5fb3a382e392472697dafa47099029fe7a76c8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-transition-metrics.d.ts": { + "version": "1c7ffd0adee01c967d58a93a7aeddd213c4182ee0f071f40458e855b1ea55bb9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/task.d.ts": { + "version": "d7ae642be36294b957f0507922d3a91a45da944d456a1ccc0253267389be847b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/step-functions-task.d.ts": { + "version": "99b8543403a903583dbdd39ff427508553cb96f842a2b43a2156501d9b47f5b7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/choice.d.ts": { + "version": "e5cd51eeb4a45dfa857eba96d81fa510aa411be738e157afa21df8ef4f403752", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/fail.d.ts": { + "version": "d5823a6793e221e2d75224ef92f773a51ec02970a33d95f39478fedbcb1265f8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/pass.d.ts": { + "version": "dc28935083329558f2afb0cba635be264e93b16cd49bde64960eab1329350339", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/succeed.d.ts": { + "version": "dda49827815e2d2d50c95a2fe0ab0210010e67e20aab1c0a94c3235331753f3f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/wait.d.ts": { + "version": "9e0675f56011fd651bb1ba082115c2ca661c089c9b4c01b810d11930e43cd5ec", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/map.d.ts": { + "version": "4ad9ef84e4b0d36f3d579880439cda049fd5f0b93fa0b9b5844c5198afa35d83", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/custom-state.d.ts": { + "version": "e372e675f33506fd03c200308cd5da350219bbe80e534ffcf1769a223695909d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/task-base.d.ts": { + "version": "a5e62f2263fc64c080492b247af44d6dd71075235b5344bf41c9d4dfed51a712", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/stepfunctions.generated.d.ts": { + "version": "e3c102c140b6e71de40838ee5101bd074a97f24f146abb2fac54768ddd98b3dd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/index.d.ts": { + "version": "309691df26aaeb010a26808b910d8a2e5485ace305e4bb17761ea2a32415e876", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/stepfunctions.d.ts": { + "version": "4cf3e59f0b0b0c0275e8274468ca500d5990d3b663ce76d4d88fc95d3cc41c83", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/request-context.d.ts": { + "version": "ea182e1aa539d770a423f2a4b20cab3c24d73f76125e180b525780624ea57dbd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/index.d.ts": { + "version": "a923f2a81679c4149c1ca65d09fe6367b689bb6ae037d3d7298be9f5f063234e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/lambda-api.d.ts": { + "version": "9f869382b82743f79c5f0655741212ba4234664bfadda41879e17dbfd9517913", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/lambda.d.ts": { + "version": "a063ba75adf7be68a1903e2a35d66299fe2e35add7e706a7b1095161391f6e0f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/identity-source.d.ts": { + "version": "7261169ac5e28ce49c42999fcb9ae7d65257b581a214141e9e8c737ea1bf6e07", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/cognito.generated.d.ts": { + "version": "4a1a709d88e5408922bd8aae23b22981c51862764d0eee50b306f695ee48cce9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-attr.d.ts": { + "version": "d93e5ec4f23e24d2231ec6828192832b78f5cf13908955e2238ae9e4e99354c1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-resource-server.d.ts": { + "version": "5abdd287ffc681a2b4889c1bbf8b8dc9cc40b6473279ba35c720535608762563", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-client.d.ts": { + "version": "49cbd04a5f467a789030b0dd13554e77a02a116fd61e6860755ed146ba211fa2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-domain.d.ts": { + "version": "2ab5e76b39dde4b317efc9a41deecfa24984d9a4a442edec335bb55dbb00fddf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-email.d.ts": { + "version": "3ba629206ef0162aec2fb83ab14107c5718916d805b54a93fc670498ac6518df", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idp.d.ts": { + "version": "7849b69c633a0d43f58d5305372353e5f44a7386aa90a3d2f8d8c8ecf39534a5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool.d.ts": { + "version": "84777ba8777ff2d71ffc7c57f9b178d64a7578a0d0ba894cad3dcdef1da889e8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/base.d.ts": { + "version": "7a088a4622a3c08b77d8f260edcf896f6215eca4d3ae4face3a845dbbbcf729d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/private/user-pool-idp-base.d.ts": { + "version": "aabb9c1ac5b9aad6243613b7529ac52824bdf0ba72e6a316d55e9fee3c8e4f24", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/apple.d.ts": { + "version": "2d480f470e3c557032c33f16d629cf954bf4611a85b50b9f87e4035b0e8fd739", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/amazon.d.ts": { + "version": "d3c9e258b41e5fcf5e2060379c8ec68549c8671848b0add971befea6e06f675b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/facebook.d.ts": { + "version": "6255c5e8accb3c247d7ac485739d14516e101a2a9e320cc0034dd29ef4a913bd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/google.d.ts": { + "version": "c5bad6e9feb225761343549df66f2c41917f8b962ef4cbd4123d7527ec53b4e0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/index.d.ts": { + "version": "75fae296278b5100308eb178074596cf3f269ecf3a3d340e4da84d546ff9c855", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/lib/index.d.ts": { + "version": "38483be216d21cbbf21b7e2e57ce0781f19024542b52a6606df6275d27f769d0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cognito/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/cognito.d.ts": { + "version": "f4f8eea6cd2a4b7da23b3b3ab7bbfffbde7bec3cfd9dccc61717244b9d5ff0bd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/index.d.ts": { + "version": "5a6c315457da2d0cdbb026248d43c7c41be01d14b411a4b702cc5d2a504c1173", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stepfunctions-api.d.ts": { + "version": "678f279a89260f1001d51ef9c6b4f2f5bf0f76fbecea8d3a5e858ea71eb169f9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/apigatewayv2.d.ts": { + "version": "69a25beeaedfd38d8567aac7b912c80bfd31a5828c5dadd7bd608662e9a8a105", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/lib/index.d.ts": { + "version": "675d174bb18b348eabb2d316b2e9d36e43a3a59c8c182adfc755ef5902477394", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigateway/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigatewayv2/lib/apigatewayv2.generated.d.ts": { + "version": "a2fd4f70217a1852026d66506ee9119e9cdf5b841985d216dbba36c329009c14", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigatewayv2/lib/index.d.ts": { + "version": "72b44fa8c60f699b4afe9e0c79f444527bcfc2417649456fd046d7cc8646ee23", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apigatewayv2/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appconfig/lib/appconfig.generated.d.ts": { + "version": "8a19774f26d3ae2482e21f5e4b785c65b6766b56154089048199b2a17a62586b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appconfig/lib/index.d.ts": { + "version": "78e1976f64125fff008dbffec8583d46e89957b00e7f436309d5c8b9bec68f64", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appconfig/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appflow/lib/appflow.generated.d.ts": { + "version": "7683c1ee9d1c1367f724f31b14557a04bddd14d4dcb58297346de28ee6d16444", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appflow/lib/index.d.ts": { + "version": "1b13bd6e55afd762898f412ed85d5428e5a041ede3d5052c9f36620fb3d2a922", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appflow/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appintegrations/lib/appintegrations.generated.d.ts": { + "version": "eba0da367230c9ab3bff9a61070fcd86d0950f87c407569d4c98bf60ac7ab344", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appintegrations/lib/index.d.ts": { + "version": "580c2e9f22901acd35b1c51b26bc9b45e1dc7e442ba604108aa6afbd7ce51d77", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appintegrations/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationinsights/lib/applicationinsights.generated.d.ts": { + "version": "41f2de858e6e4c7c2cc31ac1875da7fe7e30bb7a0aac37b97366923f13f49641", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationinsights/lib/index.d.ts": { + "version": "36e39d5ef00371b2c42267938fdddc6095bc3e514ace229e3e2ba4a7c8cdf94e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-applicationinsights/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts": { + "version": "28aeb4fd9e295621b0c114580ac019da51536ed994e91dfb92c7424c24d028df", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/header-match.d.ts": { + "version": "d2a717004f184dee27fdcf6190d229a4d03a0206e069599d288e5cbac947fdd5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-method.d.ts": { + "version": "cab436f747b80e00c9b4fa5a67a65bdc3d065f013913ecb38b244b5c7a8bb84e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-path-match.d.ts": { + "version": "b4a85b25c1a5bab2d75baab8f70424e2c15b1e835293bf7f1c95c88a865d0734", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/query-parameter-match.d.ts": { + "version": "d70dcbd2decebd339c237d256c29c1c515654add60958947ae9ad7be5749cab2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/cname-instance.d.ts": { + "version": "262cf5e677092ea56005f0c08dc8f30ac6ed9011bb11a188a45e76ddd960da25", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/ip-instance.d.ts": { + "version": "c57f6d96edc905d326804f3d627a30a58e82a00a17e62b3c05b90eefff90062e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/namespace.d.ts": { + "version": "e95d911258364fa7ea433e288ae6167aa0b0951b252943aa6cc7a52a783bae51", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/non-ip-instance.d.ts": { + "version": "356aeb10bb729f77b31ee2bdf108bb4d9b6df839f3201e17fe09fcc77ceca8a8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts": { + "version": "79647d683cfab40d7db9ed5a22f97c067732a251b805746ca95915c348fe323c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/instance.d.ts": { + "version": "65dec8375bf54df66188bf8266354b9beae120e2a64d9541446249e0f0bdad9e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/alias-target-instance.d.ts": { + "version": "8decd1eeb108b148152d45bc3715288f36840ad21847bf75660eecfcec2587b1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/http-namespace.d.ts": { + "version": "de4eb0f10f9e13957253ffbd0249ab34e8c86f3e2f3b17984ed1676304d072b2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/private-dns-namespace.d.ts": { + "version": "352c6af86fc8eb862cce5aceed97b0d4cd3d1e085cdf5307be93270c7946fa9e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/public-dns-namespace.d.ts": { + "version": "87a2bc03782d2e7ea1ba8fb61d245f611403ea957391c3cbbc5e96c282365a40", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/servicediscovery.generated.d.ts": { + "version": "92759c0e5ace92b164160b6a84e1fe71c1952ced7c77ac21a77cd5dafdb4c98d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/index.d.ts": { + "version": "1316422eccfc8620f8178f6ccb8a8ab28a4b506833668c6da12d7ed4e2665f2d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicediscovery/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/service-discovery.d.ts": { + "version": "83d029604d7f0271219214dbbb88d76f3cead196759ae16fe53d063d57339ef7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-certificate.d.ts": { + "version": "886e9753a185cbaa35d7cc5e7907e1dcd7f5d0944530a090f8fecf3c946ebe28", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-validation.d.ts": { + "version": "2f91f13f04fbd882853bd6e9431877a13e9f381ed516cc5ddfcce1152f32cf41", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-client-policy.d.ts": { + "version": "59f4912cef13cdf46c849eb4c4c4e7b483da9b4301aaa5a2dad964e2a999b88a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/shared-interfaces.d.ts": { + "version": "faaad2a10b758f5624996a6ba62f8c931a87dcb3707caf2a6517c33e5f911378", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/health-checks.d.ts": { + "version": "ef588a5d01436ac8e2cae3aadb978029c4881fb3c896ff8f0676e0ea46273b90", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/listener-tls-options.d.ts": { + "version": "47a319f93535a0bb4a1e0114523f24c7125cce4ce065d3251d03b070100d71ad", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node-listener.d.ts": { + "version": "a80e90fe711f78ffec0d227a00e0bf8c9487f21dac77eaf327f35a0cfac49b98", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node.d.ts": { + "version": "fec76ff5ddfc568072e18dc415ead848fc2295895658d346c50c5994d10c19dc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/route-spec.d.ts": { + "version": "3802dc59a8f806e27e873591d66343cbe5d34b173494391b9b3e5860a4840c18", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/route.d.ts": { + "version": "57ee023efe9cf16541d19205aa9978e01dc823e6e8b18b7b3ab16db4a4103d39", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router-listener.d.ts": { + "version": "37195aa9e54129f128c53e8bbefba75bbcb9b62bcf4858db35e4eaf86aaec464", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router.d.ts": { + "version": "e942b1f00f1d92f5237f4bbc1106d980bcfdc1c7f7f52e649a6f0264bc2dbc81", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-service.d.ts": { + "version": "2e478657f0f2298eb48fd1b419545eeefd76d4eeb26eba32b834893378349b22", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/gateway-route-spec.d.ts": { + "version": "714cd4867654b64d2a2643986df6eff592c4733562754b2ec066862ad13eacea", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/gateway-route.d.ts": { + "version": "4a6599a556a43465088a068a99cfa1911cb57133b76bd6a126f7898bcf4e5a5c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-gateway-listener.d.ts": { + "version": "50b4b69d3dec2a5b5c0489676bfe99b3e548b19c4d612c5071f39756f12e7c68", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-gateway.d.ts": { + "version": "59360a02dd7f3574554f0e568ac6b2d2bb43988da08118bdaeee334b5f8e7d20", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/mesh.d.ts": { + "version": "3b6279e6b98ed5cbb40d63a78c0e8205ce95d3e3dda72679e6e3ec92e18f00d0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/lib/index.d.ts": { + "version": "f6ccc364ec55aa10f4aaac36ea37cfa43889ca1ac261670165ece58a469aca8f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appmesh/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apprunner/lib/apprunner.generated.d.ts": { + "version": "a28476312d1797f7491e4709223c23f7f654fa86dd671553537752dbc46f3fc1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apprunner/lib/index.d.ts": { + "version": "22a16937d366ddd13e9a7ccf83158248525db12ffaeccf8cce68a9d7cad95f4c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-apprunner/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appstream/lib/appstream.generated.d.ts": { + "version": "a615711ed9d8264e0d77949ed8b859bc96d482b77a6799fa20d6899a351d4be6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appstream/lib/index.d.ts": { + "version": "d4bd5f5b290d3da12e46a487d76c85eefd0288b365a779d49ea6bc6b5483c88c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appstream/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appsync/lib/appsync.generated.d.ts": { + "version": "64c99338f97817b7b21530fdbe3cdb754947ea2255663ef9ffab39ffa3b60927", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appsync/lib/index.d.ts": { + "version": "5aa6e8a10b2e01657a3567bc3600df45b951d32ed431f489a27d5c4d4a5cdae0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-appsync/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-aps/lib/aps.generated.d.ts": { + "version": "ed2bbc41be47fb800dbe7a09eaa45c806b2e56f5090753e2e16a1007a5310d8c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-aps/lib/index.d.ts": { + "version": "cabed8726b9122dadb1bf35335df50cf7d4e06a5eec7190217b20b9d2a3dc5f2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-aps/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-athena/lib/athena.generated.d.ts": { + "version": "06171c395adaba04e4fe67581c52adc11a2fbc953eb82d4d65b13af57ca0fde7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-athena/lib/index.d.ts": { + "version": "53203cc4c3ab9d4d04d35a2aad37640bf565cce468d1427524f31cdd15951293", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-athena/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-auditmanager/lib/auditmanager.generated.d.ts": { + "version": "f1e5759bff2e066155ec06ab1d65288c96aeeb905be4991247c621250151b708", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-auditmanager/lib/index.d.ts": { + "version": "d79d9ac9a37fed1d94af34617daab8bf5913da87bbf7d5ab0af5e2a76770357c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-auditmanager/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/aspects/require-imdsv2-aspect.d.ts": { + "version": "096c32ec0427fd6113192e670c7354e679502e69ded90ad62c9f5bf961a8d160", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/aspects/index.d.ts": { + "version": "6d23d54eece68bc6937367aa0411d97a106d6a532069c9253c6eee9d6af06ee2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/elasticloadbalancing.generated.d.ts": { + "version": "c7a39f4760fbb27b6acbdbcf8b5f7aae33219931ff1fddceebc54c1458b8216b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/load-balancer.d.ts": { + "version": "f67b8f89b58631ba89489c7e81b55a6826f3d32c35473b21dc3981e030441848", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/index.d.ts": { + "version": "48866c22f3a8fa18802c21bb83e6f7e0f88295257cdf314a007689d877ab3bd9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/codestarnotifications.generated.d.ts": { + "version": "d083b3efb268adc200c703210fea31bff82aaf5f18032f0b4e4476931143dc33", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule-source.d.ts": { + "version": "081a3fd2c658320352f60539b344b0af275d9a14a3059af2978df6c3f4a27509", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule-target.d.ts": { + "version": "0555a1df23ac5cfe659026efd93479fad7c617476623c24613d51d86e1c06215", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule.d.ts": { + "version": "1f18204e8541de5d1eec728b74ac866fcf6310810cd76e2622ee6d8fbe8ca894", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/index.d.ts": { + "version": "8e6d6ecbe464b23eca78f412a1ed2243379028909b3e81204a4f1d9a5e338abb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestarnotifications/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/lib/subscription-filter.d.ts": { + "version": "80720cf17d5c11d417d0147eb7f1bca675f2dea7b67ada5b64f516a6d33b7288", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/lib/subscription.d.ts": { + "version": "a6968f099a74afe3d58978f509020bdf0dc5ea00c30295e8f14207de259f4849", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/lib/subscriber.d.ts": { + "version": "e10e55dd566c37d93afab8f5c1bbc28e399f515956615c52e00ec577656010c7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/lib/topic-base.d.ts": { + "version": "f0eb12bfeb3102972f22e7c07f37dd6c44b82d9d760f5d525ea3f9e579a40e4b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/lib/policy.d.ts": { + "version": "e3f91a274505b9716b3f0f214eb2986cca47ab4c806f4d7f0460d547ba475bc1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/lib/topic.d.ts": { + "version": "02db6454d021a26d28dd983782b78687040f714a7104138648b86a04d6f5145b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/lib/sns.generated.d.ts": { + "version": "b4476fbe2f1367bc610927528c124f5f0adbfc69024ca551902123a2edad520d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/lib/sns-augmentations.generated.d.ts": { + "version": "d4ca4adbf136691129f4a7ebcb175a3467ba05ebcffc9f47c893a4611761cc47", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/lib/index.d.ts": { + "version": "2a233a0e62fb6a337c74f3997c4d7431976c98d66120e6a995d9ff74b35ef140", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/lifecycle-hook-target.d.ts": { + "version": "7e13f14862b0569c6356b1a9d99a9ff35c78edb1a2facd806e8a2ab0a1213560", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/lifecycle-hook.d.ts": { + "version": "5bbe8ebd3532b82670a80e6ae9ce718ccbc37a9bb3d8ae8e5bedb112a61ec4ee", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/schedule.d.ts": { + "version": "b21318c91a95b354817e8d95283134cc657b8579f98e7539369bae813540e777", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/scheduled-action.d.ts": { + "version": "3d8b71ff9ffcf61dede0571476fb96c39daf0320e49666d11ae14d6ee2470364", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/step-scaling-action.d.ts": { + "version": "070c1ee0783283bc27b69b09cf08ffc9910f8154a33cb0a4dd7b6b811a493663", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/step-scaling-policy.d.ts": { + "version": "2cd6fb48b6cf6cbedd60d264faf7563a5b5e4806e86142700f2b99d0d9339d09", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/target-tracking-scaling-policy.d.ts": { + "version": "e6bc7dc90f59ff0023926fc4773ce085d7dc50271d5c0cde39c9b59db3725e52", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/termination-policy.d.ts": { + "version": "0f69bee5994df4a22a0e4ebb6c73e466ac46fe2e337867bebcb51fbb732857be", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/volume.d.ts": { + "version": "85b618aa35f30f6546c8f6067a8106693a419088a1eda0f265e74458f5a89387", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/auto-scaling-group.d.ts": { + "version": "d6ec6270d3b5ff97f9c00df4ba54d9c7c062051f3d4f6c6751702c476356331e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/autoscaling.generated.d.ts": { + "version": "7c354cc5d4caa1382e1055784c4435089b512325d2bc38d8ac520541684e3c60", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/index.d.ts": { + "version": "612e5382d85d2369c1f6e828800e71808fed51d4a91680d697ce1274d73a3f03", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/types.d.ts": { + "version": "3d6a9b4093324680b7848969ef088f00131d3548081c22d7954fae9235362d0e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/interval-utils.d.ts": { + "version": "906d7a03e588ef710e4e1c3e678e96c3f2eec8df4ab2210ae76bf7f4abc8d06f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/test-utils.d.ts": { + "version": "b511e91a088820153dd25a71c071cbd7a9c3369e8ba11a7826cf5304bf60945b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/index.d.ts": { + "version": "806fa993fdf84d1e067a6d15326949ae94f59d620538f75d824643abe3ee0aa9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-common/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/common.d.ts": { + "version": "ee18757dcd54a09daa40df8049dea5e87fa8a62353b7bc581bafd0d1315885fa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/queue-hook.d.ts": { + "version": "9120491865b55a69276dca1474d143fa25c537bade52ff139880ce8a7fc47064", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/topic-hook.d.ts": { + "version": "a4fe647fd88e528d69d95180603899f9563611a89c85beececb5061120068bb0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/lambda-hook.d.ts": { + "version": "dc754a0dd3c948b97482a3a3fde665c21bb048aa47d0d384abea97da8fad6c11", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/index.d.ts": { + "version": "2668326642e1adaf241492ef4c90342412a9bb29c2c0bab6c82fc3ffe2cf6072", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscalingplans/lib/autoscalingplans.generated.d.ts": { + "version": "ec360b3c06bff7aee766788bc7b9e5b16786aa934ce2cb796d1d5dc5a91151d0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscalingplans/lib/index.d.ts": { + "version": "1093fa71b1d0b599c7f296ef3264e48e557e32b9cce1974f97e458427e6b34d8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-autoscalingplans/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-backup/lib/vault.d.ts": { + "version": "1943b4364bc1055eb99fd128e280673d877ed7a12d07754c5fb8b2d3acd43927", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-backup/lib/rule.d.ts": { + "version": "eeb3b499b854cd8d2bde458dba7f262faf9193aa2d7305777663a8a4fac4dbf8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/dynamodb.generated.d.ts": { + "version": "164d0c352b33e1f04edf702d6bf57d1db6206c336b1edeb53ff888e2b46812b5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesis/lib/stream.d.ts": { + "version": "fdca0581faed1706c8ee1838bcc7e568dbd30985480b2d6c711de3f51072bd8a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesis/lib/kinesis.generated.d.ts": { + "version": "1f3ece2b6c27f0ff976161cc69b9436ad88ecb662c43efc5e36cc164f7044753", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesis/lib/index.d.ts": { + "version": "c228f397f126ff71e257fa8384c8b65876c4d62b3c3a57babfe5faf556ddb93c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesis/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/scalable-attribute-api.d.ts": { + "version": "d58b91d829f1608deda524a35785f95631a49da5318554c313a1aaeb143da15e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/table.d.ts": { + "version": "c4120908ef77f7f7df991c07e5d78d53c6c1964b1d97e13629a620b816618a43", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/index.d.ts": { + "version": "9a271e6241b3751078f16b72954c3ca52e1453204fc422d48f9ef8d04ba0c641", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dynamodb/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/engine-version.d.ts": { + "version": "e42093e0a956e287028a1c5dd24ce28f4e17172e648488074c86a8e2990864fa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/engine.d.ts": { + "version": "7bb0e749bc4994532e7834a031eced60107151c5166885ad0f3bd6d3180c75e0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secretsmanager.generated.d.ts": { + "version": "b1399e5e7b8bf6652b81f958e46786963f372351671a10d664a69e77a3e1c18d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/rotation-schedule.d.ts": { + "version": "613b27c8ea32a4697fc06f74bb10c234bfc4d92e664dd9e54e32871589c78126", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secret.d.ts": { + "version": "c4250cdfb98ad49e77ee25e05957ee273dbd5a38df0d2cafad3ce46ecff6ed57", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/policy.d.ts": { + "version": "0a51fc92b6c1250694e6fd3f5a61ac20c915c79e240ae3782cd9ebfb5d1a4bff", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secret-rotation.d.ts": { + "version": "07a791e08eaa3bda4e1aa1d56362407f1b18bb68a76e5d0881e8aa435b6df37e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/index.d.ts": { + "version": "4f751e2623025adc0f1486eb94b479736cf4949009990fd324753b881e3975c2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/parameter-group.d.ts": { + "version": "dc7966c14ee556cfb864310a62b98c686b9d2a3d18ed7d211ae3c97193c578c0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-engine.d.ts": { + "version": "a96884ead5d215e396c2891f62f2db2b3b4cdfa8ed2eb0f657aac898ab34d828", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/endpoint.d.ts": { + "version": "8ca1de4137a074794926e7c8fae80e291e95bfba469514221101e20fe4c4cd89", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/option-group.d.ts": { + "version": "a6a9195da75372e1d50b69975df433355e9eff27be3963277c9e4b878160b607", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/instance-engine.d.ts": { + "version": "f04d34083cd52da7f3ca98d2334c7771387026ae87db9a7d40a045b5f8ee0679", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/props.d.ts": { + "version": "b191e7bc927920b3fbec4c80f3f494a576ead89e10ea106f0c8d1f25265313ee", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/rds.generated.d.ts": { + "version": "4b96d6db47e7a4b1221761a1e0aa4168e5290fe23852915a8b12e9a8d2b5631b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/subnet-group.d.ts": { + "version": "88edf15f08c3d6ae65dc00a8072dca9d46e0a515877e33f512f4e79684667831", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/instance.d.ts": { + "version": "04cc7a5bf211e097b0e329c9b832df7aa8be97a39b9c7758bd521fb21d2a5130", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/proxy.d.ts": { + "version": "03c5eedd9115e5dbdb9746e6507310f961a3c5b4d3b8a7eee3c7adae72d1e380", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-ref.d.ts": { + "version": "8ec9ab602e20cb4e978ea66e77ae0e45cec8321d0521b354e4bc91f50e4b40e3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster.d.ts": { + "version": "0a3cf9584f38726f5e1a7b599f34a2bc3ac1340803ac2072791291e7b5e2c665", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/database-secret.d.ts": { + "version": "04be2118ecc07fe28e1fc5690b1320275801bc5608529af1e7eca279081f861f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/serverless-cluster.d.ts": { + "version": "9b548eb38ab8835f3efe8ab2cc9aa70092dbfbf01a6ffcc0f312350de17db2ad", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/rds-augmentations.generated.d.ts": { + "version": "ecdf0f3adb11d8d1dab86899104e926a032aa24638a56c1f70b7d39541950ffb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/lib/index.d.ts": { + "version": "aecff4d87517507f2993f47ed87f6b356e9d52e9249be8cfa7b51bf989ad0f4b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rds/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-backup/lib/resource.d.ts": { + "version": "2e6f65167f3240987ddcc9673ffd9cf5ce0bd46c774f3974bcb5af3bdba715df", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-backup/lib/selection.d.ts": { + "version": "a088759b60e833de6d27c787ae6c0c72c6f342f4d7a98a2205667fe1c19f0c95", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-backup/lib/plan.d.ts": { + "version": "40b8dbe342d7043ae5888bc5afb4e8c4bc9b243959fac789e09997edc07510a1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-backup/lib/backup.generated.d.ts": { + "version": "6e0b76641e4b6b433aa1ee3346f128a340724c7160e00b9ff454d8b690c58f55", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-backup/lib/index.d.ts": { + "version": "7d30483e6ad36e13b034dc288cbdcfad15940509bd908c5664434f42b2fe2bc8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-backup/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-batch/lib/batch.generated.d.ts": { + "version": "473fed9d9b3c608ae390a39573b3ae449b6033eff0e12e38f5a26fa37930cbd1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-batch/lib/index.d.ts": { + "version": "d48ad4aae35fc2cedf0ae53743ff491c15b354a1f5af3ad0ae74117409cb7209", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-batch/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-budgets/lib/budgets.generated.d.ts": { + "version": "c2be79c444bc72b0eab77a001f2fd8cabbc2bcf5ad2fd3a701253a4f0bdaf9d1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-budgets/lib/index.d.ts": { + "version": "500776b3b2c6d05ce723ef56e45e812bd5c836b50642213109e2eb4bbff20260", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-budgets/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cassandra/lib/cassandra.generated.d.ts": { + "version": "f929ab66e39930b2e8b6fe463177716e355e0cdb825de9c4d30382fa7fe31fe2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cassandra/lib/index.d.ts": { + "version": "aa3fb3ab27d45ee81587d9709f0d1b2ea8be7a202d01207dd02508b65f843a94", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cassandra/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ce/lib/ce.generated.d.ts": { + "version": "ab8290cad2dda432a6e7409a220e99cc64be29bdfce3a5d6b676ab5895eb8323", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ce/lib/index.d.ts": { + "version": "1053f33188b6262f832636705af3edb8ee7b5c01d69fceb1466afe4b37af4f83", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ce/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-chatbot/lib/chatbot.generated.d.ts": { + "version": "d73789ce0d02d2ac842575474ff52bcb75026162cd5a16ee9f16a23b81a3469c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-chatbot/lib/slack-channel-configuration.d.ts": { + "version": "348cbf21a56c0a3de29489c4c303b17350024f2cadb6fbb244fa652aefd80faa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-chatbot/lib/index.d.ts": { + "version": "6bc7521fcdc854f77d92bd94b61cb4dcac7399e00de44c44000ba2d88c75c4d5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-chatbot/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloud9/lib/cloud9.generated.d.ts": { + "version": "4a72cc90b4cfcd2a8343f13fb6ae458fdac61e094b60fb24f0fab48efa6f7afe", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloud9/lib/index.d.ts": { + "version": "b4190fe76bc61029acbc8c20c21f0bc717d0a2801ffd5a54585fab20fd5e5b04", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloud9/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/cloud-formation-capabilities.d.ts": { + "version": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/custom-resource.d.ts": { + "version": "c8d41587e8b626f10d66c821554001c3c73ba50b9a8a90b2a263a35a7e30e503", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/nested-stack.d.ts": { + "version": "f1a64d1d77b6e367c7c2860970c5dbbc3926f380e95b8db9fbe4e6ba1b852649", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/cloudformation.generated.d.ts": { + "version": "c9a98c8ded15188df241f5256b4c63fa3bfa4d6024ce0088f5ede22056f70a7f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/index.d.ts": { + "version": "bb9fd6f37f45c936500d018015c0dc3b4c63d9303b9dd22d845f4d6cce120fab", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudformation/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/cache-policy.d.ts": { + "version": "634c7846412b11bbaa7539731104756a4f04499491c2edacd35629a4997c1c6c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/function.d.ts": { + "version": "ca25927ce9a498ee13754796285d49e4bb624efcfa550a9f69190d1bb8fa9f87", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/geo-restriction.d.ts": { + "version": "11cc96c9cec60465457f2a27e7276f9dcc6363c8df0369d15931edef89405b8e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/public-key.d.ts": { + "version": "15268642c2ced92c703fe09c9007743fa880fc74de37b31603e6f279675fcb9b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/key-group.d.ts": { + "version": "83ba25988a6bcbab7d7a82b6242a486f3f169d61793fc968d9b4a1f001940864", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/cloudfront.generated.d.ts": { + "version": "bd894b969a35ca617e2b463436fb7d9f98b85b6cc5b4538615cc24134d44d1a3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin.d.ts": { + "version": "c38aea6fe9ee5f88e4be04be8775aa2d5f79e479793ec47d65e06460b8ffed97", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin-request-policy.d.ts": { + "version": "7a331be0b2b70680c6d96435e3df4f7a6aa782601f237d270dc1f97d28ee2227", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/response-headers-policy.d.ts": { + "version": "565fa3981e2af4b626979c1b27ba9901961a520f1bce7d32b7aaa184ba488bd1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/distribution.d.ts": { + "version": "e31b7f9866a3ecbb43c971c283b7eba0bd76b2cbc570c25f64b2fe65b9ad71c2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin-access-identity.d.ts": { + "version": "03dd3e14591595e0b76ec9d4e7c57d61ef0a1d4a7422643480ad966def882907", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/web-distribution.d.ts": { + "version": "c5ab239d2b84f8f0dfb49628244621ba32d19acba0278e5300588aa6bcffb691", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/experimental/edge-function.d.ts": { + "version": "a2b61c8a83a1953a6272fa7e9a954d0eed677184c3e644acdc85dab9b52e6afe", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/experimental/index.d.ts": { + "version": "283b8e921f1f8313db19a0414bcc57bacfb383dd09ba35130b27aad360c3c403", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/index.d.ts": { + "version": "578543e30cdfed44d56f142cc38d3bbaba78f67ba37f3b1e8782fa61393bc451", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/http-origin.d.ts": { + "version": "81c48deb991a940a0963523082649b94a25315d2294fd6c729846c534fe6d537", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/load-balancer-origin.d.ts": { + "version": "4ff7c183afb507424e634b86f06c4bf582326750df41bd884f1674637a142c5a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/s3-origin.d.ts": { + "version": "5097b5a9a68a5c7c5e3397eac54cb673256a1590b85cdf9c402b1f13b31fd2fc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/origin-group.d.ts": { + "version": "4bd4c62c9795bf7d6d7242bc4e0dccaf043ff299cc1d5795dceb534edf821eff", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/index.d.ts": { + "version": "7103664f758063ec458ae972e14ebf58b9cfe12629f88d3736733af512727a25", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudtrail/lib/cloudtrail.d.ts": { + "version": "741ace5ce8fcf8ab56fa1907d4ed34caceed1f119bdd45e231b3fd39844ed6be", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudtrail/lib/cloudtrail.generated.d.ts": { + "version": "15ca5a72a1fca1feaaf10b391444696b1ba062fa592142f97aa2aef5fb5da97e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudtrail/lib/index.d.ts": { + "version": "0e063ba5d2ab5f9183cb198e6eb557ceffd03b78bfb61bb77cf63c49c5ceb58d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudtrail/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/appscaling.d.ts": { + "version": "28f99fe65efb977fc39a2cb2105504bd9bc4558254ba47e270538788b8d63428", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/autoscaling.d.ts": { + "version": "4167efc83eaf31cfab49fa0ec72d21dd9131862e5b2a37ad45069281183aac1b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/sns.d.ts": { + "version": "d7e275052f3241294ccb8641572a0c168e56a09c3d87e334e017e156450de5d5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/ec2.d.ts": { + "version": "719a497b0eb755ac8b47dbe422df9bdaee162ec599fc686eabc80aafd4051da0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/index.d.ts": { + "version": "2a6c19e4ac4d41d9de3341036df61237f29f833d3e34c5f273e62d681733bbc2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codeartifact/lib/codeartifact.generated.d.ts": { + "version": "520d62af7fb85ada9876697b3648a3806fead41c90bbd12bfc2e19d32a52b3b2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codeartifact/lib/index.d.ts": { + "version": "278a02799d647567e65f1e28434eebadf9c904f388558225fed3d00898b046cc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codeartifact/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/events.d.ts": { + "version": "d7f34ae6ccc35f17dded6fc26fc8c1dae4ea0db6c8efadae378bd454eeacc85f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/build-spec.d.ts": { + "version": "8ef642159ee0b48011d5975b6cd6be6d3689a181c02e52c2f6f55b37c28ccdd3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/codebuild.generated.d.ts": { + "version": "a65591a393c2b706af679a336bf3f52d138467e3c891edf1686ee42817ecb286", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/cache.d.ts": { + "version": "f34ab960d9f326309e192da68fd3bcdc7fca85699bf8a661d134d88a31bea5bb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/file-location.d.ts": { + "version": "823db40526ade836d8ee94381f19d8469fd591beeafdc0476e7480a82b0139b5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project-logs.d.ts": { + "version": "a57e6c13acdcc8cb114d5cc49f6e20a36fb2ece7afdc761005c648e4215d8d51", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codecommit/lib/events.d.ts": { + "version": "fbe55e7bf48d3ee46afedfc1ee30295bb9a1245604ef2ab9ccef4b8780b6b918", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codecommit/lib/codecommit.generated.d.ts": { + "version": "6f084ee1131eaf115d8a2f728d084fbf1cac9459bdb4594921bd5445e6145fd5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codecommit/lib/code.d.ts": { + "version": "365571442434ac5a6f78b2d22a2a00ca4b1e9c6713c9d0de06ebfa411cf2fc24", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codecommit/lib/repository.d.ts": { + "version": "704460f660f210c09463649de9398fb353ce5876d1ab239135157fa068a48cdb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codecommit/lib/index.d.ts": { + "version": "d92744716ec82be0de8ded4b88e4001b6329c8c2b3efe4f53e80cc95a7a1f103", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codecommit/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/source.d.ts": { + "version": "d9b2f587bd9d1a3ae8fc006b7b6aa9e11c1350516cf99337580280d0b89b05c5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/artifacts.d.ts": { + "version": "d0f26f94224c6bcef495b792aab6b4e925beca7f710450376fe75f3271365b4f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project.d.ts": { + "version": "8dc33b050812cd462bcaf27342c4bd3a198aa355f77a0f6b5e97f092a8ac922c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/pipeline-project.d.ts": { + "version": "b602624c118dfb7965bef1009b01d45839d4a3fc51a9582eecaeddc81e3524aa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/report-group.d.ts": { + "version": "a2c1f393bd9e49a273dfa2b1d413072f8d20b02425a66d7ccde2d903e2e0ebda", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/source-credentials.d.ts": { + "version": "9bee36f1e61bfb1898b24cf8541887449171bf9f18c673e1ddc54fc550f51071", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/linux-gpu-build-image.d.ts": { + "version": "732d288d4f71777f4b81b900a90258c503c9a9a42bb33d56f74901443a54c256", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/untrusted-code-boundary-policy.d.ts": { + "version": "245a537f2b90e1bbf841da155a6628bd7169eef3bb2cb94e6201233421510b77", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/lib/index.d.ts": { + "version": "e83022d21078766b7c4cfdd771f7ef063842c7ee679f065788cfde321acdcf7a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/rollback-config.d.ts": { + "version": "d8827a6db3d65424e6c757970f5aef886cee8c3946d8c80c562f7e4152a0a764", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/application.d.ts": { + "version": "34771fbee6530afdb9f58396ba607b8496863f04e0e5b140d99153e321d81b8c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/deployment-config.d.ts": { + "version": "5890b3a13c3ef3089af1038fe0e2da61051c4b1873d9f97a48d83403beee77d8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/deployment-group.d.ts": { + "version": "7781c74ffeb37d47da895f2b6a1d039badb93679761e30a9d8f2d6ebcec7de9a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/index.d.ts": { + "version": "a869b044b5b773a27470ef054a20f5a5c17c0ef6e76c1f5c595540f7e2d5d1ea", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/application.d.ts": { + "version": "045912cd34b622983243a7c65d26dd9443c89cf9d6e8b4be7a8da36f5d922d7c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/deployment-config.d.ts": { + "version": "8791d0ffc3cb7ab52c01e2c7a0971bd64678937f2c537ad155b2ce336d454834", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/custom-deployment-config.d.ts": { + "version": "41935b42b14b030ef867c9fa1f55689b5dad83cea7554dea17c7939d1ef340a0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/deployment-group.d.ts": { + "version": "c7a01c9be29ebf590a13b4b37b50483b32b0921b75e84bf829083f576447b47c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/index.d.ts": { + "version": "112ed8b7745968088b5fb4d7206019aa65e8ec1366585afc556a864d87a03749", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/application.d.ts": { + "version": "d4f81cbcfad78109d078800fa61b37b1312353306c9e284f6ad5bc24aca4fde1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/codedeploy.generated.d.ts": { + "version": "3a34aeb91fc375ec866bb4d1bc10e7c07d9aaec7cf6a946d2917303f7e18f90b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/deployment-config.d.ts": { + "version": "c5cd198b0b19b322ad5cfaec2e371bbded25547780854b165743344a111608de", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/load-balancer.d.ts": { + "version": "30978c2d853fc92ac250d26f440c41b202e9f166f2e733ddf4a57978393fe08c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/deployment-group.d.ts": { + "version": "4ca646eed4fef80d4f7da11c52f7bbedc595c679683f9fb89ea7ab3511b64b67", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/index.d.ts": { + "version": "fe888aa9db9963094251c992f3fa4d3e76a946a22e942656af9578121de3d3bf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/index.d.ts": { + "version": "dd42cd397c752b9e7d22b63bb674d427b81585dd2ed018186696e846ec4db864", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codedeploy/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codegurureviewer/lib/codegurureviewer.generated.d.ts": { + "version": "24b536639d71630d7584e8a16cbee0414b401083926ed2f759101ea1cd063075", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codegurureviewer/lib/index.d.ts": { + "version": "18f263ae33dda679abd151ac4adf9d17728099c35bd9d8c293e8ca24abda14bf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codegurureviewer/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/artifact.d.ts": { + "version": "7ae2217a21f09701af2b11ebc2aed7b3f32e18c986c2a297acefa7f7fb64d51d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/action.d.ts": { + "version": "a6f80c00f78ce5a5b972de5a2b0a944e24f8e36324ee4d1435903f219c09d1cc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/private/full-action-descriptor.d.ts": { + "version": "a7f78ea78ffa9f1ac88b1386ef3dbf3450c3525cb5fa50fad5f34c7b1c7412b2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/codepipeline.generated.d.ts": { + "version": "3731db7a72615d4e18b3da94343a929e0144dac78f7a13a7127f98944567778e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/private/stage.d.ts": { + "version": "f776fc53319a197a3a5d4808de5711c02e693dc586fa25ef2e334b1f418b3a02", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/pipeline.d.ts": { + "version": "f4c8bf1b682682b89cabcae36385f5b5de320536b09fbc7f0ec7beaff105971a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/custom-action-registration.d.ts": { + "version": "580314b53dfee6407685a413cd8646e3b973ecc51baf73855306536ef960be5b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/index.d.ts": { + "version": "ac09a567e7b842846c16cbea5baec1315449955a01a1d6b16bb704c3436c4733", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts": { + "version": "f92946fd1340fe9a4d01425b73cd0eda32a8c6af740ab571ace6f3953855a442", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/alexa-ask/deploy-action.d.ts": { + "version": "deca2ae8d87a8d1e8f415dc0d5a1c05110ea064e4176ff13c9ee058a3d1c18b1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codestar-connections/source-action.d.ts": { + "version": "1c209a7a09015e08a207f99618b91547cc23720c96b212688674ebcf1c2b0068", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/bitbucket/source-action.d.ts": { + "version": "74f74c66690588afd59b58157b4554fa4fb2234577413c83f358308d510cabac", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/cloudformation/pipeline-actions.d.ts": { + "version": "81198c420f6ad15568a9e4f00d1853530538cfc7a154e785cba5e5f83af6674d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codebuild/build-action.d.ts": { + "version": "7a840f829aebf3f6f5942d12f65dbef50686db92c1cc0d746e912422e26b8826", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codecommit/source-action.d.ts": { + "version": "dcbff69f6722100b7e67ebb62cb8e8d7df2d77c5abdae5b6014b22755fbd4f30", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codedeploy/ecs-deploy-action.d.ts": { + "version": "781c0a4bb3d85e3b7f6f8e87762c5c1e6b8ab36001ceff0abbfa7017a2f33064", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codedeploy/server-deploy-action.d.ts": { + "version": "354fd4b171690762168867b8c1c2c6218d6a54a557e390694b9603a492a09988", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/ecr/source-action.d.ts": { + "version": "a6997ad8f7a986b91d306354eeb958f466bc4d74d935421d0e81904bbf906e10", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssm/lib/parameter.d.ts": { + "version": "0177f17942e1737b5673e4943c922c46a26fce606ba5a13ba718d6fbbe963179", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssm/lib/ssm.generated.d.ts": { + "version": "5154e84413c597bd89675fbe688e09786a5b782d8fc7751cd21d397503ffa640", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssm/lib/index.d.ts": { + "version": "5160525b9e9c1ad98725409c0f32928f6d8148643d99190d3599449f4bc15275", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssm/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts": { + "version": "29af0ca9b1f154d56e84cd22e1dcf63d5990c2e11939700a7fc1915a5bb10b57", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/asset-image.d.ts": { + "version": "890672179bc332291a391fc4e455cda26daa90de954e84a41771dabf09c55d6f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/ecr.d.ts": { + "version": "368992263d501bbddbacf4b9f8c77f98b6342f3176dfb23eac6741d9208fcd84", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/repository.d.ts": { + "version": "19f602c495d01fd4ec62adfd606b6bee05d72770a98634b33fe0bb948c2e6093", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-image.d.ts": { + "version": "edb7391e06a8761a83042d58225714ae5fcb812d34c4d657157291eb79c73b36", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/environment-file.d.ts": { + "version": "2f1f13c187c7e0db6e4ef5f2d163f1641d41b099dc60423282384a59827e4135", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/linux-parameters.d.ts": { + "version": "7be3498ab6faf18403dd2d7a75ed14b13f35fcfdde4c07c4f3db1d5a57ce2ad6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/aws-log-driver.d.ts": { + "version": "6302c15d89c967cbaf4b5804f5217dae6e25142680f5edcefd99c368b3a30138", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts": { + "version": "12ce36b1176b012477b1b2e090f0d8987a319ef76c1247f9e8504a1ba4add595", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts": { + "version": "d77004cd9784a5c9c6fcfeda670e8b893d0a27abc158214ec898b5a759757ac8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/firelens-log-router.d.ts": { + "version": "ddf6357b6c68a5d66e47fb9679882d1d45991b45cc9ae9c614e0ed28fbf43890", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/placement.d.ts": { + "version": "dd8ee9bc3764b484e22770b3fd113ac9788e45ce423ea5b310e49c4a6f32e0f7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/proxy-configuration.d.ts": { + "version": "6262b29a64d1b80ed8227a3cfe91f7efde715ed312b2e6fc36fd022402d00e82", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/runtime-platform.d.ts": { + "version": "78bbe6367fdc96538161b5baa82b229ffdd852f32052cfc4e1d8d6723d1f2003", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts": { + "version": "5cae782c50da2b127c7609a1f7dd5157988d8245e6f877b88c4a53d78e6779b3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/cluster.d.ts": { + "version": "8e8c92e51ed950b57583474353049b081cb4a4034e999e541fc17fbd41a0a981", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/scalable-task-count.d.ts": { + "version": "4f0a568763eb13a3af8704522708aa71d6754dfad320cd91b4c8b80dcc59301c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/base-service.d.ts": { + "version": "0596c3e05b4d1a93f0a93a83c48b5eb96c95ef743dcabe2ce172d44858f8ec24", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/amis.d.ts": { + "version": "1c5c1d22fd2379c483e7bcc48e9110ba31c4df733aded645dd8e1b85e18413e7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/ec2/ec2-service.d.ts": { + "version": "532d1c0c23574dcdcd34fb973206c1db6a96d2caf401ddab1734e4988a556019", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/ec2/ec2-task-definition.d.ts": { + "version": "c14140c6e9129b35771ada4ce7a120639023cc385ca8869c6a310d671586185b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/fargate/fargate-service.d.ts": { + "version": "b0363aad62cafde353010f855260e5dec0dd75f203f9cea3594651755ac7bab2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/fargate/fargate-task-definition.d.ts": { + "version": "0db9a8b01ab27203fdf09ad77c5e8d80e89fafe1acb1875c2742a3986086e26f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/external/external-service.d.ts": { + "version": "943d2e86997556ae6ec67bc1147ce5a0629e545c0f9a8e0b6d5de9d954523164", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/external/external-task-definition.d.ts": { + "version": "78d601f35f9a989d56c0b85326c83cb4eda54da1d030d40e14618d680538dd6e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/tag-parameter-container-image.d.ts": { + "version": "fd1fc69866ad42864c7ed6729d8a779e017a3a4582f604cb2629deb876aaeaab", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts": { + "version": "e5e73f67df01915d08708caf78ef003cd43aabffb43b1db5cc00d08bd010a08e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/firelens-log-driver.d.ts": { + "version": "1bc195372c8fd174244b8791ae06860a8b08befffd5bb330d2c3a7396da1bd8b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/fluentd-log-driver.d.ts": { + "version": "0af0f53e2a63ab92ab00af657e161637a4af94e041245b48e1b23a238524c984", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/gelf-log-driver.d.ts": { + "version": "0cb7256c81863d971daf2afee7fc75607df893651eb13b93d2b3da80b1ad8e5f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/journald-log-driver.d.ts": { + "version": "a080eeb9d23ba24a4ccedb37b5bab546745d4477198ca469e71c81da9e3c2ccd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/json-file-log-driver.d.ts": { + "version": "c9114b4e31da1bf5fabb6db09b3c9ee182589df6a97599b68dea30a8d3de934f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/splunk-log-driver.d.ts": { + "version": "a8a5c501b4e2f36d7e95b127fec5cc818bbdabe21e7d95ca0054851437735ef8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/syslog-log-driver.d.ts": { + "version": "f64ca063f53a2a52669a637d36a37e7d470a03fdb4089ea19fe11959b2e73c70", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/generic-log-driver.d.ts": { + "version": "30778ad94d787e5ec02ec1be3f9ab386c9a0a5ec73469fd6de3afbc634d49424", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-drivers.d.ts": { + "version": "487c8fa50ca766eb5cc6b31fb543af33e0f540eeb2e16d777bb7c5a0aa8a596a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/app-mesh-proxy-configuration.d.ts": { + "version": "e6afca15eb8bf931dafd8d9d3b24756789cf580821d4cb31972962ceb5b6f089", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/proxy-configurations.d.ts": { + "version": "3de4d2a2690ebee05c6820d8f10cf5e89b0511e7903f3c38c434e1662c4af790", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/lib/index.d.ts": { + "version": "c139fa1714f77d48f6a4b6f87d87a4f52a7832f90645a7ab462dfab116f8639a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/ecs/deploy-action.d.ts": { + "version": "5e1d92230c4153a3233d579fba3d6eac957ba8c161a54f4bcee5223d8c070fbf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/github/source-action.d.ts": { + "version": "4e12fb83f8c7825b18b79ad60f65c2fc578f1a0a055df73115128f2acc452ab8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/jenkins/jenkins-provider.d.ts": { + "version": "663637059909e82bd31d27b35133b32034c0b76403bd1ff52d9813c2a45dfa39", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/jenkins/jenkins-action.d.ts": { + "version": "efef8d7141360b70816486ef25f51436b26db2b935c27ce2a3d4cfaf9d124a17", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/lambda/invoke-action.d.ts": { + "version": "98cefab9c2ca7e02b2453e7348ffe9b9f02b2b1749b684a4c32a303cf1596ead", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/manual-approval-action.d.ts": { + "version": "ef4f7d99de56e720fbaa01c87211cb575f02eed793abe7e5fc19e31db7078445", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/s3/deploy-action.d.ts": { + "version": "1ecc5d427cb8865d2ee64fee38ec8325ef631c916ae3868b02d6413398007e97", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/s3/source-action.d.ts": { + "version": "a85d29808f7bd60a724ebb06e48911f703a8d55e96d12b81505194df7d88cc16", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/stepfunctions/invoke-action.d.ts": { + "version": "177bbac8928c2ebeb7ab259434a8252d0ff3067739cc673ebae868df3ad1d40f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/servicecatalog/deploy-action-beta1.d.ts": { + "version": "c7ac384f33f60ee995f03efe9d70e7ddf774292e0433fa02781226ca9fa10201", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/index.d.ts": { + "version": "0e2a6a2e72bedef3886341f755aefc944db8fc2d99a0f016f3de10aaac6759c3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestar/lib/codestar.generated.d.ts": { + "version": "8fa6e0b99c03e120da923878784fe9388bc31b854b8bedae19022d7b05a0f621", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestar/lib/index.d.ts": { + "version": "d568be272b35402fb2c2602fdad30956ee00975072c7dd7cc88cb9e1376a4419", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestar/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestarconnections/lib/codestarconnections.generated.d.ts": { + "version": "56ab7fbcaf813fdf572d1d1d003bd61822c25228fffde479cbd01c710b9905b2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestarconnections/lib/index.d.ts": { + "version": "86460683d23227c7778a53f5ba66ac73f0d3b21a1ae79a305fb9497d5d84344d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-codestarconnections/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-config/lib/rule.d.ts": { + "version": "029a3d0cc74981457508a2199e0763ac0c9a16d2aa62d1743354bc6636eec801", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-config/lib/managed-rules.d.ts": { + "version": "f05295e642c60c559332fe0c2b7677fbdb8423f1a1467c291e6519a2b3c2d3ab", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-config/lib/config.generated.d.ts": { + "version": "8c4a10461f867e8ca1e023d18e9fcde3d08726be73636baf566f23ced5f7d54f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-config/lib/index.d.ts": { + "version": "e6a50068fdc418e539faa099b1021f2b70fb10259998fd1ace2fa3e2f6e73bcb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-config/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-connect/lib/connect.generated.d.ts": { + "version": "46bf355cc89e0e792381131e66f8899953513214368afabd44f7ca5888170413", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-connect/lib/index.d.ts": { + "version": "a3144badc15e3b916a30e023ca6429bc14050c913cf39bf8acd938ec0bfab945", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-connect/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cur/lib/cur.generated.d.ts": { + "version": "77d9ad355feccf9bbb75118c4e757cd43dc172b2dae95a6e007cba11eea7b521", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cur/lib/index.d.ts": { + "version": "647054bc2dc3aa71183989f1dcf82fb53b336d3e4e42e8050d146bbe20ece4b7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-cur/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-customerprofiles/lib/customerprofiles.generated.d.ts": { + "version": "97f5a60196080f94004655a1b72729e48e7dd769a8566c9365643cbb864b831f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-customerprofiles/lib/index.d.ts": { + "version": "d950e51eb5983e7383361bda2ca2dc2a2e75517415bf357d140e45339ddf6f30", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-customerprofiles/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-databrew/lib/databrew.generated.d.ts": { + "version": "349e9abd5e6f179cb68b10230f2abcd3350cd1512edf927391c53b4e8cfa5677", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-databrew/lib/index.d.ts": { + "version": "60cbb7a833d4bd04a6cc0edafc9224f4fac7c8049440f96405096de988e16336", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-databrew/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-datapipeline/lib/datapipeline.generated.d.ts": { + "version": "bf57ba395bcd3bd613c7eeada6e0a134e8ad8e9f9bac74c9c6cfac64e27b2112", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-datapipeline/lib/index.d.ts": { + "version": "ad73252af90bf50c8064cfa6a00c4a63f0a3f8f27cc1145df3b5cde9cc383898", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-datapipeline/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-datasync/lib/datasync.generated.d.ts": { + "version": "6ed35d21fe6e37f1fdc90930fe79c5602444ad8678a37bde2f9cfe9ea9084c1f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-datasync/lib/index.d.ts": { + "version": "44e4206d3794acf9ad8d323acaf9442a31a8cda67228611e6b33fe987b8050ba", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-datasync/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dax/lib/dax.generated.d.ts": { + "version": "32c13754d3efa64fd124293b84f9535ac42f7990c1d6db8e2e55b267e75b24a8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dax/lib/index.d.ts": { + "version": "b943c4a73168c060998f73a8d04ff60f051d721dc8189d3370e84df9dee25de1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dax/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-detective/lib/detective.generated.d.ts": { + "version": "a31bc065a425c58eee44a96fc59a6fb21e165f36016d28ea14416c3ada0e233d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-detective/lib/index.d.ts": { + "version": "285481f04c97b78f924c08d080201956035290d33a55f43d9dbc6492db7f9c9b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-detective/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-devopsguru/lib/devopsguru.generated.d.ts": { + "version": "3b7097fa4bfc0c67a1684faf8392023d686a30ce5cdf8fc31f61fa8fafff2f43", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-devopsguru/lib/index.d.ts": { + "version": "8a23b06430f4c8a2531d6552de5179e79a2ecb8b670940ec578545ab0071b9c9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-devopsguru/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-directoryservice/lib/directoryservice.generated.d.ts": { + "version": "4c2f9bd7cbb07cd0f2fe885fcf359a97470d7f8e8b4b54dd7bb5da961cdd3a40", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-directoryservice/lib/index.d.ts": { + "version": "0cde9117004b8fe97b4bb55687603af21617ea9326cb9534f31eec8f3de48fac", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-directoryservice/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dlm/lib/dlm.generated.d.ts": { + "version": "14850eacd203f02ecd6563372c4a545b4fdfaf783c1e9fa1a99f6b3275857f69", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dlm/lib/index.d.ts": { + "version": "b0108b8a81f48e03fa76f81d531e8fc608dbf368585829f034aa46d2c61d5252", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dlm/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dms/lib/dms.generated.d.ts": { + "version": "04184683f049a7244fb59cad0b6ca4cd030a4f097853f88b97fc6f70f96c70b7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dms/lib/index.d.ts": { + "version": "2b0ac296abe4b46cf5c104a992f1820482f2926f556ea6ac0f5c20f2f33b3adf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-dms/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/lib/endpoint.d.ts": { + "version": "16c70dcbff1fe2b1bc387a7a0e1f0a0048afe6a4b7c8c14a1e0cc1d0e4f5c2ad", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/lib/cluster-ref.d.ts": { + "version": "7cb58472b12cae2c3912bd8f3705a450e4a1501a559ace5acd6e583f4016330d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/lib/parameter-group.d.ts": { + "version": "0e4d75accab53b0291d0ca1a439053b43aae6ceafdd6b59664c3b2608b185537", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/lib/props.d.ts": { + "version": "93801305076d9569555cb6bb046a7c2c74dbbdd1ec4263212139eb2be80e7fcd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/lib/cluster.d.ts": { + "version": "d369fe15161d920711106b337642463f7cf0aa19a10250f676838c48b46c942d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/lib/database-secret.d.ts": { + "version": "1661e8402f937792ebfeefd7b433c1e0384dcb5767022f265574bf1f40fed19b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/lib/instance.d.ts": { + "version": "0c9af13f73d8d30a120d5eb0d59282fd773c150662212276f2a5b7d2128075dc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/lib/docdb.generated.d.ts": { + "version": "ab61747c1a8d0e6288bdb5decc25ba6accb5737f4085531d2225900687ba70c9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/lib/index.d.ts": { + "version": "5a3673d4acb52b46dcfcf7c6b7e7dc1b1e4cab30b66919fc8f43f8e91918efa4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-docdb/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/queue-processing-service-base.d.ts": { + "version": "6feb8ac95cf1408df030e487b5797fbcc716a1e9b2cdd18adb754ad8c5f2d5df", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/queue-processing-ecs-service.d.ts": { + "version": "7a52213eb331122dd75275d50af4f55e4b9db64821d84a55f1533513245aed9e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/queue-processing-fargate-service.d.ts": { + "version": "4396a58df2b4f6774c664cf978015ace9bd2f874ccaf293e6833e8712db91a82", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-load-balanced-service-base.d.ts": { + "version": "37c2677ce8c3cc4536107756e77aa63677bd5a25948d09968012a2dfb1c32487", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/network-load-balanced-ecs-service.d.ts": { + "version": "90b95aa36517c880901991b37f7650e3628e8d2e8e8bc993771abb92c740fdd2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/network-load-balanced-fargate-service.d.ts": { + "version": "622f4b8a4aeefbdb9e496586a108e14ffb5115be0c7800acc161d0915a5f96bd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-load-balanced-service-base.d.ts": { + "version": "b141e8d19e38a073b85713f277059f77966962a1c927418952b5d11913c74fb5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/application-load-balanced-ecs-service.d.ts": { + "version": "b26bfbac2ef7d8925e8f2ac46bbfae6d570ab4a0b78dca6a615dbe0e55f17988", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/application-load-balanced-fargate-service.d.ts": { + "version": "aca7fd643852ab40167804daba91b2965cc93f4084987ff1cca68e20f71d923c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts": { + "version": "1bf04b6d92b96b54cf1ee8ee091b504b5dc7a98a05df5127c45b4f2b08806dd5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/batch.d.ts": { + "version": "10ccdfe2dd7d086b35edf6af67ccb7e5a0bf2661b8792eb1a7bbcb4dd2a94c82", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/codepipeline.d.ts": { + "version": "07dde8a5bd34505a938d6d9b182abfe5bf48988461dbe9d5037d1f321f7e213a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/sns.d.ts": { + "version": "5b725db6aee6fda56287916a96f49ae09028eb5f00353fa9131ab536d9191607", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/sqs.d.ts": { + "version": "ba0d1d7af93c6f2f218f7746f64913390efaca036dfe0a7954e35a8dbeb4e222", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/codebuild.d.ts": { + "version": "c4e68e5d4d97bb36fbbf608dbf477f9630061edd137fc395c2098109b78a9ed1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/aws-api.d.ts": { + "version": "d139bd93df24443ee9383ff7b77adcbbc0010bbec7b7ab817a7aa8462edc52c1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/lambda.d.ts": { + "version": "deb753691b9d5b61f9751d981e31ff5c5fc00adc7e16ad08c407f8e4c0c4b5b7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/ecs-task-properties.d.ts": { + "version": "0dfdc07bc142e06d4daf5402af85421610ba75a05eca10754f524a0a72a2ff8b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/ecs-task.d.ts": { + "version": "8f0e2c8a8cc739d684ed8282a01f78f4ee2352a5fe487ccad98c8c8b67852be0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/event-bus.d.ts": { + "version": "9eeffcb91230c775756281a643045cb9a4b82e8652a4ab15d865eb42a27f3c06", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/state-machine.d.ts": { + "version": "e03d6a18c40cc9ed9d09757ad8679e5c8472595d979efbc14ba04bb339ff970f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/kinesis-stream.d.ts": { + "version": "a8485bfc3032f058fd7de3edd14914942babad6ab376ec212bbca46969946301", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/log-group.d.ts": { + "version": "f3877c24caaba187e387099457c25d47b9b93715cbd590009d8fe4fa7140bd87", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/lib/kinesisfirehose.generated.d.ts": { + "version": "e2c05825b83f605fd2b3ea07dd66ab0696d334e4aa1d6495be3f2be316241a98", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/lib/index.d.ts": { + "version": "c845246997dea8b3e620bf3c950f73e769c917659cbf42478aaa7034c1eb4797", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/kinesis-firehose-stream.d.ts": { + "version": "8f3e1929ede5c108c6ea040db7da57a1f59a8c39830e3f5d745e8d146166dd0c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/api-gateway.d.ts": { + "version": "171ced99068ba4e8083ec1280d7ebe3e2f84ab00303fdf13c43fabd82d8ec827", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/lib/index.d.ts": { + "version": "39a1dcecff5ec65c3c960df548abdbcf60438edd473502beb8532462cc72f74a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-events-targets/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/scheduled-task-base.d.ts": { + "version": "0773201a4ac6d3591430432352fef3aa56ea46692d3bd5ab061ebbe1c74453d0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/scheduled-ecs-task.d.ts": { + "version": "188e5e02e3d4a9f7f572de469f0e30358277ad388c831421f348df1c74237030", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/scheduled-fargate-task.d.ts": { + "version": "1f058c2674283ba290fae3ebb3010bd79353b49e012df0fcfc1297af0242190c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-multiple-target-groups-service-base.d.ts": { + "version": "93bef94695c3a8794ba527d845ce4bb6533af7851ae5859dac42f6e80f569cc6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/application-multiple-target-groups-ecs-service.d.ts": { + "version": "b14f4d6a65188b3bc920ddc3744292df728d74569cead71f6d035dceb28e8329", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/application-multiple-target-groups-fargate-service.d.ts": { + "version": "3aec6e37883fa4edf90cd3e0a8d051dc3ab2b23c59dd2b592ace6817b6722885", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-multiple-target-groups-service-base.d.ts": { + "version": "0672f06a4c2ae21111d3a0c5c4ca478cab513f56d12c4eb4e355cc6eacee7afe", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/network-multiple-target-groups-ecs-service.d.ts": { + "version": "633a8a01d8bbcf095066cbb9825ecf6b76f8952f2ef44d1e471f3c8b08b8fa15", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/network-multiple-target-groups-fargate-service.d.ts": { + "version": "b2a66888129fc9232b70dad7e96d7cdf5381ccc65b22cefc8a6aa367914ac484", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/index.d.ts": { + "version": "7ec236549248097a164b7741e5bd782178c23f04a7d5335b3f5847af16262cc5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ecs-patterns/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/aws-auth-mapping.d.ts": { + "version": "bbc35c7c964fa908937b77b97b34528e89875a2eff8640a0a733524c4467f28a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/alb-controller.d.ts": { + "version": "1cc2abe1f2ad9d1ba3e6ad812aee151c3cc033bc214f426964422ed0d008c7a8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/fargate-profile.d.ts": { + "version": "70b9757d8c7b2294179419967698eca8502d75adb06a783a06c144b1ecc23a65", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/helm-chart.d.ts": { + "version": "918d1147c81646a22977576ccff27ff63c7cf04cc6b841b8c7a87baadd9547f0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-manifest.d.ts": { + "version": "7cd8e75373aac96b929ae92a02c9cb61397ce8b89c84c523f5445fb021df0c5c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/kubectl-provider.d.ts": { + "version": "aabca74343dc09f05a4a27b7e794f2172f75e9df4648faa16e172cef422d2400", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/managed-nodegroup.d.ts": { + "version": "b7052f1dacf033162f2417913f3272db3f095e928877a47deabbbfd60afff386", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/service-account.d.ts": { + "version": "14ed55ec1048d1e4625a1d20ea5af9ffc3c2f6776c44ccdb4abd285d58071f93", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts": { + "version": "f03f560b5d870f6e73e9df4b18a00a2c60b4def2aa15e5cb9d28b870f47217b3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/aws-auth.d.ts": { + "version": "6e552330a3da0e1a02bb80e633da1db4665f96cc40d66a79876ce4543d5f209b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/eks.generated.d.ts": { + "version": "37ec34f28dafd0114f16651b6131c917079a6a662968e6fe60fef3521007893d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-patch.d.ts": { + "version": "8cdde4528ef833e8c108870950b14c99e3a9edfa2e5fb792aacfc85cbb8ba863", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-object-value.d.ts": { + "version": "77a3d9f22816f19dddad7b294b5138839c6b02225afeac34680a71dc20be2e64", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/fargate-cluster.d.ts": { + "version": "8b34c09bdc22b9e0f6839254ed1c0c7fa332d5635f555a955f3b3d5abc61394f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/oidc-provider.d.ts": { + "version": "255e2b9d3a5be085c9a8315b4b4c414c6d091c0b4c23f4778e46c7d41f8d5188", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/lib/index.d.ts": { + "version": "c2db44193313862e28ec94cba2e7bdb03407ad73497827773845b0ffafb566aa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eks/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticache/lib/elasticache.generated.d.ts": { + "version": "3d895e9f8a656781a49afd15e158438f0038859c1d2f090a0eb43ff16063dc17", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticache/lib/index.d.ts": { + "version": "837a70aeaefa02e99b6a6450d169b6702907eab42ac1ad04e6a685c1c4b1d456", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticache/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticbeanstalk/lib/elasticbeanstalk.generated.d.ts": { + "version": "0b1d3b32429d7322f4dd72077d0cc87f0665b8539bde26cdd0693e282b76cd66", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticbeanstalk/lib/index.d.ts": { + "version": "148103b52accf06426ca096431dec13b01d1391e1b74e31e9bf9f346357a1347", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticbeanstalk/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-actions/lib/cognito-action.d.ts": { + "version": "8fdcf2274152cf9cb4ddbbee3aaee16a8eef1815ef4b595e146156d7a0698af3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-actions/lib/index.d.ts": { + "version": "3c6c68ffb93e10cbafa05d1d692c456fdf06d3cf27c5d9476909d47ebdae3d3a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-actions/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/alb-target.d.ts": { + "version": "10141d082978d81e46bfbb3f9da028d437ad5d7530509dcc658c12f5a1c71c66", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/ip-target.d.ts": { + "version": "b16801c4fffc9b644142c077f07ad6fbaeab456ccd746c40248ea7524ea18cbe", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/instance-target.d.ts": { + "version": "8573fe38f0f21576126a96843effd36f22028d3e64e13a5b5d01f3b6952db954", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/lambda-target.d.ts": { + "version": "6b516c507834e45d7b38df27a8b2fdb2791cd02da31e7c6903253f224e254d0a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/index.d.ts": { + "version": "dca539ee0ba0cf5d08c6f1fa31eaa758443af53e271130aa36407e919af4bd4e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticsearch/lib/domain.d.ts": { + "version": "c3183a973fdd87af0aa3ddbf51a04831d077b6b4d7dc24ae55c9514be8a17b8e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticsearch/lib/elasticsearch.generated.d.ts": { + "version": "217bb85cd0d7ade2269ea12f2f44b163b8680f66f336996c076eaa84de36e3d6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticsearch/lib/index.d.ts": { + "version": "57585eba496610c52eda7d1c85df422e373ce75792f141040897a1f98bbc24f9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-elasticsearch/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-emr/lib/emr.generated.d.ts": { + "version": "98e317ee82ea43698790b3376177cdf1e2bc3d758482d56a1ca5cad95d1e775f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-emr/lib/index.d.ts": { + "version": "0b3e368a2c903a9a01e55dedbf3b3b001cfcc87c6814f95b471a22b664f93e0b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-emr/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-emrcontainers/lib/emrcontainers.generated.d.ts": { + "version": "fd162168487da46764909aeb9fe67deb558183e49d841621bb3cc12d0ee58dd3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-emrcontainers/lib/index.d.ts": { + "version": "da9ba3b3c1e7930a5887cb763ee644a1b53d54c64e2de0e856e29df317b446d7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-emrcontainers/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eventschemas/lib/eventschemas.generated.d.ts": { + "version": "d2eb5f35c5bd8036ce0fc262fc092c42464c65c4ea7926dbbfcc0f22805c74df", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eventschemas/lib/index.d.ts": { + "version": "a8d67ec6e9bc559867002ec038bbc5242bdb8a3a6edd2d7c8c9e515cbfd022b0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-eventschemas/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-evidently/lib/evidently.generated.d.ts": { + "version": "35a41f74c7bc674c69f6d1f5cf931874a7b960133b3f476c4c100b4c9ccfa260", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-evidently/lib/index.d.ts": { + "version": "c298d66c6cef865b13b07c981768c92540dd743c6777ea3bbcfb01fdc471ab5b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-evidently/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-finspace/lib/finspace.generated.d.ts": { + "version": "dfea6f3956ae94619a86409757046a8b5dd2f833c0a5dab6f84fc25e146369de", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-finspace/lib/index.d.ts": { + "version": "6187991221e2904b665ef1570ce9d733b71daacb9c61b5d4a2d017ac56abe091", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-finspace/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fis/lib/fis.generated.d.ts": { + "version": "be47ba23cfff3c4be935b237b2d1a016139ba50ddaead381db81dbcd81be2526", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fis/lib/index.d.ts": { + "version": "ee996997d740c03f5ef412f6729f62d2636aa8d37b3918a37d50eced377fb444", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fis/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fms/lib/fms.generated.d.ts": { + "version": "6f4ea005446c0787618a21620950bfc2bf79918e816c14f19a398f35f8d2cf6b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fms/lib/index.d.ts": { + "version": "a3b16ea5ffc6d926ab8718ff76ad38129983a15fae048b5f88cf49672cca0908", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fms/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-frauddetector/lib/frauddetector.generated.d.ts": { + "version": "0c29adc2d93822fa6a08b1c4a93d9a909ab862ca8f91b93ae499cd0ebe1a8e38", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-frauddetector/lib/index.d.ts": { + "version": "df98365d82978fbab34be4e9846ac17f50cfa8163027cb15246ddaad5bd8b323", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-frauddetector/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fsx/lib/file-system.d.ts": { + "version": "d9c4390c65c1f62a4f06b73b0d57df46deb784e351b44bb06e692950eba66de2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fsx/lib/fsx.generated.d.ts": { + "version": "6f6dd1860d40fbaca4f4e00b6d702f040cf9961382f9013a876bbc9e6f9f17ef", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fsx/lib/maintenance-time.d.ts": { + "version": "08d6c2779b5533a2741f62b5752051411e51076f9ffb18cd1597d31258e5fbcf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fsx/lib/lustre-file-system.d.ts": { + "version": "99c287602828eafc47d79567fcf43c6d8b36baebe19a9c3d3b79bdda1c265f2c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fsx/lib/index.d.ts": { + "version": "32adca94d86d599c1bf0223be08be171f5e937a45dd7398f44ea067c4eedd3a5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-fsx/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-gamelift/lib/gamelift.generated.d.ts": { + "version": "b6655cffbadeeb8c48167a3b838380199a5a44cd7b66b97c156b88a59b945f28", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-gamelift/lib/index.d.ts": { + "version": "f9e9ff64415030255273f471a444a25b8ee52aa32120f956ab3131e674e91bc2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-gamelift/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/globalaccelerator.generated.d.ts": { + "version": "b39fc64e122d8ab72ede969b8bd9fb54f058b33746b0ea9da62a3879a665f6b9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/endpoint.d.ts": { + "version": "334b296a45b06dff239bbe2dd4b2f86de118a67b9fab2a730e38c19dc30288c1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/endpoint-group.d.ts": { + "version": "425b94f379b5575986de9b52a7915aed6d84e58dfd33b028136c0ac7c02e7f43", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/listener.d.ts": { + "version": "852f764e5ae54d0deebea54c0bbf958aee4c4bd5e5e4c28297dca24fdad5fd75", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/accelerator.d.ts": { + "version": "e2b3b1ac9e4cec6b3ffff29ef0d9db12f6808783fad987c28c534eef3ae97655", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/index.d.ts": { + "version": "3eacac718c33823ad431c3aeacbbacfb2f5461b7b76c3c3e7768041010c83d34", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/alb.d.ts": { + "version": "c17f697963894e912e82b672df9ea84a62eeb8c6a539b95f4b21b93aa5458c8c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/nlb.d.ts": { + "version": "1da858046323564461717ec94c17f32179ff89b82dda21ad2bd79be3c66f0dce", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/instance.d.ts": { + "version": "2d09f368bb19bad4bace7587a3604cae3a3d30e65d113d59c9154b0eec2c0dfb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/eip.d.ts": { + "version": "e6118817ae3778f5e92d30824a8573cf5ea837cc7b5e830dbdf93e0b3ce23578", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/index.d.ts": { + "version": "ce88407a8b27883dbb14ede9c8c87ed29fe7c5e77f2bbbb2eb21f6f0dbcefb77", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-glue/lib/glue.generated.d.ts": { + "version": "7858bf90e5106cd45eeffc9da9f4c524842c8a4fcc7290340327e1d6e2af64c8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-glue/lib/index.d.ts": { + "version": "bf95e64bae1e9bf9c6350c2cc61bc0d82e99bdebb6d8da1e779e4b589ccd187d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-glue/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-greengrass/lib/greengrass.generated.d.ts": { + "version": "534426a23e4f2ae4c5327824705eb943ce20ef602f2e37fc8daa686b9d3f9ff2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-greengrass/lib/index.d.ts": { + "version": "65b10fa18c57d331e75acb7c8dd6327841f31abb2bc622bae6169ad91bb07220", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-greengrass/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-greengrassv2/lib/greengrassv2.generated.d.ts": { + "version": "836d6c7f01b18a58640cf641405516436692343a9e8979838985c091dc23848c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-greengrassv2/lib/index.d.ts": { + "version": "616d63a8ad1c05ec7dd78da9caec74a773cd423033304e031e72f21467ee3572", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-greengrassv2/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-groundstation/lib/groundstation.generated.d.ts": { + "version": "2f829a40c6d21bffa32ba4765f79bf8ddabd4ea8d853b3274baa75447a66cb18", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-groundstation/lib/index.d.ts": { + "version": "6564ef22f1b860914644498bd773d34f4708af2909c137f1d02cdc568805698f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-groundstation/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-guardduty/lib/guardduty.generated.d.ts": { + "version": "ba662ed89c199e8fc44ff94ae327ed30ac727bb83b703f53a10751f1dac535c2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-guardduty/lib/index.d.ts": { + "version": "867a048abd55f06e6129d94dc027657c45bf6a1ce9a41dc245a82d1a50a7bf99", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-guardduty/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-healthlake/lib/healthlake.generated.d.ts": { + "version": "1bbaf9ba81d586f0ab9c6c82aba38f5dfd227127bdfbc9b9de3719862cfa4fd3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-healthlake/lib/index.d.ts": { + "version": "2cbc7ee1e86ff830d0fddb81af522d6d844cf3ea39a6a19689bee405ac896421", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-healthlake/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-imagebuilder/lib/imagebuilder.generated.d.ts": { + "version": "c0510990e0944a636430d1149484241a80357deaa55dc5d4b2b7913c31b6edeb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-imagebuilder/lib/index.d.ts": { + "version": "0cef3af75c9bdfa7e41d09f2d173a6436f7893e62c1729d3c536c918981d64ca", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-imagebuilder/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-inspector/lib/inspector.generated.d.ts": { + "version": "7195a6d08127ad444c4b8101e6ea3a77b5004b00f123b9328a68ea708cb623f0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-inspector/lib/index.d.ts": { + "version": "110d52b221ae8513004077c9cd140710d192d13e7be0246740fe9910918e807c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-inspector/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iot/lib/iot.generated.d.ts": { + "version": "20eb8319e82e0d53889d81a4b08f4b8c2e14f0717fd48cbf00e65306ceab7e75", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iot/lib/index.d.ts": { + "version": "c136f0117b2f3640e25a45182f7fb58c5e3583377055f3faae79c4c25dd2dcf3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iot/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iot1click/lib/iot1click.generated.d.ts": { + "version": "ba403e0d88a8b4620619ac23384d0bbd601574756b6a5081247fdf077e7cff23", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iot1click/lib/index.d.ts": { + "version": "0e77b4033a753fd25d2b125cd274225742abaca3e3664dcb6488d943250d9bd1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iot1click/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotanalytics/lib/iotanalytics.generated.d.ts": { + "version": "ec72411bd7da10898b38547e9de634a0f04a75807a00af29e149435238564d47", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotanalytics/lib/index.d.ts": { + "version": "d5f463bd10e433ad4bb09ad13b0d8f7bda2acab90e07eb44ebd85052a141d936", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotanalytics/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotcoredeviceadvisor/lib/iotcoredeviceadvisor.generated.d.ts": { + "version": "c6bb7ca338e477cf21c4a6eb0b0a87d0cb08b021ca7f437910418f3e3c4a6b0c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotcoredeviceadvisor/lib/index.d.ts": { + "version": "34b77edeac06aec90aad1de01babf561d2be98dcef200713d9b1dd7a387e92b7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotcoredeviceadvisor/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotevents/lib/iotevents.generated.d.ts": { + "version": "ae4105292d9ec96ce574d78fa2b2322f3f30e8d5f5853d12d6ac0addabe3017c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotevents/lib/index.d.ts": { + "version": "0fc4c479838048f5d689d1c4298ad754c63cb6c0853864299a025c8b571bf2bb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotevents/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotfleethub/lib/iotfleethub.generated.d.ts": { + "version": "4225182aba85517d77bd2c7f5d98c90d79e4a96234635b1cdccbcd1449a30853", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotfleethub/lib/index.d.ts": { + "version": "6a6a55363c3026297f10f703f0c1c12a7c4da612a88c36b2b7bfe7b679826ac2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotfleethub/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotsitewise/lib/iotsitewise.generated.d.ts": { + "version": "bc5abb7d616a189af097fab9291e39deffb0299b1b80ded452fb0f415ce61a0f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotsitewise/lib/index.d.ts": { + "version": "4f6ab7707dfd90f99b6d59ade8baed266283d8820fcc6115a3733c4b3fe4c5b5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotsitewise/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotthingsgraph/lib/iotthingsgraph.generated.d.ts": { + "version": "ed625b5820991d4d18dc8e79eb10377c409788ab3c7974ed80a4e7ff38cd6dd5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotthingsgraph/lib/index.d.ts": { + "version": "80812f7111170dd2078dc1cde44b9307ce38418daa5b1b7534190cef3e3ab427", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotthingsgraph/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotwireless/lib/iotwireless.generated.d.ts": { + "version": "2614eb720dbbe79349903a74e1df201fc46556367f87a04ea046c7c24c6afbf2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotwireless/lib/index.d.ts": { + "version": "c3a3ac4ee1581f7d91f5a781a17d80aeba2d8c6cad4893caba47fdca7b8d424e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-iotwireless/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ivs/lib/ivs.generated.d.ts": { + "version": "43f1e6a142915982925f434645cac21f36929401676f0570699d0db4b47c9546", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ivs/lib/index.d.ts": { + "version": "ff93d8d885b53b76d9b2106e47461a1e1d8d52a5c42d27f6c01f4f75dce7434c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ivs/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kendra/lib/kendra.generated.d.ts": { + "version": "aa297d92820b759ed28aed82b284fb9adcea7b236ab171197e2d7968475aea2d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kendra/lib/index.d.ts": { + "version": "c35ff8baad7726c935f47dd990b459d9d98bc809d544d9c3dbb285501601a799", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kendra/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/lib/kinesisanalytics.generated.d.ts": { + "version": "9740120b059a3d34ba76cdb75fb9ed8a54c4f04d4d3b325ac37ebb9c88f3f55c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/lib/kinesisanalyticsv2.generated.d.ts": { + "version": "a3121bc503c95db8c41b842683e18ee530ff5c030a97292855564784affc6936", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/lib/index.d.ts": { + "version": "2ed8d9dd8ca3f9e44c94a72ebe68640c8887c89277e20623f22dcc18f7130921", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lakeformation/lib/lakeformation.generated.d.ts": { + "version": "d2537e921c3168f5355a52e4f5d91665a8f636910dbab4528c60f2120fb81f6b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lakeformation/lib/index.d.ts": { + "version": "9b9fecabf5cd82d886b65baae2a849df908932d0ae80d7ebd8426c7f4f20e615", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lakeformation/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/event-bridge.d.ts": { + "version": "33ff4af65b6c075fb8c4c4ecd588a425c006360e9e525150716f48f347c75e31", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/lambda.d.ts": { + "version": "b3d7932961ae6c350c75201c038c4070530cd57e69a089b4f0035e8ded8b9349", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/sns.d.ts": { + "version": "4c60e63c01f11c70e8977c3fd4e30151d4149fe4bafaa826c8bb66cb32540f5e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/sqs.d.ts": { + "version": "d4c658c60af055b330bc6ce3b44038bc4ddf08f548f79c13945b28f7a68da609", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/index.d.ts": { + "version": "fd31957f8ebf34b4cebe5b7e3a958da587d58370655daacab8557214426a9ee9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-destinations/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/api.d.ts": { + "version": "b61802bd34568b7678bc85eef8643f3de7f0d2a1445587f159c93471f8f2ca21", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/stream.d.ts": { + "version": "cc395930d9fe523fc61c6a2aa00444b32ed098d9545a478a019ab309a168eda7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/dynamodb.d.ts": { + "version": "a0c30769413bbd732ed357904839fe083498a8d9208bdb3add28095b0712ff35", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/kafka.d.ts": { + "version": "77013a4d7d818f2dd0864966366ca0d7e857a92f6bd13cf8c48aeaa8f7430028", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/kinesis.d.ts": { + "version": "f607b2a0b5bb19d1981db6fe8d2f28fbe1227ae7b662bf36a07b8243048b38d5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/s3.d.ts": { + "version": "fda8b10b6b071ae6c3cb4d79f6c1f59df942337be0ceb54bb4c621b202f9b9aa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/subscription.d.ts": { + "version": "b1ed98b613e00243637f386fcc99cd565fa46a672bc98d9a2854fe89cb549167", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/email.d.ts": { + "version": "cf1bab31e24001be0ebb8c0eedaa4b81bb56e1cf87970333aff090b640eb8d42", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/lambda.d.ts": { + "version": "1b782de52098c62f7f0ff4e8eb4ec26c4a4d1a9ece65ebc1db0f476d47d466db", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/sqs.d.ts": { + "version": "28661b28d6775ae8853145a03dfe2dc28f7007f9c1140ed0440fa69959bf909f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/url.d.ts": { + "version": "630124c5f340e17a03c551caf81f01fde9c955485753ca2ba59e61dad6f459fd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/sms.d.ts": { + "version": "ed4de0b8559e385cde77d10228b3240aef24329c3d1dbc535f714b4ef9d71d44", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/index.d.ts": { + "version": "9f8fbd55cf3067558fcbe63fc67050e4d9c400080b25e5cca96af7e3cb1624fe", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sns.d.ts": { + "version": "4f199954104dec523d4b3fea91816ac657615563b625049fd661b003c90f1a10", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sns-dlq.d.ts": { + "version": "e7bbc081efbf2ceb0ebda79c7d599bfed4aceca55114443f674729c2b2cc855e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sqs.d.ts": { + "version": "10765ef3f86a67c8767e5a8b799081c54a02a4ef20ef72c2b3bc4233594d81d0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sqs-dlq.d.ts": { + "version": "b3cafded80e2beac11aa95100992843c98614ed54c0b41478e185639c487c328", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/index.d.ts": { + "version": "c4d07df131ab4aee97a18bb92e4ad913482615d1bf4de6cb51aff3cf8b1f93a8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/types.d.ts": { + "version": "6035fe8c628809fa0b1d38eac8581685e1601b8d44cb6323adb312ce3f0b6419", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/function.d.ts": { + "version": "ef3429d9e1a0a2afa861672610a461246f8a216e2b0113ba2b2fc08a704faa1a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/index.d.ts": { + "version": "7a0c358d533807c6328dde3bf98c3c4de18848ae75b80b78f51ea7daea355226", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lex/lib/lex.generated.d.ts": { + "version": "98509a125a46c8e1264fcf1d1863f67e25d46d185059ed1e9b9d57634dfdb11d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lex/lib/index.d.ts": { + "version": "f4cae5ad7b13b0b01c533857a3717a03f12201bd7014d149fe59de93725530c4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lex/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-licensemanager/lib/licensemanager.generated.d.ts": { + "version": "21b0a5862a91acede7086bea2e2801a9abcfeadd4f9a865587fc34877b2cde45", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-licensemanager/lib/index.d.ts": { + "version": "09ba412bdc60cbc138020d2b49adacd0110b6ae9b3045896a0d9b3d64371cf74", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-licensemanager/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lightsail/lib/lightsail.generated.d.ts": { + "version": "caa1f9c582ac77f118b1cf32b4063c7d19dfe49ddc56b3b26b7ff9fab07ab76c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lightsail/lib/index.d.ts": { + "version": "7f01c449e42effe90439058647e29e7e6cd22eeb11366afbed2f0d684fff15da", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lightsail/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-location/lib/location.generated.d.ts": { + "version": "3f46da9aeed5dbc94472d18f888c5a54797d0ab0a5b552f9131b31e4bed417a6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-location/lib/index.d.ts": { + "version": "745b9904338b4fcad6f38c37a0455f9f638407d336c8f1f9efef2ba366d7614d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-location/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs-destinations/lib/lambda.d.ts": { + "version": "b2bcec4f848e1135c95964b621041560082eafbddbe7cc55052cd339e174ac67", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs-destinations/lib/kinesis.d.ts": { + "version": "77ec10f0ea2c3dde4e185ccf943a0c7ae6b462f58bab89672ecfc6c6e9c322ef", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs-destinations/lib/index.d.ts": { + "version": "807fc1b625a5feedc4143ef835a4822b98ae5cc3c330c5693ea0f316751f6cf8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-logs-destinations/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lookoutequipment/lib/lookoutequipment.generated.d.ts": { + "version": "53b25a71a64b3c13f36c27cc2095bf10743ec454b15e69184dffa578bdb66e4a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lookoutequipment/lib/index.d.ts": { + "version": "4c4ca22b3fa6ab8573d3ea0fa0c4b83d9f73f308b8ca05c541627334a41ce535", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lookoutequipment/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lookoutmetrics/lib/lookoutmetrics.generated.d.ts": { + "version": "a4e7abda67deb719fabac1e2c9ffb55e0f58a195ee03f21e1919da9528a7759a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lookoutmetrics/lib/index.d.ts": { + "version": "d893bde9bd324222b901791978d1d38d3303c467176ec119c104bf8917a05aaa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lookoutmetrics/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lookoutvision/lib/lookoutvision.generated.d.ts": { + "version": "4edd2890b3fc65d6ceb6e260bb0f1add77347e4136af8739d7283275f9003b9a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lookoutvision/lib/index.d.ts": { + "version": "ec80d72da05254283fb295829480251a4511abc79f8912ad9aec209e25329d46", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-lookoutvision/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-macie/lib/macie.generated.d.ts": { + "version": "7cb67f69d6dd087b20077e5ce35f071a6f28df528a2b14a8d65a4a8b1146886b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-macie/lib/index.d.ts": { + "version": "bcecd67f060fffeafe8e4343a4b2fc427155ebde7d5adfbdc4d40f4990f98fa5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-macie/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-managedblockchain/lib/managedblockchain.generated.d.ts": { + "version": "8bf651f5eeb2ba2a1156fec0d87bf3523a69c51daa2bac91a6a6d82b05ba8d64", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-managedblockchain/lib/index.d.ts": { + "version": "068b05dbed7b6eebf8eae4ddc35a7f1b4834ebce04a76f26ae757f89bb10a5f1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-managedblockchain/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediaconnect/lib/mediaconnect.generated.d.ts": { + "version": "fdf00cca72dfe4f707fd5730a4a4a385679aa1f4f9db469e89cf992ecd4432ce", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediaconnect/lib/index.d.ts": { + "version": "33283ff795da287736ce9e32bffe96f2750ea182d5baeeaf331a5b07d7191d26", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediaconnect/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediaconvert/lib/mediaconvert.generated.d.ts": { + "version": "39b5b1af17bfdb5a561ccaea256f47543fc5e4a66e4414cf011a7e8edc374aec", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediaconvert/lib/index.d.ts": { + "version": "8fdef526dbb6af6a6bd4c845f98f30f2368c0292488089a9df37895b30160761", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediaconvert/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-medialive/lib/medialive.generated.d.ts": { + "version": "b13f73d29a737d0956580230a635d0f7cedf08158cd7c9a375eee68b770b8a94", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-medialive/lib/index.d.ts": { + "version": "2a057cf8dbc240dee8e4c645078a27614c89215bdf61075ccea687d9b4268b1a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-medialive/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediapackage/lib/mediapackage.generated.d.ts": { + "version": "e796c6f3157af7650bb625a217b447ea96a1ee55906a4bb3295727c593d79d56", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediapackage/lib/index.d.ts": { + "version": "298b3c2a8855badf43bf90f8e892050534d918cf85f54d59f566bb6c21bdcfce", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediapackage/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediastore/lib/mediastore.generated.d.ts": { + "version": "32bbcdf5a5aef112c9fe337eb153d1b2534eca1bb884621eb3d37929c6f53ba5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediastore/lib/index.d.ts": { + "version": "65ca65db50502c292fe9ce7e57f77ca4a7b4e7f57183e0b22de949e744378fcc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mediastore/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-memorydb/lib/memorydb.generated.d.ts": { + "version": "336a209dbea08cd08727432dabe68745c92eca5f3fc807cdf533ef84995d2bd9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-memorydb/lib/index.d.ts": { + "version": "3590851029e6db643d1f8f7ef279ecd25634d5c74bf67ad0af7667d43ec6b447", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-memorydb/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-msk/lib/msk.generated.d.ts": { + "version": "4c62b408828c524fff10aae04d48404a180723e4f7c45f271700203e5a16c5f2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-msk/lib/index.d.ts": { + "version": "34d97a92c32a06ef61ed3faaa19db85ac3359e0afa319638e8dca71f00e6080e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-msk/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mwaa/lib/mwaa.generated.d.ts": { + "version": "558a727d1f3e92f314b66cb12aaa835b10573e7fe97543cbe980733c7782d722", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mwaa/lib/index.d.ts": { + "version": "250990a6eb9aa88fbaf9a0b220deb9fa5f21930183a275f7c5835c5a7c294460", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-mwaa/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-neptune/lib/neptune.generated.d.ts": { + "version": "17ea0b41affcfeeb8ff9ba363953959323c16fd0cf42995cec697d6a973c420b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-neptune/lib/index.d.ts": { + "version": "6d3b03d852978fcc31250ab65a30edde21cd66c4b89b0188b4ae7cb638a0192b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-neptune/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-networkfirewall/lib/networkfirewall.generated.d.ts": { + "version": "cd4d5ebcd542f92c49da7065491168e04c3f1abc9a15a650dd1806f2d621b947", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-networkfirewall/lib/index.d.ts": { + "version": "58cabdbc53f502a5bf67d44db1c7efd8e8b018f2770fcb066425c10fdb2a34e0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-networkfirewall/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-networkmanager/lib/networkmanager.generated.d.ts": { + "version": "622bc116fd1a72361df4095102d1b5af0035074dd2c94fcbc1874296858af872", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-networkmanager/lib/index.d.ts": { + "version": "4d0a092e21ee06cfdf63a03c4720c01517e325d7b8fb0c6f4a7aa7bd60c87712", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-networkmanager/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-nimblestudio/lib/nimblestudio.generated.d.ts": { + "version": "a3ffc32c0ac157bec9569ad4c088c1fa5900a354539591d3bbd51189dc3255ad", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-nimblestudio/lib/index.d.ts": { + "version": "0b0e80196eaf477550817a1fa54e162b2407673fd9cb75e97c488621a00ab052", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-nimblestudio/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/version.d.ts": { + "version": "d67971f70f75c6bc84d6adab422bf6a2efa818019ce9e6b40a83d333176ef9ab", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/domain.d.ts": { + "version": "2e02cd0886e2880eca8ec346c96f190e7af5a459c73469ea1dafa3ce8dc781e1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/opensearchservice.generated.d.ts": { + "version": "dcf06b475ac53722bd1d54bbf06bc2410151a0eb001a5438b13a64301c57a68e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/index.d.ts": { + "version": "2222ba992a1492cdd6217aeb2b9ebd13af69b058cf9b751e5902d2167955551e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opensearchservice/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opsworks/lib/opsworks.generated.d.ts": { + "version": "23b0e1f88533b8618b3211fd4d2fc3a8dac823e59077e0eaba52dea083ae8a43", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opsworks/lib/index.d.ts": { + "version": "ea31b6159f237ff23fd3a5881f44367054649eb814880940f44fdfe936d1999e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opsworks/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opsworkscm/lib/opsworkscm.generated.d.ts": { + "version": "460f84b2d3948479b0dbcfe73b2d4831c6edd90d74538da904a0485e760d4d71", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opsworkscm/lib/index.d.ts": { + "version": "5ce42bb60ca788b1fbaaead67ca59179daa508342034e70ce400a6a32b56d3f5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-opsworkscm/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-panorama/lib/panorama.generated.d.ts": { + "version": "e4119430c831abb3779e8e2f635fedec8abb79c8a35dfb56950c98deb24c8dee", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-panorama/lib/index.d.ts": { + "version": "2d0b894427d0c0c6892375e0c830de267573103e7b24b59fa03cd7bd060383f7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-panorama/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-pinpoint/lib/pinpoint.generated.d.ts": { + "version": "0697a90bc0b06740ce1f269cbf07cd8912635da1444edc66bb40905aaba7d54d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-pinpoint/lib/index.d.ts": { + "version": "dde01e7450d43c18511cfa3ac1de00d353cc21358d8ac17e4fb2f4063a035ca7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-pinpoint/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-pinpointemail/lib/pinpointemail.generated.d.ts": { + "version": "bee7a01ceb99f121f80436969d70e49d425c2e9946c8003df936aa66b795d43f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-pinpointemail/lib/index.d.ts": { + "version": "a5a4abe674d16589b82885b2d52b7c5b272cd5194358147f538c68e941389653", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-pinpointemail/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-qldb/lib/qldb.generated.d.ts": { + "version": "5cef16bef75d198c0ab9a6e4d15eaca97317a7268c3d5a9f78c741eadcfd6612", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-qldb/lib/index.d.ts": { + "version": "b2a8fba98f2d70f6f594186f91b4b9547cff62f3c34a90fdeb74058ab4dec5db", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-qldb/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-quicksight/lib/quicksight.generated.d.ts": { + "version": "8bdc40c8c9228e96c7855291b8c1c172928e6017cb948377faab8c49db3156ed", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-quicksight/lib/index.d.ts": { + "version": "4c9544766b453e344c997a47bd979683cefa2faa358c09154fdaca020ea0deb9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-quicksight/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ram/lib/ram.generated.d.ts": { + "version": "8e6f0bf2014d98e81d976bd74de8719e3732e0a42ef36c62e7ad024e31680520", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ram/lib/index.d.ts": { + "version": "1409f60f1d19e948cf40e1574400e4571817324838c993d1bbedd47e4a3a551b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ram/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-redshift/lib/redshift.generated.d.ts": { + "version": "c2125156e6f805aea49cc102e3beae523a01af3e4e0c3d9899bfceafbb389c77", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-redshift/lib/index.d.ts": { + "version": "f99fae27892693b33acf34877e8d4dd5b2c675a792ec3628b487c8cc9c44e341", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-redshift/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-refactorspaces/lib/refactorspaces.generated.d.ts": { + "version": "461951e6fb072d41dc05036e10aad1aa707fe9cc7230012b56db7c763322f13b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-refactorspaces/lib/index.d.ts": { + "version": "4249dd418f2e684b085a7dd112631a485491640fb41075110b0a7f049a6a8093", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-refactorspaces/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rekognition/lib/rekognition.generated.d.ts": { + "version": "449622fb64b8aa57f7f5edb05774e88bbd70e0b596276fe659014f9b68f1f675", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rekognition/lib/index.d.ts": { + "version": "71bbb12808bd13b7f665fe3deb8d2bcf4df3896a8615cef6d76addd4aaa617fd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rekognition/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-resiliencehub/lib/resiliencehub.generated.d.ts": { + "version": "73b4a61498d0c7f3f4828ab7c8e24b7f1767574e543c16ce77f3c3635146acd3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-resiliencehub/lib/index.d.ts": { + "version": "de7ff3e06b934cc8d436450790f11d103993de26f5d171293e87cb4f080e38f5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-resiliencehub/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-resourcegroups/lib/resourcegroups.generated.d.ts": { + "version": "30cc29649d148e3159c0bb145aee3ccf320e7d6385bcf584c48961286f07330d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-resourcegroups/lib/index.d.ts": { + "version": "68fbc34a20b735bc39438cd8a6d07b2ec6524e650f199106b54a9d825b0e12b7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-resourcegroups/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-robomaker/lib/robomaker.generated.d.ts": { + "version": "0b76c1479280f8b08ed896dc093ba748d8cd02eb396ad93f43c38c6e52d57bb1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-robomaker/lib/index.d.ts": { + "version": "35bdfe5e4554c48d97b06e72bf734cd9357b96177a6a4d7df14e104575ccb7af", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-robomaker/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-patterns/lib/website-redirect.d.ts": { + "version": "25a20dda4376134261bbe780b6019d57eefbd79eabcb026da6a0d33c30f06642", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-patterns/lib/index.d.ts": { + "version": "481bb4f159631580c41bf756acdd5a5be5b2514e10284dca5f9e1e189e3cd484", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-patterns/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/api-gateway-domain-name.d.ts": { + "version": "9bb0862cc4ad1f45cb01e4b23e3e6091dcf18f0df0b3fb8f896340e761695009", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/api-gatewayv2-domain-name.d.ts": { + "version": "ad9c7a858ebb0dec4bc9d9c10124abfe9f09998c40916af4c2dc113c3814b142", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/bucket-website-target.d.ts": { + "version": "d18695999202b509689751fb674a925d57ceba351718797d793f0c25486d67c5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/elastic-beanstalk-environment-target.d.ts": { + "version": "5421974f2a7f3c57e5a7f6cbeae77375ffe32de54b6130c9d72806e717deb51a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/classic-load-balancer-target.d.ts": { + "version": "c8f760075dea76b2429fe4ee2366ad54d961291688152720973d7a9349a554ca", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/cloudfront-target.d.ts": { + "version": "733475727e6df5241201ef09ef340e8ca6750d821d615f963e6da41b536a19fc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/load-balancer-target.d.ts": { + "version": "ded2e0b98c63de8616777130aeddbfc0ce8759134b40bd831500a328cd56c5cf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/interface-vpc-endpoint-target.d.ts": { + "version": "addc9740a88c81f65d431f6ca8d85be5bd3a8b358bfe0a986badbc5baff812c2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/userpool-domain.d.ts": { + "version": "c61cc440ab9805ee30a1d65e18a1a0c5a5ec50e7328798988f36b802e68f3f20", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/global-accelerator-target.d.ts": { + "version": "4c5fbb24cea736483c4ba47ff8b7097ad6bffc4efdfaad2c34912fcd21d5c19a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/route53-record.d.ts": { + "version": "da22ffee6f00ec5eee61c49c06322e569eeb8c87aa534ba0ff83e64579c6d108", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/index.d.ts": { + "version": "ba7ebce8fcae9ddf456532e1e119b3cdc6eb6daf83826630ef10c288087ae783", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53-targets/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53recoverycontrol/lib/route53recoverycontrol.generated.d.ts": { + "version": "7921b108f56c704362eba17075448c9a37f2002e82114c6275a8a8da01c01b73", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53recoverycontrol/lib/index.d.ts": { + "version": "33acc934a28a9a3172e54f0205616a3b6d77b2edaa6c3d6b6f4cf67fde3dc290", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53recoverycontrol/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53recoveryreadiness/lib/route53recoveryreadiness.generated.d.ts": { + "version": "2cc419def671a3d594b99a1f15228f618276de3cebde7e854017795b55c26b07", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53recoveryreadiness/lib/index.d.ts": { + "version": "3858cc7c42f9cc6c3ce9257e116ebfcff3bb53820ab587e75d925af5e41c9893", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53recoveryreadiness/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53resolver/lib/route53resolver.generated.d.ts": { + "version": "65eaa22d7c6313ad8eb0028b42ba71e1c9c01624a1daeb4b11715cb44a7e9f5d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53resolver/lib/index.d.ts": { + "version": "cdd450e7ccde080d6070661d740516802f79e14ec223ddfa0718d580227ad2b4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-route53resolver/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rum/lib/rum.generated.d.ts": { + "version": "8e0a82f35f642f8ce931194ddd50e78756cb5718a1d40f7d50089b1f7af61f0a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rum/lib/index.d.ts": { + "version": "dbebf996cc94b0e30c9ae0fdd346b0e3449713c6bac25c3e06975594b931aa90", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-rum/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/source.d.ts": { + "version": "cc796754b631b7934456577aa71ce93705b32938da9ac1743aa1ebd84434ac5a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/bucket-deployment.d.ts": { + "version": "092ba244b9564d271db79e540649de106118f3a69a8b262507aa479e912a16ef", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/index.d.ts": { + "version": "9549d3897a245fb6fecc3b242315192c1bec3aa60114ddcd87dc9a5b9810a8d2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-deployment/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/sqs.d.ts": { + "version": "c95965d37edf267f47cc36865b9b7691014ea14994af3ebdf315d78befd2e1a7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/sns.d.ts": { + "version": "ff77c7961f38e2af277a8c9d3cd0cc32297c8becce822cf9aa4367b41722878a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/lambda.d.ts": { + "version": "fa3838879b907236fcac849ae525c22108391833bcab2572a78504564f3ec5c2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/index.d.ts": { + "version": "9a6920f1268f860d22f87f7553ef159d41a15c138856e2eee5a937693d2c7c1b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3-notifications/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3objectlambda/lib/s3objectlambda.generated.d.ts": { + "version": "a1cea0774075cb7a4507864c1563d5dba73e6403680fab834f5dc6ca9700ea9f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3objectlambda/lib/index.d.ts": { + "version": "852291bf1379a4492792cead416711bf74b8687e775a4eb09ea82a4d81d05dd3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3objectlambda/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3outposts/lib/s3outposts.generated.d.ts": { + "version": "ed6e42db22014e3d657c2e5ce104f414eae4f1de16abc43ec50f925297cb74a1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3outposts/lib/index.d.ts": { + "version": "35426816491bac6d605000fb1494ec291622d2a1266c7d47a8fd7bbfa735c5fa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-s3outposts/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker.generated.d.ts": { + "version": "b14d25ff2495cd5a0beb83d3b63f11b2bcdbbcf9f2df1214249596ba85727ca7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sagemaker/lib/index.d.ts": { + "version": "6394c8bd4a02097ea8620876d3c7409814206c4474ede14407bf5192cfcd3e20", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sagemaker/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sam/lib/sam.generated.d.ts": { + "version": "4f59077e32c0e28b8374f52c8cc44704229ad35c6dc82788e6f71e49a94a13a4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sam/lib/index.d.ts": { + "version": "a49d0ec0a109fb7c16fb9acf8ae66d6b760f89cfb631e1f5fad52084c8e2ef3e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sam/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sdb/lib/sdb.generated.d.ts": { + "version": "0ee0ce39eb208c1c52ef9038d201353790db3a18d11b0e12d3c1b4e16a2bcacf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sdb/lib/index.d.ts": { + "version": "10b398b89a4b2d02f3ca03325bd7dc99d9765b48c928b36aff9f1f5bd9e31612", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sdb/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-securityhub/lib/securityhub.generated.d.ts": { + "version": "9fd1c707ef5fd0525bb97160cb3213b156d59f96c50a29e4b4f3c20901d27ade", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-securityhub/lib/index.d.ts": { + "version": "86505ce6409a8b9b17f151dd65287af80833d57893b236f23443de3c5130b935", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-securityhub/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicecatalog/lib/servicecatalog.generated.d.ts": { + "version": "f8d823a0c18dae80d34ce28f4705cecd7ff3b6a4bd5941ff88e6413580606d11", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicecatalog/lib/index.d.ts": { + "version": "6419f861e2d772295fbf8d80d72e93eccfc11471d2860b87ca3058d3149c5c53", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicecatalog/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicecatalogappregistry/lib/servicecatalogappregistry.generated.d.ts": { + "version": "e1ee7d808cc9eddf987747006dc7534008c58b8fb698f61db7a667e29ab4df1c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicecatalogappregistry/lib/index.d.ts": { + "version": "06499977dd4d95bbeb82b40532f0fcc76021c4f9f73a6d62a9b0227a52cdd2f5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-servicecatalogappregistry/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule-action.d.ts": { + "version": "c330e512874920887ecac137f65e3fe1654c4077e77d48d24f4b64d02d288204", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule.d.ts": { + "version": "920ec4426a5ba4632ad8161a5a19075309f6f78ad02eba30a69240524f71bbb5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule-set.d.ts": { + "version": "20326c59a1977712d77581ffe939d1775b6af5a11047d8c01618ce003f3f17f4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-filter.d.ts": { + "version": "328551f965e4142dc6d0291d7ddf503d4ac41ab400cecf9fd2b5275efbb48d8a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses/lib/ses.generated.d.ts": { + "version": "b292bdffc4b878a02bade9894863555262027f6bfd3f4c02294b0753bcf0bf8d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses/lib/index.d.ts": { + "version": "e9618fe203919b21e66b9075baaa80b2bec40ca43c5d6861e2cb63907292a664", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/add-header.d.ts": { + "version": "d79d42b19be6847346322ec2a59dc87da423ce02a08bd1065466492880f597ac", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/bounce.d.ts": { + "version": "5be1b72f5e18f0fcd9f24ee11e1b6865cd98a345cd41f4e760e19f0c8aed7d8c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/lambda.d.ts": { + "version": "f50b368edab68831413f93515bd645cbd57901ef0d88ca952b77b436905e62df", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/s3.d.ts": { + "version": "3bbe3443a79228bb40624f9969421d866b17fce158c40d6843ea49099a96189d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/sns.d.ts": { + "version": "afa860299210b635da37ecb63b20db5809e7e2cd229a9b640f4e3934b8bc3b6c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/stop.d.ts": { + "version": "12e8719dc1f3e49d8a681cbed348ce6287fb776e2fb5bc16f2dcb89eaeded391", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/index.d.ts": { + "version": "fbc560c7832097d5f330d1ae200fec042ac51e3cfe9d2874d202bf6eae0ef768", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ses-actions/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssmcontacts/lib/ssmcontacts.generated.d.ts": { + "version": "31b46fbda53adff53a7e1537a5d373632a7dc9851b46a2733506b71e6ad07e11", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssmcontacts/lib/index.d.ts": { + "version": "10dce9c8f91197fe049045716c411ac6f2a6c5ffa5176b90bfc7eb46ee29f751", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssmcontacts/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssmincidents/lib/ssmincidents.generated.d.ts": { + "version": "1e1ba97d47a6f1cdef60eb1db933ae13c3099482d689cd630578cbaba7913d2d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssmincidents/lib/index.d.ts": { + "version": "d68db94fe8599554dfccbba60b25fad3d86d2889061c6b2a17c001e6fecc543f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-ssmincidents/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sso/lib/sso.generated.d.ts": { + "version": "28f39daa2a91adedd9739ad2ac5ccde390dc22168f32752c3d39b5785c41a7d2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sso/lib/index.d.ts": { + "version": "00f71d5bb5feb2bfb3ad1adde5ea660d5ddd9ab2f0f8cf75852b3db68abbdc60", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-sso/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/lambda/invoke-function.d.ts": { + "version": "ee978108539072b2f60be568298f129eea9e5a0cb92dbe8936480fcb97a9dd62", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/lambda/run-lambda-task.d.ts": { + "version": "ee978108539072b2f60be568298f129eea9e5a0cb92dbe8936480fcb97a9dd62", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/lambda/invoke.d.ts": { + "version": "68858f653ec24725214e0af7c914e4058bb9cb262a77d49ad6344f101d5b3bbe", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/invoke-activity.d.ts": { + "version": "af89bc5638270fd3b2e4d21208e69d9dbdbbc21d643c980bd3f2f7830531b2fb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-task-base-types.d.ts": { + "version": "1ebec989ca439ad3872d9317d4bd4f6e74136684d1a9521562445de12b7e6ed5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-task-base.d.ts": { + "version": "b264d32df9f9361a3090a9c28b1b65e17b67c67932ef9fb0eb0387b3050c4913", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sns/publish-to-topic.d.ts": { + "version": "1b5ea2eabf4941e745af61c0cd96f99b46f9c6642cbaac43bb457d209820428c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sns/publish.d.ts": { + "version": "80e7f53dc89dc7bcb98bb06f744638b59d846b6e743006a0c9f69c5bdebdd74b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sqs/send-to-queue.d.ts": { + "version": "b1ae51b7a8477ae97817844145f9db1cd9e74ad909c79c2a290c9e6abf59792f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sqs/send-message.d.ts": { + "version": "76d0ff90ba192303d462b556faf106a33680ca850d8ad4ffe29f51b4f012527e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-ec2-task.d.ts": { + "version": "9853954e7c98ea8d3d9c6c459fe305767673f1503922aee0e7a9697027e74c6c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-fargate-task.d.ts": { + "version": "9853954e7c98ea8d3d9c6c459fe305767673f1503922aee0e7a9697027e74c6c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-task.d.ts": { + "version": "93a0dda1e7f6566aa84af09029d01875d4420c38db4592dd43bfc51711f9502c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/base-types.d.ts": { + "version": "3c5f3f4a257300e2a93403ee03d17cf404b1a9d95631aa781e2fae5777f2b2e1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-training-job.d.ts": { + "version": "eb43d09b451f296660bca002fb21100b223194f714cb9d5a288c2af9dfed2fa0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-transform-job.d.ts": { + "version": "1db341d519b9d556ed8de9e718e8207a60b2da5702c6c8f4aeed32f8c34b3822", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-endpoint.d.ts": { + "version": "7b420885547bb808c231420b175d2f99e19c498f5f1aac077541507664f2b95f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-endpoint-config.d.ts": { + "version": "c874aebcc32d9e2a8e98fd66e8ecf463a886980fee6c26309610c5981101be8e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-model.d.ts": { + "version": "f087d897f9475d5c4141e7740cb66cd3cc1a315dee58ab6ee45869683ace04c1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/update-endpoint.d.ts": { + "version": "b073781fe233df8259ce9e8533854d7e763e61f42d94b00cd484a46732d6ee91", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/start-execution.d.ts": { + "version": "1ce7677acfab272e7528c9cca3bcd0020ef7a20b9312d41f7bbc58bf41fc1340", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/stepfunctions/start-execution.d.ts": { + "version": "d94bee254fe6cef79df480ede6e344f6d2b2ec7bbd84fce7f3cb8ec47039c7b3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/stepfunctions/invoke-activity.d.ts": { + "version": "7a0a29899ee757177afc3229ef58ee3e75a58032b8b284d531f0bc0dcb146f4e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/evaluate-expression.d.ts": { + "version": "41b94071c87e131a0d7907a0fd265b301f76495c7d5ee45d68fdffeb1955c2b0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.d.ts": { + "version": "19989c7d90e34e91afaef3e7b2fe429d2ca6f857842389e504f4c1eb79845ee1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-set-cluster-termination-protection.d.ts": { + "version": "fa31d8eb0e0faa4abb632e21f7b95ed192f8933a2c6fcdbe04f339c73dd634f1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-terminate-cluster.d.ts": { + "version": "0357530c1ee981aa73b9d7f8527f008354cfb9b09d445fbb9338c2905786f6bc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-add-step.d.ts": { + "version": "635ed164748d95cda8cfc559ef2d2d91a6c104407eead7773e4259ffd697ab84", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-cancel-step.d.ts": { + "version": "c53654f6a32f09ee1b0563c3ced9a5560438d1e4f709d569a87aae8b749eb008", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-modify-instance-fleet-by-name.d.ts": { + "version": "8b9a14b4971c15f9fe239947c81cd83eeeea0089baee86811ee14bdf4662b1cc", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-modify-instance-group-by-name.d.ts": { + "version": "e860806442f43ab9a5d40d4a9fb0a6820de55dfeb67ea7c8921b7bd57f6fd7bb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emrcontainers/create-virtual-cluster.d.ts": { + "version": "89b667ac88bace40fab191edb15c2e9cb337756f1b5d096ca496708db32a6d56", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emrcontainers/delete-virtual-cluster.d.ts": { + "version": "f7f1f73519e3e971a659e72eec0f56e0d40cb8718fcabe8fcab87305e09e8b07", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emrcontainers/start-job-run.d.ts": { + "version": "1ccf0ed26f167ce9a44dc496a16cb8cf1a6a0493c931596df51d597507f2d9d9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/glue/run-glue-job-task.d.ts": { + "version": "332c8294d0435c6e65a395a068593f2b2a7846157edc8d5ede75c9fac586f460", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/glue/start-job-run.d.ts": { + "version": "37e1bfd68a22fb625aa61e3ed92c260c17644e528265894d31f8715534496fca", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/batch/run-batch-job.d.ts": { + "version": "a22810d84f2d710e557e46fd40ac2e2cb755d0212f0bdac53853512ca20f9992", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/batch/submit-job.d.ts": { + "version": "76ebbe3351c517833b54360ae70f016cf8b81a04d9ebd84550607ac0fee87b64", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/shared-types.d.ts": { + "version": "e72ca43dd00617249a42c2b8782009532d96398dec321676bfe0d744befd72cd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/get-item.d.ts": { + "version": "2f5c15ef5ae847e8f9bd226a8aef476f26cb0d2609d343383e1c82712379b9c9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/put-item.d.ts": { + "version": "2659c6a5d7a42483dbf499d7b24cf974292a56346fb8467061a40649f92f66aa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/update-item.d.ts": { + "version": "b920f5c464a1008cdbcf7698ad59dc9ff064d9074857d15e9828d13225ab721f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/delete-item.d.ts": { + "version": "4cc881b09d0590af69289f5f22fb9512f70d712d0ff9e43f30a57d2a157b0eef", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/codebuild/start-build.d.ts": { + "version": "67d7cd132b2e2692ab523a0d13dae0e8d56c21754c299b77e302f910b3ad9403", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/start-query-execution.d.ts": { + "version": "dffdb6251e63b97f928a161e7fac5e309ca351d7ce691c06fa3a02e72a5d7321", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/stop-query-execution.d.ts": { + "version": "9bdc82f27e8a15500aaceaed2f61ebda62bc9e742b323160f289375b4653d422", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/get-query-execution.d.ts": { + "version": "6928370faa5c90ce00c49cca011086f4c7ac794fc081104252e489c1ce40a5a6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/get-query-results.d.ts": { + "version": "79b4c8cc72fe696f3ffca0c28553122b619476ab4d30e3870fc462033a8b38f2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/databrew/start-job-run.d.ts": { + "version": "3c2a0772fc8649142320e3fe2a305a4fe5e1c6a93eb8a18134c9be70d9b18f88", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/eks/call.d.ts": { + "version": "3a2eb77b1d7fbe22929c2ee43af735fa5c6e08420c54b4869bb21ce13d82f249", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.d.ts": { + "version": "a0de917c36e3b1043ddf3fb0eb4e3644f1eb9975190b84caa3682640274ed7fb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base.d.ts": { + "version": "88e4bc95ec60af63d34237c352fe4cf1f5cda5a91266e6936c11685c5f1878c1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/call-rest-api.d.ts": { + "version": "99e1db98668032448d49a077d5ed198c4ce206901e6ac0f9123823abdc0c4885", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/call-http-api.d.ts": { + "version": "8a5d84096ff5dfaa7e859676bb5633775223d7993e592f0e6a0578d30117fde9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/index.d.ts": { + "version": "699223789d20ab61a8a746131157de907c0ed16486d182584f2802f20e0c0948", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/eventbridge/put-events.d.ts": { + "version": "b5d9bf14cfa93354c4861652d9b4c1892d1acfbfe000e2db934c6c22eaa8439b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/aws-sdk/call-aws-service.d.ts": { + "version": "945ddc2c26f019dfa66dede5667d17724d3ff2b868395f41df9a6d1426bb9a96", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/index.d.ts": { + "version": "9ef8e2caa44c73607ca7b91d2e3df3a785b06ebaa036fe1244a5561f79cbf5bd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-synthetics/lib/synthetics.generated.d.ts": { + "version": "d04844df5818e87c3c1a5e489fc6a412775ebf217848b2840ec0705cc7092dcf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-synthetics/lib/index.d.ts": { + "version": "0f61e2d4663a613469e6bb66aef25b612ae3ed0883897831808824a3163872d6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-synthetics/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-timestream/lib/timestream.generated.d.ts": { + "version": "ad6ef1b55195dedd2359f55b4a3ad54b7d3db2f455cde81236638079ea92808f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-timestream/lib/index.d.ts": { + "version": "fcf084a283a16db6af64ee4359d3510267478f49446683c2ca265590112ef6c8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-timestream/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-transfer/lib/transfer.generated.d.ts": { + "version": "3843d62f6ee0eabbe21dc6c2fb52d78eaba1f0ce0ac802840f4fe8a520b4a7aa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-transfer/lib/index.d.ts": { + "version": "625c4721c2f9590a89351f09781a1b84d9ec541d6fe854d3901dba2b748473a6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-transfer/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-waf/lib/waf.generated.d.ts": { + "version": "ef31830b7426d34ed57cc6ca72fc1e5b5fc786bb21ebfebf8516a02610c4b617", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-waf/lib/index.d.ts": { + "version": "4453032aee92a06efc42df421625dfb9fb7978890a98a39dfbdc1cb17ad4b4c4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-waf/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-wafregional/lib/wafregional.generated.d.ts": { + "version": "9d13fd0a46ce5fa745f9ffaafbdb335a2afd3a1391aabbbc546ef863a3c33570", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-wafregional/lib/index.d.ts": { + "version": "c87b289087a1dd612dac1205028476380dfc27ca01a4e3939a3815cf80aef4e2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-wafregional/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-wafv2/lib/wafv2.generated.d.ts": { + "version": "613409b92e55f04db5acb6e80b813cfebfa9a43612a41faa8ba252bf812d5134", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-wafv2/lib/index.d.ts": { + "version": "f00756052a2ca19cb8cddfb91e6f162d75f137462220b1c60d0ce1451548d5b5", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-wafv2/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-wisdom/lib/wisdom.generated.d.ts": { + "version": "b003a59a57dfd43e5dc328fbbef55d77d52cc114568e78864566249a47907b84", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-wisdom/lib/index.d.ts": { + "version": "bc28504d29cec27aa153e003de30cde5cdf58b199c16a58e6b92f3dd9db7f540", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-wisdom/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-workspaces/lib/workspaces.generated.d.ts": { + "version": "9b7b19e43112dcb61494db6af21f60e337f9dc6e6ad06c3ff4a5ba02b8318ad1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-workspaces/lib/index.d.ts": { + "version": "b33577aae3ea9bb1d41aa6feb2c9551cce37ec4e1fca898d225e2fb9e56e9eaf", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-workspaces/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-xray/lib/xray.generated.d.ts": { + "version": "be8226e579eb63699bdfdadb91a7d170ec19386336e8319b0620ab1b48931df8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-xray/lib/index.d.ts": { + "version": "7072b891668ec5f9150f4bb625e2d9900c006906d7d148aa7beabeb667189321", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/aws-xray/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloudformation-include/lib/cfn-include.d.ts": { + "version": "424306ba15e3c117c7e294a0588e12d713dc203255623c354dd6f23b6fdb7a68", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloudformation-include/lib/index.d.ts": { + "version": "d89650e3481eab7de59fd64009525ce6f532d3b74fb7dd509da55d8b0870f3c6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/cloudformation-include/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/custom-resources/lib/aws-custom-resource/aws-custom-resource.d.ts": { + "version": "6758238d978a996071c4c130072e81c4d719b8e41d14edc150d7dfc44c0acf04", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/custom-resources/lib/aws-custom-resource/index.d.ts": { + "version": "8dd0fffe8957fac774e376f97bb2cdf9e21eac66357ea875805416c3e40609fd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/custom-resources/lib/provider-framework/provider.d.ts": { + "version": "0b12d77b00015e7bf80c5dedfac7b59d2d709e98d0d968e1c63c5e9e22321136", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/custom-resources/lib/provider-framework/index.d.ts": { + "version": "b7e68bfe0cfdc4cc50ec5b031bdad55a30e5771c370e40088ec9aaa1e06c7db6", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/custom-resources/lib/index.d.ts": { + "version": "95ad905e117aec3237d4a2b2276ab45691f6a3d331ae6380eecc3642720c6709", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/custom-resources/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/lambda-layer-awscli/lib/awscli-layer.d.ts": { + "version": "6375f894859652f93d1e703498d816986777bb7cfac07c544b9891f3a65b6bac", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/lambda-layer-awscli/lib/index.d.ts": { + "version": "183919d2b5abf89c2eabe54e98b1e18ad8e8c7be50a823dba757bb8f47affa2a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/lambda-layer-awscli/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/lambda-layer-kubectl/lib/kubectl-layer.d.ts": { + "version": "22ddd48f6c01c689d90ad48567fc64b4e6a79122a50b0a60fc57987ad603361a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/lambda-layer-kubectl/lib/index.d.ts": { + "version": "67d1d3ba1a56bd87ebb8bd01346e99e81a9c9d42a885907a22e410d556226ab8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/lambda-layer-kubectl/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/lambda-layer-node-proxy-agent/lib/node-proxy-agent-layer.d.ts": { + "version": "0b5aa342835ceaf1d01efbe07f25821298becf11849a00c2620255978eb57aed", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/lambda-layer-node-proxy-agent/lib/index.d.ts": { + "version": "8c4ad3e48608674d91e73d3b541fa696bd5a2a0048cd6c1cccce17243240f424", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/lambda-layer-node-proxy-agent/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/docker-credentials.d.ts": { + "version": "438a796190e9cd80dbf184e7b9e9a46d44f9465cc08a91e2bf8806ff882556cb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/private/application-security-check.d.ts": { + "version": "c7b877d3d76155d798128d9429d9c4e25a316f7b2884ba0d3afc6ab7aa5bcba9", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/asset-type.d.ts": { + "version": "1aea70ad29daadda329f9c407a03d632f7551eac587846b5c9ed02223883c3b0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/stage.d.ts": { + "version": "3e261cdb2e51d4abeaa5b695fe067939b867d5d33f58d071ff0e0e502dfa2835", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/pipeline.d.ts": { + "version": "b8a9b89272d9b94741420cfde60ddf91ab5dcadd646bcbff2927b049f6c030ba", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/synths/simple-synth-action.d.ts": { + "version": "e4c6e40fe1f8f2bf254ec09acde96e9ab65214c0dcf2f2d776fc4d6df4f61489", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/synths/index.d.ts": { + "version": "ec7da4492a81c686826093fb7b77b97841082bdf425af3a62d15dc382fca6d7d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/deploy-cdk-stack-action.d.ts": { + "version": "02cc15cb69c0309376f22d7b87c8e0e7cf03123edc94c5cf000c8a7827bea91c", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/publish-assets-action.d.ts": { + "version": "76a1e750505714f48bca44006b23af0172a086a030f62a51a170e87ed8da9455", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/update-pipeline-action.d.ts": { + "version": "841c6830455eb73b6aabcf94fd5987dea1537b62502757a59974c1447da73123", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/index.d.ts": { + "version": "118d01c0f5535259f025e3b2c9ac5ed6b0afc58c813d09b71769aa072dfb97bd", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/validation/shell-script-action.d.ts": { + "version": "b24426dfdaf137d19c8ab2a4b093329ff0b103ab62f95aaa4a69eb4ff383a0a4", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/validation/index.d.ts": { + "version": "c3a0a867ea46dd18b4e9c9e03c7bdc704e642f535053971b4a8deb461124352a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/index.d.ts": { + "version": "b3eb1054437ed1c17a1f31328f29e15f942c3b4e942f199859923a09a3558e2e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/step.d.ts": { + "version": "36db2d8c842f451d4829254c7353b90f784766bd2009a95a92dfa06322ead866", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/file-set.d.ts": { + "version": "cf97c43d63cfb15e5243c560cd331c4866e89c39648fca5834b8774cef262de1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/stack-deployment.d.ts": { + "version": "2a5046a9000a0048aadb05b6593b995279694ef650e5be19f9ae9b14d5df4e8d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/shell-step.d.ts": { + "version": "4b141d1262d30aa8cb3369f7acb7361f25e455c724c415ee5912d69b04481c0e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/stage-deployment.d.ts": { + "version": "fa6c27ca8ee23d860d9eb57f3d19d8d8829c3c4144635e177944d581dad2eaf8", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/wave.d.ts": { + "version": "43852589ab3a41dec3480c3ad96ecf3fce7a08df7fb6bf5a6abb74b76bb25b9e", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/manual-approval.d.ts": { + "version": "0d11251e46ab0478db3f4cac8c5d2636d07635690df2fea47a83d9729ed45e33", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/index.d.ts": { + "version": "545fa478ada8d92c11c2dcb65e1a5d29875c68f2616438020936276f9ed011b1", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/artifact-map.d.ts": { + "version": "37b44a506648d7a2f98a9a599b4e564cc37ce3d03e47e9eccd215a03d2fef8ea", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codebuild-step.d.ts": { + "version": "9a85c1e0cf5f7db9e38203adfe8cfdf93fd9d7f9035864a0dba80c3abd209946", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/main/pipeline-base.d.ts": { + "version": "15dba7bec703502fe08484f9fbf680700f89d242d2fb172893d75385a586f7a3", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/main/index.d.ts": { + "version": "d1a275f6447cb1a6e9f0d941caa1b250b6781da0e70ac7d8163b3bb3669092bb", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline.d.ts": { + "version": "8e5a197fa17705a1cba7cda535b88719f86c68b58304497ef3c9c3c371058a47", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline-action-factory.d.ts": { + "version": "7360daa606ae8ee0a67e16762512c445e94c46e5c6cd9b1f598a55fb4435affa", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/confirm-permissions-broadening.d.ts": { + "version": "a78311a525b9be791f78ec33ccab186895214628db7e13f3ee95d11b64cb140b", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline-source.d.ts": { + "version": "170ae19314d0b360b4f28641b4693b4799b1767b57d4df4819faa95afee98aee", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/index.d.ts": { + "version": "06a668a723d7d30fd576e713871b9c04fae0e167d4f0ffeadf259028da1c4a4d", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/lib/index.d.ts": { + "version": "9e41e35a81fb2fc46a97ae778bd544dedd31726f9bf46c1e76c3da8af32812e7", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/pipelines/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/region-info/lib/default.d.ts": { + "version": "fc1eb9d4494d686f39fd1cca588f5419f8e8975e8f526dd743205924089f42a2", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/region-info/lib/fact.d.ts": { + "version": "10d1a7a1853af5a1c36deb3ae6d882e115689bdbee6866cbda299dfc7e1cfb1f", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/region-info/lib/region-info.d.ts": { + "version": "10554c938177476aae1ed57d54c8d938af585c43a52911c830b6e27982162d71", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/region-info/lib/index.d.ts": { + "version": "105e06d9f69e2f01b900c77b8a9ac15f3ab65440a28a6c276beb600c1327248a", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/region-info/index.d.ts": { + "version": "6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0", + "affectsGlobalScope": false + }, + "./node_modules/aws-cdk-lib/index.d.ts": { + "version": "384a9b9a1919b7913699a74b6f41b4c17b0d9a923636f10809496b6f488c4dc2", + "affectsGlobalScope": false + }, + "./lib/bastion-host-forward-base-props.ts": { + "version": "4cccf1b6385465fde649a073c435af6aa53dbc23c3928d9b0679991c3c4174e3", + "affectsGlobalScope": false + }, + "./lib/bastion-host-forward-props.ts": { + "version": "ff3dfef7e3f98e259d4179f18f2070b8725ecabbcb441f24d9459f0780d184d8", + "affectsGlobalScope": false + }, + "./lib/bastion-host-forward.ts": { + "version": "0fc9f16aa63591a8245797227dabd4d4a24a14bfd3e56b35c00002bc71f08094", + "affectsGlobalScope": false + }, + "./lib/aurora-serverless.ts": { + "version": "a97dabc76700498bc92730d5c68bd7b5830f8d3eddf7a7266b5ba8ec8c3e5e12", + "affectsGlobalScope": false + }, + "./lib/generic-bastion-host-forward.ts": { + "version": "9ff4dbd18f5ed6d2bca412d9ee84369362fdc710872b8f1975478ed647b98041", + "affectsGlobalScope": false + }, + "./lib/rds.ts": { + "version": "894da333a39d4bbbf4b85893d49def472865a8b4476c1320365261178b6eb46e", + "affectsGlobalScope": false + }, + "./lib/index.ts": { + "version": "dc02017dd8ed0b868e31522b3510ef639b64d9a3c0eadac637f13bc369686b89", + "affectsGlobalScope": false + }, + "./test/aurora-serverless.test.ts": { + "version": "2f8dcffd52f39c978d7c97590a88845a67c3789ad12376c4dcad652deef2a81e", + "affectsGlobalScope": false + }, + "./test/generic-bastion-host-forward.test.ts": { + "version": "78aba79285f6f65f472301a58e9fa94814564a7e8d1af7e0531a5bad89832a41", + "affectsGlobalScope": false + }, + "./test/rds.test.ts": { + "version": "793fe30031e7a020d7083142fbd0a43c960ba1040bc40f696ae3724edc929a82", + "affectsGlobalScope": false + }, + "./test/redis.test.d.ts": { + "version": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881", + "affectsGlobalScope": false + }, + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.d.ts": { + "version": "e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84", + "affectsGlobalScope": false + }, + "./node_modules/@babel/types/lib/index.d.ts": { + "version": "d5d7b68f5369a210c235cd65458369888f8b839192d088c964f21cab3ac954db", + "affectsGlobalScope": false + }, + "./node_modules/@types/babel__generator/index.d.ts": { + "version": "cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb", + "affectsGlobalScope": false + }, + "./node_modules/@babel/parser/typings/babel-parser.d.ts": { + "version": "64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45", + "affectsGlobalScope": false + }, + "./node_modules/@types/babel__template/index.d.ts": { + "version": "93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9", + "affectsGlobalScope": false + }, + "./node_modules/@types/babel__traverse/ts4.1/index.d.ts": { + "version": "5158403c4f6a1e0e86a5e43e9aaad3571ce270e02fcdd750b5b0ea8dc636dbe4", + "affectsGlobalScope": false + }, + "./node_modules/@types/babel__core/index.d.ts": { + "version": "dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/assert.d.ts": { + "version": "0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/assert/strict.d.ts": { + "version": "a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/globals.d.ts": { + "version": "92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4", + "affectsGlobalScope": true + }, + "./node_modules/@types/node/async_hooks.d.ts": { + "version": "ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/buffer.d.ts": { + "version": "9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303", + "affectsGlobalScope": true + }, + "./node_modules/@types/node/child_process.d.ts": { + "version": "95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/cluster.d.ts": { + "version": "afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/console.d.ts": { + "version": "34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e", + "affectsGlobalScope": true + }, + "./node_modules/@types/node/constants.d.ts": { + "version": "82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/crypto.d.ts": { + "version": "2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/dgram.d.ts": { + "version": "f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/diagnostics_channel.d.ts": { + "version": "2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/dns.d.ts": { + "version": "76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/dns/promises.d.ts": { + "version": "0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/domain.d.ts": { + "version": "6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/events.d.ts": { + "version": "4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c", + "affectsGlobalScope": true + }, + "./node_modules/@types/node/fs.d.ts": { + "version": "80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/fs/promises.d.ts": { + "version": "a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/http.d.ts": { + "version": "b9b963043551b034abd9e7c6d859f7a81d99479fde938d983114d167d0644a78", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/http2.d.ts": { + "version": "b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/https.d.ts": { + "version": "4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/inspector.d.ts": { + "version": "a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/module.d.ts": { + "version": "e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5", + "affectsGlobalScope": true + }, + "./node_modules/@types/node/net.d.ts": { + "version": "902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/os.d.ts": { + "version": "abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/path.d.ts": { + "version": "cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/perf_hooks.d.ts": { + "version": "94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/process.d.ts": { + "version": "bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9", + "affectsGlobalScope": true + }, + "./node_modules/@types/node/punycode.d.ts": { + "version": "9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/querystring.d.ts": { + "version": "ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/readline.d.ts": { + "version": "29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/repl.d.ts": { + "version": "0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/stream.d.ts": { + "version": "d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/stream/promises.d.ts": { + "version": "1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/stream/consumers.d.ts": { + "version": "806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0", + "affectsGlobalScope": true + }, + "./node_modules/@types/node/stream/web.d.ts": { + "version": "a7971f9fb2a32ec7788ec6cda9d7a33c02023dfe9a62db2030ad1359649d8050", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/string_decoder.d.ts": { + "version": "c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/timers.d.ts": { + "version": "b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc", + "affectsGlobalScope": true + }, + "./node_modules/@types/node/timers/promises.d.ts": { + "version": "664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/tls.d.ts": { + "version": "2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/trace_events.d.ts": { + "version": "998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/tty.d.ts": { + "version": "ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/url.d.ts": { + "version": "d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/util.d.ts": { + "version": "badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/v8.d.ts": { + "version": "c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/vm.d.ts": { + "version": "235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/wasi.d.ts": { + "version": "bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/worker_threads.d.ts": { + "version": "9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/zlib.d.ts": { + "version": "c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c", + "affectsGlobalScope": false + }, + "./node_modules/@types/node/globals.global.d.ts": { + "version": "ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e", + "affectsGlobalScope": true + }, + "./node_modules/@types/node/index.d.ts": { + "version": "1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e", + "affectsGlobalScope": false + }, + "./node_modules/@types/fs-extra/index.d.ts": { + "version": "6de408de17cb0e3fa3a5e3d0f79bd104848d98dbfa72e92fddfa1a4aa3d8393c", + "affectsGlobalScope": false + }, + "./node_modules/@types/graceful-fs/index.d.ts": { + "version": "3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba", + "affectsGlobalScope": false + }, + "./node_modules/@types/istanbul-lib-coverage/index.d.ts": { + "version": "8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215", + "affectsGlobalScope": false + }, + "./node_modules/@types/istanbul-lib-report/index.d.ts": { + "version": "7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee", + "affectsGlobalScope": false + }, + "./node_modules/@types/istanbul-reports/index.d.ts": { + "version": "f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0", + "affectsGlobalScope": false + }, + "./node_modules/jest-diff/build/cleanupsemantic.d.ts": { + "version": "d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322", + "affectsGlobalScope": false + }, + "./node_modules/pretty-format/build/types.d.ts": { + "version": "462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094", + "affectsGlobalScope": false + }, + "./node_modules/pretty-format/build/index.d.ts": { + "version": "5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb", + "affectsGlobalScope": false + }, + "./node_modules/jest-diff/build/types.d.ts": { + "version": "7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62", + "affectsGlobalScope": false + }, + "./node_modules/jest-diff/build/difflines.d.ts": { + "version": "dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6", + "affectsGlobalScope": false + }, + "./node_modules/jest-diff/build/printdiffs.d.ts": { + "version": "1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161", + "affectsGlobalScope": false + }, + "./node_modules/jest-diff/build/index.d.ts": { + "version": "8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190", + "affectsGlobalScope": false + }, + "./node_modules/@types/jest/index.d.ts": { + "version": "6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b", + "affectsGlobalScope": true + }, + "./node_modules/@types/json-schema/index.d.ts": { + "version": "0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4", + "affectsGlobalScope": false + }, + "./node_modules/@types/json5/index.d.ts": { + "version": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538", + "affectsGlobalScope": false + }, + "./node_modules/@types/normalize-package-data/index.d.ts": { + "version": "6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a", + "affectsGlobalScope": false + }, + "./node_modules/@types/prettier/index.d.ts": { + "version": "501260c8b07a6e423fb6ebdea704e732ad529208e4fbbc517836fac8f8ae8895", + "affectsGlobalScope": false + }, + "./node_modules/@types/stack-utils/index.d.ts": { + "version": "b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298", + "affectsGlobalScope": false + }, + "./node_modules/@types/yargs-parser/index.d.ts": { + "version": "f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2", + "affectsGlobalScope": false + }, + "./node_modules/@types/yargs/index.d.ts": { + "version": "09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c", + "affectsGlobalScope": false + } + }, + "options": { + "outDir": "./", + "rootDir": "./", + "alwaysStrict": true, + "charset": "utf8", + "declaration": true, + "experimentalDecorators": true, + "incremental": true, + "inlineSourceMap": true, + "inlineSources": true, + "lib": [ + "lib.es2019.d.ts" + ], + "module": 1, + "newLine": 1, + "noEmitOnError": true, + "noFallthroughCasesInSwitch": true, + "noImplicitAny": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "resolveJsonModule": true, + "strict": true, + "strictNullChecks": true, + "strictPropertyInitialization": true, + "stripInternal": false, + "target": 6, + "composite": false, + "tsBuildInfoFile": "./tsconfig.tsbuildinfo" + }, + "referencedMap": { + "./lib/aurora-serverless.ts": [ + "./lib/bastion-host-forward-base-props.ts", + "./lib/bastion-host-forward.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/index.d.ts", + "./node_modules/aws-cdk-lib/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./lib/bastion-host-forward-base-props.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts" + ], + "./lib/bastion-host-forward-props.ts": [ + "./lib/bastion-host-forward-base-props.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./lib/bastion-host-forward.ts": [ + "./lib/bastion-host-forward-props.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./lib/generic-bastion-host-forward.ts": [ + "./lib/bastion-host-forward-props.ts", + "./lib/bastion-host-forward.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./lib/index.ts": [ + "./lib/aurora-serverless.ts", + "./lib/bastion-host-forward-base-props.ts", + "./lib/bastion-host-forward-props.ts", + "./lib/bastion-host-forward.ts", + "./lib/generic-bastion-host-forward.ts", + "./lib/rds.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./lib/rds.ts": [ + "./lib/bastion-host-forward-base-props.ts", + "./lib/bastion-host-forward.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/index.d.ts", + "./node_modules/aws-cdk-lib/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/@babel/parser/typings/babel-parser.d.ts": [ + "./node_modules/@babel/types/lib/index.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@babel/types/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/babel__core/index.d.ts": [ + "./node_modules/@babel/parser/typings/babel-parser.d.ts", + "./node_modules/@babel/types/lib/index.d.ts", + "./node_modules/@types/babel__generator/index.d.ts", + "./node_modules/@types/babel__template/index.d.ts", + "./node_modules/@types/babel__traverse/ts4.1/index.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/babel__generator/index.d.ts": [ + "./node_modules/@babel/types/lib/index.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/babel__template/index.d.ts": [ + "./node_modules/@babel/parser/typings/babel-parser.d.ts", + "./node_modules/@babel/types/lib/index.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/babel__traverse/ts4.1/index.d.ts": [ + "./node_modules/@babel/types/lib/index.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/fs-extra/index.d.ts": [ + "./node_modules/@types/node/fs.d.ts", + "./node_modules/@types/node/index.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/graceful-fs/index.d.ts": [ + "./node_modules/@types/node/fs.d.ts", + "./node_modules/@types/node/index.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/istanbul-lib-coverage/index.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/istanbul-lib-report/index.d.ts": [ + "./node_modules/@types/istanbul-lib-coverage/index.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/istanbul-reports/index.d.ts": [ + "./node_modules/@types/istanbul-lib-report/index.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/jest/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/jest-diff/build/index.d.ts", + "./node_modules/pretty-format/build/index.d.ts" + ], + "./node_modules/@types/json-schema/index.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/json5/index.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/assert.d.ts": [ + "./node_modules/@types/node/assert.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/assert/strict.d.ts": [ + "./node_modules/@types/node/assert.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/async_hooks.d.ts": [ + "./node_modules/@types/node/async_hooks.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/buffer.d.ts": [ + "./node_modules/@types/node/buffer.d.ts", + "./node_modules/@types/node/crypto.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/child_process.d.ts": [ + "./node_modules/@types/node/child_process.d.ts", + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/fs.d.ts", + "./node_modules/@types/node/net.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/url.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/cluster.d.ts": [ + "./node_modules/@types/node/child_process.d.ts", + "./node_modules/@types/node/cluster.d.ts", + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/net.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/console.d.ts": [ + "./node_modules/@types/node/console.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/constants.d.ts": [ + "./node_modules/@types/node/constants.d.ts", + "./node_modules/@types/node/crypto.d.ts", + "./node_modules/@types/node/fs.d.ts", + "./node_modules/@types/node/os.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/crypto.d.ts": [ + "./node_modules/@types/node/crypto.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/tls.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/dgram.d.ts": [ + "./node_modules/@types/node/dgram.d.ts", + "./node_modules/@types/node/dns.d.ts", + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/net.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/diagnostics_channel.d.ts": [ + "./node_modules/@types/node/diagnostics_channel.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/dns.d.ts": [ + "./node_modules/@types/node/dns.d.ts", + "./node_modules/@types/node/dns/promises.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/dns/promises.d.ts": [ + "./node_modules/@types/node/dns.d.ts", + "./node_modules/@types/node/dns/promises.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/domain.d.ts": [ + "./node_modules/@types/node/domain.d.ts", + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/events.d.ts": [ + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/fs.d.ts": [ + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/fs.d.ts", + "./node_modules/@types/node/fs/promises.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/url.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/fs/promises.d.ts": [ + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/fs.d.ts", + "./node_modules/@types/node/fs/promises.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/globals.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/globals.global.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/http.d.ts": [ + "./node_modules/@types/node/http.d.ts", + "./node_modules/@types/node/net.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/url.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/http2.d.ts": [ + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/fs.d.ts", + "./node_modules/@types/node/http.d.ts", + "./node_modules/@types/node/http2.d.ts", + "./node_modules/@types/node/net.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/tls.d.ts", + "./node_modules/@types/node/url.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/https.d.ts": [ + "./node_modules/@types/node/http.d.ts", + "./node_modules/@types/node/https.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/tls.d.ts", + "./node_modules/@types/node/url.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/index.d.ts": [ + "./node_modules/@types/node/assert.d.ts", + "./node_modules/@types/node/assert/strict.d.ts", + "./node_modules/@types/node/async_hooks.d.ts", + "./node_modules/@types/node/buffer.d.ts", + "./node_modules/@types/node/child_process.d.ts", + "./node_modules/@types/node/cluster.d.ts", + "./node_modules/@types/node/console.d.ts", + "./node_modules/@types/node/constants.d.ts", + "./node_modules/@types/node/crypto.d.ts", + "./node_modules/@types/node/dgram.d.ts", + "./node_modules/@types/node/diagnostics_channel.d.ts", + "./node_modules/@types/node/dns.d.ts", + "./node_modules/@types/node/dns/promises.d.ts", + "./node_modules/@types/node/domain.d.ts", + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/fs.d.ts", + "./node_modules/@types/node/fs/promises.d.ts", + "./node_modules/@types/node/globals.d.ts", + "./node_modules/@types/node/globals.global.d.ts", + "./node_modules/@types/node/http.d.ts", + "./node_modules/@types/node/http2.d.ts", + "./node_modules/@types/node/https.d.ts", + "./node_modules/@types/node/inspector.d.ts", + "./node_modules/@types/node/module.d.ts", + "./node_modules/@types/node/net.d.ts", + "./node_modules/@types/node/os.d.ts", + "./node_modules/@types/node/path.d.ts", + "./node_modules/@types/node/perf_hooks.d.ts", + "./node_modules/@types/node/process.d.ts", + "./node_modules/@types/node/punycode.d.ts", + "./node_modules/@types/node/querystring.d.ts", + "./node_modules/@types/node/readline.d.ts", + "./node_modules/@types/node/repl.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/stream/consumers.d.ts", + "./node_modules/@types/node/stream/promises.d.ts", + "./node_modules/@types/node/stream/web.d.ts", + "./node_modules/@types/node/string_decoder.d.ts", + "./node_modules/@types/node/timers.d.ts", + "./node_modules/@types/node/timers/promises.d.ts", + "./node_modules/@types/node/tls.d.ts", + "./node_modules/@types/node/trace_events.d.ts", + "./node_modules/@types/node/tty.d.ts", + "./node_modules/@types/node/url.d.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/@types/node/v8.d.ts", + "./node_modules/@types/node/vm.d.ts", + "./node_modules/@types/node/wasi.d.ts", + "./node_modules/@types/node/worker_threads.d.ts", + "./node_modules/@types/node/zlib.d.ts" + ], + "./node_modules/@types/node/inspector.d.ts": [ + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/inspector.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/module.d.ts": [ + "./node_modules/@types/node/module.d.ts", + "./node_modules/@types/node/url.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/net.d.ts": [ + "./node_modules/@types/node/dns.d.ts", + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/net.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/os.d.ts": [ + "./node_modules/@types/node/os.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/path.d.ts": [ + "./node_modules/@types/node/path.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/perf_hooks.d.ts": [ + "./node_modules/@types/node/async_hooks.d.ts", + "./node_modules/@types/node/perf_hooks.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/process.d.ts": [ + "./node_modules/@types/node/process.d.ts", + "./node_modules/@types/node/tty.d.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/@types/node/worker_threads.d.ts" + ], + "./node_modules/@types/node/punycode.d.ts": [ + "./node_modules/@types/node/punycode.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/querystring.d.ts": [ + "./node_modules/@types/node/querystring.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/readline.d.ts": [ + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/readline.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/repl.d.ts": [ + "./node_modules/@types/node/readline.d.ts", + "./node_modules/@types/node/repl.d.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/@types/node/vm.d.ts" + ], + "./node_modules/@types/node/stream.d.ts": [ + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/stream/consumers.d.ts", + "./node_modules/@types/node/stream/promises.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/stream/consumers.d.ts": [ + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/stream/consumers.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/stream/promises.d.ts": [ + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/stream/promises.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/stream/web.d.ts": [ + "./node_modules/@types/node/stream/web.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/string_decoder.d.ts": [ + "./node_modules/@types/node/string_decoder.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/timers.d.ts": [ + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/timers.d.ts", + "./node_modules/@types/node/timers/promises.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/timers/promises.d.ts": [ + "./node_modules/@types/node/timers.d.ts", + "./node_modules/@types/node/timers/promises.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/tls.d.ts": [ + "./node_modules/@types/node/crypto.d.ts", + "./node_modules/@types/node/net.d.ts", + "./node_modules/@types/node/tls.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/trace_events.d.ts": [ + "./node_modules/@types/node/trace_events.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/tty.d.ts": [ + "./node_modules/@types/node/net.d.ts", + "./node_modules/@types/node/tty.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/url.d.ts": [ + "./node_modules/@types/node/buffer.d.ts", + "./node_modules/@types/node/http.d.ts", + "./node_modules/@types/node/querystring.d.ts", + "./node_modules/@types/node/url.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/util.d.ts": [ + "./node_modules/@types/node/crypto.d.ts", + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/node/v8.d.ts": [ + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/@types/node/v8.d.ts" + ], + "./node_modules/@types/node/vm.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/@types/node/vm.d.ts" + ], + "./node_modules/@types/node/wasi.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/@types/node/wasi.d.ts" + ], + "./node_modules/@types/node/worker_threads.d.ts": [ + "./node_modules/@types/node/buffer.d.ts", + "./node_modules/@types/node/crypto.d.ts", + "./node_modules/@types/node/events.d.ts", + "./node_modules/@types/node/fs/promises.d.ts", + "./node_modules/@types/node/perf_hooks.d.ts", + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/url.d.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/@types/node/vm.d.ts", + "./node_modules/@types/node/worker_threads.d.ts" + ], + "./node_modules/@types/node/zlib.d.ts": [ + "./node_modules/@types/node/stream.d.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/@types/node/zlib.d.ts" + ], + "./node_modules/@types/normalize-package-data/index.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/prettier/index.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/stack-utils/index.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/yargs-parser/index.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/@types/yargs/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/@types/yargs-parser/index.d.ts" + ], + "./node_modules/aws-cdk-lib/alexa-ask/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/alexa-ask/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/alexa-ask/lib/ask.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/alexa-ask/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/alexa-ask/lib/ask.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/assertions/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assertions/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/assertions/lib/capture.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assertions/lib/matcher.d.ts" + ], + "./node_modules/aws-cdk-lib/assertions/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assertions/lib/capture.d.ts", + "./node_modules/aws-cdk-lib/assertions/lib/match.d.ts", + "./node_modules/aws-cdk-lib/assertions/lib/matcher.d.ts", + "./node_modules/aws-cdk-lib/assertions/lib/template.d.ts" + ], + "./node_modules/aws-cdk-lib/assertions/lib/match.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assertions/lib/matcher.d.ts" + ], + "./node_modules/aws-cdk-lib/assertions/lib/matcher.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assertions/lib/capture.d.ts" + ], + "./node_modules/aws-cdk-lib/assertions/lib/template.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/assets/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assets/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/assets/lib/api.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/assets/lib/fs/follow-mode.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/assets/lib/fs/options.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/assets/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assets/lib/fs/options.d.ts", + "./node_modules/aws-cdk-lib/assets/lib/staging.d.ts" + ], + "./node_modules/aws-cdk-lib/assets/lib/staging.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assets/lib/fs/options.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-accessanalyzer/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-accessanalyzer/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-accessanalyzer/lib/accessanalyzer.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-accessanalyzer/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-accessanalyzer/lib/accessanalyzer.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-acmpca/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-acmpca/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-acmpca/lib/acmpca.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-acmpca/lib/certificate-authority.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-acmpca/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-acmpca/lib/acmpca.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-acmpca/lib/certificate-authority.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-amazonmq/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-amazonmq/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-amazonmq/lib/amazonmq.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-amazonmq/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-amazonmq/lib/amazonmq.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-amplify/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-amplify/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-amplify/lib/amplify.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-amplify/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-amplify/lib/amplify.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-amplifyuibuilder/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-amplifyuibuilder/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-amplifyuibuilder/lib/amplifyuibuilder.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-amplifyuibuilder/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-amplifyuibuilder/lib/amplifyuibuilder.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/access-log.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stage.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/api-definition.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/api-key.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/resource.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/usage-plan.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/apigateway.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/apigatewayv2.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/cognito.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizer.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/identity-source.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/cognito.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/identity-source.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/lambda.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/lambda.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizer.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/base-path-mapping.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/domain-name.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stage.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/cors.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/deployment.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/domain-name.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/base-path-mapping.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/gateway-response.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/access-log.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/api-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/api-key.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/apigateway.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/apigatewayv2.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizer.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizers/index.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/base-path-mapping.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/cors.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/deployment.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/domain-name.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/gateway-response.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/index.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/json-schema.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/lambda-api.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/methodresponse.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/model.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/requestvalidator.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/resource.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stage.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stepfunctions-api.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/usage-plan.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/vpc-link.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/vpc-link.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/aws.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/http.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/aws.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/http.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/lambda.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/mock.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/request-context.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/stepfunctions.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/lambda.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/aws.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/mock.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/request-context.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/stepfunctions.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/aws.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/json-schema.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/lambda-api.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/authorizer.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/methodresponse.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/model.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/requestvalidator.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/resource.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/methodresponse.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/model.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/model.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/json-schema.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/requestvalidator.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/resource.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/cors.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integration.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/api-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/api-key.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/apigateway.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/deployment.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/domain-name.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/gateway-response.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/model.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/requestvalidator.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/resource.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stage.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/usage-plan.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stage.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/access-log.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/deployment.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stepfunctions-api.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/index.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/integrations/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/usage-plan.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/api-key.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/method.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/restapi.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/lib/stage.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigateway/lib/vpc-link.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigatewayv2/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigatewayv2/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigatewayv2/lib/apigatewayv2.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apigatewayv2/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigatewayv2/lib/apigatewayv2.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appconfig/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appconfig/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appconfig/lib/appconfig.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appconfig/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appconfig/lib/appconfig.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appflow/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appflow/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appflow/lib/appflow.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appflow/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appflow/lib/appflow.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appintegrations/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appintegrations/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appintegrations/lib/appintegrations.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appintegrations/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appintegrations/lib/appintegrations.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/applicationautoscaling.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/base-scalable-attribute.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/scalable-target.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/target-tracking-scaling-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/applicationautoscaling.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/base-scalable-attribute.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/scalable-target.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/schedule.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-action.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/target-tracking-scaling-policy.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/scalable-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/schedule.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/target-tracking-scaling-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/schedule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/scalable-target.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/scalable-target.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-action.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/target-tracking-scaling-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/lib/scalable-target.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationinsights/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationinsights/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationinsights/lib/applicationinsights.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-applicationinsights/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationinsights/lib/applicationinsights.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/gateway-route-spec.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/header-match.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-method.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-path-match.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/query-parameter-match.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-service.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/gateway-route.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/gateway-route-spec.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-gateway.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/header-match.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/health-checks.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-method.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-path-match.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/gateway-route-spec.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/gateway-route.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/header-match.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/health-checks.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-method.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-path-match.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/listener-tls-options.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/mesh.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/query-parameter-match.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/route-spec.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/route.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/service-discovery.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/shared-interfaces.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-client-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-validation.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-gateway-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-gateway.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-service.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/listener-tls-options.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-validation.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/mesh.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-gateway.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/query-parameter-match.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/route-spec.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/header-match.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-method.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/http-route-path-match.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/query-parameter-match.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/shared-interfaces.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/route.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/mesh.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/route-spec.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/service-discovery.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/shared-interfaces.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-client-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-service.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-certificate.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-client-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-validation.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/tls-validation.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-acmpca/index.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-gateway-listener.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/health-checks.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/listener-tls-options.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/shared-interfaces.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-gateway.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/gateway-route.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/mesh.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/shared-interfaces.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-gateway-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node-listener.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/health-checks.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/listener-tls-options.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/shared-interfaces.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/mesh.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/service-discovery.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/shared-interfaces.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router-listener.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/mesh.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/route.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router-listener.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/appmesh.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/mesh.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-node.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/lib/virtual-router.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apprunner/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apprunner/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apprunner/lib/apprunner.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-apprunner/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apprunner/lib/apprunner.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appstream/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appstream/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appstream/lib/appstream.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appstream/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appstream/lib/appstream.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appsync/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appsync/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appsync/lib/appsync.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-appsync/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-appsync/lib/appsync.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-aps/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-aps/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-aps/lib/aps.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-aps/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-aps/lib/aps.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-athena/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-athena/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-athena/lib/athena.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-athena/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-athena/lib/athena.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-auditmanager/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-auditmanager/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-auditmanager/lib/auditmanager.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-auditmanager/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-auditmanager/lib/auditmanager.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-common/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/interval-utils.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/test-utils.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/types.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/interval-utils.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/types.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/test-utils.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-common/lib/types.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/common.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/common.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/lambda-hook.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/queue-hook.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/topic-hook.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/lambda-hook.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/queue-hook.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/lib/topic-hook.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/aspects/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/aspects/require-imdsv2-aspect.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/aspects/require-imdsv2-aspect.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/auto-scaling-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/lifecycle-hook.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/scheduled-action.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/step-scaling-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/target-tracking-scaling-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/termination-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/volume.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/autoscaling.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/aspects/index.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/auto-scaling-group.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/autoscaling.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/lifecycle-hook-target.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/lifecycle-hook.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/schedule.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/scheduled-action.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/step-scaling-action.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/step-scaling-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/target-tracking-scaling-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/termination-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/volume.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/lifecycle-hook-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/lifecycle-hook.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/lifecycle-hook.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/auto-scaling-group.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/lifecycle-hook-target.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/schedule.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/scheduled-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/auto-scaling-group.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/schedule.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/step-scaling-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/auto-scaling-group.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/step-scaling-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/auto-scaling-group.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/step-scaling-action.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/target-tracking-scaling-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/auto-scaling-group.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/termination-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscaling/lib/volume.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscalingplans/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscalingplans/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscalingplans/lib/autoscalingplans.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-autoscalingplans/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscalingplans/lib/autoscalingplans.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-backup/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-backup/lib/backup.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-backup/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/backup.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/plan.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/resource.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/rule.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/selection.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/vault.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-backup/lib/plan.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/rule.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/selection.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/vault.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-backup/lib/resource.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-efs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-backup/lib/rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/vault.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-backup/lib/selection.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/plan.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/lib/resource.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-backup/lib/vault.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-batch/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-batch/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-batch/lib/batch.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-batch/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-batch/lib/batch.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-budgets/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-budgets/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-budgets/lib/budgets.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-budgets/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-budgets/lib/budgets.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cassandra/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cassandra/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cassandra/lib/cassandra.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cassandra/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cassandra/lib/cassandra.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ce/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ce/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ce/lib/ce.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ce/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ce/lib/ce.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate-base.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificatemanager.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/dns-validated-certificate.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate-base.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificatemanager.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/dns-validated-certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/private-certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/private-certificate.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-acmpca/index.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate-base.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/util.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/lib/dns-validated-certificate.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-chatbot/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-chatbot/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-chatbot/lib/chatbot.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-chatbot/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-chatbot/lib/chatbot.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-chatbot/lib/slack-channel-configuration.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-chatbot/lib/slack-channel-configuration.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloud9/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloud9/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloud9/lib/cloud9.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloud9/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloud9/lib/cloud9.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudformation/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/cloud-formation-capabilities.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/cloudformation.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/custom-resource.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/cloudformation.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/custom-resource.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/nested-stack.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudformation/lib/nested-stack.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/http-origin.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/http-origin.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/load-balancer-origin.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/origin-group.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/s3-origin.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/load-balancer-origin.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/http-origin.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/origin-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/s3-origin.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/cache-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/cloudfront.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/distribution.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/cache-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/function.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/geo-restriction.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/key-group.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin-request-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/response-headers-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/experimental/edge-function.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/experimental/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/experimental/edge-function.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/function.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/geo-restriction.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/cache-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/cloudfront.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/distribution.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/experimental/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/function.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/geo-restriction.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/key-group.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin-access-identity.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin-request-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/public-key.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/response-headers-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/web-distribution.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/key-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/public-key.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin-access-identity.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin-request-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/cloudfront.generated.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/public-key.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/response-headers-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/web-distribution.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/cloudfront.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/distribution.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/function.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/geo-restriction.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/key-group.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/lib/origin-access-identity.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudtrail/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudtrail/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudtrail/lib/cloudtrail.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudtrail/lib/cloudtrail.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudtrail/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudtrail/lib/cloudtrail.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudtrail/lib/cloudtrail.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/appscaling.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/autoscaling.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/ec2.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/appscaling.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/autoscaling.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/ec2.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/sns.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/lib/sns.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-action.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-base.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-status-widget.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-base.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/widget.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-action.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-base.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/graph.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric-types.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/cloudwatch.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/composite-alarm.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/dashboard.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/widget.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/graph.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-base.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric-types.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/widget.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-action.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-base.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-rule.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-status-widget.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/cloudwatch.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/composite-alarm.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/dashboard.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/graph.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/layout.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/log-query.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric-types.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/text.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/widget.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/layout.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/widget.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/log-query.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/widget.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric-types.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/metric-types.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/text.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/widget.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cloudwatch/lib/widget.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codeartifact/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codeartifact/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codeartifact/lib/codeartifact.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codeartifact/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codeartifact/lib/codeartifact.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/artifacts.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/codebuild.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/build-spec.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/cache.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/codebuild.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/codebuild.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/events.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/file-location.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/codebuild.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/artifacts.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/build-spec.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/cache.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/codebuild.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/events.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/file-location.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/linux-gpu-build-image.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/pipeline-project.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project-logs.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/report-group.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/source-credentials.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/source.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/untrusted-code-boundary-policy.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/linux-gpu-build-image.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/build-spec.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/pipeline-project.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project-logs.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/artifacts.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/build-spec.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/cache.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/codebuild.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/file-location.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project-logs.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/source.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/report-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/source-credentials.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/source.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/codebuild.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/lib/project.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codebuild/lib/untrusted-code-boundary-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codecommit/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codecommit/lib/code.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/lib/codecommit.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codecommit/lib/codecommit.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codecommit/lib/events.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codecommit/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/lib/code.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/lib/codecommit.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/lib/events.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/lib/repository.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codecommit/lib/repository.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/lib/code.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/codedeploy.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/application.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/deployment-config.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/deployment-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/application.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/deployment-config.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/application.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/deployment-config.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/deployment-group.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/codedeploy.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/rollback-config.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/application.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/custom-deployment-config.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/deployment-config.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/deployment-config.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/deployment-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/application.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/deployment-config.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/rollback-config.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/application.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/custom-deployment-config.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/deployment-config.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/lambda/deployment-group.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/rollback-config.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/application.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/deployment-config.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/codedeploy.generated.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/deployment-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/rollback-config.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/application.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/deployment-config.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/load-balancer.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/application.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/deployment-config.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/deployment-group.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/load-balancer.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codedeploy/lib/server/load-balancer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/lib/codeguruprofiler.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/lib/codeguruprofiler.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/lib/profiling-group.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/lib/profiling-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codegurureviewer/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codegurureviewer/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codegurureviewer/lib/codegurureviewer.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codegurureviewer/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codegurureviewer/lib/codegurureviewer.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/alexa-ask/deploy-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/bitbucket/source-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codestar-connections/source-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/cloudformation/pipeline-actions.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudformation/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codebuild/build-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codecommit/source-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codedeploy/ecs-deploy-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codedeploy/server-deploy-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codestar-connections/source-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/ecr/source-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/ecs/deploy-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/github/source-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/alexa-ask/deploy-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/bitbucket/source-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/cloudformation/pipeline-actions.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codebuild/build-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codecommit/source-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codedeploy/ecs-deploy-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codedeploy/server-deploy-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/codestar-connections/source-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/ecr/source-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/ecs/deploy-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/github/source-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/jenkins/jenkins-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/jenkins/jenkins-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/lambda/invoke-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/manual-approval-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/s3/deploy-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/s3/source-action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/servicecatalog/deploy-action-beta1.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/stepfunctions/invoke-action.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/jenkins/jenkins-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/jenkins/jenkins-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/jenkins/jenkins-provider.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/lambda/invoke-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/manual-approval-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/s3/deploy-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/s3/source-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/servicecatalog/deploy-action-beta1.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/stepfunctions/invoke-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/artifact.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/artifact.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/codepipeline.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/custom-action-registration.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/action.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/artifact.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/codepipeline.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/custom-action-registration.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/pipeline.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/pipeline.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/private/full-action-descriptor.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/private/stage.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/private/full-action-descriptor.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/artifact.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/private/stage.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/action.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/codepipeline.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/pipeline.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/lib/private/full-action-descriptor.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestar/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codestar/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestar/lib/codestar.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestar/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codestar/lib/codestar.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestarconnections/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarconnections/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestarconnections/lib/codestarconnections.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestarconnections/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarconnections/lib/codestarconnections.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestarnotifications/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/codestarnotifications.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/codestarnotifications.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule-source.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule-target.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule-source.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule-source.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/lib/notification-rule-target.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/cognito.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/cognito.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-attr.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-client.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-domain.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-email.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idp.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-resource-server.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-attr.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-client.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-attr.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-resource-server.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-domain.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-client.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-email.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idp.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/amazon.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/base.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/private/user-pool-idp-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/apple.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/base.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/private/user-pool-idp-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/facebook.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/base.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/private/user-pool-idp-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/google.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/base.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/private/user-pool-idp-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/amazon.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/apple.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/base.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/facebook.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/google.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/private/user-pool-idp-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idp.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idps/base.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-resource-server.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-attr.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-client.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-domain.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-email.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-idp.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/lib/user-pool-resource-server.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-config/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-config/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-config/lib/config.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-config/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-config/lib/config.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-config/lib/managed-rules.d.ts", + "./node_modules/aws-cdk-lib/aws-config/lib/rule.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-config/lib/managed-rules.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-config/lib/rule.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-config/lib/rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-connect/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-connect/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-connect/lib/connect.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-connect/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-connect/lib/connect.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cur/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cur/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cur/lib/cur.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-cur/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cur/lib/cur.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-customerprofiles/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-customerprofiles/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-customerprofiles/lib/customerprofiles.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-customerprofiles/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-customerprofiles/lib/customerprofiles.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-databrew/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-databrew/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-databrew/lib/databrew.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-databrew/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-databrew/lib/databrew.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-datapipeline/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-datapipeline/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-datapipeline/lib/datapipeline.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-datapipeline/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-datapipeline/lib/datapipeline.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-datasync/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-datasync/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-datasync/lib/datasync.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-datasync/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-datasync/lib/datasync.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dax/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dax/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dax/lib/dax.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dax/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dax/lib/dax.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-detective/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-detective/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-detective/lib/detective.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-detective/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-detective/lib/detective.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-devopsguru/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-devopsguru/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-devopsguru/lib/devopsguru.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-devopsguru/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-devopsguru/lib/devopsguru.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-directoryservice/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-directoryservice/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-directoryservice/lib/directoryservice.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-directoryservice/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-directoryservice/lib/directoryservice.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dlm/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dlm/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dlm/lib/dlm.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dlm/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dlm/lib/dlm.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dms/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dms/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dms/lib/dms.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dms/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dms/lib/dms.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/lib/cluster-ref.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/lib/cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/cluster-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/parameter-group.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/props.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/lib/database-secret.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/lib/docdb.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/lib/endpoint.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/cluster-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/database-secret.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/docdb.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/parameter-group.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/props.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/lib/instance.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/cluster-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/lib/parameter-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-docdb/lib/props.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dynamodb/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/dynamodb.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/dynamodb.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/scalable-attribute-api.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/table.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/scalable-attribute-api.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/table.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/lib/scalable-attribute-api.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesis/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/aspects/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/aspects/require-imdsv2-aspect.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/aspects/require-imdsv2-aspect.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/bastion-host.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/cfn-init.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/machine-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/peer.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/volume.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/cfn-init-elements.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/private/cfn-init-internal.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/cfn-init.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/cfn-init-elements.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/machine-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/private/cfn-init-internal.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/user-data.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-authorization-rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint-types.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint-types.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-authorization-rule.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint-types.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-route.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-route.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint-types.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/peer.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/port.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/ec2-augmentations.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpn.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/ec2.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/aspects/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/bastion-host.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/cfn-init-elements.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/cfn-init.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-authorization-rule.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint-types.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-route.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/ec2-augmentations.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/ec2.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance-types.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/launch-template.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/machine-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/nat.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/network-acl-types.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/network-acl.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/peer.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/port.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/subnet.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/user-data.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/volume.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-endpoint-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-flow-logs.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-lookup.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpn.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/windows-versions.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance-types.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/cfn-init.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/ec2.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance-types.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/machine-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/user-data.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/volume.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/launch-template.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance-types.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/machine-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/user-data.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/volume.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/machine-image.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/user-data.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/windows-versions.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/nat.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance-types.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/machine-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/network-acl-types.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/network-acl.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/network-acl-types.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/peer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/port.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/private/cfn-init-internal.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/peer.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/port.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/subnet.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/user-data.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/machine-image.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/volume.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-endpoint-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/connections.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/security-group.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-flow-logs.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-lookup.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/client-vpn-endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/ec2.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/nat.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/network-acl.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/subnet.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-flow-logs.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc-lookup.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpn.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpn.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/lib/vpc.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ec2/lib/windows-versions.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr-assets/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr-assets/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr-assets/lib/image-asset.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr-assets/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr-assets/lib/image-asset.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr-assets/lib/tarball-asset.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr-assets/lib/tarball-asset.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr/lib/auth-token.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr/lib/ecr.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/lib/auth-token.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/lib/ecr.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/lib/lifecycle.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/lib/repository.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr/lib/lifecycle.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecr/lib/repository.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/lib/lifecycle.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-load-balanced-service-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-multiple-target-groups-service-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-load-balanced-service-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-multiple-target-groups-service-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/queue-processing-service-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/scheduled-task-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/application-load-balanced-ecs-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-load-balanced-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/application-multiple-target-groups-ecs-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-multiple-target-groups-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/network-load-balanced-ecs-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-load-balanced-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/network-multiple-target-groups-ecs-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-multiple-target-groups-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/queue-processing-ecs-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/queue-processing-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/scheduled-ecs-task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/scheduled-task-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/application-load-balanced-fargate-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-load-balanced-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/application-multiple-target-groups-fargate-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-multiple-target-groups-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/network-load-balanced-fargate-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-load-balanced-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/network-multiple-target-groups-fargate-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-multiple-target-groups-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/queue-processing-fargate-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/queue-processing-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/scheduled-fargate-task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/scheduled-task-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-load-balanced-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/application-multiple-target-groups-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-load-balanced-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/network-multiple-target-groups-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/queue-processing-service-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/base/scheduled-task-base.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/application-load-balanced-ecs-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/application-multiple-target-groups-ecs-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/network-load-balanced-ecs-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/network-multiple-target-groups-ecs-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/queue-processing-ecs-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/ecs/scheduled-ecs-task.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/application-load-balanced-fargate-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/application-multiple-target-groups-fargate-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/network-load-balanced-fargate-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/network-multiple-target-groups-fargate-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/queue-processing-fargate-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/lib/fargate/scheduled-fargate-task.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/amis.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/base-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/scalable-task-count.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/scalable-task-count.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/firelens-log-router.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/placement.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/proxy-configuration.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/runtime-platform.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/environment-file.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/linux-parameters.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ssm/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-image.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/asset-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/ecr.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/repository.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/ec2/ec2-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/base-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/placement.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/ec2/ec2-task-definition.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/placement.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/environment-file.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/external/external-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/base-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/scalable-task-count.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/external/external-task-definition.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/fargate/fargate-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/base-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/cluster.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/fargate/fargate-task-definition.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/runtime-platform.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/firelens-log-router.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/asset-image.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-image.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/ecr.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-image.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/repository.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-image.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/tag-parameter-container-image.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-image.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/amis.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/base-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/scalable-task-count.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ec2/ec2-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ec2/ec2-task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/environment-file.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/external/external-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/external/external-task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/fargate/fargate-service.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/fargate/fargate-task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/firelens-log-router.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/asset-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/ecr.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/repository.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/images/tag-parameter-container-image.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/linux-parameters.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/aws-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/firelens-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/fluentd-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/gelf-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/generic-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/journald-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/json-file-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-drivers.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/splunk-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/syslog-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/placement.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/app-mesh-proxy-configuration.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/proxy-configuration.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/proxy-configurations.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/runtime-platform.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/linux-parameters.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/aws-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/firelens-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/fluentd-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/gelf-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/generic-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/journald-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/json-file-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/aws-log-driver.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-drivers.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/aws-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/firelens-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/fluentd-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/gelf-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/journald-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/json-file-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/splunk-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/syslog-log-driver.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/splunk-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/syslog-log-driver.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/container-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/base-log-driver.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/log-drivers/log-driver.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/placement.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/app-mesh-proxy-configuration.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/proxy-configuration.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/proxy-configuration.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/base/task-definition.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/ecs.generated.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/proxy-configurations.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/app-mesh-proxy-configuration.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/lib/proxy-configuration/proxy-configuration.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ecs/lib/runtime-platform.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-efs/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-efs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-efs/lib/access-point.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-efs/lib/efs-file-system.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-efs/lib/efs-file-system.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-efs/lib/access-point.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-efs/lib/efs.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-efs/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-efs/lib/access-point.d.ts", + "./node_modules/aws-cdk-lib/aws-efs/lib/efs-file-system.d.ts", + "./node_modules/aws-cdk-lib/aws-efs/lib/efs.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/alb-controller.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/aws-auth-mapping.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/aws-auth.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/aws-auth-mapping.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/alb-controller.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/aws-auth.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/fargate-profile.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/helm-chart.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-manifest.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/kubectl-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/managed-nodegroup.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/service-account.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/eks.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/fargate-cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/fargate-profile.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/fargate-profile.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/helm-chart.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/alb-controller.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/aws-auth-mapping.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/aws-auth.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/eks.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/fargate-cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/fargate-profile.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/helm-chart.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-manifest.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-object-value.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-patch.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/kubectl-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/managed-nodegroup.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/oidc-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/service-account.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-manifest.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/alb-controller.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-object-value.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/k8s-patch.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/kubectl-provider.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/managed-nodegroup.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/oidc-provider.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eks/lib/service-account.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticache/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticache/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticache/lib/elasticache.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticache/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticache/lib/elasticache.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticbeanstalk/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticbeanstalk/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticbeanstalk/lib/elasticbeanstalk.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticbeanstalk/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticbeanstalk/lib/elasticbeanstalk.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/elasticloadbalancing.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/elasticloadbalancing.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/load-balancer.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/load-balancer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/lib/elasticloadbalancing.generated.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-actions/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-actions/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-actions/lib/cognito-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-actions/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-actions/lib/cognito-action.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/alb-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/alb-target.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/instance-target.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/ip-target.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/lambda-target.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/instance-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/ip-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/lib/lambda-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/elasticloadbalancingv2.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-action.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-certificate.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-certificate.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-action.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/conditions.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-action.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-rule.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-load-balancer.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/conditions.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-certificate.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-load-balancer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-load-balancer.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-target-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-load-balancer.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/conditions.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/elasticloadbalancingv2.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-action.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener-rule.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-load-balancer.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/conditions.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/elasticloadbalancingv2.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener-action.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-load-balancer.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-load-balancer.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-action.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-certificate.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/load-balancer-targets.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/elasticloadbalancingv2.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-action.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener-action.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-load-balancer.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-certificate.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-load-balancer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-load-balancer.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-target-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-listener.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-listener.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-action.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-load-balancer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/enums.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/elasticloadbalancingv2.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/listener-certificate.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/load-balancer-targets.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/alb/application-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/nlb/network-target-group.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/lib/shared/base-target-group.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticsearch/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticsearch/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticsearch/lib/domain.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticsearch/lib/elasticsearch.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-elasticsearch/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticsearch/lib/domain.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticsearch/lib/elasticsearch.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-emr/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-emr/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-emr/lib/emr.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-emr/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-emr/lib/emr.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-emrcontainers/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-emrcontainers/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-emrcontainers/lib/emrcontainers.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-emrcontainers/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-emrcontainers/lib/emrcontainers.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/api-gateway.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/aws-api.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/batch.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/codebuild.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/codepipeline.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/ecs-task-properties.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/ecs-task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/ecs-task-properties.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/event-bus.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/api-gateway.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/aws-api.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/batch.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/codebuild.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/codepipeline.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/ecs-task-properties.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/ecs-task.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/event-bus.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/kinesis-firehose-stream.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/kinesis-stream.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/lambda.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/log-group.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/sns.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/sqs.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/state-machine.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/kinesis-firehose-stream.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/kinesis-stream.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesis/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/lambda.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/log-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/sns.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/sqs.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/state-machine.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events-targets/lib/util.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/archive.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/event-bus.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/event-pattern.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/event-bus.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/archive.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/event-pattern.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/events.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/archive.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/event-bus.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/event-pattern.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/events.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/input.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/on-event-options.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/rule-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/rule.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/schedule.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/target.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/input.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/rule-ref.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/on-event-options.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/event-pattern.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/target.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/rule-ref.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/event-bus.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/event-pattern.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/rule-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/schedule.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/target.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/schedule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-events/lib/target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/events.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/input.d.ts", + "./node_modules/aws-cdk-lib/aws-events/lib/rule-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eventschemas/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eventschemas/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eventschemas/lib/eventschemas.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-eventschemas/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eventschemas/lib/eventschemas.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-evidently/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-evidently/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-evidently/lib/evidently.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-evidently/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-evidently/lib/evidently.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-finspace/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-finspace/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-finspace/lib/finspace.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-finspace/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-finspace/lib/finspace.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fis/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-fis/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fis/lib/fis.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fis/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-fis/lib/fis.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fms/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-fms/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fms/lib/fms.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fms/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-fms/lib/fms.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-frauddetector/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-frauddetector/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-frauddetector/lib/frauddetector.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-frauddetector/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-frauddetector/lib/frauddetector.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fsx/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-fsx/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fsx/lib/file-system.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fsx/lib/fsx.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fsx/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-fsx/lib/file-system.d.ts", + "./node_modules/aws-cdk-lib/aws-fsx/lib/fsx.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-fsx/lib/lustre-file-system.d.ts", + "./node_modules/aws-cdk-lib/aws-fsx/lib/maintenance-time.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fsx/lib/lustre-file-system.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-fsx/lib/file-system.d.ts", + "./node_modules/aws-cdk-lib/aws-fsx/lib/maintenance-time.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-fsx/lib/maintenance-time.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-gamelift/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-gamelift/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-gamelift/lib/gamelift.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-gamelift/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-gamelift/lib/gamelift.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/alb.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/eip.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/alb.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/eip.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/nlb.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/instance.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/lib/nlb.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/accelerator.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/listener.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/endpoint-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/listener.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/endpoint.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/globalaccelerator.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/accelerator.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/endpoint-group.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/globalaccelerator.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/listener.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/listener.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/accelerator.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/lib/endpoint-group.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-glue/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-glue/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-glue/lib/glue.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-glue/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-glue/lib/glue.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-greengrass/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-greengrass/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-greengrass/lib/greengrass.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-greengrass/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-greengrass/lib/greengrass.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-greengrassv2/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-greengrassv2/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-greengrassv2/lib/greengrassv2.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-greengrassv2/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-greengrassv2/lib/greengrassv2.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-groundstation/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-groundstation/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-groundstation/lib/groundstation.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-groundstation/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-groundstation/lib/groundstation.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-guardduty/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-guardduty/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-guardduty/lib/guardduty.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-guardduty/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-guardduty/lib/guardduty.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-healthlake/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-healthlake/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-healthlake/lib/healthlake.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-healthlake/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-healthlake/lib/healthlake.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/access-key.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/user.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/grant.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/identity-base.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/managed-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/user.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/iam.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/identity-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/managed-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/access-key.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/grant.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/group.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/iam.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/identity-base.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/lazy-role.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/managed-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/oidc-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/permissions-boundary.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-document.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/role.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/saml-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/unknown-principal.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/user.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/lazy-role.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/grant.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/managed-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/role.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/managed-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/group.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-document.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/role.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/user.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/oidc-provider.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/permissions-boundary.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/managed-policy.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-document.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/group.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-document.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/role.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/user.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/oidc-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-document.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/saml-provider.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/role.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/grant.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/identity-base.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/managed-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-document.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/saml-provider.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/unknown-principal.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iam/lib/user.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/group.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/identity-base.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/managed-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy-statement.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/lib/principals.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-imagebuilder/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-imagebuilder/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-imagebuilder/lib/imagebuilder.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-imagebuilder/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-imagebuilder/lib/imagebuilder.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-inspector/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-inspector/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-inspector/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-inspector/lib/inspector.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-inspector/lib/inspector.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iot/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iot/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iot/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iot/lib/iot.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iot/lib/iot.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iot1click/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iot1click/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iot1click/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iot1click/lib/iot1click.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iot1click/lib/iot1click.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotanalytics/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotanalytics/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotanalytics/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotanalytics/lib/iotanalytics.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotanalytics/lib/iotanalytics.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotcoredeviceadvisor/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotcoredeviceadvisor/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotcoredeviceadvisor/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotcoredeviceadvisor/lib/iotcoredeviceadvisor.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotcoredeviceadvisor/lib/iotcoredeviceadvisor.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotevents/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotevents/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotevents/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotevents/lib/iotevents.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotevents/lib/iotevents.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotfleethub/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotfleethub/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotfleethub/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotfleethub/lib/iotfleethub.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotfleethub/lib/iotfleethub.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotsitewise/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotsitewise/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotsitewise/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotsitewise/lib/iotsitewise.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotsitewise/lib/iotsitewise.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotthingsgraph/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotthingsgraph/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotthingsgraph/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotthingsgraph/lib/iotthingsgraph.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotthingsgraph/lib/iotthingsgraph.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotwireless/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotwireless/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotwireless/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iotwireless/lib/iotwireless.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-iotwireless/lib/iotwireless.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ivs/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ivs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ivs/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ivs/lib/ivs.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ivs/lib/ivs.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kendra/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kendra/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kendra/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kendra/lib/kendra.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kendra/lib/kendra.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesis/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesis/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesis/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesis/lib/kinesis.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesis/lib/stream.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesis/lib/kinesis.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesis/lib/stream.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/lib/kinesisanalytics.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/lib/kinesisanalyticsv2.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/lib/kinesisanalytics.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/lib/kinesisanalyticsv2.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/lib/kinesisfirehose.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/lib/kinesisfirehose.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kms/lib/alias.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/key.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kms/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/alias.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/key-lookup.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/key.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/kms.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/via-service-principal.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kms/lib/key-lookup.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kms/lib/key.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/alias.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/key-lookup.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/lib/kms.generated.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kms/lib/kms.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-kms/lib/via-service-principal.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lakeformation/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lakeformation/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lakeformation/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lakeformation/lib/lakeformation.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lakeformation/lib/lakeformation.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-destinations/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/event-bridge.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/event-bridge.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/lambda.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/sns.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/sqs.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/lambda.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/sns.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-destinations/lib/sqs.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/api.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/dynamodb.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/stream.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/api.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/dynamodb.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/kafka.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/kinesis.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/s3.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sns-dlq.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sns.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sqs-dlq.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sqs.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/stream.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/kafka.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/stream.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/kinesis.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesis/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/stream.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/s3.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sns-dlq.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sns.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sqs-dlq.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/sqs.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/stream.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/function.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/types.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/function.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/types.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/lib/types.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/alias.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-invoke-config.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-version.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/scalable-attribute-api.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/code-signing-config.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-signer/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/code.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/destination.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/dlq.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source-mapping.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-invoke-config.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/destination.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source-mapping.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/dlq.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/filesystem.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-efs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-invoke-config.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source-mapping.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-version.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/permission.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/function.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/code-signing-config.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/code.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-invoke-config.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/filesystem.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-insights.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-version.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/layers.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/log-retention.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/runtime.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/handler.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/image-function.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/code.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/alias.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/code-signing-config.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/code.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/destination.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/dlq.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-invoke-config.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source-mapping.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-source.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/filesystem.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/handler.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/image-function.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-augmentations.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-insights.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-version.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/layers.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/log-retention.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/permission.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/runtime.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/scalable-attribute-api.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/singleton-lambda.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-augmentations.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-insights.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-version.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/alias.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/event-invoke-config.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/layers.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/code.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/runtime.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/log-retention.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/permission.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/runtime.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/scalable-attribute-api.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lambda/lib/singleton-lambda.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/architecture.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function-base.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/function.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/lambda-version.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/layers.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/permission.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/lib/runtime.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lex/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lex/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lex/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lex/lib/lex.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lex/lib/lex.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-licensemanager/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-licensemanager/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-licensemanager/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-licensemanager/lib/licensemanager.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-licensemanager/lib/licensemanager.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lightsail/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lightsail/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lightsail/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lightsail/lib/lightsail.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lightsail/lib/lightsail.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-location/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-location/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-location/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-location/lib/location.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-location/lib/location.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs-destinations/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-logs-destinations/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs-destinations/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-logs-destinations/lib/kinesis.d.ts", + "./node_modules/aws-cdk-lib/aws-logs-destinations/lib/lambda.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs-destinations/lib/kinesis.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesis/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs-destinations/lib/lambda.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/cross-account-destination.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/log-group.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/subscription-filter.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/cross-account-destination.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/log-group.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/log-retention.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/log-stream.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/logs.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/metric-filter.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/pattern.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/subscription-filter.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/log-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/log-stream.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/metric-filter.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/pattern.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/subscription-filter.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/log-retention.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/log-group.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/log-stream.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/log-group.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/logs.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/metric-filter.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/log-group.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/pattern.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-logs/lib/subscription-filter.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/lib/log-group.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lookoutequipment/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lookoutequipment/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lookoutequipment/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lookoutequipment/lib/lookoutequipment.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lookoutequipment/lib/lookoutequipment.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lookoutmetrics/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lookoutmetrics/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lookoutmetrics/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lookoutmetrics/lib/lookoutmetrics.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lookoutmetrics/lib/lookoutmetrics.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lookoutvision/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lookoutvision/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lookoutvision/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lookoutvision/lib/lookoutvision.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-lookoutvision/lib/lookoutvision.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-macie/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-macie/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-macie/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-macie/lib/macie.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-macie/lib/macie.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-managedblockchain/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-managedblockchain/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-managedblockchain/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-managedblockchain/lib/managedblockchain.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-managedblockchain/lib/managedblockchain.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediaconnect/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mediaconnect/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediaconnect/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mediaconnect/lib/mediaconnect.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediaconnect/lib/mediaconnect.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediaconvert/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mediaconvert/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediaconvert/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mediaconvert/lib/mediaconvert.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediaconvert/lib/mediaconvert.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-medialive/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-medialive/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-medialive/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-medialive/lib/medialive.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-medialive/lib/medialive.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediapackage/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mediapackage/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediapackage/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mediapackage/lib/mediapackage.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediapackage/lib/mediapackage.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediastore/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mediastore/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediastore/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mediastore/lib/mediastore.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mediastore/lib/mediastore.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-memorydb/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-memorydb/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-memorydb/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-memorydb/lib/memorydb.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-memorydb/lib/memorydb.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-msk/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-msk/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-msk/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-msk/lib/msk.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-msk/lib/msk.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mwaa/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mwaa/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mwaa/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-mwaa/lib/mwaa.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-mwaa/lib/mwaa.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-neptune/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-neptune/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-neptune/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-neptune/lib/neptune.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-neptune/lib/neptune.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-networkfirewall/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-networkfirewall/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-networkfirewall/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-networkfirewall/lib/networkfirewall.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-networkfirewall/lib/networkfirewall.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-networkmanager/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-networkmanager/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-networkmanager/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-networkmanager/lib/networkmanager.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-networkmanager/lib/networkmanager.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-nimblestudio/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-nimblestudio/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-nimblestudio/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-nimblestudio/lib/nimblestudio.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-nimblestudio/lib/nimblestudio.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opensearchservice/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/domain.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/version.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/domain.d.ts", + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/opensearchservice.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/version.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/opensearchservice.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opensearchservice/lib/version.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opsworks/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-opsworks/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opsworks/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-opsworks/lib/opsworks.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opsworks/lib/opsworks.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opsworkscm/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-opsworkscm/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opsworkscm/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-opsworkscm/lib/opsworkscm.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-opsworkscm/lib/opsworkscm.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-panorama/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-panorama/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-panorama/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-panorama/lib/panorama.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-panorama/lib/panorama.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-pinpoint/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-pinpoint/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-pinpoint/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-pinpoint/lib/pinpoint.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-pinpoint/lib/pinpoint.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-pinpointemail/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-pinpointemail/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-pinpointemail/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-pinpointemail/lib/pinpointemail.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-pinpointemail/lib/pinpointemail.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-qldb/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-qldb/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-qldb/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-qldb/lib/qldb.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-qldb/lib/qldb.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-quicksight/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-quicksight/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-quicksight/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-quicksight/lib/quicksight.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-quicksight/lib/quicksight.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ram/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ram/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ram/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ram/lib/ram.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ram/lib/ram.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-engine.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/engine.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/parameter-group.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-ref.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-engine.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/proxy.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-engine.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/parameter-group.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/props.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/proxy.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/rds.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/subnet-group.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/database-secret.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/endpoint.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/engine-version.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/engine.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/engine-version.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-engine.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/database-secret.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/engine-version.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/engine.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/instance-engine.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/option-group.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/parameter-group.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/props.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/proxy.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/rds-augmentations.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/rds.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/serverless-cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/subnet-group.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/instance-engine.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/engine.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/option-group.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/instance.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/instance-engine.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/option-group.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/parameter-group.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/props.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/proxy.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/rds.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/subnet-group.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/option-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/instance-engine.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/parameter-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/engine.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/props.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/parameter-group.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/proxy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/rds-augmentations.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/instance.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/rds.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/serverless-cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/cluster-engine.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/parameter-group.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/props.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/rds.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/lib/subnet-group.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rds/lib/subnet-group.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-redshift/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-redshift/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-redshift/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-redshift/lib/redshift.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-redshift/lib/redshift.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-refactorspaces/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-refactorspaces/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-refactorspaces/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-refactorspaces/lib/refactorspaces.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-refactorspaces/lib/refactorspaces.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rekognition/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-rekognition/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rekognition/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-rekognition/lib/rekognition.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rekognition/lib/rekognition.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-resiliencehub/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-resiliencehub/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-resiliencehub/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-resiliencehub/lib/resiliencehub.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-resiliencehub/lib/resiliencehub.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-resourcegroups/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-resourcegroups/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-resourcegroups/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-resourcegroups/lib/resourcegroups.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-resourcegroups/lib/resourcegroups.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-robomaker/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-robomaker/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-robomaker/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-robomaker/lib/robomaker.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-robomaker/lib/robomaker.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-patterns/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-patterns/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-patterns/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-patterns/lib/website-redirect.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-patterns/lib/website-redirect.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/api-gateway-domain-name.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/api-gatewayv2-domain-name.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/bucket-website-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/classic-load-balancer-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/cloudfront-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/elastic-beanstalk-environment-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/global-accelerator-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/api-gateway-domain-name.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/api-gatewayv2-domain-name.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/bucket-website-target.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/classic-load-balancer-target.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/cloudfront-target.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/elastic-beanstalk-environment-target.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/global-accelerator-target.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/interface-vpc-endpoint-target.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/load-balancer-target.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/route53-record.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/userpool-domain.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/interface-vpc-endpoint-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/load-balancer-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/route53-record.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53-targets/lib/userpool-domain.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53/lib/alias-record-target.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/record-set.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-provider.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-ref.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/route53.generated.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/alias-record-target.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-provider.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-ref.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/record-set.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/route53.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/vpc-endpoint-service-domain-name.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53/lib/record-set.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/alias-record-target.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/hosted-zone-ref.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53/lib/route53.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53/lib/vpc-endpoint-service-domain-name.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/lib/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53recoverycontrol/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53recoverycontrol/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53recoverycontrol/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53recoverycontrol/lib/route53recoverycontrol.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53recoverycontrol/lib/route53recoverycontrol.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53recoveryreadiness/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53recoveryreadiness/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53recoveryreadiness/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53recoveryreadiness/lib/route53recoveryreadiness.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53recoveryreadiness/lib/route53recoveryreadiness.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53resolver/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53resolver/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53resolver/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-route53resolver/lib/route53resolver.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-route53resolver/lib/route53resolver.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rum/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-rum/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rum/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-rum/lib/rum.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-rum/lib/rum.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-assets/lib/asset.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-assets/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/lib/asset.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-deployment/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/bucket-deployment.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/source.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/bucket-deployment.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/source.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-deployment/lib/source.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-notifications/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/lambda.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/sns.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/sqs.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/lambda.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/sns.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3-notifications/lib/sqs.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3/lib/bucket-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/bucket.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3/lib/bucket.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/bucket-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/destination.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/rule.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3/lib/destination.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/bucket.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/bucket-policy.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/bucket.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/destination.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/location.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/rule.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/lib/s3.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3/lib/location.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3/lib/rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3/lib/s3.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3objectlambda/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3objectlambda/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3objectlambda/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3objectlambda/lib/s3objectlambda.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3objectlambda/lib/s3objectlambda.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3outposts/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3outposts/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3outposts/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-s3outposts/lib/s3outposts.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-s3outposts/lib/s3outposts.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sagemaker/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sagemaker/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sagemaker/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sagemaker/lib/sagemaker.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sam/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sam/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sam/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sam/lib/sam.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sam/lib/sam.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sdb/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sdb/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sdb/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sdb/lib/sdb.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sdb/lib/sdb.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/rotation-schedule.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secret-rotation.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secret.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secretsmanager.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secret.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/rotation-schedule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secret.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secretsmanager.generated.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secret-rotation.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secret.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secret.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/rotation-schedule.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-secretsmanager/lib/secretsmanager.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-securityhub/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-securityhub/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-securityhub/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-securityhub/lib/securityhub.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-securityhub/lib/securityhub.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicecatalog/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicecatalog/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicecatalog/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicecatalog/lib/servicecatalog.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicecatalog/lib/servicecatalog.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicecatalogappregistry/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicecatalogappregistry/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicecatalogappregistry/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicecatalogappregistry/lib/servicecatalogappregistry.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicecatalogappregistry/lib/servicecatalogappregistry.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/alias-target-instance.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/cname-instance.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/http-namespace.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/namespace.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/alias-target-instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/cname-instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/http-namespace.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/ip-instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/namespace.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/non-ip-instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/private-dns-namespace.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/public-dns-namespace.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/servicediscovery.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/instance.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/ip-instance.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/namespace.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/non-ip-instance.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/private-dns-namespace.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/namespace.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/public-dns-namespace.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/namespace.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/cname-instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/ip-instance.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/namespace.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/non-ip-instance.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-servicediscovery/lib/servicediscovery.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses-actions/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/add-header.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/bounce.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/add-header.d.ts", + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/bounce.d.ts", + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/lambda.d.ts", + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/s3.d.ts", + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/sns.d.ts", + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/stop.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/lambda.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/s3.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/sns.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses-actions/lib/stop.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-filter.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule-action.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule-set.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/ses.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-filter.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule-set.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule-action.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/lib/receipt-rule-set.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ses/lib/ses.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-signer/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-signer/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-signer/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-signer/lib/signer.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-signer/lib/signing-profile.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-signer/lib/signer.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-signer/lib/signing-profile.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/email.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/subscription.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/email.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/lambda.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/sms.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/sqs.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/subscription.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/url.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/lambda.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/subscription.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/sms.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/subscription.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/sqs.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/subscription.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/subscription.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/url.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/subscription.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/sns-augmentations.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/sns.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/subscriber.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/subscription-filter.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/subscription.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/topic-base.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/topic.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/lib/policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/topic-base.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/lib/sns-augmentations.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/topic-base.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/lib/sns.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/lib/subscriber.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/subscription.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/topic-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/lib/subscription-filter.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/lib/subscription.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/subscription-filter.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/topic-base.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/lib/topic-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/subscriber.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sns/lib/topic.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/lib/topic-base.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sqs/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/lib/policy.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/lib/queue-base.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/lib/queue.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/lib/sqs-augmentations.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/lib/sqs.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sqs/lib/policy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/lib/queue-base.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sqs/lib/queue-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sqs/lib/queue.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/lib/queue-base.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sqs/lib/sqs-augmentations.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/lib/queue-base.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sqs/lib/sqs.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssm/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ssm/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssm/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ssm/lib/parameter.d.ts", + "./node_modules/aws-cdk-lib/aws-ssm/lib/ssm.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssm/lib/parameter.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssm/lib/ssm.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssmcontacts/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ssmcontacts/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssmcontacts/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ssmcontacts/lib/ssmcontacts.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssmcontacts/lib/ssmcontacts.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssmincidents/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ssmincidents/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssmincidents/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ssmincidents/lib/ssmincidents.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-ssmincidents/lib/ssmincidents.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sso/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sso/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sso/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sso/lib/sso.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-sso/lib/sso.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/call-http-api.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/call-rest-api.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/call-http-api.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/call-rest-api.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/get-query-execution.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/get-query-results.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/start-query-execution.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/stop-query-execution.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/aws-sdk/call-aws-service.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/batch/run-batch-job.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/batch/submit-job.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/codebuild/start-build.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/databrew/start-job-run.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/delete-item.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/shared-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/get-item.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/shared-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/put-item.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/shared-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/shared-types.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/update-item.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/shared-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-ec2-task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-task-base.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-fargate-task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-task-base.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-task-base-types.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-task-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-task-base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/eks/call.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-add-step.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-cancel-step.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-modify-instance-fleet-by-name.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-modify-instance-group-by-name.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-set-cluster-termination-protection.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-terminate-cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emrcontainers/create-virtual-cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emrcontainers/delete-virtual-cluster.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emrcontainers/start-job-run.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/evaluate-expression.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/eventbridge/put-events.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/glue/run-glue-job-task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/glue/start-job-run.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/get-query-execution.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/get-query-results.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/start-query-execution.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/athena/stop-query-execution.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/aws-sdk/call-aws-service.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/batch/run-batch-job.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/batch/submit-job.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/codebuild/start-build.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/databrew/start-job-run.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/delete-item.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/get-item.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/put-item.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/shared-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/dynamodb/update-item.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-ec2-task.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-fargate-task.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-task-base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-ecs-task-base.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/ecs/run-task.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/eks/call.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-add-step.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-cancel-step.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-create-cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-modify-instance-fleet-by-name.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-modify-instance-group-by-name.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-set-cluster-termination-protection.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emr/emr-terminate-cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emrcontainers/create-virtual-cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emrcontainers/delete-virtual-cluster.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/emrcontainers/start-job-run.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/evaluate-expression.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/eventbridge/put-events.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/glue/run-glue-job-task.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/glue/start-job-run.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/invoke-activity.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/lambda/invoke-function.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/lambda/invoke.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/lambda/run-lambda-task.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-endpoint-config.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-model.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-training-job.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-transform-job.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/update-endpoint.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sns/publish-to-topic.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sns/publish.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sqs/send-message.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sqs/send-to-queue.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/start-execution.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/stepfunctions/invoke-activity.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/stepfunctions/start-execution.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/invoke-activity.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/lambda/invoke-function.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/lambda/invoke.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/lambda/run-lambda-task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/base-types.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-endpoint-config.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-endpoint.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-model.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-training-job.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/create-transform-job.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/base-types.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sagemaker/update-endpoint.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sns/publish-to-topic.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sns/publish.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sqs/send-message.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/sqs/send-to-queue.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/start-execution.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/stepfunctions/invoke-activity.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/lib/stepfunctions/start-execution.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/activity.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/parallel.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/condition.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/fields.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/activity.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/condition.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/fields.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/input.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-graph.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-machine-fragment.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-machine.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-transition-metrics.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/choice.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/custom-state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/fail.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/map.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/parallel.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/pass.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/succeed.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/task-base.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/task.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/wait.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/step-functions-task.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/stepfunctions.generated.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/input.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-graph.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-machine-fragment.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/parallel.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-machine.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-transition-metrics.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/choice.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/condition.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/custom-state.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/fail.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/map.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/parallel.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-graph.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/pass.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/condition.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-graph.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/succeed.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/task-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-graph.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/state-graph.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/step-functions-task.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/wait.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/step-functions-task.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/task.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/stepfunctions.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/types.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/chain.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/state.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-synthetics/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-synthetics/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-synthetics/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-synthetics/lib/synthetics.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-synthetics/lib/synthetics.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-timestream/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-timestream/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-timestream/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-timestream/lib/timestream.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-timestream/lib/timestream.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-transfer/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-transfer/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-transfer/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-transfer/lib/transfer.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-transfer/lib/transfer.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-waf/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-waf/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-waf/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-waf/lib/waf.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-waf/lib/waf.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-wafregional/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-wafregional/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-wafregional/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-wafregional/lib/wafregional.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-wafregional/lib/wafregional.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-wafv2/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-wafv2/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-wafv2/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-wafv2/lib/wafv2.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-wafv2/lib/wafv2.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-wisdom/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-wisdom/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-wisdom/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-wisdom/lib/wisdom.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-wisdom/lib/wisdom.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-workspaces/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-workspaces/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-workspaces/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-workspaces/lib/workspaces.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-workspaces/lib/workspaces.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-xray/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-xray/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-xray/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-xray/lib/xray.generated.d.ts" + ], + "./node_modules/aws-cdk-lib/aws-xray/lib/xray.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/aws-destination.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/docker-image-asset.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/aws-destination.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/file-asset.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/aws-destination.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/aws-destination.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/docker-image-asset.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/file-asset.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/schema.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/schema.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/docker-image-asset.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/file-asset.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/artifact-schema.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/context-queries.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/metadata-schema.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/artifact-schema.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/context-queries.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/metadata-schema.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/schema.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/metadata-schema.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/schema.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/artifact-schema.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/context-queries.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/metadata-schema.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/index.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/index.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/manifest.d.ts" + ], + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/manifest.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/assets/index.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/lib/cloud-assembly/index.d.ts" + ], + "./node_modules/aws-cdk-lib/cloudformation-include/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloudformation-include/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/cloudformation-include/lib/cfn-include.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/cloudformation-include/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloudformation-include/lib/cfn-include.d.ts" + ], + "./node_modules/aws-cdk-lib/core/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/annotations.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/app.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/private/synthesis.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stage.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/arn.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/aspect.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/asset-staging.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/core/lib/fs/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/bundling.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/bundling.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-capabilities.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-codedeploy-blue-green-hook.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-hook.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-condition.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-dynamic-reference.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/private/intrinsic.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-fn.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-condition.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-hook.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-include.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-json.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/reference.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-mapping.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-output.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-condition.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-parameter.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-condition.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-mapping.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-resource.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-tag.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts", + "./node_modules/aws-cdk-lib/core/lib/runtime.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-pseudo.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-resource-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-resource.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-condition.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-resource-policy.d.ts", + "./node_modules/aws-cdk-lib/core/lib/reference.d.ts", + "./node_modules/aws-cdk-lib/core/lib/removal-policy.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-rule.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-condition.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cfn-tag.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/cloudformation.generated.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parse.d.ts", + "./node_modules/aws-cdk-lib/core/lib/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/context-provider.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/custom-resource-provider/custom-resource-provider.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/duration.d.ts", + "./node_modules/aws-cdk-lib/core/lib/size.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/custom-resource-provider/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/custom-resource-provider/custom-resource-provider.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/custom-resource.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/reference.d.ts", + "./node_modules/aws-cdk-lib/core/lib/removal-policy.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resource.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/duration.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/environment.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/expiration.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/duration.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/feature-flags.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/fs/ignore.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/fs/options.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/fs/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/fs/ignore.d.ts", + "./node_modules/aws-cdk-lib/core/lib/fs/options.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/fs/options.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/annotations.d.ts", + "./node_modules/aws-cdk-lib/core/lib/app.d.ts", + "./node_modules/aws-cdk-lib/core/lib/arn.d.ts", + "./node_modules/aws-cdk-lib/core/lib/aspect.d.ts", + "./node_modules/aws-cdk-lib/core/lib/asset-staging.d.ts", + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/core/lib/bundling.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-capabilities.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-codedeploy-blue-green-hook.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-condition.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-dynamic-reference.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-fn.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-hook.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-include.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-json.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-mapping.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-output.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parameter.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-pseudo.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-resource-policy.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-resource.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-rule.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-tag.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cloudformation.generated.d.ts", + "./node_modules/aws-cdk-lib/core/lib/context-provider.d.ts", + "./node_modules/aws-cdk-lib/core/lib/custom-resource-provider/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/custom-resource.d.ts", + "./node_modules/aws-cdk-lib/core/lib/duration.d.ts", + "./node_modules/aws-cdk-lib/core/lib/environment.d.ts", + "./node_modules/aws-cdk-lib/core/lib/expiration.d.ts", + "./node_modules/aws-cdk-lib/core/lib/feature-flags.d.ts", + "./node_modules/aws-cdk-lib/core/lib/fs/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/lazy.d.ts", + "./node_modules/aws-cdk-lib/core/lib/names.d.ts", + "./node_modules/aws-cdk-lib/core/lib/nested-stack.d.ts", + "./node_modules/aws-cdk-lib/core/lib/physical-name.d.ts", + "./node_modules/aws-cdk-lib/core/lib/private/intrinsic.d.ts", + "./node_modules/aws-cdk-lib/core/lib/reference.d.ts", + "./node_modules/aws-cdk-lib/core/lib/removal-policy.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resource.d.ts", + "./node_modules/aws-cdk-lib/core/lib/runtime.d.ts", + "./node_modules/aws-cdk-lib/core/lib/secret-value.d.ts", + "./node_modules/aws-cdk-lib/core/lib/size.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-trace.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stage.d.ts", + "./node_modules/aws-cdk-lib/core/lib/string-fragments.d.ts", + "./node_modules/aws-cdk-lib/core/lib/tag-aspect.d.ts", + "./node_modules/aws-cdk-lib/core/lib/tag-manager.d.ts", + "./node_modules/aws-cdk-lib/core/lib/token.d.ts", + "./node_modules/aws-cdk-lib/core/lib/tree.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/lazy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/names.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/nested-stack.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-resource.d.ts", + "./node_modules/aws-cdk-lib/core/lib/duration.d.ts", + "./node_modules/aws-cdk-lib/core/lib/removal-policy.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/physical-name.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/private/intrinsic.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/private/synthesis.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/types.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stage.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/reference.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/private/intrinsic.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/removal-policy.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/string-fragments.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/resource.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/arn.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-resource.d.ts", + "./node_modules/aws-cdk-lib/core/lib/removal-policy.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/runtime.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/secret-value.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-dynamic-reference.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-parameter.d.ts", + "./node_modules/aws-cdk-lib/core/lib/private/intrinsic.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/size.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/bootstrapless-synthesizer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/default-synthesizer.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/types.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/default-synthesizer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/stack-synthesizer.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/types.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/bootstrapless-synthesizer.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/default-synthesizer.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/legacy.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/nested.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/stack-synthesizer.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/types.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/legacy.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/stack-synthesizer.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/types.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/nested.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/stack-synthesizer.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/types.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/stack-synthesizer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/types.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/types.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stack-trace.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stack.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/arn.d.ts", + "./node_modules/aws-cdk-lib/core/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-element.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-resource.d.ts", + "./node_modules/aws-cdk-lib/core/lib/environment.d.ts", + "./node_modules/aws-cdk-lib/core/lib/reference.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts", + "./node_modules/aws-cdk-lib/core/lib/stack-synthesizers/index.d.ts", + "./node_modules/aws-cdk-lib/core/lib/tag-manager.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/stage.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/environment.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/string-fragments.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/tag-aspect.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/aspect.d.ts", + "./node_modules/aws-cdk-lib/core/lib/tag-manager.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/tag-manager.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/cfn-resource.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/token.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/lib/resolvable.d.ts", + "./node_modules/aws-cdk-lib/core/lib/string-fragments.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/core/lib/tree.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/custom-resources/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/custom-resources/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/custom-resources/lib/aws-custom-resource/aws-custom-resource.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/custom-resources/lib/aws-custom-resource/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/custom-resources/lib/aws-custom-resource/aws-custom-resource.d.ts" + ], + "./node_modules/aws-cdk-lib/custom-resources/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/custom-resources/lib/aws-custom-resource/index.d.ts", + "./node_modules/aws-cdk-lib/custom-resources/lib/provider-framework/index.d.ts" + ], + "./node_modules/aws-cdk-lib/custom-resources/lib/provider-framework/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/custom-resources/lib/provider-framework/provider.d.ts" + ], + "./node_modules/aws-cdk-lib/custom-resources/lib/provider-framework/provider.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudformation/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/app.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/asset-manifest-artifact.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-assembly.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/cloudformation-artifact.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-assembly.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/environment.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/nested-cloud-assembly-artifact.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-assembly.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/tree-cloud-artifact.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-assembly.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/assets.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-artifact.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-assembly.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/metadata.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-assembly.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/cloudformation-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/nested-cloud-assembly-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/tree-cloud-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-artifact.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/context/ami.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/context/availability-zones.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/context/endpoint-service-availability-zones.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/context/key.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/context/load-balancer.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/context/security-group.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/context/vpc.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/cxapi.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/environment.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/features.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/app.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/asset-manifest-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/cloudformation-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/nested-cloud-assembly-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/artifacts/tree-cloud-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/assets.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-artifact.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cloud-assembly.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/context/ami.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/context/availability-zones.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/context/endpoint-service-availability-zones.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/context/key.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/context/load-balancer.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/context/security-group.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/context/vpc.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/cxapi.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/environment.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/features.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/metadata.d.ts", + "./node_modules/aws-cdk-lib/cx-api/lib/placeholders.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/metadata.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts" + ], + "./node_modules/aws-cdk-lib/cx-api/lib/placeholders.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/alexa-ask/index.d.ts", + "./node_modules/aws-cdk-lib/assertions/index.d.ts", + "./node_modules/aws-cdk-lib/assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-accessanalyzer/index.d.ts", + "./node_modules/aws-cdk-lib/aws-acmpca/index.d.ts", + "./node_modules/aws-cdk-lib/aws-amazonmq/index.d.ts", + "./node_modules/aws-cdk-lib/aws-amplify/index.d.ts", + "./node_modules/aws-cdk-lib/aws-amplifyuibuilder/index.d.ts", + "./node_modules/aws-cdk-lib/aws-apigateway/index.d.ts", + "./node_modules/aws-cdk-lib/aws-apigatewayv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-appconfig/index.d.ts", + "./node_modules/aws-cdk-lib/aws-appflow/index.d.ts", + "./node_modules/aws-cdk-lib/aws-appintegrations/index.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationautoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-applicationinsights/index.d.ts", + "./node_modules/aws-cdk-lib/aws-appmesh/index.d.ts", + "./node_modules/aws-cdk-lib/aws-apprunner/index.d.ts", + "./node_modules/aws-cdk-lib/aws-appstream/index.d.ts", + "./node_modules/aws-cdk-lib/aws-appsync/index.d.ts", + "./node_modules/aws-cdk-lib/aws-aps/index.d.ts", + "./node_modules/aws-cdk-lib/aws-athena/index.d.ts", + "./node_modules/aws-cdk-lib/aws-auditmanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-common/index.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling-hooktargets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscaling/index.d.ts", + "./node_modules/aws-cdk-lib/aws-autoscalingplans/index.d.ts", + "./node_modules/aws-cdk-lib/aws-backup/index.d.ts", + "./node_modules/aws-cdk-lib/aws-batch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-budgets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cassandra/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ce/index.d.ts", + "./node_modules/aws-cdk-lib/aws-certificatemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-chatbot/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloud9/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudformation/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront-origins/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudfront/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudtrail/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch-actions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cloudwatch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codeartifact/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codedeploy/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codeguruprofiler/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codegurureviewer/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codestar/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarconnections/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codestarnotifications/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cognito/index.d.ts", + "./node_modules/aws-cdk-lib/aws-config/index.d.ts", + "./node_modules/aws-cdk-lib/aws-connect/index.d.ts", + "./node_modules/aws-cdk-lib/aws-cur/index.d.ts", + "./node_modules/aws-cdk-lib/aws-customerprofiles/index.d.ts", + "./node_modules/aws-cdk-lib/aws-databrew/index.d.ts", + "./node_modules/aws-cdk-lib/aws-datapipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-datasync/index.d.ts", + "./node_modules/aws-cdk-lib/aws-dax/index.d.ts", + "./node_modules/aws-cdk-lib/aws-detective/index.d.ts", + "./node_modules/aws-cdk-lib/aws-devopsguru/index.d.ts", + "./node_modules/aws-cdk-lib/aws-directoryservice/index.d.ts", + "./node_modules/aws-cdk-lib/aws-dlm/index.d.ts", + "./node_modules/aws-cdk-lib/aws-dms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-docdb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-dynamodb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs-patterns/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-efs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-eks/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticache/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticbeanstalk/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancing/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-actions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2-targets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticloadbalancingv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-elasticsearch/index.d.ts", + "./node_modules/aws-cdk-lib/aws-emr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-emrcontainers/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events-targets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-eventschemas/index.d.ts", + "./node_modules/aws-cdk-lib/aws-evidently/index.d.ts", + "./node_modules/aws-cdk-lib/aws-finspace/index.d.ts", + "./node_modules/aws-cdk-lib/aws-fis/index.d.ts", + "./node_modules/aws-cdk-lib/aws-fms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-frauddetector/index.d.ts", + "./node_modules/aws-cdk-lib/aws-fsx/index.d.ts", + "./node_modules/aws-cdk-lib/aws-gamelift/index.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator-endpoints/index.d.ts", + "./node_modules/aws-cdk-lib/aws-globalaccelerator/index.d.ts", + "./node_modules/aws-cdk-lib/aws-glue/index.d.ts", + "./node_modules/aws-cdk-lib/aws-greengrass/index.d.ts", + "./node_modules/aws-cdk-lib/aws-greengrassv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-groundstation/index.d.ts", + "./node_modules/aws-cdk-lib/aws-guardduty/index.d.ts", + "./node_modules/aws-cdk-lib/aws-healthlake/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-imagebuilder/index.d.ts", + "./node_modules/aws-cdk-lib/aws-inspector/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iot/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iot1click/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iotanalytics/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iotcoredeviceadvisor/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iotevents/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iotfleethub/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iotsitewise/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iotthingsgraph/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iotwireless/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ivs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kendra/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesis/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesisanalytics/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kinesisfirehose/index.d.ts", + "./node_modules/aws-cdk-lib/aws-kms/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lakeformation/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-destinations/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-event-sources/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda-nodejs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lex/index.d.ts", + "./node_modules/aws-cdk-lib/aws-licensemanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lightsail/index.d.ts", + "./node_modules/aws-cdk-lib/aws-location/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs-destinations/index.d.ts", + "./node_modules/aws-cdk-lib/aws-logs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lookoutequipment/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lookoutmetrics/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lookoutvision/index.d.ts", + "./node_modules/aws-cdk-lib/aws-macie/index.d.ts", + "./node_modules/aws-cdk-lib/aws-managedblockchain/index.d.ts", + "./node_modules/aws-cdk-lib/aws-mediaconnect/index.d.ts", + "./node_modules/aws-cdk-lib/aws-mediaconvert/index.d.ts", + "./node_modules/aws-cdk-lib/aws-medialive/index.d.ts", + "./node_modules/aws-cdk-lib/aws-mediapackage/index.d.ts", + "./node_modules/aws-cdk-lib/aws-mediastore/index.d.ts", + "./node_modules/aws-cdk-lib/aws-memorydb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-msk/index.d.ts", + "./node_modules/aws-cdk-lib/aws-mwaa/index.d.ts", + "./node_modules/aws-cdk-lib/aws-neptune/index.d.ts", + "./node_modules/aws-cdk-lib/aws-networkfirewall/index.d.ts", + "./node_modules/aws-cdk-lib/aws-networkmanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-nimblestudio/index.d.ts", + "./node_modules/aws-cdk-lib/aws-opensearchservice/index.d.ts", + "./node_modules/aws-cdk-lib/aws-opsworks/index.d.ts", + "./node_modules/aws-cdk-lib/aws-opsworkscm/index.d.ts", + "./node_modules/aws-cdk-lib/aws-panorama/index.d.ts", + "./node_modules/aws-cdk-lib/aws-pinpoint/index.d.ts", + "./node_modules/aws-cdk-lib/aws-pinpointemail/index.d.ts", + "./node_modules/aws-cdk-lib/aws-qldb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-quicksight/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ram/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/index.d.ts", + "./node_modules/aws-cdk-lib/aws-redshift/index.d.ts", + "./node_modules/aws-cdk-lib/aws-refactorspaces/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rekognition/index.d.ts", + "./node_modules/aws-cdk-lib/aws-resiliencehub/index.d.ts", + "./node_modules/aws-cdk-lib/aws-resourcegroups/index.d.ts", + "./node_modules/aws-cdk-lib/aws-robomaker/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-patterns/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53-targets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53recoverycontrol/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53recoveryreadiness/index.d.ts", + "./node_modules/aws-cdk-lib/aws-route53resolver/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rum/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-assets/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-deployment/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3-notifications/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3objectlambda/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3outposts/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sagemaker/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sdb/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts", + "./node_modules/aws-cdk-lib/aws-securityhub/index.d.ts", + "./node_modules/aws-cdk-lib/aws-servicecatalog/index.d.ts", + "./node_modules/aws-cdk-lib/aws-servicecatalogappregistry/index.d.ts", + "./node_modules/aws-cdk-lib/aws-servicediscovery/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ses-actions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ses/index.d.ts", + "./node_modules/aws-cdk-lib/aws-signer/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns-subscriptions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sqs/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ssm/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ssmcontacts/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ssmincidents/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sso/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions-tasks/index.d.ts", + "./node_modules/aws-cdk-lib/aws-stepfunctions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-synthetics/index.d.ts", + "./node_modules/aws-cdk-lib/aws-timestream/index.d.ts", + "./node_modules/aws-cdk-lib/aws-transfer/index.d.ts", + "./node_modules/aws-cdk-lib/aws-waf/index.d.ts", + "./node_modules/aws-cdk-lib/aws-wafregional/index.d.ts", + "./node_modules/aws-cdk-lib/aws-wafv2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-wisdom/index.d.ts", + "./node_modules/aws-cdk-lib/aws-workspaces/index.d.ts", + "./node_modules/aws-cdk-lib/aws-xray/index.d.ts", + "./node_modules/aws-cdk-lib/cloud-assembly-schema/index.d.ts", + "./node_modules/aws-cdk-lib/cloudformation-include/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/custom-resources/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts", + "./node_modules/aws-cdk-lib/lambda-layer-awscli/index.d.ts", + "./node_modules/aws-cdk-lib/lambda-layer-kubectl/index.d.ts", + "./node_modules/aws-cdk-lib/lambda-layer-node-proxy-agent/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/index.d.ts", + "./node_modules/aws-cdk-lib/region-info/index.d.ts" + ], + "./node_modules/aws-cdk-lib/lambda-layer-awscli/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/lambda-layer-awscli/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/lambda-layer-awscli/lib/awscli-layer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/lambda-layer-awscli/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/lambda-layer-awscli/lib/awscli-layer.d.ts" + ], + "./node_modules/aws-cdk-lib/lambda-layer-kubectl/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/lambda-layer-kubectl/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/lambda-layer-kubectl/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/lambda-layer-kubectl/lib/kubectl-layer.d.ts" + ], + "./node_modules/aws-cdk-lib/lambda-layer-kubectl/lib/kubectl-layer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/lambda-layer-node-proxy-agent/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/lambda-layer-node-proxy-agent/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/lambda-layer-node-proxy-agent/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/lambda-layer-node-proxy-agent/lib/node-proxy-agent-layer.d.ts" + ], + "./node_modules/aws-cdk-lib/lambda-layer-node-proxy-agent/lib/node-proxy-agent-layer.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/asset-type.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/file-set.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/step.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/asset-type.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/file-set.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/manual-approval.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/shell-step.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/stack-deployment.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/stage-deployment.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/step.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/wave.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/manual-approval.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/step.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/shell-step.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/file-set.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/stack-deployment.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/step.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/stack-deployment.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/asset-type.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/step.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/stage-deployment.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/stack-deployment.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/step.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/step.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/file-set.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/wave.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/stage-deployment.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/step.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/artifact-map.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codebuild-step.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline-action-factory.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/artifact-map.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline-source.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codecommit/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline-actions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-s3/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline-action-factory.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/docker-credentials.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/main/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/confirm-permissions-broadening.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline-action-factory.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/artifact-map.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codebuild-step.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline-action-factory.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline-source.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/confirm-permissions-broadening.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/docker-credentials.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ecr/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/aws-secretsmanager/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/docker-credentials.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/main/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/deploy-cdk-stack-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/deploy-cdk-stack-action.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/publish-assets-action.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/update-pipeline-action.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/publish-assets-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/asset-type.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/update-pipeline-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/docker-credentials.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/actions/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/pipeline.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/stage.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/synths/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/validation/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/pipeline.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/docker-credentials.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/stage.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/private/application-security-check.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/stage.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-sns/index.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/cx-api/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/asset-type.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/synths/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/synths/simple-synth-action.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/synths/simple-synth-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/docker-credentials.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/validation/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/validation/shell-script-action.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/validation/shell-script-action.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-events/index.d.ts", + "./node_modules/aws-cdk-lib/aws-iam/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/legacy/stage.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/main/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/main/pipeline-base.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/main/pipeline-base.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/core/index.d.ts", + "./node_modules/aws-cdk-lib/pipelines/lib/blueprint/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/pipelines/lib/private/application-security-check.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/aws-codebuild/index.d.ts", + "./node_modules/aws-cdk-lib/aws-codepipeline/index.d.ts", + "./node_modules/aws-cdk-lib/aws-lambda/index.d.ts", + "./node_modules/constructs/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/region-info/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/region-info/lib/index.d.ts" + ], + "./node_modules/aws-cdk-lib/region-info/lib/default.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/region-info/lib/fact.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/aws-cdk-lib/region-info/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/region-info/lib/default.d.ts", + "./node_modules/aws-cdk-lib/region-info/lib/fact.d.ts", + "./node_modules/aws-cdk-lib/region-info/lib/region-info.d.ts" + ], + "./node_modules/aws-cdk-lib/region-info/lib/region-info.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/constructs/lib/construct.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/dependency.d.ts", + "./node_modules/constructs/lib/metadata.d.ts" + ], + "./node_modules/constructs/lib/dependency.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/construct.d.ts" + ], + "./node_modules/constructs/lib/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/constructs/lib/construct.d.ts", + "./node_modules/constructs/lib/dependency.d.ts", + "./node_modules/constructs/lib/metadata.d.ts" + ], + "./node_modules/constructs/lib/metadata.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jest-diff/build/cleanupsemantic.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jest-diff/build/difflines.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/jest-diff/build/cleanupsemantic.d.ts", + "./node_modules/jest-diff/build/types.d.ts" + ], + "./node_modules/jest-diff/build/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/jest-diff/build/cleanupsemantic.d.ts", + "./node_modules/jest-diff/build/difflines.d.ts", + "./node_modules/jest-diff/build/printdiffs.d.ts", + "./node_modules/jest-diff/build/types.d.ts" + ], + "./node_modules/jest-diff/build/printdiffs.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/jest-diff/build/cleanupsemantic.d.ts", + "./node_modules/jest-diff/build/types.d.ts" + ], + "./node_modules/jest-diff/build/types.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/pretty-format/build/index.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.collection.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.core.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.generator.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.iterable.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.promise.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.proxy.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.reflect.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.symbol.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2016.array.include.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2016.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.intl.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.object.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.string.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.intl.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.promise.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2018.regexp.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.array.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.object.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.string.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2019.symbol.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.bigint.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.promise.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.string.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.es5.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/jsii/node_modules/typescript/lib/lib.esnext.intl.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./node_modules/pretty-format/build/index.d.ts": [ + "./node_modules/@types/node/util.d.ts", + "./node_modules/pretty-format/build/types.d.ts" + ], + "./node_modules/pretty-format/build/types.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ], + "./test/aurora-serverless.test.ts": [ + "./lib/aurora-serverless.ts", + "./node_modules/@types/node/assert.d.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assertions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/index.d.ts", + "./node_modules/aws-cdk-lib/index.d.ts" + ], + "./test/generic-bastion-host-forward.test.ts": [ + "./lib/generic-bastion-host-forward.ts", + "./node_modules/@types/node/assert.d.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assertions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/index.d.ts" + ], + "./test/rds.test.ts": [ + "./lib/rds.ts", + "./node_modules/@types/node/assert.d.ts", + "./node_modules/@types/node/util.d.ts", + "./node_modules/aws-cdk-lib/assertions/index.d.ts", + "./node_modules/aws-cdk-lib/aws-ec2/index.d.ts", + "./node_modules/aws-cdk-lib/aws-rds/index.d.ts", + "./node_modules/aws-cdk-lib/index.d.ts" + ], + "./test/redis.test.d.ts": [ + "./node_modules/@types/node/util.d.ts" + ] + }, + "exportedModulesMap": {}, + "semanticDiagnosticsPerFile": [] + }, + "version": "3.9.10" +} \ No newline at end of file diff --git a/tslint.yaml b/tslint.yaml index 71e7474..2b2c243 100644 --- a/tslint.yaml +++ b/tslint.yaml @@ -1,21 +1,21 @@ -extends: "tslint:recommended" +extends: 'tslint:recommended' rules: - semicolon: [true, "always", "ignore-interfaces"] - no-invalid-template-strings: false - quotemark: false - interface-name: false - max-classes-per-file: false - member-access: - severity: warning - interface-over-type-literal: false - eofline: false - arrow-parens: false - no-namespace: false - max-line-length: [true, 150] - object-literal-sort-keys: false - trailing-comma: false - no-unused-expression: [true, "allow-new"] - variable-name: [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"] - no-floating-promises: ["Promise"] - no-empty-interface: false - no-duplicate-imports: error + semicolon: [true, 'always', 'ignore-interfaces'] + no-invalid-template-strings: false + quotemark: false + interface-name: false + max-classes-per-file: false + member-access: + severity: warning + interface-over-type-literal: false + eofline: false + arrow-parens: false + no-namespace: false + max-line-length: [true, 150] + object-literal-sort-keys: false + trailing-comma: false + no-unused-expression: [true, 'allow-new'] + variable-name: [true, 'ban-keywords', 'check-format', 'allow-leading-underscore', 'allow-pascal-case'] + no-floating-promises: ['Promise'] + no-empty-interface: false + no-duplicate-imports: error