pst-extractor 1.9.0 → 1.11.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.
- package/dist/ColumnDescriptor.class.d.ts +26 -26
- package/dist/ColumnDescriptor.class.js +51 -51
- package/dist/DescriptorIndexNode.class.d.ts +25 -26
- package/dist/DescriptorIndexNode.class.js +53 -53
- package/dist/LZFu.class.d.ts +11 -12
- package/dist/LZFu.class.js +95 -95
- package/dist/NodeInfo.class.d.ts +33 -33
- package/dist/NodeInfo.class.js +52 -52
- package/dist/NodeMap.class.d.ts +35 -35
- package/dist/NodeMap.class.js +86 -86
- package/dist/OffsetIndexItem.class.d.ts +23 -24
- package/dist/OffsetIndexItem.class.js +45 -45
- package/dist/OutlookProperties.d.ts +275 -275
- package/dist/OutlookProperties.js +281 -281
- package/dist/PSTActivity.class.d.ts +103 -103
- package/dist/PSTActivity.class.js +144 -144
- package/dist/PSTAppointment.class.d.ts +270 -271
- package/dist/PSTAppointment.class.js +376 -376
- package/dist/PSTAttachment.class.d.ts +172 -172
- package/dist/PSTAttachment.class.js +317 -317
- package/dist/PSTContact.class.d.ts +884 -884
- package/dist/PSTContact.class.js +1227 -1227
- package/dist/PSTDescriptorItem.class.d.ts +45 -46
- package/dist/PSTDescriptorItem.class.js +99 -99
- package/dist/PSTFile.class.d.ts +215 -216
- package/dist/PSTFile.class.js +830 -818
- package/dist/PSTFolder.class.d.ts +129 -129
- package/dist/PSTFolder.class.js +318 -310
- package/dist/PSTMessage.class.d.ts +788 -789
- package/dist/PSTMessage.class.js +1321 -1321
- package/dist/PSTMessageStore.class.d.ts +13 -13
- package/dist/PSTMessageStore.class.js +17 -17
- package/dist/PSTNodeInputStream.class.d.ts +122 -123
- package/dist/PSTNodeInputStream.class.js +524 -514
- package/dist/PSTObject.class.d.ts +133 -134
- package/dist/PSTObject.class.js +326 -326
- package/dist/PSTRecipient.class.d.ts +65 -65
- package/dist/PSTRecipient.class.js +103 -103
- package/dist/PSTTable.class.d.ts +52 -52
- package/dist/PSTTable.class.js +175 -175
- package/dist/PSTTable7C.class.d.ts +45 -45
- package/dist/PSTTable7C.class.js +282 -281
- package/dist/PSTTableBC.class.d.ts +31 -31
- package/dist/PSTTableBC.class.js +111 -111
- package/dist/PSTTableItem.class.d.ts +47 -48
- package/dist/PSTTableItem.class.js +124 -124
- package/dist/PSTTask.class.d.ts +146 -146
- package/dist/PSTTask.class.js +205 -205
- package/dist/PSTUtil.class.d.ts +134 -135
- package/dist/PSTUtil.class.js +795 -795
- package/dist/RecurrencePattern.class.d.ts +49 -50
- package/dist/RecurrencePattern.class.js +120 -120
- package/dist/index.d.ts +6 -6
- package/dist/index.js +15 -15
- package/example/package.json +6 -6
- package/example/yarn.lock +120 -67
- package/junit.xml +68 -68
- package/package.json +26 -26
- package/readme.md +3 -3
package/dist/PSTTask.class.d.ts
CHANGED
|
@@ -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
|
+
}
|