@middy/input-output-logger 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 CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <h1>Middy input-output-logger middleware</h1>
2
+ <h1>Middy `input-output-logger` 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>Input output logger middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda</strong></p>
5
5
  <p>
package/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // SPDX-License-Identifier: MIT
3
3
  import type middy from "@middy/core";
4
4
 
5
- interface Options {
5
+ export interface Options {
6
6
  logger?: (message: any) => void;
7
7
  executionContext?: boolean;
8
8
  lambdaContext?: boolean;
package/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  // Copyright 2017 - 2026 will Farrell, Luciano Mammino, and Middy contributors.
2
2
  // SPDX-License-Identifier: MIT
3
+
3
4
  import { Transform } from "node:stream";
4
5
  import { TransformStream } from "node:stream/web";
5
6
  import {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@middy/input-output-logger",
3
- "version": "7.0.3",
3
+ "version": "7.1.1",
4
4
  "description": "Input and output logger middleware for the middy framework",
5
5
  "type": "module",
6
6
  "engines": {
@@ -65,11 +65,12 @@
65
65
  "url": "https://github.com/sponsors/willfarrell"
66
66
  },
67
67
  "dependencies": {
68
- "@middy/util": "7.0.3"
68
+ "@middy/util": "7.1.1"
69
69
  },
70
70
  "devDependencies": {
71
71
  "@datastream/core": "0.0.42",
72
- "@middy/core": "7.0.3",
72
+ "@middy/core": "7.1.1",
73
+ "@types/aws-lambda": "^8.0.0",
73
74
  "@types/node": "^22.0.0"
74
75
  },
75
76
  "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431"