@middy/http-content-negotiation 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-content-negotiation middleware</h1>
2
+ <h1>Middy `http-content-negotiation` 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 content negotiation 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
  parseCharsets?: boolean;
7
7
  availableCharsets?: string[];
8
8
  parseEncodings?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@middy/http-content-negotiation",
3
- "version": "7.1.0",
4
- "description": "Http content negotiation middleware for the middy framework",
3
+ "version": "7.1.1",
4
+ "description": "HTTP content negotiation middleware for the middy framework",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": ">=22"
@@ -65,11 +65,12 @@
65
65
  "url": "https://github.com/sponsors/willfarrell"
66
66
  },
67
67
  "dependencies": {
68
- "@middy/util": "7.1.0",
68
+ "@middy/util": "7.1.1",
69
69
  "negotiator": "1.0.0"
70
70
  },
71
71
  "devDependencies": {
72
- "@middy/core": "7.1.0"
72
+ "@middy/core": "7.1.1",
73
+ "@types/aws-lambda": "^8.0.0"
73
74
  },
74
75
  "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431"
75
76
  }