eml-parser-qaap 1.1.16 → 1.1.17

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.
@@ -59,6 +59,7 @@ export interface EmlHeaders extends KeyValue {
59
59
  To?: string;
60
60
  Cc?: string;
61
61
  CC?: string;
62
+ Bcc?: string;
62
63
  'Content-Disposition'?: string | null;
63
64
  'Content-Type'?: string | null;
64
65
  'Content-Transfer-Encoding'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eml-parser-qaap",
3
- "version": "1.1.16",
3
+ "version": "1.1.17",
4
4
  "description": "format EML file in browser env",
5
5
  "main": "./lib/bundle.umd.js",
6
6
  "module": "./lib/bundle.esm.js",
package/src/interface.ts CHANGED
@@ -66,6 +66,7 @@ export interface EmlHeaders extends KeyValue {
66
66
  To?: string;
67
67
  Cc?: string;
68
68
  CC?: string;
69
+ Bcc?: string;
69
70
  'Content-Disposition'?: string | null;
70
71
  'Content-Type'?: string | null;
71
72
  'Content-Transfer-Encoding'?: string;