email-origin-chain 1.0.5 → 1.0.7

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.
package/dist/index.js CHANGED
@@ -100,6 +100,7 @@ async function extractDeepestHybrid(raw, options) {
100
100
  date_raw,
101
101
  date_iso,
102
102
  text: (0, utils_1.cleanText)(text),
103
+ full_body: mimeResult.rawBody,
103
104
  attachments: [...attachments, ...inlineResult.attachments],
104
105
  diagnostics: {
105
106
  ...inlineResult.diagnostics,
package/dist/types.d.ts CHANGED
@@ -32,6 +32,7 @@ export interface ResultObject {
32
32
  date_raw: string | null;
33
33
  date_iso: string | null;
34
34
  text: string | null;
35
+ full_body?: string;
35
36
  attachments: Attachment[];
36
37
  history: HistoryEntry[];
37
38
  diagnostics: Diagnostics;
package/package.json CHANGED
@@ -1,9 +1,17 @@
1
1
  {
2
2
  "name": "email-origin-chain",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Uncover the full audit trail of your email threads. Recursively reconstructs the entire conversation history with instant access to the original sender and true source message.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
7
15
  "files": [
8
16
  "dist",
9
17
  "README.md",