serverless-kms-alias 2.2.1 → 3.0.1
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/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +1 -1
- package/package.json +17 -17
- package/src/types/ServerlessInstance.ts +3 -3
package/CHANGELOG.md
CHANGED
package/CODE_OF_CONDUCT.md
CHANGED
|
@@ -55,7 +55,7 @@ a project may be further defined and clarified by project maintainers.
|
|
|
55
55
|
## Enforcement
|
|
56
56
|
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at opensource@github.com
|
|
58
|
+
reported by contacting the project team at <opensource@github.com>. All
|
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an incident.
|
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "serverless-kms-alias",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"engines": {
|
|
5
|
-
"node": ">=
|
|
5
|
+
"node": ">= 16"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@aws-sdk/client-kms": "^3.
|
|
8
|
+
"@aws-sdk/client-kms": "^3.370.0"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@types/lodash": "4.14.
|
|
12
|
-
"@types/serverless": "3.12.
|
|
13
|
-
"@typescript-eslint/eslint-plugin": "
|
|
14
|
-
"@typescript-eslint/parser": "
|
|
15
|
-
"eslint": "8.
|
|
11
|
+
"@types/lodash": "4.14.195",
|
|
12
|
+
"@types/serverless": "3.12.13",
|
|
13
|
+
"@typescript-eslint/eslint-plugin": "6.2.0",
|
|
14
|
+
"@typescript-eslint/parser": "6.2.0",
|
|
15
|
+
"eslint": "8.45.0",
|
|
16
16
|
"eslint-config-airbnb-base": "15.0.0",
|
|
17
|
-
"eslint-config-airbnb-typescript": "17.
|
|
17
|
+
"eslint-config-airbnb-typescript": "17.1.0",
|
|
18
18
|
"eslint-config-prettier": "8.8.0",
|
|
19
19
|
"eslint-plugin-import": "2.27.5",
|
|
20
|
-
"eslint-plugin-jsdoc": "
|
|
21
|
-
"eslint-plugin-prettier": "
|
|
20
|
+
"eslint-plugin-jsdoc": "46.4.4",
|
|
21
|
+
"eslint-plugin-prettier": "5.0.0",
|
|
22
22
|
"eslint-plugin-promise": "6.1.1",
|
|
23
23
|
"eslint-plugin-security": "1.7.1",
|
|
24
24
|
"husky": "8.0.3",
|
|
25
|
-
"lint-staged": "13.2.
|
|
26
|
-
"markdownlint-cli": "0.
|
|
25
|
+
"lint-staged": "13.2.3",
|
|
26
|
+
"markdownlint-cli": "0.35.0",
|
|
27
27
|
"npm-run-all": "4.1.5",
|
|
28
28
|
"pinst": "3.0.0",
|
|
29
|
-
"prettier": "
|
|
30
|
-
"prettier-plugin-packagejson": "2.4.
|
|
31
|
-
"typescript": "5.
|
|
29
|
+
"prettier": "3.0.0",
|
|
30
|
+
"prettier-plugin-packagejson": "2.4.5",
|
|
31
|
+
"typescript": "5.1.6"
|
|
32
32
|
},
|
|
33
33
|
"main": "dist/index.js",
|
|
34
34
|
"license": "MIT",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"eslint --fix"
|
|
55
55
|
]
|
|
56
56
|
},
|
|
57
|
-
"repository": "
|
|
57
|
+
"repository": "github:serverless-plugins/serverless-kms-alias"
|
|
58
58
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AwsAuthInputConfig } from '@aws-sdk/middleware-signing/dist-types
|
|
1
|
+
import type { AwsAuthInputConfig } from '@aws-sdk/middleware-signing/dist-types';
|
|
2
2
|
|
|
3
3
|
import type { KmsAliasSettings } from './KmsAliasSettings';
|
|
4
4
|
|
|
@@ -9,8 +9,8 @@ export interface ServerlessInstance {
|
|
|
9
9
|
getRegion(): string;
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
|
-
service
|
|
13
|
-
custom
|
|
12
|
+
service?: {
|
|
13
|
+
custom?: {
|
|
14
14
|
kmsAlias?: KmsAliasSettings;
|
|
15
15
|
};
|
|
16
16
|
};
|