@middy/secrets-manager 7.0.3 → 7.1.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/README.md +1 -1
- package/index.d.ts +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<h1>Middy secrets-manager middleware</h1>
|
|
2
|
+
<h1>Middy `secrets-manager` middleware</h1>
|
|
3
3
|
<img alt="Middy logo" src="https://raw.githubusercontent.com/middyjs/middy/main/docs/img/middy-logo.svg"/>
|
|
4
4
|
<p><strong>Secrets Manager middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda</strong></p>
|
|
5
5
|
<p>
|
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import type { Options as MiddyOptions } from "@middy/util";
|
|
|
9
9
|
import type { Context as LambdaContext } from "aws-lambda";
|
|
10
10
|
|
|
11
11
|
export type SecretType<T> = string & { __returnType?: T };
|
|
12
|
-
export declare function
|
|
12
|
+
export declare function secretsManagerParam<T>(path: string): SecretType<T>;
|
|
13
13
|
|
|
14
14
|
interface SecretsManagerOptions<AwsSecretsManagerClient = SecretsManagerClient>
|
|
15
15
|
extends Omit<
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@middy/secrets-manager",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.1.1",
|
|
4
4
|
"description": "Secrets Manager middleware for the middy framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"url": "https://github.com/sponsors/willfarrell"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@middy/util": "7.
|
|
66
|
+
"@middy/util": "7.1.1"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"@aws-sdk/client-secrets-manager": "^3.0.0"
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@aws-sdk/client-secrets-manager": "^3.0.0",
|
|
78
|
-
"@middy/core": "7.
|
|
79
|
-
"@types/aws-lambda": "^8.
|
|
78
|
+
"@middy/core": "7.1.1",
|
|
79
|
+
"@types/aws-lambda": "^8.0.0",
|
|
80
80
|
"aws-xray-sdk": "^3.3.3"
|
|
81
81
|
},
|
|
82
82
|
"gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431"
|