@middy/core 7.3.2 → 7.3.3
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/index.d.ts +6 -5
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
// Copyright 2017 - 2026 will Farrell, Luciano Mammino, and Middy contributors.
|
|
2
2
|
// SPDX-License-Identifier: MIT
|
|
3
|
+
|
|
4
|
+
import type { DurableContext as LambdaContextDurable } from "@aws/durable-execution-sdk-js";
|
|
3
5
|
import type {
|
|
4
6
|
Context as LambdaContext,
|
|
5
7
|
Handler as LambdaHandler,
|
|
6
8
|
} from "aws-lambda";
|
|
7
|
-
import type { DurableContext as LambdaContextDurable } from "@aws/durable-execution-sdk-js";
|
|
8
9
|
|
|
9
10
|
declare type PluginHook = () => void;
|
|
10
11
|
declare type PluginHookWithMiddlewareName = (middlewareName: string) => void;
|
|
@@ -221,13 +222,13 @@ declare function middy<
|
|
|
221
222
|
|
|
222
223
|
declare namespace middy {
|
|
223
224
|
export type {
|
|
224
|
-
Request,
|
|
225
|
-
PluginHook,
|
|
226
|
-
PluginHookWithMiddlewareName,
|
|
227
|
-
PluginObject,
|
|
228
225
|
MiddlewareFn,
|
|
229
226
|
MiddlewareObj,
|
|
230
227
|
MiddyfiedHandler,
|
|
228
|
+
PluginHook,
|
|
229
|
+
PluginHookWithMiddlewareName,
|
|
230
|
+
PluginObject,
|
|
231
|
+
Request,
|
|
231
232
|
};
|
|
232
233
|
}
|
|
233
234
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@middy/core",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.3",
|
|
4
4
|
"description": "🛵 The stylish Node.js middleware engine for AWS Lambda (core package)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"url": "https://github.com/sponsors/willfarrell"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@middy/util": "7.3.
|
|
88
|
+
"@middy/util": "7.3.3"
|
|
89
89
|
},
|
|
90
90
|
"peerDependencies": {
|
|
91
91
|
"@aws/durable-execution-sdk-js": "^1.0.0"
|