@hiraokahypertools/pst-extractor 0.1.0-alpha.1
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/BTHeap.d.ts +15 -0
- package/dist/BTHeap.js +76 -0
- package/dist/CollectionAsyncProvider.d.ts +15 -0
- package/dist/CollectionAsyncProvider.js +44 -0
- package/dist/KeyedDelay.d.ts +8 -0
- package/dist/KeyedDelay.js +37 -0
- package/dist/LZFu.class.d.ts +12 -0
- package/dist/LZFu.class.js +95 -0
- package/dist/NodeMap.class.d.ts +35 -0
- package/dist/NodeMap.class.js +86 -0
- package/dist/OutlookProperties.d.ts +278 -0
- package/dist/OutlookProperties.js +284 -0
- package/dist/PAUtil.d.ts +17 -0
- package/dist/PAUtil.js +145 -0
- package/dist/PHNodeHeap.d.ts +16 -0
- package/dist/PHNodeHeap.js +2 -0
- package/dist/PHNodeHeapReader.d.ts +6 -0
- package/dist/PHNodeHeapReader.js +5 -0
- package/dist/PHUtil.d.ts +6 -0
- package/dist/PHUtil.js +103 -0
- package/dist/PLMisc.d.ts +8 -0
- package/dist/PLMisc.js +16 -0
- package/dist/PLNode.d.ts +11 -0
- package/dist/PLNode.js +5 -0
- package/dist/PLStore.d.ts +9 -0
- package/dist/PLStore.js +5 -0
- package/dist/PLSubNode.d.ts +8 -0
- package/dist/PLSubNode.js +5 -0
- package/dist/PLUtil.d.ts +29 -0
- package/dist/PLUtil.js +683 -0
- package/dist/PSTActivity.class.d.ts +103 -0
- package/dist/PSTActivity.class.js +144 -0
- package/dist/PSTAppointment.class.d.ts +275 -0
- package/dist/PSTAppointment.class.js +381 -0
- package/dist/PSTAttachment.class.d.ts +168 -0
- package/dist/PSTAttachment.class.js +286 -0
- package/dist/PSTContact.class.d.ts +900 -0
- package/dist/PSTContact.class.js +1253 -0
- package/dist/PSTFile.class.d.ts +144 -0
- package/dist/PSTFile.class.js +221 -0
- package/dist/PSTFolder.class.d.ts +111 -0
- package/dist/PSTFolder.class.js +269 -0
- package/dist/PSTMessage.class.d.ts +773 -0
- package/dist/PSTMessage.class.js +1264 -0
- package/dist/PSTMessageStore.class.d.ts +16 -0
- package/dist/PSTMessageStore.class.js +18 -0
- package/dist/PSTObject.class.d.ts +107 -0
- package/dist/PSTObject.class.js +208 -0
- package/dist/PSTOpts.d.ts +24 -0
- package/dist/PSTOpts.js +2 -0
- package/dist/PSTRecipient.class.d.ts +68 -0
- package/dist/PSTRecipient.class.js +105 -0
- package/dist/PSTTask.class.d.ts +146 -0
- package/dist/PSTTask.class.js +206 -0
- package/dist/PSTUtil.class.d.ts +134 -0
- package/dist/PSTUtil.class.js +804 -0
- package/dist/Property.d.ts +38 -0
- package/dist/Property.js +2 -0
- package/dist/PropertyContext.d.ts +6 -0
- package/dist/PropertyContext.js +2 -0
- package/dist/PropertyContextUtil.d.ts +4 -0
- package/dist/PropertyContextUtil.js +77 -0
- package/dist/PropertyTypeObject.d.ts +12 -0
- package/dist/PropertyTypeObject.js +21 -0
- package/dist/PropertyValueResolver.d.ts +4 -0
- package/dist/PropertyValueResolver.js +2 -0
- package/dist/PropertyValueResolverV1.d.ts +7 -0
- package/dist/PropertyValueResolverV1.js +253 -0
- package/dist/RawProperty.d.ts +8 -0
- package/dist/RawProperty.js +2 -0
- package/dist/RecurrencePattern.class.d.ts +50 -0
- package/dist/RecurrencePattern.class.js +120 -0
- package/dist/RootProvider.d.ts +12 -0
- package/dist/RootProvider.js +2 -0
- package/dist/SingleAsyncProvider.d.ts +5 -0
- package/dist/SingleAsyncProvider.js +30 -0
- package/dist/TableContext.d.ts +4 -0
- package/dist/TableContext.js +2 -0
- package/dist/TableContextUtil.d.ts +4 -0
- package/dist/TableContextUtil.js +147 -0
- package/dist/TableRow.d.ts +6 -0
- package/dist/TableRow.js +2 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +28 -0
- package/dist/msftUuidStringify.d.ts +17 -0
- package/dist/msftUuidStringify.js +48 -0
- package/dist/openPstFile.d.ts +19 -0
- package/dist/openPstFile.js +67 -0
- package/package.json +105 -0
- package/readme.md +16 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { PSTMessage } from './PSTMessage.class';
|
|
2
|
+
import { PLNode } from './PLNode';
|
|
3
|
+
import { PropertyFinder } from './PAUtil';
|
|
4
|
+
import { PLSubNode } from './PLSubNode';
|
|
5
|
+
import { RootProvider } from './RootProvider';
|
|
6
|
+
export declare class PSTActivity extends PSTMessage {
|
|
7
|
+
/**
|
|
8
|
+
* Creates an instance of PSTActivity. Represents Journal entries, class IPM.Activity.
|
|
9
|
+
* https://msdn.microsoft.com/en-us/library/office/aa204771(v=office.11).aspx
|
|
10
|
+
* @internal
|
|
11
|
+
* @param {PSTFile} rootProvider
|
|
12
|
+
* @param {DescriptorIndexNode} descriptorIndexNode
|
|
13
|
+
* @param {Map<number, PSTDescriptorItem>} [localDescriptorItems]
|
|
14
|
+
* @memberof PSTActivity
|
|
15
|
+
*/
|
|
16
|
+
constructor(rootProvider: RootProvider, node: PLNode, subNode: PLSubNode, propertyFinder: PropertyFinder);
|
|
17
|
+
/**
|
|
18
|
+
* Contains the display name of the journaling application (for example, "MSWord"), and is typically a free-form attribute of a journal message, usually a string.
|
|
19
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839662.aspx
|
|
20
|
+
* @readonly
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PSTActivity
|
|
23
|
+
*/
|
|
24
|
+
get logType(): string;
|
|
25
|
+
/**
|
|
26
|
+
* Represents the start date and time for the journal message.
|
|
27
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842339.aspx
|
|
28
|
+
* @readonly
|
|
29
|
+
* @type {Date}
|
|
30
|
+
* @memberof PSTActivity
|
|
31
|
+
*/
|
|
32
|
+
get logStart(): Date | null;
|
|
33
|
+
/**
|
|
34
|
+
* Represents the duration, in minutes, of a journal message.
|
|
35
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765536.aspx
|
|
36
|
+
* @readonly
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof PSTActivity
|
|
39
|
+
*/
|
|
40
|
+
get logDuration(): number;
|
|
41
|
+
/**
|
|
42
|
+
* Represents the end date and time for the journal message.
|
|
43
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839572.aspx
|
|
44
|
+
* @readonly
|
|
45
|
+
* @type {Date}
|
|
46
|
+
* @memberof PSTActivity
|
|
47
|
+
*/
|
|
48
|
+
get logEnd(): Date | null;
|
|
49
|
+
/**
|
|
50
|
+
* Contains metadata about the journal.
|
|
51
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815433.aspx
|
|
52
|
+
* @readonly
|
|
53
|
+
* @type {number}
|
|
54
|
+
* @memberof PSTActivity
|
|
55
|
+
*/
|
|
56
|
+
get logFlags(): number;
|
|
57
|
+
/**
|
|
58
|
+
* Indicates whether the document was printed during journaling.
|
|
59
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839873.aspx
|
|
60
|
+
* @readonly
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof PSTActivity
|
|
63
|
+
*/
|
|
64
|
+
get isDocumentPrinted(): boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Indicates whether the document was saved during journaling.
|
|
67
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815488.aspx
|
|
68
|
+
* @readonly
|
|
69
|
+
* @type {boolean}
|
|
70
|
+
* @memberof PSTActivity
|
|
71
|
+
*/
|
|
72
|
+
get isDocumentSaved(): boolean;
|
|
73
|
+
/**
|
|
74
|
+
* Indicates whether the document was sent to a routing recipient during journaling.
|
|
75
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839558.aspx
|
|
76
|
+
* @readonly
|
|
77
|
+
* @type {boolean}
|
|
78
|
+
* @memberof PSTActivity
|
|
79
|
+
*/
|
|
80
|
+
get isDocumentRouted(): boolean;
|
|
81
|
+
/**
|
|
82
|
+
* Indicates whether the document was sent by e-mail or posted to a server folder during journaling.
|
|
83
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815353.aspx
|
|
84
|
+
* @readonly
|
|
85
|
+
* @type {boolean}
|
|
86
|
+
* @memberof PSTActivity
|
|
87
|
+
*/
|
|
88
|
+
get isDocumentPosted(): boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Describes the activity that is being recorded.
|
|
91
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815500.aspx
|
|
92
|
+
* @readonly
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof PSTActivity
|
|
95
|
+
*/
|
|
96
|
+
get logTypeDesc(): string;
|
|
97
|
+
/**
|
|
98
|
+
* JSON stringify the object properties.
|
|
99
|
+
* @returns {string}
|
|
100
|
+
* @memberof PSTActivity
|
|
101
|
+
*/
|
|
102
|
+
toJSON(): any;
|
|
103
|
+
}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PSTActivity = void 0;
|
|
4
|
+
const PSTMessage_class_1 = require("./PSTMessage.class");
|
|
5
|
+
const OutlookProperties_1 = require("./OutlookProperties");
|
|
6
|
+
class PSTActivity extends PSTMessage_class_1.PSTMessage {
|
|
7
|
+
/**
|
|
8
|
+
* Creates an instance of PSTActivity. Represents Journal entries, class IPM.Activity.
|
|
9
|
+
* https://msdn.microsoft.com/en-us/library/office/aa204771(v=office.11).aspx
|
|
10
|
+
* @internal
|
|
11
|
+
* @param {PSTFile} rootProvider
|
|
12
|
+
* @param {DescriptorIndexNode} descriptorIndexNode
|
|
13
|
+
* @param {Map<number, PSTDescriptorItem>} [localDescriptorItems]
|
|
14
|
+
* @memberof PSTActivity
|
|
15
|
+
*/
|
|
16
|
+
constructor(rootProvider, node, subNode, propertyFinder) {
|
|
17
|
+
super(rootProvider, node, subNode, propertyFinder);
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Contains the display name of the journaling application (for example, "MSWord"), and is typically a free-form attribute of a journal message, usually a string.
|
|
21
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839662.aspx
|
|
22
|
+
* @readonly
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof PSTActivity
|
|
25
|
+
*/
|
|
26
|
+
get logType() {
|
|
27
|
+
return this.getStringItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogType, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Represents the start date and time for the journal message.
|
|
31
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842339.aspx
|
|
32
|
+
* @readonly
|
|
33
|
+
* @type {Date}
|
|
34
|
+
* @memberof PSTActivity
|
|
35
|
+
*/
|
|
36
|
+
get logStart() {
|
|
37
|
+
return this.getDateItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogStart, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Represents the duration, in minutes, of a journal message.
|
|
41
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765536.aspx
|
|
42
|
+
* @readonly
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof PSTActivity
|
|
45
|
+
*/
|
|
46
|
+
get logDuration() {
|
|
47
|
+
return this.getIntItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogDuration, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Represents the end date and time for the journal message.
|
|
51
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839572.aspx
|
|
52
|
+
* @readonly
|
|
53
|
+
* @type {Date}
|
|
54
|
+
* @memberof PSTActivity
|
|
55
|
+
*/
|
|
56
|
+
get logEnd() {
|
|
57
|
+
return this.getDateItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogEnd, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Contains metadata about the journal.
|
|
61
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815433.aspx
|
|
62
|
+
* @readonly
|
|
63
|
+
* @type {number}
|
|
64
|
+
* @memberof PSTActivity
|
|
65
|
+
*/
|
|
66
|
+
get logFlags() {
|
|
67
|
+
return this.getIntItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogFlags, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Indicates whether the document was printed during journaling.
|
|
71
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839873.aspx
|
|
72
|
+
* @readonly
|
|
73
|
+
* @type {boolean}
|
|
74
|
+
* @memberof PSTActivity
|
|
75
|
+
*/
|
|
76
|
+
get isDocumentPrinted() {
|
|
77
|
+
return this.getBooleanItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogDocumentPrinted, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Indicates whether the document was saved during journaling.
|
|
81
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815488.aspx
|
|
82
|
+
* @readonly
|
|
83
|
+
* @type {boolean}
|
|
84
|
+
* @memberof PSTActivity
|
|
85
|
+
*/
|
|
86
|
+
get isDocumentSaved() {
|
|
87
|
+
return this.getBooleanItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogDocumentSaved, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* Indicates whether the document was sent to a routing recipient during journaling.
|
|
91
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839558.aspx
|
|
92
|
+
* @readonly
|
|
93
|
+
* @type {boolean}
|
|
94
|
+
* @memberof PSTActivity
|
|
95
|
+
*/
|
|
96
|
+
get isDocumentRouted() {
|
|
97
|
+
return this.getBooleanItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogDocumentRouted, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Indicates whether the document was sent by e-mail or posted to a server folder during journaling.
|
|
101
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815353.aspx
|
|
102
|
+
* @readonly
|
|
103
|
+
* @type {boolean}
|
|
104
|
+
* @memberof PSTActivity
|
|
105
|
+
*/
|
|
106
|
+
get isDocumentPosted() {
|
|
107
|
+
return this.getBooleanItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogDocumentPosted, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* Describes the activity that is being recorded.
|
|
111
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815500.aspx
|
|
112
|
+
* @readonly
|
|
113
|
+
* @type {string}
|
|
114
|
+
* @memberof PSTActivity
|
|
115
|
+
*/
|
|
116
|
+
get logTypeDesc() {
|
|
117
|
+
return this.getStringItem(this._rootProvider.getNameToIdMapItem(OutlookProperties_1.OutlookProperties.PidLidLogTypeDesc, OutlookProperties_1.OutlookProperties.PSETID_Log));
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* JSON stringify the object properties.
|
|
121
|
+
* @returns {string}
|
|
122
|
+
* @memberof PSTActivity
|
|
123
|
+
*/
|
|
124
|
+
toJSON() {
|
|
125
|
+
const clone = Object.assign({
|
|
126
|
+
messageClass: this.messageClass,
|
|
127
|
+
subject: this.subject,
|
|
128
|
+
importance: this.importance,
|
|
129
|
+
transportMessageHeaders: this.transportMessageHeaders,
|
|
130
|
+
logType: this.logType,
|
|
131
|
+
logStart: this.logStart,
|
|
132
|
+
logDuration: this.logDuration,
|
|
133
|
+
logEnd: this.logEnd,
|
|
134
|
+
logFlags: this.logFlags,
|
|
135
|
+
isDocumentPrinted: this.isDocumentPrinted,
|
|
136
|
+
isDocumentSaved: this.isDocumentSaved,
|
|
137
|
+
isDocumentRouted: this.isDocumentRouted,
|
|
138
|
+
isDocumentPosted: this.isDocumentPosted,
|
|
139
|
+
logTypeDesc: this.logTypeDesc,
|
|
140
|
+
}, this);
|
|
141
|
+
return clone;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
exports.PSTActivity = PSTActivity;
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { PropertyFinder } from './PAUtil';
|
|
3
|
+
import { PLNode } from './PLNode';
|
|
4
|
+
import { PLSubNode } from './PLSubNode';
|
|
5
|
+
import { PSTMessage } from './PSTMessage.class';
|
|
6
|
+
import { RootProvider } from './RootProvider';
|
|
7
|
+
export declare class PSTAppointment extends PSTMessage {
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(rootProvider: RootProvider, node: PLNode, subNode: PLSubNode, propertyFinder: PropertyFinder);
|
|
13
|
+
/**
|
|
14
|
+
* Specifies if a meeting request should be sent as an iCal message.
|
|
15
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839802.aspx
|
|
16
|
+
* @readonly
|
|
17
|
+
* @type {boolean}
|
|
18
|
+
* @memberof PSTAppointment
|
|
19
|
+
*/
|
|
20
|
+
get sendAsICAL(): boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Represents the user’s availability for an appointment.
|
|
23
|
+
* https://msdn.microsoft.com/en-us/library/office/cc841972.aspx
|
|
24
|
+
* @readonly
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof PSTAppointment
|
|
27
|
+
*/
|
|
28
|
+
get busyStatus(): number;
|
|
29
|
+
/**
|
|
30
|
+
* The user is busy.
|
|
31
|
+
* https://msdn.microsoft.com/en-us/library/office/cc841972.aspx
|
|
32
|
+
* @readonly
|
|
33
|
+
* @type {boolean}
|
|
34
|
+
* @memberof PSTAppointment
|
|
35
|
+
*/
|
|
36
|
+
get showAsBusy(): boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Represents the location of an appointment.
|
|
39
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842419.aspx
|
|
40
|
+
* @readonly
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof PSTAppointment
|
|
43
|
+
*/
|
|
44
|
+
get location(): string;
|
|
45
|
+
/**
|
|
46
|
+
* Represents the date and time when an appointment begins.
|
|
47
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839929.aspx
|
|
48
|
+
* @readonly
|
|
49
|
+
* @type {Date}
|
|
50
|
+
* @memberof PSTAppointment
|
|
51
|
+
*/
|
|
52
|
+
get startTime(): Date | null;
|
|
53
|
+
/**
|
|
54
|
+
* Represents the date and time that an appointment ends.
|
|
55
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815864.aspx
|
|
56
|
+
* @readonly
|
|
57
|
+
* @type {Date}
|
|
58
|
+
* @memberof PSTAppointment
|
|
59
|
+
*/
|
|
60
|
+
get endTime(): Date | null;
|
|
61
|
+
/**
|
|
62
|
+
* Represents the length of time, in minutes, when an appointment is scheduled.
|
|
63
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842287.aspx
|
|
64
|
+
* @readonly
|
|
65
|
+
* @type {number}
|
|
66
|
+
* @memberof PSTAppointment
|
|
67
|
+
*/
|
|
68
|
+
get duration(): number;
|
|
69
|
+
/**
|
|
70
|
+
* Specifies the color to use when displaying the calendar.
|
|
71
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842274.aspx
|
|
72
|
+
* @readonly
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof PSTAppointment
|
|
75
|
+
*/
|
|
76
|
+
get color(): number;
|
|
77
|
+
/**
|
|
78
|
+
* Specifies whether or not the event is all day.
|
|
79
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839901.aspx
|
|
80
|
+
* @readonly
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof PSTAppointment
|
|
83
|
+
*/
|
|
84
|
+
get subType(): boolean;
|
|
85
|
+
/**
|
|
86
|
+
* Specifies a bit field that describes the state of the object.
|
|
87
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765762.aspx
|
|
88
|
+
* @readonly
|
|
89
|
+
* @type {number}
|
|
90
|
+
* @memberof PSTAppointment
|
|
91
|
+
*/
|
|
92
|
+
get meetingStatus(): number;
|
|
93
|
+
/**
|
|
94
|
+
* Specifies the response status of an attendee.
|
|
95
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839923.aspx
|
|
96
|
+
* @readonly
|
|
97
|
+
* @type {number}
|
|
98
|
+
* @memberof PSTAppointment
|
|
99
|
+
*/
|
|
100
|
+
get responseStatus(): number;
|
|
101
|
+
/**
|
|
102
|
+
* Specifies whether an appointment message is recurrent.
|
|
103
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765772.aspx
|
|
104
|
+
* @readonly
|
|
105
|
+
* @type {boolean}
|
|
106
|
+
* @memberof PSTAppointment
|
|
107
|
+
*/
|
|
108
|
+
get isRecurring(): boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Specifies the date and time within the recurrence pattern that the exception will replace.
|
|
111
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842450.aspx
|
|
112
|
+
* @readonly
|
|
113
|
+
* @type {Date}
|
|
114
|
+
* @memberof PSTAppointment
|
|
115
|
+
*/
|
|
116
|
+
get recurrenceBase(): Date | null;
|
|
117
|
+
/**
|
|
118
|
+
* Specifies the recurrence type of the recurring series.
|
|
119
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842135.aspx
|
|
120
|
+
* @readonly
|
|
121
|
+
* @type {number}
|
|
122
|
+
* @memberof PSTAppointment
|
|
123
|
+
*/
|
|
124
|
+
get recurrenceType(): number;
|
|
125
|
+
/**
|
|
126
|
+
* Specifies a description of the recurrence pattern of the calendar object.
|
|
127
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815733.aspx
|
|
128
|
+
* @readonly
|
|
129
|
+
* @type {string}
|
|
130
|
+
* @memberof PSTAppointment
|
|
131
|
+
*/
|
|
132
|
+
get recurrencePattern(): string;
|
|
133
|
+
/**
|
|
134
|
+
* Specifies the dates and times when a recurring series occurs by using one of the recurrence patterns and ranges that are specified in [MS-OXOCAL].
|
|
135
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842017.aspx
|
|
136
|
+
* @readonly
|
|
137
|
+
* @type {Buffer}
|
|
138
|
+
* @memberof PSTAppointment
|
|
139
|
+
*/
|
|
140
|
+
get recurrenceStructure(): Buffer | null;
|
|
141
|
+
/**
|
|
142
|
+
* Contains a stream that maps to the persisted format of a TZREG structure, which describes the time zone to be used for the start and end time of a recurring appointment or meeting request.
|
|
143
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815376.aspx
|
|
144
|
+
* @readonly
|
|
145
|
+
* @type {Buffer}
|
|
146
|
+
* @memberof PSTAppointment
|
|
147
|
+
*/
|
|
148
|
+
get timezone(): Buffer | null;
|
|
149
|
+
/**
|
|
150
|
+
* Specifies a list of all the attendees except for the organizer, including resources and unsendable attendees.
|
|
151
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815418.aspx
|
|
152
|
+
* @readonly
|
|
153
|
+
* @type {string}
|
|
154
|
+
* @memberof PSTAppointment
|
|
155
|
+
*/
|
|
156
|
+
get allAttendees(): string;
|
|
157
|
+
/**
|
|
158
|
+
* Contains a list of all the sendable attendees who are also required attendees.
|
|
159
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842502.aspx
|
|
160
|
+
* @readonly
|
|
161
|
+
* @type {string}
|
|
162
|
+
* @memberof PSTAppointment
|
|
163
|
+
*/
|
|
164
|
+
get toAttendees(): string;
|
|
165
|
+
/**
|
|
166
|
+
* Contains a list of all the sendable attendees who are also optional attendees.
|
|
167
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839636.aspx
|
|
168
|
+
* @readonly
|
|
169
|
+
* @type {string}
|
|
170
|
+
* @memberof PSTAppointment
|
|
171
|
+
*/
|
|
172
|
+
get ccAttendees(): string;
|
|
173
|
+
/**
|
|
174
|
+
* Specifies the sequence number of a Meeting object.
|
|
175
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765937.aspx
|
|
176
|
+
* @readonly
|
|
177
|
+
* @type {number}
|
|
178
|
+
* @memberof PSTAppointment
|
|
179
|
+
*/
|
|
180
|
+
get appointmentSequence(): number;
|
|
181
|
+
/**
|
|
182
|
+
* Is a hosted meeting?
|
|
183
|
+
* https://msdn.microsoft.com/en-us/library/ee200872(v=exchg.80).aspx
|
|
184
|
+
* @readonly
|
|
185
|
+
* @type {boolean}
|
|
186
|
+
* @memberof PSTAppointment
|
|
187
|
+
*/
|
|
188
|
+
get isOnlineMeeting(): boolean;
|
|
189
|
+
/**
|
|
190
|
+
* Specifies the type of the meeting.
|
|
191
|
+
* https://msdn.microsoft.com/en-us/library/ee158396(v=exchg.80).aspx
|
|
192
|
+
* @readonly
|
|
193
|
+
* @type {number}
|
|
194
|
+
* @memberof PSTAppointment
|
|
195
|
+
*/
|
|
196
|
+
get netMeetingType(): number;
|
|
197
|
+
/**
|
|
198
|
+
* Specifies the directory server to be used.
|
|
199
|
+
* https://msdn.microsoft.com/en-us/library/ee201516(v=exchg.80).aspx
|
|
200
|
+
* @readonly
|
|
201
|
+
* @type {string}
|
|
202
|
+
* @memberof PSTAppointment
|
|
203
|
+
*/
|
|
204
|
+
get netMeetingServer(): string;
|
|
205
|
+
/**
|
|
206
|
+
* Specifies the email address of the organizer.
|
|
207
|
+
* https://msdn.microsoft.com/en-us/library/ee203317(v=exchg.80).aspx
|
|
208
|
+
* @readonly
|
|
209
|
+
* @type {string}
|
|
210
|
+
* @memberof PSTAppointment
|
|
211
|
+
*/
|
|
212
|
+
get netMeetingOrganizerAlias(): string;
|
|
213
|
+
/**
|
|
214
|
+
* Specifies the document to be launched when the user joins the meeting.
|
|
215
|
+
* https://msdn.microsoft.com/en-us/library/ee204395(v=exchg.80).aspx
|
|
216
|
+
* @readonly
|
|
217
|
+
* @type {string}
|
|
218
|
+
* @memberof PSTAppointment
|
|
219
|
+
*/
|
|
220
|
+
get netMeetingDocumentPathName(): string;
|
|
221
|
+
/**
|
|
222
|
+
* The PidLidNetShowUrl property ([MS-OXPROPS] section 2.175) specifies the URL to be launched when the user joins the meeting
|
|
223
|
+
* https://msdn.microsoft.com/en-us/library/ee179451(v=exchg.80).aspx
|
|
224
|
+
* @readonly
|
|
225
|
+
* @type {string}
|
|
226
|
+
* @memberof PSTAppointment
|
|
227
|
+
*/
|
|
228
|
+
get netShowURL(): string;
|
|
229
|
+
/**
|
|
230
|
+
* Specifies the date and time at which the meeting-related object was sent.
|
|
231
|
+
* https://msdn.microsoft.com/en-us/library/ee237112(v=exchg.80).aspx
|
|
232
|
+
* @readonly
|
|
233
|
+
* @type {Date}
|
|
234
|
+
* @memberof PSTAppointment
|
|
235
|
+
*/
|
|
236
|
+
get attendeeCriticalChange(): Date | null;
|
|
237
|
+
/**
|
|
238
|
+
* Indicates that this meeting response is a counter proposal.
|
|
239
|
+
* https://msdn.microsoft.com/en-us/magazine/cc815846.aspx
|
|
240
|
+
* @readonly
|
|
241
|
+
* @type {boolean}
|
|
242
|
+
* @memberof PSTAppointment
|
|
243
|
+
*/
|
|
244
|
+
get appointmentCounterProposal(): boolean;
|
|
245
|
+
/**
|
|
246
|
+
* Indicates whether the user did not include any text in the body of the Meeting Response object.
|
|
247
|
+
* https://msdn.microsoft.com/en-us/library/ee159822(v=exchg.80).aspx
|
|
248
|
+
* @readonly
|
|
249
|
+
* @type {boolean}
|
|
250
|
+
* @memberof PSTAppointment
|
|
251
|
+
*/
|
|
252
|
+
get isSilent(): boolean;
|
|
253
|
+
/**
|
|
254
|
+
* Identifies required attendees for the appointment or meeting.
|
|
255
|
+
* https://msdn.microsoft.com/en-us/library/ee160700(v=exchg.80).aspx
|
|
256
|
+
* @readonly
|
|
257
|
+
* @type {string}
|
|
258
|
+
* @memberof PSTAppointment
|
|
259
|
+
*/
|
|
260
|
+
get requiredAttendees(): string;
|
|
261
|
+
/**
|
|
262
|
+
* Contains the Windows Locale ID of the end-user who created this message.
|
|
263
|
+
* https://msdn.microsoft.com/en-us/library/ee201602(v=exchg.80).aspx
|
|
264
|
+
* @readonly
|
|
265
|
+
* @type {number}
|
|
266
|
+
* @memberof PSTAppointment
|
|
267
|
+
*/
|
|
268
|
+
get localeId(): number;
|
|
269
|
+
/**
|
|
270
|
+
* JSON stringify the object properties. Large fields (like body) aren't included.
|
|
271
|
+
* @returns {string}
|
|
272
|
+
* @memberof PSTAppointment
|
|
273
|
+
*/
|
|
274
|
+
toJSON(): any;
|
|
275
|
+
}
|