cdk-lambda-subminute 2.0.168 → 2.0.170
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 +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +13 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/alexaforbusiness-2017-11-09.min.json +344 -128
- package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +103 -77
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +55 -39
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +34 -1
- package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +476 -96
- package/node_modules/aws-sdk/apis/ivs-2020-07-14.min.json +52 -47
- package/node_modules/aws-sdk/apis/metadata.json +2 -1
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +118 -81
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +86 -25
- package/node_modules/aws-sdk/clients/alexaforbusiness.d.ts +12 -0
- package/node_modules/aws-sdk/clients/appflow.d.ts +31 -0
- package/node_modules/aws-sdk/clients/athena.d.ts +19 -3
- package/node_modules/aws-sdk/clients/browser_default.d.ts +1 -0
- package/node_modules/aws-sdk/clients/browser_default.js +1 -0
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +90 -54
- package/node_modules/aws-sdk/clients/customerprofiles.d.ts +438 -2
- package/node_modules/aws-sdk/clients/ivs.d.ts +27 -6
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +40 -1
- package/node_modules/aws-sdk/clients/wafv2.d.ts +94 -7
- 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 +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +1565 -531
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +101 -100
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@types/node": "^16",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": "^5",
|
|
45
45
|
"@typescript-eslint/parser": "^5",
|
|
46
|
-
"aws-cdk-lib": "^2.
|
|
46
|
+
"aws-cdk-lib": "^2.82.0",
|
|
47
47
|
"constructs": "^10.0.5",
|
|
48
48
|
"esbuild": "^0.17.19",
|
|
49
49
|
"eslint": "^8",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"jsii-docgen": "^1.8.110",
|
|
58
58
|
"jsii-pacmak": "^1.82.0",
|
|
59
59
|
"npm-check-updates": "^16",
|
|
60
|
-
"projen": "^0.71.
|
|
60
|
+
"projen": "^0.71.82",
|
|
61
61
|
"source-map-support": "^0.5.21",
|
|
62
62
|
"standard-version": "^9",
|
|
63
63
|
"ts-jest": "^27",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"constructs": "^10.0.5"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"aws-cdk-lib": "^2.
|
|
72
|
-
"aws-sdk": "^2.
|
|
71
|
+
"aws-cdk-lib": "^2.82.0",
|
|
72
|
+
"aws-sdk": "^2.1390.0",
|
|
73
73
|
"constructs": "^10.0.5"
|
|
74
74
|
},
|
|
75
75
|
"bundledDependencies": [
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
],
|
|
92
92
|
"main": "lib/index.js",
|
|
93
93
|
"license": "Apache-2.0",
|
|
94
|
-
"version": "2.0.
|
|
94
|
+
"version": "2.0.170",
|
|
95
95
|
"jest": {
|
|
96
96
|
"testMatch": [
|
|
97
97
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|