Skip to content

Commit e91eec2

Browse files
chore: npm-check-updates && yarn upgrade (#30991)
Ran npm-check-updates and yarn upgrade to keep the `yarn.lock` file up-to-date.
1 parent 1794dc4 commit e91eec2

File tree

50 files changed

+980
-1552
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+980
-1552
lines changed

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
"build-all": "tsc -b"
1616
},
1717
"devDependencies": {
18-
"@nx/workspace": "^19.4.0",
18+
"@nx/workspace": "^19.6.5",
1919
"@types/node": "18.11.19",
2020
"@types/prettier": "2.6.0",
2121
"@yarnpkg/lockfile": "^1.1.0",
2222
"aws-sdk-js-codemod": "^0.28.2",
23-
"cdk-generate-synthetic-examples": "^0.2.9",
23+
"cdk-generate-synthetic-examples": "^0.2.14",
2424
"conventional-changelog-cli": "^2.2.2",
2525
"fs-extra": "^9.1.0",
2626
"graceful-fs": "^4.2.11",
2727
"jest-junit": "^13.2.0",
28-
"jsii-diff": "1.102.0",
29-
"jsii-pacmak": "1.102.0",
30-
"jsii-reflect": "1.102.0",
31-
"lerna": "^8.1.5",
32-
"nx": "^19.4.0",
28+
"jsii-diff": "1.103.1",
29+
"jsii-pacmak": "1.103.1",
30+
"jsii-reflect": "1.103.1",
31+
"lerna": "^8.1.8",
32+
"nx": "^19.6.5",
3333
"patch-package": "^6.5.1",
34-
"semver": "^7.6.2",
34+
"semver": "^7.6.3",
3535
"standard-version": "^9.5.0",
36-
"ts-jest": "^29.1.5",
36+
"ts-jest": "^29.2.5",
3737
"ts-node": "^10.9.2",
3838
"typescript": "~5.4.5"
3939
},

packages/@aws-cdk-testing/cli-integ/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@aws-sdk/credential-providers": "3.637.0",
5353
"@smithy/util-retry": "3.0.3",
5454
"@smithy/types": "3.3.0",
55-
"axios": "^1.7.2",
55+
"axios": "^1.7.7",
5656
"chalk": "^4",
5757
"fs-extra": "^9.1.0",
5858
"glob": "^7.2.3",
@@ -61,7 +61,7 @@
6161
"make-runnable": "^1.4.1",
6262
"npm": "^8.19.4",
6363
"p-queue": "^6.6.2",
64-
"semver": "^7.6.2",
64+
"semver": "^7.6.3",
6565
"sinon": "^9.2.4",
6666
"ts-mock-imports": "^1.3.16",
6767
"yaml": "1.10.2",

packages/@aws-cdk-testing/framework-integ/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
"@aws-cdk/integ-tests-alpha": "0.0.0",
4242
"@aws-cdk/lambda-layer-kubectl-v24": "^2.0.242",
4343
"@aws-cdk/lambda-layer-kubectl-v29": "^2.1.0",
44-
"@aws-cdk/lambda-layer-kubectl-v30": "^2.0.0",
44+
"@aws-cdk/lambda-layer-kubectl-v30": "^2.0.1",
4545
"aws-cdk-lib": "0.0.0",
4646
"aws-sdk-mock": "5.6.0",
47-
"cdk8s": "2.68.85",
47+
"cdk8s": "2.68.104",
4848
"cdk8s-plus-27": "2.9.5",
4949
"constructs": "^10.0.0"
5050
},

packages/@aws-cdk/aws-redshift-alpha/lib/private/database-query-provider/privileges.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function handler(props: UserTablePrivilegesHandlerProps & ClusterPr
2121
username,
2222
tablePrivileges,
2323
clusterProps,
24-
event.OldResourceProperties as UserTablePrivilegesHandlerProps & ClusterProps,
24+
event.OldResourceProperties as unknown as UserTablePrivilegesHandlerProps & ClusterProps,
2525
);
2626
const physicalId = replace ? makePhysicalId(username, clusterProps, event.RequestId) : event.PhysicalResourceId;
2727
return { PhysicalResourceId: physicalId };

