@middy/util 6.4.0 → 6.4.2

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/type-utils.d.ts +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@middy/util",
3
- "version": "6.4.0",
3
+ "version": "6.4.2",
4
4
  "description": "🛵 The stylish Node.js middleware engine for AWS Lambda (util package)",
5
5
  "type": "module",
6
6
  "engines": {
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "devDependencies": {
61
61
  "@aws-sdk/client-ssm": "^3.0.0",
62
- "@middy/core": "6.4.0",
62
+ "@middy/core": "6.4.2",
63
63
  "@types/aws-lambda": "^8.10.76",
64
64
  "@types/node": "^20.0.0",
65
65
  "aws-xray-sdk": "^3.3.3"
package/type-utils.d.ts CHANGED
@@ -30,7 +30,6 @@ type LetterUpper = Uppercase<LetterLower>;
30
30
  type AlphaNumeric = Digit | LetterLower | LetterUpper;
31
31
 
32
32
  type SanitizeKeyPrefixLeadingNumber<T> =
33
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
34
33
  T extends `${infer _ extends Digit}${any}` ? `_${T}` : T;
35
34
 
36
35
  type SanitizeKeyRemoveDisallowedChar<T> =