@gradientedge/cdk-utils 8.21.0 → 8.23.0

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.
@@ -24,7 +24,7 @@
24
24
  "inflight@^1.0.4": "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9",
25
25
  "inherits@2": "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c",
26
26
  "minimatch@^3.1.1": "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b",
27
- "mkdirp@^2.1.3": "https://registry.yarnpkg.com/mkdirp/-/mkdirp-2.1.3.tgz#b083ff37be046fd3d6552468c1f0ff44c1545d1f",
27
+ "mkdirp@^2.1.3": "https://registry.yarnpkg.com/mkdirp/-/mkdirp-2.1.5.tgz#78d7eaf15e069ba7b6b47d76dd94cfadf7a4062f",
28
28
  "once@^1.3.0": "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1",
29
29
  "path-is-absolute@^1.0.0": "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f",
30
30
  "rimraf@^3.0.2": "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a",
@@ -333,6 +333,7 @@ class IamManager {
333
333
  'dynamodb:Scan',
334
334
  'dynamodb:Query',
335
335
  'dynamodb:GetRecords',
336
+ 'dynamodb:BatchGetItem',
336
337
  ],
337
338
  resources: resourceArns ?? ['*'],
338
339
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "8.21.0",
3
+ "version": "8.23.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -48,11 +48,11 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@types/lodash": "^4.14.191",
51
- "@types/node": "^18.14.0",
51
+ "@types/node": "^18.14.6",
52
52
  "app-root-path": "^3.1.0",
53
- "aws-cdk-lib": "^2.66.0",
54
- "aws-sdk": "^2.1318.0",
55
- "constructs": "^10.1.257",
53
+ "aws-cdk-lib": "^2.67.0",
54
+ "aws-sdk": "^2.1328.0",
55
+ "constructs": "^10.1.269",
56
56
  "lodash": "^4.17.21",
57
57
  "moment": "^2.29.4",
58
58
  "nconf": "^0.12.0",
@@ -62,15 +62,15 @@
62
62
  "devDependencies": {
63
63
  "@babel/plugin-proposal-class-properties": "^7.18.6",
64
64
  "@types/jest": "^29.4.0",
65
- "@typescript-eslint/eslint-plugin": "^5.53.0",
66
- "@typescript-eslint/parser": "^5.53.0",
65
+ "@typescript-eslint/eslint-plugin": "^5.54.0",
66
+ "@typescript-eslint/parser": "^5.54.0",
67
67
  "aws-cdk": "*",
68
68
  "babel-eslint": "^10.1.0",
69
69
  "better-docs": "^2.7.2",
70
70
  "codecov": "^3.8.3",
71
71
  "commitizen": "^4.3.0",
72
72
  "dotenv": "^16.0.3",
73
- "eslint": "^8.34.0",
73
+ "eslint": "^8.35.0",
74
74
  "eslint-config-prettier": "^8.6.0",
75
75
  "eslint-plugin-import": "^2.27.5",
76
76
  "husky": "^8.0.3",
@@ -83,7 +83,7 @@
83
83
  "lerna": "^6.5.1",
84
84
  "prettier": "^2.8.4",
85
85
  "prettier-plugin-organize-imports": "^3.2.2",
86
- "rimraf": "^4.1.2",
86
+ "rimraf": "^4.3.0",
87
87
  "semantic-release": "^19.0.5",
88
88
  "taffydb": "^2.7.3",
89
89
  "ts-jest": "^29.0.5",
@@ -338,6 +338,7 @@ export class IamManager {
338
338
  'dynamodb:Scan',
339
339
  'dynamodb:Query',
340
340
  'dynamodb:GetRecords',
341
+ 'dynamodb:BatchGetItem',
341
342
  ],
342
343
  resources: resourceArns ?? ['*'],
343
344
  })