packages/@aws-cdk/aws-redshift-alpha/lib/private/database-query-provider/table.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export async function handler(props: TableAndClusterProps, event: AWSLambda.Clou
3232
tableColumns,
3333
useColumnIds,
3434
tableAndClusterProps,
35-
event.OldResourceProperties as TableAndClusterProps,
35+
event.OldResourceProperties as unknown as TableAndClusterProps,
3636
isTableV2,
3737
);
3838
return { PhysicalResourceId: event.PhysicalResourceId };

packages/@aws-cdk/aws-redshift-alpha/lib/private/database-query-provider/user.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ export async function handler(props: UserHandlerProps & ClusterProps, event: AWS
2121
await dropUser(username, clusterProps);
2222
return;
2323
} else if (event.RequestType === 'Update') {
24-
const { replace } = await updateUser(username, passwordSecretArn, clusterProps, event.OldResourceProperties as UserHandlerProps & ClusterProps);
24+
const { replace } = await updateUser(
25+
username,
26+
passwordSecretArn,
27+
clusterProps,
28+
event.OldResourceProperties as unknown as UserHandlerProps & ClusterProps);
2529
const physicalId = replace ? makePhysicalId(username, clusterProps, event.RequestId) : event.PhysicalResourceId;
2630
return { PhysicalResourceId: physicalId, Data: { username: username } };
2731
} else {

packages/@aws-cdk/cloudformation-diff/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
"@aws-sdk/client-cloudformation": "^3.529.1",
3838
"@types/jest": "^29.5.12",
3939
"@types/string-width": "^4.0.1",
40-
"fast-check": "^3.19.0",
40+
"fast-check": "^3.22.0",
4141
"jest": "^29.7.0",
42-
"ts-jest": "^29.1.5"
42+
"ts-jest": "^29.2.5"
4343
},
4444
"repository": {
4545
"url": "https://github.com/aws/aws-cdk.git",

packages/@aws-cdk/custom-resource-handlers/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@
5151
"@cdklabs/typewriter": "^0.0.3",
5252
"jest": "^29.7.0",
5353
"sinon": "^9.2.4",
54-
"nock": "^13.5.4",
54+
"nock": "^13.5.5",
5555
"fs-extra": "^11.2.0",
56-
"esbuild": "^0.23.0"
56+
"esbuild": "^0.23.1"
5757
},
5858
"dependencies": {
59-
"@aws-cdk/asset-node-proxy-agent-v6": "^2.0.3",
59+
"@aws-cdk/asset-node-proxy-agent-v6": "^2.1.0",
6060
"@aws-sdk/client-lambda": "3.421.0",
6161
"@aws-sdk/client-synthetics": "3.421.0",
6262
"@aws-sdk/client-ecr": "3.421.0",

packages/@aws-cdk/cx-api/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@
7979
"organization": true
8080
},
8181
"dependencies": {
82-
"semver": "^7.6.2"
82+
"semver": "^7.6.3"
8383
},
8484
"peerDependencies": {
8585
"@aws-cdk/cloud-assembly-schema": "^36.0.5"
8686
},
8787
"license": "Apache-2.0",
8888
"devDependencies": {
8989
"@aws-cdk/cdk-build-tools": "0.0.0",
90-
"@aws-cdk/cloud-assembly-schema": "^36.0.5",
90+
"@aws-cdk/cloud-assembly-schema": "^36.0.24",
9191
"@aws-cdk/pkglint": "0.0.0",
9292
"@types/jest": "^29.5.12",
9393
"@types/mock-fs": "^4.13.4",

packages/@aws-cdk/integ-runner/THIRD_PARTY_LICENSES

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The @aws-cdk/integ-runner package includes the following third-party software/licensing:
22

3-
** ajv@8.16.0 - https://www.npmjs.com/package/ajv/v/8.16.0 | MIT
3+
** ajv@8.17.1 - https://www.npmjs.com/package/ajv/v/8.17.1 | MIT
44
The MIT License (MIT)
55

66
Copyright (c) 2015-2021 Evgeny Poberezkin
@@ -297,7 +297,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
297297

298298
----------------
299299

300-
** escalade@3.1.2 - https://www.npmjs.com/package/escalade/v/3.1.2 | MIT
300+
** escalade@3.2.0 - https://www.npmjs.com/package/escalade/v/3.2.0 | MIT
301301
MIT License
302302

303303
Copyright (c) Luke Edwards <[email protected]> (lukeed.com)

packages/@aws-cdk/integ-runner/lib/runner/runner-base.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { AVAILABILITY_ZONE_FALLBACK_CONTEXT_KEY, TARGET_PARTITIONS, NEW_PROJECT_
66
import * as fs from 'fs-extra';
77
import { IntegTestSuite, LegacyIntegTestSuite } from './integ-test-suite';
88
import { IntegTest } from './integration-tests';
9-
import { AssemblyManifestReader, ManifestTrace } from './private/cloud-assembly';
109
import { flatten } from '../utils';
10+
import { AssemblyManifestReader, ManifestTrace } from './private/cloud-assembly';
1111
import { DestructiveChange } from '../workers/common';
1212

1313
const DESTRUCTIVE_CHANGES = '!!DESTRUCTIVE_CHANGES:';

packages/@aws-cdk/integ-runner/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@
7171
},
7272
"dependencies": {
7373
"chokidar": "^3.6.0",
74-
"@aws-cdk/cloud-assembly-schema": "^36.0.5",
74+
"@aws-cdk/cloud-assembly-schema": "^36.0.24",
7575
"@aws-cdk/cloudformation-diff": "0.0.0",
7676
"@aws-cdk/cx-api": "0.0.0",
7777
"@aws-cdk/aws-service-spec": "^0.1.23",
78-
"cdk-assets": "^2.151.2",
78+
"cdk-assets": "^2.151.29",
7979
"@aws-cdk/cdk-cli-wrapper": "0.0.0",
8080
"aws-cdk": "0.0.0",
8181
"chalk": "^4",
@@ -108,4 +108,4 @@
108108
"publishConfig": {
109109
"tag": "latest"
110110
}
111-
}
111+
}

