@hiraokahypertools/pst-extractor 0.2.0-alpha.2 → 0.4.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/IPSTActivity.d.ts +66 -0
- package/dist/IPSTActivity.js +1 -0
- package/dist/IPSTAppointment.d.ts +198 -0
- package/dist/IPSTAppointment.js +1 -0
- package/dist/IPSTAttachment.d.ts +120 -0
- package/dist/IPSTAttachment.js +1 -0
- package/dist/IPSTContact.d.ts +669 -0
- package/dist/IPSTContact.js +1 -0
- package/dist/IPSTFile.d.ts +54 -0
- package/dist/IPSTFile.js +1 -0
- package/dist/IPSTFolder.d.ts +70 -0
- package/dist/IPSTFolder.js +1 -0
- package/dist/IPSTMessage.d.ts +570 -0
- package/dist/IPSTMessage.js +1 -0
- package/dist/IPSTMessageStore.d.ts +7 -0
- package/dist/IPSTMessageStore.js +1 -0
- package/dist/IPSTObject.d.ts +30 -0
- package/dist/IPSTObject.js +1 -0
- package/dist/IPSTRecipient.d.ts +48 -0
- package/dist/IPSTRecipient.js +1 -0
- package/dist/IPSTTask.d.ts +98 -0
- package/dist/IPSTTask.js +1 -0
- package/dist/IRecurrencePattern.d.ts +14 -0
- package/dist/IRecurrencePattern.js +1 -0
- package/dist/LZFu.class.d.ts +0 -1
- package/dist/LZFu.class.js +0 -1
- package/dist/NodeMap.class.d.ts +2 -5
- package/dist/NodeMap.class.js +2 -5
- package/dist/PAUtil.d.ts +7 -0
- package/dist/PAUtil.js +4 -0
- package/dist/PSTActivity.class.d.ts +2 -13
- package/dist/PSTActivity.class.js +0 -12
- package/dist/PSTAppointment.class.d.ts +2 -34
- package/dist/PSTAppointment.class.js +0 -34
- package/dist/PSTAttachment.class.d.ts +2 -20
- package/dist/PSTAttachment.class.js +0 -20
- package/dist/PSTContact.class.d.ts +2 -111
- package/dist/PSTContact.class.js +0 -111
- package/dist/PSTFile.class.d.ts +5 -18
- package/dist/PSTFile.class.js +0 -14
- package/dist/PSTFolder.class.d.ts +2 -15
- package/dist/PSTFolder.class.js +0 -14
- package/dist/PSTMessage.class.d.ts +2 -95
- package/dist/PSTMessage.class.js +0 -94
- package/dist/PSTMessageStore.class.d.ts +2 -2
- package/dist/PSTMessageStore.class.js +0 -1
- package/dist/PSTObject.class.d.ts +2 -12
- package/dist/PSTObject.class.js +0 -11
- package/dist/PSTRecipient.class.d.ts +2 -9
- package/dist/PSTRecipient.class.js +0 -9
- package/dist/PSTTask.class.d.ts +2 -19
- package/dist/PSTTask.class.js +0 -18
- package/dist/PSTUtil.class.d.ts +0 -9
- package/dist/PSTUtil.class.js +0 -9
- package/dist/PropertyTypeObject.d.ts +1 -1
- package/dist/PropertyTypeObject.js +1 -1
- package/dist/PropertyValueResolverV1.d.ts +3 -0
- package/dist/PropertyValueResolverV1.js +3 -0
- package/dist/RecurrencePattern.class.d.ts +2 -1
- package/dist/RootProvider.d.ts +3 -0
- package/dist/index.d.ts +18 -0
- package/dist/openPstFile.d.ts +3 -3
- package/package.json +7 -64
|
@@ -0,0 +1,669 @@
|
|
|
1
|
+
export interface IPSTContact {
|
|
2
|
+
/**
|
|
3
|
+
* Contains the recipient's account name.
|
|
4
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842401.aspx
|
|
5
|
+
* @readonly
|
|
6
|
+
*/
|
|
7
|
+
get account(): string;
|
|
8
|
+
/**
|
|
9
|
+
* Contains a telephone number that the message recipient can use to reach the sender.
|
|
10
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839943.aspx
|
|
11
|
+
* @readonly
|
|
12
|
+
*/
|
|
13
|
+
get callbackTelephoneNumber(): string;
|
|
14
|
+
/**
|
|
15
|
+
* Contains a generational abbreviation that follows the full name of the recipient.
|
|
16
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842136.aspx
|
|
17
|
+
* @readonly
|
|
18
|
+
*/
|
|
19
|
+
get generation(): string;
|
|
20
|
+
/**
|
|
21
|
+
* Contains the first or given name of the recipient.
|
|
22
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815351.aspx
|
|
23
|
+
* @readonly
|
|
24
|
+
*/
|
|
25
|
+
get givenName(): string;
|
|
26
|
+
/**
|
|
27
|
+
* Contains a government identifier for the recipient.
|
|
28
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815890.aspx
|
|
29
|
+
* @readonly
|
|
30
|
+
*/
|
|
31
|
+
get governmentIdNumber(): string;
|
|
32
|
+
/**
|
|
33
|
+
* Contains the primary telephone number of the recipient's place of business.
|
|
34
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839937.aspx
|
|
35
|
+
* @readonly
|
|
36
|
+
*/
|
|
37
|
+
get businessTelephoneNumber(): string;
|
|
38
|
+
/**
|
|
39
|
+
* Contains the primary telephone number of the recipient's home.
|
|
40
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815389.aspx
|
|
41
|
+
* @readonly
|
|
42
|
+
*/
|
|
43
|
+
get homeTelephoneNumber(): string;
|
|
44
|
+
/**
|
|
45
|
+
* Contains the initials for parts of the full name of the recipient.
|
|
46
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839843.aspx
|
|
47
|
+
* @readonly
|
|
48
|
+
*/
|
|
49
|
+
get initials(): string;
|
|
50
|
+
/**
|
|
51
|
+
* Contains a keyword that identifies the recipient to the recipient's system administrator.
|
|
52
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842250.aspx
|
|
53
|
+
* @readonly
|
|
54
|
+
*/
|
|
55
|
+
get keyword(): string;
|
|
56
|
+
/**
|
|
57
|
+
* Contains a value that indicates the language in which the messaging user is writing messages.
|
|
58
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839724.aspx
|
|
59
|
+
* @readonly
|
|
60
|
+
*/
|
|
61
|
+
get language(): string;
|
|
62
|
+
/**
|
|
63
|
+
* Contains the location of the recipient in a format that is useful to the recipient's organization.
|
|
64
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815567.aspx
|
|
65
|
+
* @readonly
|
|
66
|
+
*/
|
|
67
|
+
get location(): string;
|
|
68
|
+
/**
|
|
69
|
+
* Contains the common name of the message handling system.
|
|
70
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842474.aspx
|
|
71
|
+
* @readonly
|
|
72
|
+
*/
|
|
73
|
+
get mhsCommonName(): string;
|
|
74
|
+
/**
|
|
75
|
+
* Contains an organizational ID number for the contact, such as an employee ID number.
|
|
76
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765672.aspx
|
|
77
|
+
* @readonly
|
|
78
|
+
*/
|
|
79
|
+
get organizationalIdNumber(): string;
|
|
80
|
+
/**
|
|
81
|
+
* Contains the last or surname of the recipient.
|
|
82
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765704.aspx
|
|
83
|
+
* @readonly
|
|
84
|
+
*/
|
|
85
|
+
get surname(): string;
|
|
86
|
+
/**
|
|
87
|
+
* Contains the original display name for an entry copied from an address book to a personal address book or other writable address book.
|
|
88
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765709.aspx
|
|
89
|
+
* @readonly
|
|
90
|
+
*/
|
|
91
|
+
get originalDisplayName(): string;
|
|
92
|
+
/**
|
|
93
|
+
* Contains the recipient's postal address.
|
|
94
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842549.aspx
|
|
95
|
+
* @readonly
|
|
96
|
+
*/
|
|
97
|
+
get postalAddress(): string;
|
|
98
|
+
/**
|
|
99
|
+
* Contains the recipient's company name.
|
|
100
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842192.aspx
|
|
101
|
+
* @readonly
|
|
102
|
+
*/
|
|
103
|
+
get companyName(): string;
|
|
104
|
+
/**
|
|
105
|
+
* Contains the recipient's job title.
|
|
106
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815831.aspx
|
|
107
|
+
* @readonly
|
|
108
|
+
*/
|
|
109
|
+
get title(): string;
|
|
110
|
+
/**
|
|
111
|
+
* Contains a name for the department in which the recipient works.
|
|
112
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839825.aspx
|
|
113
|
+
* @readonly
|
|
114
|
+
*/
|
|
115
|
+
get departmentName(): string;
|
|
116
|
+
/**
|
|
117
|
+
* Contains the recipient's office location.
|
|
118
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842269.aspx
|
|
119
|
+
* @readonly
|
|
120
|
+
*/
|
|
121
|
+
get officeLocation(): string;
|
|
122
|
+
/**
|
|
123
|
+
* Contains the recipient's primary telephone number.
|
|
124
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839969.aspx
|
|
125
|
+
* @readonly
|
|
126
|
+
*/
|
|
127
|
+
get primaryTelephoneNumber(): string;
|
|
128
|
+
/**
|
|
129
|
+
* Contains a secondary telephone number at the recipient's place of business.
|
|
130
|
+
* https://msdn.microsoft.com/en-us/library/office/cc841990.aspx
|
|
131
|
+
* @readonly
|
|
132
|
+
*/
|
|
133
|
+
get business2TelephoneNumber(): string;
|
|
134
|
+
/**
|
|
135
|
+
* Contains the recipient's cellular telephone number.
|
|
136
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839798.aspx
|
|
137
|
+
* @readonly
|
|
138
|
+
*/
|
|
139
|
+
get mobileTelephoneNumber(): string;
|
|
140
|
+
/**
|
|
141
|
+
* Contains the recipient's radio telephone number.
|
|
142
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839806.aspx
|
|
143
|
+
* @readonly
|
|
144
|
+
*/
|
|
145
|
+
get radioTelephoneNumber(): string;
|
|
146
|
+
/**
|
|
147
|
+
* Contains the recipient's car telephone number.
|
|
148
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815394.aspx
|
|
149
|
+
* @readonly
|
|
150
|
+
*/
|
|
151
|
+
get carTelephoneNumber(): string;
|
|
152
|
+
/**
|
|
153
|
+
* Contains an alternate telephone number for the recipient.
|
|
154
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839561.aspx
|
|
155
|
+
* @readonly
|
|
156
|
+
*/
|
|
157
|
+
get otherTelephoneNumber(): string;
|
|
158
|
+
/**
|
|
159
|
+
* Contains a recipient's display name in a secure form that cannot be changed.
|
|
160
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815723.aspx
|
|
161
|
+
* @readonly
|
|
162
|
+
*/
|
|
163
|
+
get transmittableDisplayName(): string;
|
|
164
|
+
/**
|
|
165
|
+
* Contains the recipient's pager telephone number.
|
|
166
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765824.aspx
|
|
167
|
+
* @readonly
|
|
168
|
+
*/
|
|
169
|
+
get pagerTelephoneNumber(): string;
|
|
170
|
+
/**
|
|
171
|
+
* Contains the telephone number of the recipient's primary fax machine.
|
|
172
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815713.aspx
|
|
173
|
+
* @readonly
|
|
174
|
+
*/
|
|
175
|
+
get primaryFaxNumber(): string;
|
|
176
|
+
/**
|
|
177
|
+
* Contains the telephone number of the recipient's business fax machine.
|
|
178
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765799.aspx
|
|
179
|
+
* @readonly
|
|
180
|
+
*/
|
|
181
|
+
get businessFaxNumber(): string;
|
|
182
|
+
/**
|
|
183
|
+
* Contains the telephone number of the recipient's home fax machine.
|
|
184
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842109.aspx
|
|
185
|
+
* @readonly
|
|
186
|
+
*/
|
|
187
|
+
get homeFaxNumber(): string;
|
|
188
|
+
/**
|
|
189
|
+
* Contains the name of the recipient's country/region.
|
|
190
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842494.aspx
|
|
191
|
+
* @readonly
|
|
192
|
+
*/
|
|
193
|
+
get businessAddressCountry(): string;
|
|
194
|
+
/**
|
|
195
|
+
* Contains the name of the recipient's locality, such as the town or city.
|
|
196
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815711.aspx
|
|
197
|
+
* @readonly
|
|
198
|
+
*/
|
|
199
|
+
get businessAddressCity(): string;
|
|
200
|
+
/**
|
|
201
|
+
* Contains the name of the recipient's state or province.
|
|
202
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839544.aspx
|
|
203
|
+
* @readonly
|
|
204
|
+
*/
|
|
205
|
+
get businessAddressStateOrProvince(): string;
|
|
206
|
+
/**
|
|
207
|
+
* Contains the recipient's street address.
|
|
208
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765810.aspx
|
|
209
|
+
* @readonly
|
|
210
|
+
*/
|
|
211
|
+
get businessAddressStreet(): string;
|
|
212
|
+
/**
|
|
213
|
+
* Contains the postal code for the recipient's postal address.
|
|
214
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839851.aspx
|
|
215
|
+
* @readonly
|
|
216
|
+
*/
|
|
217
|
+
get businessPostalCode(): string;
|
|
218
|
+
/**
|
|
219
|
+
* Contains the number or identifier of the recipient's post office box.
|
|
220
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815522.aspx
|
|
221
|
+
* @readonly
|
|
222
|
+
*/
|
|
223
|
+
get businessPoBox(): string;
|
|
224
|
+
/**
|
|
225
|
+
* Contains the recipient's telex number.
|
|
226
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765894.aspx
|
|
227
|
+
* @readonly
|
|
228
|
+
*/
|
|
229
|
+
get telexNumber(): string;
|
|
230
|
+
/**
|
|
231
|
+
* Contains the recipient's ISDN-capable telephone number.
|
|
232
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765863.aspx
|
|
233
|
+
* @readonly
|
|
234
|
+
*/
|
|
235
|
+
get isdnNumber(): string;
|
|
236
|
+
/**
|
|
237
|
+
* Contains the telephone number of the recipient's administrative assistant.
|
|
238
|
+
* https://msdn.microsoft.com/en-us/library/office/cc840012.aspx
|
|
239
|
+
* @readonly
|
|
240
|
+
*/
|
|
241
|
+
get assistantTelephoneNumber(): string;
|
|
242
|
+
/**
|
|
243
|
+
* Contains a secondary telephone number at the recipient's home.
|
|
244
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815540.aspx
|
|
245
|
+
* @readonly
|
|
246
|
+
*/
|
|
247
|
+
get home2TelephoneNumber(): string;
|
|
248
|
+
/**
|
|
249
|
+
* Contains the name of the recipient's administrative assistant.
|
|
250
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815319.aspx
|
|
251
|
+
* @readonly
|
|
252
|
+
*/
|
|
253
|
+
get assistant(): string;
|
|
254
|
+
/**
|
|
255
|
+
* Contains the names of the hobbies of the messaging user.
|
|
256
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815391.aspx
|
|
257
|
+
* @readonly
|
|
258
|
+
*/
|
|
259
|
+
get hobbies(): string;
|
|
260
|
+
/**
|
|
261
|
+
* Contains the middle name of a contact.
|
|
262
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815329.aspx
|
|
263
|
+
* @readonly
|
|
264
|
+
*/
|
|
265
|
+
get middleName(): string;
|
|
266
|
+
/**
|
|
267
|
+
* Contains the display name prefix (such as Miss, Mr., Mrs.) for the messaging user.
|
|
268
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765538.aspx
|
|
269
|
+
* @readonly
|
|
270
|
+
*/
|
|
271
|
+
get displayNamePrefix(): string;
|
|
272
|
+
/**
|
|
273
|
+
* Contains the profession of the user.
|
|
274
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765792.aspx
|
|
275
|
+
* @readonly
|
|
276
|
+
*/
|
|
277
|
+
get profession(): string;
|
|
278
|
+
/**
|
|
279
|
+
* Contains the name of the mail user's referral.
|
|
280
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765803.aspx
|
|
281
|
+
* @readonly
|
|
282
|
+
*/
|
|
283
|
+
get preferredByName(): string;
|
|
284
|
+
/**
|
|
285
|
+
* Contains the user’s spouse name.
|
|
286
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765832.aspx
|
|
287
|
+
* @readonly
|
|
288
|
+
*/
|
|
289
|
+
get spouseName(): string;
|
|
290
|
+
/**
|
|
291
|
+
* Contains the name of the network used to transmit the message.
|
|
292
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839633.aspx
|
|
293
|
+
* @readonly
|
|
294
|
+
*/
|
|
295
|
+
get computerNetworkName(): string;
|
|
296
|
+
/**
|
|
297
|
+
* Contains the contact’s customer ID number.
|
|
298
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842178.aspx
|
|
299
|
+
* @readonly
|
|
300
|
+
*/
|
|
301
|
+
get customerId(): string;
|
|
302
|
+
/**
|
|
303
|
+
* Contains the telephone number for the contact’s text telephone (TTY) or telecommunication device for the deaf (TDD).
|
|
304
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765580.aspx
|
|
305
|
+
* @readonly
|
|
306
|
+
*/
|
|
307
|
+
get ttytddPhoneNumber(): string;
|
|
308
|
+
/**
|
|
309
|
+
* Contains the contact’s File Transfer Protocol (FTP) URL. FTP is a protocol that is used to transfer data, as specified in [RFC959].
|
|
310
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839830.aspx
|
|
311
|
+
* @readonly
|
|
312
|
+
*/
|
|
313
|
+
get ftpSite(): string;
|
|
314
|
+
/**
|
|
315
|
+
* Contains the name of the recipient's manager.
|
|
316
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842009.aspx
|
|
317
|
+
* @readonly
|
|
318
|
+
*/
|
|
319
|
+
get managerName(): string;
|
|
320
|
+
/**
|
|
321
|
+
* Contains the nickname of the contact.
|
|
322
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765603.aspx
|
|
323
|
+
* @readonly
|
|
324
|
+
*/
|
|
325
|
+
get nickname(): string;
|
|
326
|
+
/**
|
|
327
|
+
* Contains the URL of a user's personal home page.
|
|
328
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765751.aspx
|
|
329
|
+
* @readonly
|
|
330
|
+
*/
|
|
331
|
+
get personalHomePage(): string;
|
|
332
|
+
/**
|
|
333
|
+
* Contains the URL of the home page for the business.
|
|
334
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842385.aspx
|
|
335
|
+
* @readonly
|
|
336
|
+
*/
|
|
337
|
+
get businessHomePage(): string;
|
|
338
|
+
/**
|
|
339
|
+
* Get the note associated with the contact.
|
|
340
|
+
* @readonly
|
|
341
|
+
*/
|
|
342
|
+
get note(): string;
|
|
343
|
+
/**
|
|
344
|
+
* Get a named string item from the map
|
|
345
|
+
*/
|
|
346
|
+
getNamedStringItem(key: number): string;
|
|
347
|
+
/**
|
|
348
|
+
* Contains the main telephone number for a company
|
|
349
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839651.aspx
|
|
350
|
+
* @readonly
|
|
351
|
+
*/
|
|
352
|
+
get companyMainPhoneNumber(): string;
|
|
353
|
+
/**
|
|
354
|
+
* Contains a list of names of children
|
|
355
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839533.aspx
|
|
356
|
+
* @readonly
|
|
357
|
+
*/
|
|
358
|
+
get childrensNames(): string;
|
|
359
|
+
/**
|
|
360
|
+
* Contains the city for the recipient's home address.
|
|
361
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815582.aspx
|
|
362
|
+
* @readonly
|
|
363
|
+
*/
|
|
364
|
+
get homeAddressCity(): string;
|
|
365
|
+
/**
|
|
366
|
+
* Contains the county in a contact's address.
|
|
367
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842548.aspx
|
|
368
|
+
* @readonly
|
|
369
|
+
*/
|
|
370
|
+
get homeAddressCountry(): string;
|
|
371
|
+
/**
|
|
372
|
+
* Contains the postal code for the user's home address.
|
|
373
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815880.aspx
|
|
374
|
+
* @readonly
|
|
375
|
+
*/
|
|
376
|
+
get homeAddressPostalCode(): string;
|
|
377
|
+
/**
|
|
378
|
+
* Contains the state or province portion of a user's address.
|
|
379
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839958.aspx
|
|
380
|
+
* @readonly
|
|
381
|
+
*/
|
|
382
|
+
get homeAddressStateOrProvince(): string;
|
|
383
|
+
/**
|
|
384
|
+
* Contains the street portion of a user's address.
|
|
385
|
+
* https://msdn.microsoft.com/en-us/library/office/cc841997.aspx
|
|
386
|
+
* @readonly
|
|
387
|
+
*/
|
|
388
|
+
get homeAddressStreet(): string;
|
|
389
|
+
/**
|
|
390
|
+
* Contains the post office box information for a user's address.
|
|
391
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842440.aspx
|
|
392
|
+
* @readonly
|
|
393
|
+
*/
|
|
394
|
+
get homeAddressPostOfficeBox(): string;
|
|
395
|
+
/**
|
|
396
|
+
* Contains the name of the mail user's other locality, such as the town or city.
|
|
397
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765881.aspx
|
|
398
|
+
* @readonly
|
|
399
|
+
*/
|
|
400
|
+
get otherAddressCity(): string;
|
|
401
|
+
/**
|
|
402
|
+
* Contains the mail user's other country/region.
|
|
403
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765814.aspx
|
|
404
|
+
* @readonly
|
|
405
|
+
*/
|
|
406
|
+
get otherAddressCountry(): string;
|
|
407
|
+
/**
|
|
408
|
+
* Contains the postal code for the mail user's other postal address.
|
|
409
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842261.aspx
|
|
410
|
+
* @readonly
|
|
411
|
+
*/
|
|
412
|
+
get otherAddressPostalCode(): string;
|
|
413
|
+
/**
|
|
414
|
+
* Contains the name of state or province used in the other address.
|
|
415
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815782.aspx
|
|
416
|
+
* @readonly
|
|
417
|
+
*/
|
|
418
|
+
get otherAddressStateOrProvince(): string;
|
|
419
|
+
/**
|
|
420
|
+
* Contains the mail user's other street address.
|
|
421
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839546.aspx
|
|
422
|
+
* @readonly
|
|
423
|
+
*/
|
|
424
|
+
get otherAddressStreet(): string;
|
|
425
|
+
/**
|
|
426
|
+
* Contains the post office box for a contact's other address.
|
|
427
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842396.aspx
|
|
428
|
+
* @readonly
|
|
429
|
+
*/
|
|
430
|
+
get otherAddressPostOfficeBox(): string;
|
|
431
|
+
/**
|
|
432
|
+
* Specifies the name under which the contact is filed when displaying a list of contacts.
|
|
433
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842002.aspx
|
|
434
|
+
* @readonly
|
|
435
|
+
*/
|
|
436
|
+
get fileUnder(): string;
|
|
437
|
+
/**
|
|
438
|
+
* Specifies the complete address of the contact’s home address.
|
|
439
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839539.aspx
|
|
440
|
+
* @readonly
|
|
441
|
+
*/
|
|
442
|
+
get homeAddress(): string;
|
|
443
|
+
/**
|
|
444
|
+
* Specifies the contact's complete work address.
|
|
445
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815905.aspx
|
|
446
|
+
* @readonly
|
|
447
|
+
*/
|
|
448
|
+
get workAddress(): string;
|
|
449
|
+
/**
|
|
450
|
+
* Specifies the complete address of the contact’s other address.
|
|
451
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815383.aspx
|
|
452
|
+
* @readonly
|
|
453
|
+
*/
|
|
454
|
+
get otherAddress(): string;
|
|
455
|
+
/**
|
|
456
|
+
* Specifies which physical address is the contact’s mailing address.
|
|
457
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815430.aspx
|
|
458
|
+
* @readonly
|
|
459
|
+
*/
|
|
460
|
+
get postalAddressId(): number;
|
|
461
|
+
/**
|
|
462
|
+
* Specifies the contact’s business Web page URL.
|
|
463
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842001.aspx
|
|
464
|
+
* @readonly
|
|
465
|
+
*/
|
|
466
|
+
get html(): string;
|
|
467
|
+
/**
|
|
468
|
+
* Specifies the street portion of the contact's work mailing address.
|
|
469
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815537.aspx
|
|
470
|
+
* @readonly
|
|
471
|
+
*/
|
|
472
|
+
get workAddressStreet(): string;
|
|
473
|
+
/**
|
|
474
|
+
* Specifies the city or locality portion of the contact's work address.
|
|
475
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765923.aspx
|
|
476
|
+
* @readonly
|
|
477
|
+
*/
|
|
478
|
+
get workAddressCity(): string;
|
|
479
|
+
/**
|
|
480
|
+
* Specifies the state or province portion of the contact's work mailing address.
|
|
481
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842152.aspx
|
|
482
|
+
* @readonly
|
|
483
|
+
*/
|
|
484
|
+
get workAddressState(): string;
|
|
485
|
+
/**
|
|
486
|
+
* Specifies the postal code (ZIP code) portion of the contact's work address.
|
|
487
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842066.aspx
|
|
488
|
+
* @readonly
|
|
489
|
+
*/
|
|
490
|
+
get workAddressPostalCode(): string;
|
|
491
|
+
/**
|
|
492
|
+
* Specifies the country or region portion of the contact's work address.
|
|
493
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765698.aspx
|
|
494
|
+
* @readonly
|
|
495
|
+
*/
|
|
496
|
+
get workAddressCountry(): string;
|
|
497
|
+
/**
|
|
498
|
+
* Specifies the post office box portion of the contact's work.
|
|
499
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815563.aspx
|
|
500
|
+
* @readonly
|
|
501
|
+
*/
|
|
502
|
+
get workAddressPostOfficeBox(): string;
|
|
503
|
+
/**
|
|
504
|
+
* Specifies the contact’s instant messaging address.
|
|
505
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815607.aspx
|
|
506
|
+
* @readonly
|
|
507
|
+
*/
|
|
508
|
+
get instantMessagingAddress(): string;
|
|
509
|
+
/**
|
|
510
|
+
* Specifies the user-readable display name for the first e-mail address.
|
|
511
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815460.aspx
|
|
512
|
+
* @readonly
|
|
513
|
+
*/
|
|
514
|
+
get email1DisplayName(): string;
|
|
515
|
+
/**
|
|
516
|
+
* Specifies the address type of the first e-mail address.
|
|
517
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815570.aspx
|
|
518
|
+
* @readonly
|
|
519
|
+
*/
|
|
520
|
+
get email1AddressType(): string;
|
|
521
|
+
/**
|
|
522
|
+
* Specifies the first e-mail address of the contact.
|
|
523
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842050.aspx
|
|
524
|
+
* @readonly
|
|
525
|
+
*/
|
|
526
|
+
get email1EmailAddress(): string;
|
|
527
|
+
/**
|
|
528
|
+
* Specifies the first display name that corresponds to the e-mail address that is specified for the contact.
|
|
529
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815564.aspx
|
|
530
|
+
* @readonly
|
|
531
|
+
*/
|
|
532
|
+
get email1OriginalDisplayName(): string;
|
|
533
|
+
/**
|
|
534
|
+
* Specifies the user-readable display name for the second e-mail address.
|
|
535
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839675.aspx
|
|
536
|
+
* @readonly
|
|
537
|
+
*/
|
|
538
|
+
get email2DisplayName(): string;
|
|
539
|
+
/**
|
|
540
|
+
* Specifies the address type of the second e-mail address.
|
|
541
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815361.aspx
|
|
542
|
+
* @readonly
|
|
543
|
+
*/
|
|
544
|
+
get email2AddressType(): string;
|
|
545
|
+
/**
|
|
546
|
+
* Specifies the second e-mail address of the contact.
|
|
547
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842205.aspx
|
|
548
|
+
* @readonly
|
|
549
|
+
*/
|
|
550
|
+
get email2EmailAddress(): string;
|
|
551
|
+
/**
|
|
552
|
+
* Specifies the second display name that corresponds to the e-mail address specified for the contact.
|
|
553
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765618.aspx
|
|
554
|
+
* @readonly
|
|
555
|
+
*/
|
|
556
|
+
get email2OriginalDisplayName(): string;
|
|
557
|
+
/**
|
|
558
|
+
* Specifies the user-readable display name for the third e-mail address.
|
|
559
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815669.aspx
|
|
560
|
+
* @readonly
|
|
561
|
+
*/
|
|
562
|
+
get email3DisplayName(): string;
|
|
563
|
+
/**
|
|
564
|
+
* Specifies the address type of the third e-mail address.
|
|
565
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842438.aspx
|
|
566
|
+
* @readonly
|
|
567
|
+
*/
|
|
568
|
+
get email3AddressType(): string;
|
|
569
|
+
/**
|
|
570
|
+
* Specifies the third e-mail address of the contact.
|
|
571
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815504.aspx
|
|
572
|
+
* @readonly
|
|
573
|
+
*/
|
|
574
|
+
get email3EmailAddress(): string;
|
|
575
|
+
/**
|
|
576
|
+
* Specifies the third display name that corresponds to the e-mail address that is specified for the contact.
|
|
577
|
+
* https://msdn.microsoft.com/en-us/library/office/cc815833.aspx
|
|
578
|
+
* @readonly
|
|
579
|
+
*/
|
|
580
|
+
get email3OriginalDisplayName(): string;
|
|
581
|
+
/**
|
|
582
|
+
* Specifies the address type for the business fax address for a contact.
|
|
583
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842026.aspx
|
|
584
|
+
* @readonly
|
|
585
|
+
*/
|
|
586
|
+
get fax1AddressType(): string;
|
|
587
|
+
/**
|
|
588
|
+
* Specifies the e-mail address of the contact’s business fax.
|
|
589
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765813.aspx
|
|
590
|
+
* @readonly
|
|
591
|
+
*/
|
|
592
|
+
get fax1EmailAddress(): string;
|
|
593
|
+
/**
|
|
594
|
+
* Specifies the original display name of the contact’s business fax address.
|
|
595
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765694.aspx
|
|
596
|
+
* @readonly
|
|
597
|
+
*/
|
|
598
|
+
get fax1OriginalDisplayName(): string;
|
|
599
|
+
/**
|
|
600
|
+
* Specifies the address type for the contact’s home fax address.
|
|
601
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839741.aspx
|
|
602
|
+
* @readonly
|
|
603
|
+
*/
|
|
604
|
+
get fax2AddressType(): string;
|
|
605
|
+
/**
|
|
606
|
+
* Specifies the e-mail address of the contact’s home fax address.
|
|
607
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765668.aspx
|
|
608
|
+
* @readonly
|
|
609
|
+
*/
|
|
610
|
+
get fax2EmailAddress(): string;
|
|
611
|
+
/**
|
|
612
|
+
* Specifies the original display name of the contact’s home fax address.
|
|
613
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842101.aspx
|
|
614
|
+
* @readonly
|
|
615
|
+
*/
|
|
616
|
+
get fax2OriginalDisplayName(): string;
|
|
617
|
+
/**
|
|
618
|
+
* Specifies the address type for the other contact’s fax address.
|
|
619
|
+
* https://msdn.microsoft.com/en-us/library/office/cc839752.aspx
|
|
620
|
+
* @readonly
|
|
621
|
+
*/
|
|
622
|
+
get fax3AddressType(): string;
|
|
623
|
+
/**
|
|
624
|
+
* Specifies the email address of the contact’s other fax address.
|
|
625
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842217.aspx
|
|
626
|
+
* @readonly
|
|
627
|
+
*/
|
|
628
|
+
get fax3EmailAddress(): string;
|
|
629
|
+
/**
|
|
630
|
+
* Specifies the original display name of the contact’s other fax address.
|
|
631
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765682.aspx
|
|
632
|
+
* @readonly
|
|
633
|
+
*/
|
|
634
|
+
get fax3OriginalDisplayName(): string;
|
|
635
|
+
/**
|
|
636
|
+
* Specifies a URL path from which a client can retrieve free/busy information for the contact as an iCal file, as specified in [MS-OXCICAL].
|
|
637
|
+
* https://msdn.microsoft.com/en-us/library/office/cc765766.aspx
|
|
638
|
+
* @readonly
|
|
639
|
+
*/
|
|
640
|
+
get freeBusyLocation(): string;
|
|
641
|
+
/**
|
|
642
|
+
* Contains the birthday of the contact.
|
|
643
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842301.aspx
|
|
644
|
+
* @readonly
|
|
645
|
+
*/
|
|
646
|
+
get birthday(): Date | null;
|
|
647
|
+
/**
|
|
648
|
+
* Contains the date of a user's wedding anniversary.
|
|
649
|
+
* https://msdn.microsoft.com/en-us/library/office/cc842132.aspx
|
|
650
|
+
* @readonly
|
|
651
|
+
*/
|
|
652
|
+
get anniversary(): Date | null;
|
|
653
|
+
/**
|
|
654
|
+
* Specifies the phonetic pronunciation of the surname of the contact.
|
|
655
|
+
*/
|
|
656
|
+
get yomiLastName(): string;
|
|
657
|
+
/**
|
|
658
|
+
* Specifies the phonetic pronunciation of the contact's given name.
|
|
659
|
+
*/
|
|
660
|
+
get yomiFirstName(): string;
|
|
661
|
+
/**
|
|
662
|
+
* Specifies the phonetic pronunciation of the contact's company name.
|
|
663
|
+
*/
|
|
664
|
+
get yomiCompanyName(): string;
|
|
665
|
+
/**
|
|
666
|
+
* JSON stringify the object properties.
|
|
667
|
+
*/
|
|
668
|
+
toJSON(): any;
|
|
669
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|