cdk-docker-image-deployment 0.0.171 → 0.0.173
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/chime-sdk-voice-2022-08-03.min.json +3 -0
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +277 -88
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +2 -1
- package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.min.json +639 -104
- package/node_modules/aws-sdk/apis/resiliencehub-2020-04-30.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/rum-2018-05-10.min.json +24 -22
- package/node_modules/aws-sdk/apis/tnb-2008-10-21.examples.json +5 -0
- package/node_modules/aws-sdk/apis/tnb-2008-10-21.min.json +1579 -0
- package/node_modules/aws-sdk/apis/tnb-2008-10-21.paginators.json +34 -0
- 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/chimesdkvoice.d.ts +1 -0
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +17 -17
- package/node_modules/aws-sdk/clients/opensearch.d.ts +223 -5
- package/node_modules/aws-sdk/clients/quicksight.d.ts +4 -0
- package/node_modules/aws-sdk/clients/resiliencehub.d.ts +743 -128
- package/node_modules/aws-sdk/clients/rum.d.ts +25 -11
- package/node_modules/aws-sdk/clients/securityhub.d.ts +85 -85
- package/node_modules/aws-sdk/clients/ssm.d.ts +17 -17
- package/node_modules/aws-sdk/clients/tnb.d.ts +1607 -0
- package/node_modules/aws-sdk/clients/tnb.js +18 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +49 -12
- package/node_modules/aws-sdk/dist/aws-sdk.js +7 -4
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +6 -6
- 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/lib/maintenance_mode_message.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -340,6 +340,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
|
340
340
|
kendraranking?: AWS.KendraRanking.Types.ClientConfiguration;
|
|
341
341
|
cleanrooms?: AWS.CleanRooms.Types.ClientConfiguration;
|
|
342
342
|
cloudtraildata?: AWS.CloudTrailData.Types.ClientConfiguration;
|
|
343
|
+
tnb?: AWS.Tnb.Types.ClientConfiguration;
|
|
343
344
|
}
|
|
344
345
|
export interface ConfigurationServiceApiVersions {
|
|
345
346
|
acm?: AWS.ACM.Types.apiVersion;
|
|
@@ -682,4 +683,5 @@ export interface ConfigurationServiceApiVersions {
|
|
|
682
683
|
kendraranking?: AWS.KendraRanking.Types.apiVersion;
|
|
683
684
|
cleanrooms?: AWS.CleanRooms.Types.apiVersion;
|
|
684
685
|
cloudtraildata?: AWS.CloudTrailData.Types.apiVersion;
|
|
686
|
+
tnb?: AWS.Tnb.Types.apiVersion;
|
|
685
687
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var warning = [
|
|
2
|
-
'
|
|
2
|
+
'We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023.\n',
|
|
3
3
|
'Please migrate your code to use AWS SDK for JavaScript (v3).',
|
|
4
4
|
'For more information, check the migration guide at https://a.co/7PzMCcy'
|
|
5
5
|
].join('\n');
|
package/package.json
CHANGED
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"jest-junit": "^13",
|
|
54
54
|
"jsii": "^1.75.0",
|
|
55
55
|
"jsii-diff": "^1.75.0",
|
|
56
|
-
"jsii-docgen": "^7.1.
|
|
56
|
+
"jsii-docgen": "^7.1.5",
|
|
57
57
|
"jsii-pacmak": "^1.75.0",
|
|
58
58
|
"npm-check-updates": "^16",
|
|
59
|
-
"projen": "^0.67.
|
|
59
|
+
"projen": "^0.67.63",
|
|
60
60
|
"standard-version": "^9",
|
|
61
61
|
"ts-jest": "^27",
|
|
62
62
|
"typescript": "^4.9.5"
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@types/aws-lambda": "^8.10.110",
|
|
70
|
-
"aws-sdk": "^2.
|
|
70
|
+
"aws-sdk": "^2.1321.0"
|
|
71
71
|
},
|
|
72
72
|
"bundledDependencies": [
|
|
73
73
|
"@types/aws-lambda",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"main": "lib/index.js",
|
|
80
80
|
"license": "Apache-2.0",
|
|
81
81
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
82
|
-
"version": "0.0.
|
|
82
|
+
"version": "0.0.173",
|
|
83
83
|
"jest": {
|
|
84
84
|
"testMatch": [
|
|
85
85
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|