packages/@aws-cdk/integ-tests-alpha/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"aws-sdk-client-mock": "^3.1.0",
8080
"aws-sdk-client-mock-jest": "^3.1.0",
8181
"jest": "^29.7.0",
82-
"nock": "^13.5.4",
82+
"nock": "^13.5.5",
8383
"sinon": "^9.2.4",
8484
"aws-cdk-lib": "0.0.0",
8585
"node-fetch": "^2.7.0",

packages/aws-cdk-lib/NOTICE

+27-8
Original file line numberDiff line numberDiff line change
@@ -731,18 +731,37 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
731731

732732
----------------
733733

734-
** uri-js - https://www.npmjs.com/package/uri-js/v/4.4.1 | BSD-2-Clause
735-
Copyright 2011 Gary Court. All rights reserved.
736-
737-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
734+
** fast-uri - https://www.npmjs.com/package/fast-uri/v/3.0.1 | BSD-3-Clause
735+
Copyright (c) 2021 The Fastify Team
736+
Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
737+
All rights reserved.
738738

739-
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
739+
Redistribution and use in source and binary forms, with or without
740+
modification, are permitted provided that the following conditions are met:
741+
* Redistributions of source code must retain the above copyright
742+
notice, this list of conditions and the following disclaimer.
743+
* Redistributions in binary form must reproduce the above copyright
744+
notice, this list of conditions and the following disclaimer in the
745+
documentation and/or other materials provided with the distribution.
746+
* The names of any contributors may not be used to endorse or promote
747+
products derived from this software without specific prior written
748+
permission.
740749

741-
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
750+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
751+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
752+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
753+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY
754+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
755+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
756+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
757+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
758+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
759+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
742760

743-
THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
761+
* * *
744762

745-
The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.
763+
The complete list of contributors can be found at:
764+
- https://github.com/garycourt/uri-js/graphs/contributors
746765

747766

748767
----------------

packages/aws-cdk-lib/assertions/lib/private/resources.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import { Match, Matcher } from '..';
12
import { AbsentMatch } from './matchers/absent';
23
import { formatAllMismatches, matchSection, formatSectionMatchFailure } from './section';
34
import { Resource, Template } from './template';
4-
import { Match, Matcher } from '..';
55

