@gradientedge/cdk-utils 8.27.0 → 8.28.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.
@@ -60,7 +60,7 @@ class ApiManager {
60
60
  throw `Api props undefined for ${id}`;
61
61
  const api = new apig.LambdaRestApi(scope, `${id}`, {
62
62
  binaryMediaTypes: props.binaryMediaTypes,
63
- minimumCompressionSize: props.minimumCompressionSize,
63
+ minCompressionSize: props.minCompressionSize,
64
64
  defaultMethodOptions: props.defaultMethodOptions,
65
65
  deploy: props.deploy || true,
66
66
  deployOptions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "8.27.0",
3
+ "version": "8.28.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.15.0",
51
+ "@types/node": "^18.15.3",
52
52
  "app-root-path": "^3.1.0",
53
- "aws-cdk-lib": "^2.68.0",
54
- "aws-sdk": "^2.1332.0",
55
- "constructs": "^10.1.273",
53
+ "aws-cdk-lib": "^2.69.0",
54
+ "aws-sdk": "^2.1337.0",
55
+ "constructs": "^10.1.280",
56
56
  "lodash": "^4.17.21",
57
57
  "moment": "^2.29.4",
58
58
  "nconf": "^0.12.0",
@@ -61,16 +61,16 @@
61
61
  },
62
62
  "devDependencies": {
63
63
  "@babel/plugin-proposal-class-properties": "^7.18.6",
64
- "@types/jest": "^29.4.0",
65
- "@typescript-eslint/eslint-plugin": "^5.54.1",
66
- "@typescript-eslint/parser": "^5.54.1",
64
+ "@types/jest": "^29.5.0",
65
+ "@typescript-eslint/eslint-plugin": "^5.55.0",
66
+ "@typescript-eslint/parser": "^5.55.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.35.0",
73
+ "eslint": "^8.36.0",
74
74
  "eslint-config-prettier": "^8.7.0",
75
75
  "eslint-plugin-import": "^2.27.5",
76
76
  "husky": "^8.0.3",
@@ -88,7 +88,7 @@
88
88
  "taffydb": "^2.7.3",
89
89
  "ts-jest": "^29.0.5",
90
90
  "ts-node": "^10.9.1",
91
- "typescript": "4.9.5"
91
+ "typescript": "5.0.2"
92
92
  },
93
93
  "optionalDependencies": {
94
94
  "@babel/core": "^7.21.00",
@@ -42,7 +42,7 @@ export class ApiManager {
42
42
  if (!props) throw `Api props undefined for ${id}`
43
43
  const api = new apig.LambdaRestApi(scope, `${id}`, {
44
44
  binaryMediaTypes: props.binaryMediaTypes,
45
- minimumCompressionSize: props.minimumCompressionSize,
45
+ minCompressionSize: props.minCompressionSize,
46
46
  defaultMethodOptions: props.defaultMethodOptions,
47
47
  deploy: props.deploy || true,
48
48
  deployOptions: {