@middy/core 7.1.6 → 7.1.8
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 +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -49,4 +49,4 @@ Everyone is very welcome to contribute to this repository. Feel free to [raise i
|
|
|
49
49
|
|
|
50
50
|
## License
|
|
51
51
|
|
|
52
|
-
Licensed under [MIT License](LICENSE). Copyright (c) 2017-2026 [will Farrell](https://github.com/willfarrell), [Luciano Mammino](https://github.com/lmammino), and [Middy contributors](https://github.com/middyjs/middy/graphs/contributors).
|
|
52
|
+
Licensed under [MIT License](https://github.com/middyjs/middy/blob/main/LICENSE). Copyright (c) 2017-2026 [will Farrell](https://github.com/willfarrell), [Luciano Mammino](https://github.com/lmammino), and [Middy contributors](https://github.com/middyjs/middy/graphs/contributors).
|
package/index.d.ts
CHANGED
|
@@ -149,14 +149,14 @@ declare type UseFn<
|
|
|
149
149
|
TInternal extends Record<string, unknown> = {},
|
|
150
150
|
> = <
|
|
151
151
|
TMiddlewares extends
|
|
152
|
-
| MiddlewareObj<any, any,
|
|
153
|
-
| MiddlewareObj<any, any,
|
|
152
|
+
| MiddlewareObj<any, any, any, any, any>
|
|
153
|
+
| MiddlewareObj<any, any, any, any, any>[],
|
|
154
154
|
>(
|
|
155
155
|
middlewares: TMiddlewares,
|
|
156
156
|
) => TMiddlewares extends MiddlewareObj<
|
|
157
157
|
infer TMiddlewareEvent,
|
|
158
158
|
any,
|
|
159
|
-
|
|
159
|
+
any,
|
|
160
160
|
infer TMiddlewareContext,
|
|
161
161
|
infer TMiddlewareInternal
|
|
162
162
|
>
|
|
@@ -170,7 +170,7 @@ declare type UseFn<
|
|
|
170
170
|
: TMiddlewares extends MiddlewareObj<
|
|
171
171
|
infer TMiddlewareEvent,
|
|
172
172
|
any,
|
|
173
|
-
|
|
173
|
+
any,
|
|
174
174
|
infer TMiddlewareContext,
|
|
175
175
|
infer TMiddlewareInternal
|
|
176
176
|
>[]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@middy/core",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.8",
|
|
4
4
|
"description": "🛵 The stylish Node.js middleware engine for AWS Lambda (core package)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"url": "https://github.com/sponsors/willfarrell"
|
|
98
98
|
},
|
|
99
99
|
"dependencies": {
|
|
100
|
-
"@middy/util": "7.1.
|
|
100
|
+
"@middy/util": "7.1.8"
|
|
101
101
|
},
|
|
102
102
|
"peerDependencies": {
|
|
103
103
|
"@aws/durable-execution-sdk-js": "^1.0.0"
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"devDependencies": {
|
|
111
111
|
"@aws/durable-execution-sdk-js": "^1.0.0",
|
|
112
112
|
"@aws/durable-execution-sdk-js-testing": "^1.0.0",
|
|
113
|
-
"@datastream/core": "0.
|
|
113
|
+
"@datastream/core": "0.1.4",
|
|
114
114
|
"@types/aws-lambda": "^8.0.0",
|
|
115
115
|
"@types/node": "^22.0.0"
|
|
116
116
|
}
|