66
export function findResources(template: Template, type: string, props: any = {}): { [key: string]: { [key: string]: any } } {
77
const section = template.Resources ?? {};

packages/aws-cdk-lib/aws-apigatewayv2-authorizers/test/websocket/iam.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { WebSocketLambdaIntegration } from './../../../aws-apigatewayv2-integrations/lib/websocket/lambda';
2-
import { WebSocketIamAuthorizer } from './../../lib/websocket/iam';
31
import { Template } from '../../../assertions';
42
import { WebSocketApi } from '../../../aws-apigatewayv2';
53
import { Code, Function } from '../../../aws-lambda';
64
import * as lambda from '../../../aws-lambda';
75
import { Stack } from '../../../core';
6+
import { WebSocketLambdaIntegration } from './../../../aws-apigatewayv2-integrations/lib/websocket/lambda';
7+
import { WebSocketIamAuthorizer } from './../../lib/websocket/iam';
88

99
describe('WebSocketLambdaAuthorizer', () => {
1010
test('default', () => {

packages/aws-cdk-lib/aws-apigatewayv2-authorizers/test/websocket/lambda.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { WebSocketLambdaIntegration } from './../../../aws-apigatewayv2-integrations/lib/websocket/lambda';
2-
import { WebSocketLambdaAuthorizer } from './../../lib/websocket/lambda';
31
import { Template } from '../../../assertions';
42
import { WebSocketApi } from '../../../aws-apigatewayv2';
53
import { Code, Function } from '../../../aws-lambda';
64
import * as lambda from '../../../aws-lambda';
75
import { Stack } from '../../../core';
6+
import { WebSocketLambdaIntegration } from './../../../aws-apigatewayv2-integrations/lib/websocket/lambda';
7+
import { WebSocketLambdaAuthorizer } from './../../lib/websocket/lambda';
88

99
describe('WebSocketLambdaAuthorizer', () => {
1010
test('default', () => {

packages/aws-cdk-lib/aws-apigatewayv2-integrations/test/http/http-proxy.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { HttpUrlIntegration } from './../../lib/http/http-proxy';
21
import { Template } from '../../../assertions';
32
import { HttpApi, HttpIntegration, HttpIntegrationType, HttpMethod, HttpRoute, HttpRouteKey, MappingValue, ParameterMapping, PayloadFormatVersion } from '../../../aws-apigatewayv2';
43
import { Duration, Stack } from '../../../core';
4+
import { HttpUrlIntegration } from './../../lib/http/http-proxy';
55

66
describe('HttpProxyIntegration', () => {
77
test('default', () => {

packages/aws-cdk-lib/aws-apigatewayv2-integrations/test/http/lambda.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { HttpLambdaIntegration } from './../../lib/http/lambda';
21
import { Match, Template } from '../../../assertions';
32
import { HttpApi, HttpRoute, HttpRouteKey, MappingValue, ParameterMapping, PayloadFormatVersion } from '../../../aws-apigatewayv2';
43
import * as lambda from '../../../aws-lambda';
54
import { Code, Function } from '../../../aws-lambda';
65
import { App, Duration, Stack } from '../../../core';
6+
import { HttpLambdaIntegration } from './../../lib/http/lambda';
77

88
describe('LambdaProxyIntegration', () => {
99
test('default', () => {

packages/aws-cdk-lib/aws-apigatewayv2-integrations/test/http/nlb.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { HttpNlbIntegration } from './../../lib/http/nlb';
21
import { Template } from '../../../assertions';
32
import { HttpApi, HttpMethod, HttpRoute, HttpRouteKey, MappingValue, ParameterMapping, VpcLink } from '../../../aws-apigatewayv2';
43
import * as ec2 from '../../../aws-ec2';
54
import * as elbv2 from '../../../aws-elasticloadbalancingv2';
65
import { Duration, Stack } from '../../../core';
6+
import { HttpNlbIntegration } from './../../lib/http/nlb';
77

88
describe('HttpNlbIntegration', () => {
99
test('default', () => {

packages/aws-cdk-lib/aws-apigatewayv2-integrations/test/http/private/integration.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { HttpPrivateIntegration } from './../../../lib/http/private/integration';
21
import { HttpApi, HttpRoute, HttpRouteIntegrationBindOptions, HttpRouteIntegrationConfig, HttpRouteKey } from '../../../../aws-apigatewayv2';
32
import { Stack } from '../../../../core';
3+
import { HttpPrivateIntegration } from './../../../lib/http/private/integration';
44

55
describe('HttpPrivateIntegration', () => {
66
test('throws error if both vpcLink and vpc are not passed', () => {

packages/aws-cdk-lib/aws-apigatewayv2-integrations/test/http/service-discovery.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { HttpServiceDiscoveryIntegration } from './../../lib/http/service-discovery';
21
import { Template } from '../../../assertions';
32
import { HttpApi, HttpMethod, HttpRoute, HttpRouteKey, MappingValue, ParameterMapping, VpcLink } from '../../../aws-apigatewayv2';
43
import * as ec2 from '../../../aws-ec2';
54
import * as servicediscovery from '../../../aws-servicediscovery';
65
import { Stack } from '../../../core';
6+
import { HttpServiceDiscoveryIntegration } from './../../lib/http/service-discovery';
77

88
describe('HttpServiceDiscoveryIntegration', () => {
99
test('default', () => {

packages/aws-cdk-lib/aws-apigatewayv2-integrations/test/websocket/aws.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { WebSocketAwsIntegration } from './../../lib/websocket/aws';
21
import { Template } from '../../../assertions';
32
import { ContentHandling, PassthroughBehavior, WebSocketApi } from '../../../aws-apigatewayv2';
43
import * as iam from '../../../aws-iam';
54
import { Duration, Stack } from '../../../core';
5+
import { WebSocketAwsIntegration } from './../../lib/websocket/aws';
66

77
describe('AwsWebSocketIntegration', () => {
88
test('default', () => {

packages/aws-cdk-lib/aws-apigatewayv2-integrations/test/websocket/lambda.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { WebSocketLambdaIntegration } from './../../lib/websocket/lambda';
21
import { Template } from '../../../assertions';
32
import { ContentHandling, WebSocketApi } from '../../../aws-apigatewayv2';
43
import { Code, Function } from '../../../aws-lambda';
54
import * as lambda from '../../../aws-lambda';
65
import { Duration, Stack } from '../../../core';
6+
import { WebSocketLambdaIntegration } from './../../lib/websocket/lambda';
77

88
describe('LambdaWebSocketIntegration', () => {
99
const IntegrationUri = {

packages/aws-cdk-lib/aws-apigatewayv2-integrations/test/websocket/mock.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { WebSocketMockIntegration } from './../../lib/websocket/mock';
21
import { Template } from '../../../assertions';
32
import { WebSocketApi } from '../../../aws-apigatewayv2';
43
import { Stack } from '../../../core';
4+
import { WebSocketMockIntegration } from './../../lib/websocket/mock';
55

66
describe('MockWebSocketIntegration', () => {
77
test('default', () => {

packages/aws-cdk-lib/aws-cognito/lib/user-pool-idps/amazon.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Construct } from 'constructs';
22
import { UserPoolIdentityProviderProps } from './base';
3-
import { UserPoolIdentityProviderBase } from './private/user-pool-idp-base';
43
import { CfnUserPoolIdentityProvider } from '../cognito.generated';
4+
import { UserPoolIdentityProviderBase } from './private/user-pool-idp-base';
55

66
/**
77
* Properties to initialize UserPoolAmazonIdentityProvider

packages/aws-cdk-lib/aws-cognito/lib/user-pool-idps/apple.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Construct } from 'constructs';
22
import { UserPoolIdentityProviderProps } from './base';
3-
import { UserPoolIdentityProviderBase } from './private/user-pool-idp-base';
43
import { CfnUserPoolIdentityProvider } from '../cognito.generated';
4+
import { UserPoolIdentityProviderBase } from './private/user-pool-idp-base';
55

66
/**
77
* Properties to initialize UserPoolAppleIdentityProvider

packages/aws-cdk-lib/aws-cognito/lib/user-pool-idps/facebook.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Construct } from 'constructs';
22
import { UserPoolIdentityProviderProps } from './base';
3-
import { UserPoolIdentityProviderBase } from './private/user-pool-idp-base';
43
import { CfnUserPoolIdentityProvider } from '../cognito.generated';
4+
import { UserPoolIdentityProviderBase } from './private/user-pool-idp-base';
55

66
/**
77
* Properties to initialize UserPoolFacebookIdentityProvider

packages/aws-cdk-lib/aws-stepfunctions/lib/states/custom-state.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Construct } from 'constructs';
2-
import { State } from './state';
32
import { Chain } from '..';
3+
import { State } from './state';
44
import { Annotations } from '../../../core/';
55
import { CatchProps, IChainable, INextable, RetryProps } from '../types';
66

0 commit comments

Comments
 (0)