@middy/http-partial-response 7.1.0 → 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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +1 -1
  3. package/package.json +5 -4
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <h1>Middy http-partial-response middleware</h1>
2
+ <h1>Middy `http-partial-response` 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>HTTP partial response 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
  filteringKeyName?: string;
7
7
  }
8
8
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@middy/http-partial-response",
3
- "version": "7.1.0",
4
- "description": "Http partial response middleware for the middy framework",
3
+ "version": "7.1.1",
4
+ "description": "HTTP partial response middleware for the middy framework",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": ">=22"
@@ -66,11 +66,12 @@
66
66
  "url": "https://github.com/sponsors/willfarrell"
67
67
  },
68
68
  "dependencies": {
69
- "@middy/util": "7.1.0",
69
+ "@middy/util": "7.1.1",
70
70
  "json-mask": "2.0.0"
71
71
  },
72
72
  "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431",
73
73
  "devDependencies": {
74
- "@middy/core": "7.1.0"
74
+ "@middy/core": "7.1.1",
75
+ "@types/aws-lambda": "^8.0.0"
75
76
  }
76
77
  }