undici-types 6.23.0 → 6.24.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 (2) hide show
  1. package/errors.d.ts +6 -0
  2. package/package.json +1 -1
package/errors.d.ts CHANGED
@@ -146,4 +146,10 @@ declare namespace Errors {
146
146
  name: 'SecureProxyConnectionError';
147
147
  code: 'UND_ERR_PRX_TLS';
148
148
  }
149
+
150
+ /** WebSocket decompressed message exceeded maximum size. */
151
+ export class MessageSizeExceededError extends UndiciError {
152
+ name: 'MessageSizeExceededError'
153
+ code: 'UND_ERR_WS_MESSAGE_SIZE_EXCEEDED'
154
+ }
149
155
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undici-types",
3
- "version": "6.23.0",
3
+ "version": "6.24.1",
4
4
  "description": "A stand-alone types package for Undici",
5
5
  "homepage": "https://undici.nodejs.org",
6
6
  "bugs": {