pst-extractor 1.9.0 → 1.10.0

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 (59) hide show
  1. package/dist/ColumnDescriptor.class.d.ts +26 -26
  2. package/dist/ColumnDescriptor.class.js +51 -51
  3. package/dist/DescriptorIndexNode.class.d.ts +25 -26
  4. package/dist/DescriptorIndexNode.class.js +53 -53
  5. package/dist/LZFu.class.d.ts +11 -12
  6. package/dist/LZFu.class.js +95 -95
  7. package/dist/NodeInfo.class.d.ts +33 -33
  8. package/dist/NodeInfo.class.js +52 -52
  9. package/dist/NodeMap.class.d.ts +35 -35
  10. package/dist/NodeMap.class.js +86 -86
  11. package/dist/OffsetIndexItem.class.d.ts +23 -24
  12. package/dist/OffsetIndexItem.class.js +45 -45
  13. package/dist/OutlookProperties.d.ts +275 -275
  14. package/dist/OutlookProperties.js +281 -281
  15. package/dist/PSTActivity.class.d.ts +103 -103
  16. package/dist/PSTActivity.class.js +144 -144
  17. package/dist/PSTAppointment.class.d.ts +270 -271
  18. package/dist/PSTAppointment.class.js +376 -376
  19. package/dist/PSTAttachment.class.d.ts +172 -172
  20. package/dist/PSTAttachment.class.js +317 -317
  21. package/dist/PSTContact.class.d.ts +884 -884
  22. package/dist/PSTContact.class.js +1227 -1227
  23. package/dist/PSTDescriptorItem.class.d.ts +45 -46
  24. package/dist/PSTDescriptorItem.class.js +99 -99
  25. package/dist/PSTFile.class.d.ts +215 -216
  26. package/dist/PSTFile.class.js +818 -818
  27. package/dist/PSTFolder.class.d.ts +129 -129
  28. package/dist/PSTFolder.class.js +318 -310
  29. package/dist/PSTMessage.class.d.ts +788 -789
  30. package/dist/PSTMessage.class.js +1321 -1321
  31. package/dist/PSTMessageStore.class.d.ts +13 -13
  32. package/dist/PSTMessageStore.class.js +17 -17
  33. package/dist/PSTNodeInputStream.class.d.ts +122 -123
  34. package/dist/PSTNodeInputStream.class.js +514 -514
  35. package/dist/PSTObject.class.d.ts +133 -134
  36. package/dist/PSTObject.class.js +326 -326
  37. package/dist/PSTRecipient.class.d.ts +65 -65
  38. package/dist/PSTRecipient.class.js +103 -103
  39. package/dist/PSTTable.class.d.ts +52 -52
  40. package/dist/PSTTable.class.js +175 -175
  41. package/dist/PSTTable7C.class.d.ts +45 -45
  42. package/dist/PSTTable7C.class.js +281 -281
  43. package/dist/PSTTableBC.class.d.ts +31 -31
  44. package/dist/PSTTableBC.class.js +111 -111
  45. package/dist/PSTTableItem.class.d.ts +47 -48
  46. package/dist/PSTTableItem.class.js +124 -124
  47. package/dist/PSTTask.class.d.ts +146 -146
  48. package/dist/PSTTask.class.js +205 -205
  49. package/dist/PSTUtil.class.d.ts +134 -135
  50. package/dist/PSTUtil.class.js +795 -795
  51. package/dist/RecurrencePattern.class.d.ts +49 -50
  52. package/dist/RecurrencePattern.class.js +120 -120
  53. package/dist/index.d.ts +6 -6
  54. package/dist/index.js +15 -15
  55. package/example/package.json +6 -6
  56. package/example/yarn.lock +95 -44
  57. package/junit.xml +68 -68
  58. package/package.json +26 -26
  59. package/readme.md +1 -3
