@hiraokahypertools/pst-extractor 0.1.0-alpha.21 → 0.1.0-alpha.22

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.
@@ -2,5 +2,6 @@ import { PSTMessage } from "./PSTMessage.class";
2
2
  export interface FasterEmail {
3
3
  displayName: string;
4
4
  messageClass: string;
5
+ primaryNodeId: number;
5
6
  getMessage: () => Promise<PSTMessage>;
6
7
  }
@@ -238,6 +238,7 @@ class PSTFolder extends PSTObject_class_1.PSTObject {
238
238
  list.push({
239
239
  displayName: getValueOfAny([OutlookProperties_1.OutlookProperties.PR_SUBJECT, OutlookProperties_1.OutlookProperties.PR_DISPLAY_NAME]),
240
240
  messageClass: getValueOfAny([OutlookProperties_1.OutlookProperties.PR_MESSAGE_CLASS]),
241
+ primaryNodeId: node.nodeId,
241
242
  getMessage() {
242
243
  return __awaiter(this, void 0, void 0, function* () {
243
244
  return yield rootProvider.getItemOf(node, node.getSubNode());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiraokahypertools/pst-extractor",
3
- "version": "0.1.0-alpha.21",
3
+ "version": "0.1.0-alpha.22",
4
4
  "description": "Extract objects from MS Outlook/Exchange PST files",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",