cdk-docker-image-deployment 0.0.30 → 0.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +13 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/accessanalyzer-2019-11-01.min.json +339 -339
- package/node_modules/aws-sdk/apis/connectcases-2022-10-03.examples.json +5 -0
- package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +1536 -0
- package/node_modules/aws-sdk/apis/connectcases-2022-10-03.paginators.json +50 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +318 -303
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/snowball-2016-06-30.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/workmail-2017-10-01.min.json +309 -72
- package/node_modules/aws-sdk/apis/workmail-2017-10-01.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/accessanalyzer.d.ts +297 -297
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/connect.d.ts +1 -1
- package/node_modules/aws-sdk/clients/connectcases.d.ts +1466 -0
- package/node_modules/aws-sdk/clients/connectcases.js +18 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +23 -2
- package/node_modules/aws-sdk/clients/ecs.d.ts +4 -4
- package/node_modules/aws-sdk/clients/s3control.d.ts +2 -2
- package/node_modules/aws-sdk/clients/snowball.d.ts +13 -13
- package/node_modules/aws-sdk/clients/workmail.d.ts +436 -103
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +46 -9
- package/node_modules/aws-sdk/dist/aws-sdk.js +324 -306
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +64 -64
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -318,6 +318,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
|
318
318
|
controltower?: AWS.ControlTower.Types.ClientConfiguration;
|
|
319
319
|
iotfleetwise?: AWS.IoTFleetWise.Types.ClientConfiguration;
|
|
320
320
|
migrationhuborchestrator?: AWS.MigrationHubOrchestrator.Types.ClientConfiguration;
|
|
321
|
+
connectcases?: AWS.ConnectCases.Types.ClientConfiguration;
|
|
321
322
|
}
|
|
322
323
|
export interface ConfigurationServiceApiVersions {
|
|
323
324
|
acm?: AWS.ACM.Types.apiVersion;
|
|
@@ -638,4 +639,5 @@ export interface ConfigurationServiceApiVersions {
|
|
|
638
639
|
controltower?: AWS.ControlTower.Types.apiVersion;
|
|
639
640
|
iotfleetwise?: AWS.IoTFleetWise.Types.apiVersion;
|
|
640
641
|
migrationhuborchestrator?: AWS.MigrationHubOrchestrator.Types.apiVersion;
|
|
642
|
+
connectcases?: AWS.ConnectCases.Types.apiVersion;
|
|
641
643
|
}
|
package/package.json
CHANGED
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"jest-junit": "^13",
|
|
54
54
|
"jsii": "^1.69.0",
|
|
55
55
|
"jsii-diff": "^1.69.0",
|
|
56
|
-
"jsii-docgen": "^7.0.
|
|
56
|
+
"jsii-docgen": "^7.0.103",
|
|
57
57
|
"jsii-pacmak": "^1.69.0",
|
|
58
58
|
"json-schema": "^0.4.0",
|
|
59
59
|
"npm-check-updates": "^15",
|
|
60
|
-
"projen": "^0.63.
|
|
60
|
+
"projen": "^0.63.5",
|
|
61
61
|
"standard-version": "^9",
|
|
62
62
|
"ts-jest": "^27",
|
|
63
63
|
"typescript": "^4.8.4"
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@types/aws-lambda": "^8.10.106",
|
|
71
|
-
"aws-sdk": "^2.
|
|
71
|
+
"aws-sdk": "^2.1229.0"
|
|
72
72
|
},
|
|
73
73
|
"bundledDependencies": [
|
|
74
74
|
"@types/aws-lambda",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"main": "lib/index.js",
|
|
81
81
|
"license": "Apache-2.0",
|
|
82
82
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
83
|
-
"version": "0.0.
|
|
83
|
+
"version": "0.0.32",
|
|
84
84
|
"jest": {
|
|
85
85
|
"testMatch": [
|
|
86
86
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|