@@ -1,146 +1,146 @@
1
- import { DescriptorIndexNode } from './DescriptorIndexNode.class';
2
- import { PSTDescriptorItem } from './PSTDescriptorItem.class';
3
- import { PSTMessage } from './PSTMessage.class';
4
- import { PSTTableBC } from './PSTTableBC.class';
5
- import { PSTFile } from './PSTFile.class';
6
- import { RecurrencePattern } from './RecurrencePattern.class';
7
- export declare class PSTTask extends PSTMessage {
8
- /**
9
- * Creates an instance of PSTTask.
10
- * @param {PSTFile} pstFile
11
- * @param {DescriptorIndexNode} descriptorIndexNode
12
- * @param {PSTTableBC} [table]
13
- * @param {Map<number, PSTDescriptorItem>} [localDescriptorItems]
14
- * @memberof PSTTask
15
- */
16
- constructor(pstFile: PSTFile, descriptorIndexNode: DescriptorIndexNode, table?: PSTTableBC, localDescriptorItems?: Map<number, PSTDescriptorItem>);
17
- /**
18
- * Specifies the status of the user's progress on the task.
19
- * https://msdn.microsoft.com/en-us/library/office/cc842120.aspx
20
- * @readonly
21
- * @type {number}
22
- * @memberof PSTTask
23
- */
24
- get taskStatus(): number;
25
- /**
26
- * Indicates the progress the user has made on a task.
27
- * https://msdn.microsoft.com/en-us/library/office/cc839932.aspx
28
- * @readonly
29
- * @type {number}
30
- * @memberof PSTTask
31
- */
32
- get percentComplete(): number;
33
- /**
34
- * Specifies the date when the user completes the task.
35
- * https://msdn.microsoft.com/en-us/library/office/cc815753.aspx
36
- * @readonly
37
- * @type {Date}
38
- * @memberof PSTTask
39
- */
40
- get taskDateCompleted(): Date | null;
41
- /**
42
- * Indicates the number of minutes that the user performed a task.
43
- * https://msdn.microsoft.com/en-us/library/office/cc842253.aspx
44
- * @readonly
45
- * @type {number}
46
- * @memberof PSTTask
47
- */
48
- get taskActualEffort(): number;
49
- /**
50
- * Indicates the amount of time, in minutes, that the user expects to perform a task.
51
- * https://msdn.microsoft.com/en-us/library/office/cc842485.aspx
52
- * @readonly
53
- * @type {number}
54
- * @memberof PSTTask
55
- */
56
- get taskEstimatedEffort(): number;
57
- /**
58
- * Indicates which copy is the latest update of a task.
59
- * https://msdn.microsoft.com/en-us/library/office/cc815510.aspx
60
- * @readonly
61
- * @type {number}
62
- * @memberof PSTTask
63
- */
64
- get taskVersion(): number;
65
- /**
66
- * Indicates the task is complete.
67
- * https://msdn.microsoft.com/en-us/library/office/cc839514.aspx
68
- * @readonly
69
- * @type {boolean}
70
- * @memberof PSTTask
71
- */
72
- get isTaskComplete(): boolean;
73
- /**
74
- * Contains the name of the task owner.
75
- * https://msdn.microsoft.com/en-us/library/office/cc842363.aspx
76
- * @readonly
77
- * @type {string}
78
- * @memberof PSTTask
79
- */
80
- get taskOwner(): string;
81
- /**
82
- * Names the user who was last assigned the task.
83
- * https://msdn.microsoft.com/en-us/library/office/cc815865.aspx
84
- * @readonly
85
- * @type {string}
86
- * @memberof PSTTask
87
- */
88
- get taskAssigner(): string;
89
- /**
90
- * Names the most recent user who was the task owner.
91
- * https://msdn.microsoft.com/en-us/library/office/cc842278.aspx
92
- * @readonly
93
- * @type {string}
94
- * @memberof PSTTask
95
- */
96
- get taskLastUser(): string;
97
- /**
98
- * Provides an aid to custom sorting tasks.
99
- * https://msdn.microsoft.com/en-us/library/office/cc765654.aspx
100
- * @readonly
101
- * @type {number}
102
- * @memberof PSTTask
103
- */
104
- get taskOrdinal(): number;
105
- /**
106
- * Indicates whether the task includes a recurrence pattern.
107
- * https://msdn.microsoft.com/en-us/library/office/cc765875.aspx
108
- * @type {boolean}
109
- * @memberof PSTTask
110
- */
111
- get isTaskRecurring(): boolean;
112
- /**
113
- * https://docs.microsoft.com/en-us/office/client-developer/outlook/mapi/pidlidtaskrecurrence-canonical-property
114
- * @type {RecurrencePattern}
115
- * @memberof PSTTask
116
- */
117
- get taskRecurrencePattern(): RecurrencePattern | null;
118
- /**
119
- * https://docs.microsoft.com/en-us/office/client-developer/outlook/mapi/pidlidtaskdeadoccurrence-canonical-property
120
- * @type {boolean}
121
- * @memberof PSTTask
122
- */
123
- get taskDeadOccurrence(): boolean;
124
- /**
125
- * Indicates the role of the current user relative to the task.
126
- * https://msdn.microsoft.com/en-us/library/office/cc842113.aspx
127
- * @readonly
128
- * @type {number}
129
- * @memberof PSTTask
130
- */
131
- get taskOwnership(): number;
132
- /**
133
- * Indicates the acceptance state of the task.
134
- * https://msdn.microsoft.com/en-us/library/office/cc839689.aspx
135
- * @readonly
136
- * @type {number}
137
- * @memberof PSTTask
138
- */
139
- get acceptanceState(): number;
140
- /**
141
- * JSON stringify the object properties.
142
- * @returns {string}
143
- * @memberof PSTTask
144
- */
145
- toJSON(): any;
146
- }
1
+ import { DescriptorIndexNode } from './DescriptorIndexNode.class';
2
+ import { PSTDescriptorItem } from './PSTDescriptorItem.class';
3
+ import { PSTMessage } from './PSTMessage.class';
4
+ import { PSTTableBC } from './PSTTableBC.class';
5
+ import { PSTFile } from './PSTFile.class';
6
+ import { RecurrencePattern } from './RecurrencePattern.class';
7
+ export declare class PSTTask extends PSTMessage {
8
+ /**
9
+ * Creates an instance of PSTTask.
10
+ * @param {PSTFile} pstFile
11
+ * @param {DescriptorIndexNode} descriptorIndexNode
12
+ * @param {PSTTableBC} [table]
13
+ * @param {Map<number, PSTDescriptorItem>} [localDescriptorItems]
14
+ * @memberof PSTTask
15
+ */
16
+ constructor(pstFile: PSTFile, descriptorIndexNode: DescriptorIndexNode, table?: PSTTableBC, localDescriptorItems?: Map<number, PSTDescriptorItem>);
17
+ /**
18
+ * Specifies the status of the user's progress on the task.
19
+ * https://msdn.microsoft.com/en-us/library/office/cc842120.aspx
20
+ * @readonly
21
+ * @type {number}
22
+ * @memberof PSTTask
23
+ */
24
+ get taskStatus(): number;
25
+ /**
26
+ * Indicates the progress the user has made on a task.
27
+ * https://msdn.microsoft.com/en-us/library/office/cc839932.aspx
28
+ * @readonly
29
+ * @type {number}
30
+ * @memberof PSTTask
31
+ */
32
+ get percentComplete(): number;
33
+ /**
34
+ * Specifies the date when the user completes the task.
35
+ * https://msdn.microsoft.com/en-us/library/office/cc815753.aspx
36
+ * @readonly
37
+ * @type {Date}
38
+ * @memberof PSTTask
39
+ */
40
+ get taskDateCompleted(): Date | null;
41
+ /**
42
+ * Indicates the number of minutes that the user performed a task.
43
+ * https://msdn.microsoft.com/en-us/library/office/cc842253.aspx
44
+ * @readonly
45
+ * @type {number}
46
+ * @memberof PSTTask
47
+ */
48
+ get taskActualEffort(): number;
49
+ /**
50
+ * Indicates the amount of time, in minutes, that the user expects to perform a task.
51
+ * https://msdn.microsoft.com/en-us/library/office/cc842485.aspx
52
+ * @readonly
53
+ * @type {number}
54
+ * @memberof PSTTask
55
+ */
56
+ get taskEstimatedEffort(): number;
57
+ /**
58
+ * Indicates which copy is the latest update of a task.
59
+ * https://msdn.microsoft.com/en-us/library/office/cc815510.aspx
60
+ * @readonly
61
+ * @type {number}
62
+ * @memberof PSTTask
63
+ */
64
+ get taskVersion(): number;
65
+ /**
66
+ * Indicates the task is complete.
67
+ * https://msdn.microsoft.com/en-us/library/office/cc839514.aspx
68
+ * @readonly
69
+ * @type {boolean}
70
+ * @memberof PSTTask
71
+ */
72
+ get isTaskComplete(): boolean;
73
+ /**
74
+ * Contains the name of the task owner.
75
+ * https://msdn.microsoft.com/en-us/library/office/cc842363.aspx
76
+ * @readonly
77
+ * @type {string}
78
+ * @memberof PSTTask
79
+ */
80
+ get taskOwner(): string;
81
+ /**
82
+ * Names the user who was last assigned the task.
83
+ * https://msdn.microsoft.com/en-us/library/office/cc815865.aspx
84
+ * @readonly
85
+ * @type {string}
86
+ * @memberof PSTTask
87
+ */
88
+ get taskAssigner(): string;
89
+ /**
90
+ * Names the most recent user who was the task owner.
91
+ * https://msdn.microsoft.com/en-us/library/office/cc842278.aspx
92
+ * @readonly
93
+ * @type {string}
94
+ * @memberof PSTTask
95
+ */
96
+ get taskLastUser(): string;
97
+ /**
98
+ * Provides an aid to custom sorting tasks.
99
+ * https://msdn.microsoft.com/en-us/library/office/cc765654.aspx
100
+ * @readonly
101
+ * @type {number}
102
+ * @memberof PSTTask
103
+ */
104
+ get taskOrdinal(): number;
105
+ /**
106
+ * Indicates whether the task includes a recurrence pattern.
107
+ * https://msdn.microsoft.com/en-us/library/office/cc765875.aspx
108
+ * @type {boolean}
109
+ * @memberof PSTTask
110
+ */
111
+ get isTaskRecurring(): boolean;
112
+ /**
113
+ * https://docs.microsoft.com/en-us/office/client-developer/outlook/mapi/pidlidtaskrecurrence-canonical-property
114
+ * @type {RecurrencePattern}
115
+ * @memberof PSTTask
116
+ */
117
+ get taskRecurrencePattern(): RecurrencePattern | null;
118
+ /**
119
+ * https://docs.microsoft.com/en-us/office/client-developer/outlook/mapi/pidlidtaskdeadoccurrence-canonical-property
120
+ * @type {boolean}
121
+ * @memberof PSTTask
122
+ */
123
+ get taskDeadOccurrence(): boolean;
124
+ /**
125
+ * Indicates the role of the current user relative to the task.
126
+ * https://msdn.microsoft.com/en-us/library/office/cc842113.aspx
127
+ * @readonly
128
+ * @type {number}
129
+ * @memberof PSTTask
130
+ */
131
+ get taskOwnership(): number;
132
+ /**
133
+ * Indicates the acceptance state of the task.
134
+ * https://msdn.microsoft.com/en-us/library/office/cc839689.aspx
135
+ * @readonly
136
+ * @type {number}
137
+ * @memberof PSTTask
138
+ */
139
+ get acceptanceState(): number;
140
+ /**
141
+ * JSON stringify the object properties.
142
+ * @returns {string}
143
+ * @memberof PSTTask
144
+ */
145
+ toJSON(): any;
146
+ }