postal-mime
Advanced tools
Comparing version 2.2.5 to 2.2.6
# Changelog | ||
## [2.2.6](https://github.com/postalsys/postal-mime/compare/v2.2.5...v2.2.6) (2024-07-09) | ||
### Bug Fixes | ||
* **types:** Updated type for attachment.content to ArrayBuffer ([191524f](https://github.com/postalsys/postal-mime/commit/191524fa32ac550934fb17c074153cf9170622a0)) | ||
## [2.2.5](https://github.com/postalsys/postal-mime/compare/v2.2.4...v2.2.5) (2024-04-11) | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "postal-mime", | ||
"version": "2.2.5", | ||
"version": "2.2.6", | ||
"description": "Email parser for browser environments", | ||
@@ -30,3 +30,3 @@ "main": "./src/postal-mime.js", | ||
"devDependencies": { | ||
"@types/node": "20.12.7", | ||
"@types/node": "20.14.10", | ||
"cross-blob": "3.0.2", | ||
@@ -36,4 +36,4 @@ "cross-env": "7.0.3", | ||
"eslint-cli": "1.1.1", | ||
"iframe-resizer": "4.3.9" | ||
"iframe-resizer": "4.4.4" | ||
} | ||
} |
@@ -19,3 +19,3 @@ export type RawEmail = string | ArrayBuffer | Uint8Array | Blob | Buffer | ReadableStream; | ||
method?: string; | ||
content: Uint8Array; | ||
content: ArrayBuffer; | ||
}; | ||
@@ -22,0 +22,0 @@ |
134329