codeapp-js 0.2.1 → 0.3.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/codeApp/.power/schemas/appschemas/dataSourcesInfo.ts +6275 -0
- package/codeApp/.power/schemas/jira/jira.Schema.json +6903 -0
- package/codeApp/.power/schemas/keyvault/keyvault.Schema.json +1600 -0
- package/codeApp/.power/schemas/teams/teams.Schema.json +11112 -0
- package/codeApp/dist/codeapp.js +992 -4
- package/codeApp/dist/power-apps-data.js +145 -31
- package/codeApp/src/generated/index.ts +12 -0
- package/codeApp/src/generated/models/AzureKeyVaultModel.ts +107 -0
- package/codeApp/src/generated/models/JiraModel.ts +501 -0
- package/codeApp/src/generated/models/Office365GroupsModel.ts +363 -0
- package/codeApp/src/generated/models/Office365OutlookModel.ts +2046 -0
- package/codeApp/src/generated/models/Office365UsersModel.ts +254 -0
- package/codeApp/src/generated/services/AzureKeyVaultService.ts +257 -0
- package/codeApp/src/generated/services/JiraService.ts +1124 -0
- package/codeApp/src/generated/services/Office365GroupsService.ts +326 -0
- package/codeApp/src/generated/services/Office365OutlookService.ts +2476 -0
- package/codeApp/src/generated/services/Office365UsersService.ts +358 -0
- package/dev files/outlook.js +218 -9
- package/examples/combined demo/dist/codeapp.js +1098 -1098
- package/examples/combined demo/dist/index.js +470 -470
- package/examples/combined demo/dist/power-apps-data.js +3006 -3006
- package/examples/combined demo/power.config.json +42 -42
- package/examples/dataverse Demo/dist/codeapp.js +1085 -1085
- package/examples/dataverse Demo/dist/index.html +54 -54
- package/examples/dataverse Demo/dist/index.js +82 -82
- package/examples/dataverse Demo/dist/power-apps-data.js +2911 -2911
- package/examples/dataverse Demo/power.config.json +34 -34
- package/examples/dataverse Demo/readme.md +79 -79
- package/examples/groups Demo/dist/codeapp.js +1085 -1085
- package/examples/groups Demo/dist/index.js +113 -113
- package/examples/groups Demo/dist/power-apps-data.js +2911 -2911
- package/examples/kanban/dist/dataverse.js +94 -94
- package/examples/kanban/dist/environmentVar.js +55 -55
- package/examples/kanban/dist/office365groups.js +97 -97
- package/examples/kanban/dist/office365users.js +169 -169
- package/examples/kanban/dist/outlook.js +162 -162
- package/examples/kanban/dist/power-apps-data.js +2953 -2953
- package/examples/kanban/dist/sharepoint.js +339 -339
- package/examples/myProfile/dist/index.html +184 -184
- package/examples/myProfile/dist/index.js +141 -141
- package/examples/myProfile/dist/office365users.js +169 -169
- package/examples/myProfile/dist/power-apps-data.js +2953 -2953
- package/examples/myProfile/power.config.json +22 -22
- package/examples/myProfile/readme.md +79 -79
- package/examples/outlook Demo/dist/codeapp.js +1085 -1085
- package/examples/outlook Demo/dist/index.html +35 -35
- package/examples/outlook Demo/dist/index.js +170 -170
- package/examples/outlook Demo/dist/outlook.js +121 -121
- package/examples/outlook Demo/dist/power-apps-data.js +2911 -2911
- package/examples/outlook Demo/dist/styles.css +84 -84
- package/examples/outlook Demo/readme.md +82 -82
- package/examples/outlook Demo2/OutlookDemo_1_0_0_1.zip +0 -0
- package/examples/outlook Demo2/agent/decision-log.md +7 -0
- package/examples/{solution explorer → outlook Demo2}/dist/codeapp.js +245 -9
- package/examples/outlook Demo2/dist/index.html +98 -0
- package/examples/outlook Demo2/dist/index.js +272 -0
- package/examples/outlook Demo2/dist/styles.css +639 -0
- package/examples/outlook Demo2/power.config.json +23 -0
- package/examples/outlook Demo2/src/generated/index.ts +14 -0
- package/examples/outlook Demo2/src/generated/models/Office365GroupsModel.ts +363 -0
- package/examples/outlook Demo2/src/generated/models/Office365OutlookModel.ts +2046 -0
- package/examples/outlook Demo2/src/generated/models/Office365UsersModel.ts +254 -0
- package/examples/outlook Demo2/src/generated/services/Office365GroupsService.ts +326 -0
- package/examples/outlook Demo2/src/generated/services/Office365OutlookService.ts +2476 -0
- package/examples/outlook Demo2/src/generated/services/Office365UsersService.ts +358 -0
- package/examples/planning Poker/.vscode/settings.json +4 -4
- package/examples/planning Poker/additional files/customizations (tables).xml +6428 -6428
- package/examples/planning Poker/additional files/dataverse-tables.json +165 -165
- package/examples/planning Poker/additional files/readme.md +122 -122
- package/examples/planning Poker/dist/dataverse.js +78 -78
- package/examples/planning Poker/dist/index.html +198 -198
- package/examples/planning Poker/dist/index.js +954 -954
- package/examples/planning Poker/dist/power-apps-data.js +2953 -2953
- package/examples/planning Poker/dist/styles.css +815 -815
- package/examples/sharePoint Demo/agent/decision-log.md +5 -5
- package/examples/sharePoint Demo/dist/codeapp.js +1085 -1085
- package/examples/sharePoint Demo/dist/index.js +262 -262
- package/examples/sharePoint Demo/dist/power-apps-data.js +2911 -2911
- package/examples/sharePoint Demo/power.config.json +22 -22
- package/examples/todo/dist/dataverse.js +64 -64
- package/examples/todo/dist/index.html +75 -75
- package/examples/todo/dist/index.js +8 -8
- package/examples/todo/dist/power-apps-data.js +2953 -2953
- package/examples/todo/dist/renderer.js +375 -375
- package/examples/todo/dist/styles.css +691 -691
- package/examples/todo/power.config.json +34 -34
- package/package.json +1 -1
- package/readme.md +33 -4
- package/examples/solution explorer/agent/decision-log.md +0 -27
- package/examples/solution explorer/agent/mockup-01-swiss-grid.html +0 -452
- package/examples/solution explorer/agent/mockup-02-dark-glass.html +0 -496
- package/examples/solution explorer/agent/mockup-03-paper-console.html +0 -510
- package/examples/solution explorer/agent/mockup-04-neon-noir.html +0 -546
- package/examples/solution explorer/agent/mockup-05-zen-garden.html +0 -534
- package/examples/solution explorer/dist/index.html +0 -80
- package/examples/solution explorer/dist/index.js +0 -735
- package/examples/solution explorer/dist/styles.css +0 -571
- package/examples/solution explorer/power.config.json +0 -151
- /package/examples/{solution explorer → outlook Demo2}/dist/icon-512.png +0 -0
- /package/examples/{solution explorer → outlook Demo2}/dist/power-apps-data.js +0 -0
|
@@ -0,0 +1,2046 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* This file is autogenerated. Do not edit this file directly.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export interface TableMetadata {
|
|
7
|
+
// Table name
|
|
8
|
+
name?: string;
|
|
9
|
+
// Table title
|
|
10
|
+
title?: string;
|
|
11
|
+
// Table permission
|
|
12
|
+
x_ms_permission?: string;
|
|
13
|
+
x_ms_capabilities?: TableCapabilitiesMetadata;
|
|
14
|
+
schema?: Object;
|
|
15
|
+
referencedEntities?: Object;
|
|
16
|
+
// Url link
|
|
17
|
+
webUrl?: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface TableCapabilitiesMetadata {
|
|
21
|
+
sortRestrictions?: TableSortRestrictionsMetadata;
|
|
22
|
+
filterRestrictions?: TableFilterRestrictionsMetadata;
|
|
23
|
+
selectRestrictions?: TableSelectRestrictionsMetadata;
|
|
24
|
+
// Server paging restrictions
|
|
25
|
+
isOnlyServerPagable?: boolean;
|
|
26
|
+
// List of supported filter capabilities
|
|
27
|
+
filterFunctionSupport?: string[];
|
|
28
|
+
// List of supported server-driven paging capabilities
|
|
29
|
+
serverPagingOptions?: string[];
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export type Object = object;
|
|
33
|
+
|
|
34
|
+
export interface TableSortRestrictionsMetadata {
|
|
35
|
+
// Indicates whether this table has sortable columns
|
|
36
|
+
sortable?: boolean;
|
|
37
|
+
// List of unsortable properties
|
|
38
|
+
unsortableProperties?: string[];
|
|
39
|
+
// List of properties which support ascending order only
|
|
40
|
+
ascendingOnlyProperties?: string[];
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface TableFilterRestrictionsMetadata {
|
|
44
|
+
// Indicates whether this table has filterable columns
|
|
45
|
+
filterable?: boolean;
|
|
46
|
+
// List of non filterable properties
|
|
47
|
+
nonFilterableProperties?: string[];
|
|
48
|
+
// List of required properties
|
|
49
|
+
requiredProperties?: string[];
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export interface TableSelectRestrictionsMetadata {
|
|
53
|
+
// Indicates whether this table has selectable columns
|
|
54
|
+
selectable?: boolean;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export interface CalendarEventList {
|
|
58
|
+
// List of calendar items
|
|
59
|
+
value?: CalendarEventBackend[];
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export type CalendarEventBackendImportance = 'Low'|'Normal'|'High';
|
|
63
|
+
export type CalendarEventBackendShowAs = 'Free'|'Tentative'|'Busy'|'Oof'|'WorkingElsewhere'|'Unknown';
|
|
64
|
+
export type CalendarEventBackendType = 'SingleInstance'|'Occurrence'|'Exception'|'SeriesMaster';
|
|
65
|
+
|
|
66
|
+
export interface CalendarEventBackend {
|
|
67
|
+
// The Event's unique identifier
|
|
68
|
+
Id?: string;
|
|
69
|
+
// List of attendees for the event
|
|
70
|
+
Attendees?: Attendee[];
|
|
71
|
+
Body?: ItemBody;
|
|
72
|
+
// The preview of the message associated with the event
|
|
73
|
+
BodyPreview?: string;
|
|
74
|
+
// The categories associated with the event
|
|
75
|
+
Categories?: string[];
|
|
76
|
+
// This property identifies the version of the event object. Every time the event is changed, ChangeKey changes as well.
|
|
77
|
+
ChangeKey?: string;
|
|
78
|
+
// The date and time that the event was created
|
|
79
|
+
DateTimeCreated?: string;
|
|
80
|
+
// The date and time that the event was last modified
|
|
81
|
+
DateTimeLastModified?: string;
|
|
82
|
+
// The end time of the event
|
|
83
|
+
End: string;
|
|
84
|
+
// This property specifies the time zone of the meeting end time. The value must be as defined in Windows (example: 'Pacific Standard Time').
|
|
85
|
+
EndTimeZone?: string;
|
|
86
|
+
// Set to true if the event has attachments
|
|
87
|
+
HasAttachments?: boolean;
|
|
88
|
+
// A unique identifier that is shared by all instances of an event across different calendars
|
|
89
|
+
ICalUId?: string;
|
|
90
|
+
// The importance of the event: Low, Normal, or High
|
|
91
|
+
Importance?: CalendarEventBackendImportance;
|
|
92
|
+
// Set to true if the event lasts all day
|
|
93
|
+
IsAllDay?: boolean;
|
|
94
|
+
// Set to true if the event has been canceled
|
|
95
|
+
IsCancelled?: boolean;
|
|
96
|
+
// Set to true if the message sender is also the organizer
|
|
97
|
+
IsOrganizer?: boolean;
|
|
98
|
+
Location?: Location;
|
|
99
|
+
Organizer?: Recipient;
|
|
100
|
+
Recurrence?: PatternedRecurrence;
|
|
101
|
+
// Time in minutes before event start to remind
|
|
102
|
+
Reminder?: number;
|
|
103
|
+
// Set to true if the sender would like a response when the event is accepted or declined
|
|
104
|
+
ResponseRequested?: boolean;
|
|
105
|
+
ResponseStatus?: ResponseStatus;
|
|
106
|
+
// Unique identifier for Series Master event type
|
|
107
|
+
SeriesMasterId?: string;
|
|
108
|
+
// Shows as free or busy
|
|
109
|
+
ShowAs?: CalendarEventBackendShowAs;
|
|
110
|
+
// The start time of the event
|
|
111
|
+
Start: string;
|
|
112
|
+
// This property specifies the time zone of the meeting start time. The value must be as defined in Windows (example: 'Pacific Standard Time').
|
|
113
|
+
StartTimeZone?: string;
|
|
114
|
+
// Event subject
|
|
115
|
+
Subject: string;
|
|
116
|
+
// The event type: Single Instance, Occurrence, Exception, or Series Master
|
|
117
|
+
Type?: CalendarEventBackendType;
|
|
118
|
+
// The preview of the message associated with the event
|
|
119
|
+
WebLink?: string;
|
|
120
|
+
// The reason property used by O365 sync events protocol, will be 'deleted' if its a deleted event.
|
|
121
|
+
Reason?: string;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export type AttendeeType = 'Required'|'Optional'|'Resource';
|
|
125
|
+
|
|
126
|
+
export interface Attendee {
|
|
127
|
+
Status?: ResponseStatus;
|
|
128
|
+
Type?: AttendeeType;
|
|
129
|
+
EmailAddress?: EmailAddress;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export type ItemBodyContentType = 'Text'|'HTML';
|
|
133
|
+
|
|
134
|
+
export interface ItemBody {
|
|
135
|
+
ContentType?: ItemBodyContentType;
|
|
136
|
+
Content?: string;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export interface Location {
|
|
140
|
+
DisplayName?: string;
|
|
141
|
+
Address?: PhysicalAddress;
|
|
142
|
+
Coordinates?: GeoCoordinates;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export interface Recipient {
|
|
146
|
+
EmailAddress?: EmailAddress;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export interface PatternedRecurrence {
|
|
150
|
+
Pattern?: RecurrencePattern;
|
|
151
|
+
Range?: RecurrenceRange;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export type ResponseStatusResponse = 'None'|'Organizer'|'TentativelyAccepted'|'Accepted'|'Declined'|'NotResponded';
|
|
155
|
+
|
|
156
|
+
export interface ResponseStatus {
|
|
157
|
+
Response?: ResponseStatusResponse;
|
|
158
|
+
Time?: string;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface EmailAddress {
|
|
162
|
+
Name?: string;
|
|
163
|
+
Address?: string;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export interface PhysicalAddress {
|
|
167
|
+
Street?: string;
|
|
168
|
+
City?: string;
|
|
169
|
+
State?: string;
|
|
170
|
+
CountryOrRegion?: string;
|
|
171
|
+
PostalCode?: string;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export interface GeoCoordinates {
|
|
175
|
+
Altitude?: number;
|
|
176
|
+
Latitude?: number;
|
|
177
|
+
Longitude?: number;
|
|
178
|
+
Accuracy?: number;
|
|
179
|
+
AltitudeAccuracy?: number;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export type RecurrencePatternType = 'Daily'|'Weekly'|'AbsoluteMonthly'|'RelativeMonthly'|'AbsoluteYearly'|'RelativeYearly';
|
|
183
|
+
export type RecurrencePatternFirstDayOfWeek = 'Sunday'|'Monday'|'Tuesday'|'Wednesday'|'Thursday'|'Friday'|'Saturday';
|
|
184
|
+
export type RecurrencePatternIndex = 'First'|'Second'|'Third'|'Fourth'|'Last';
|
|
185
|
+
|
|
186
|
+
export interface RecurrencePattern {
|
|
187
|
+
Type?: RecurrencePatternType;
|
|
188
|
+
Interval?: number;
|
|
189
|
+
Month?: number;
|
|
190
|
+
DayOfMonth?: number;
|
|
191
|
+
DaysOfWeek?: string[];
|
|
192
|
+
FirstDayOfWeek?: RecurrencePatternFirstDayOfWeek;
|
|
193
|
+
Index?: RecurrencePatternIndex;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
export type RecurrenceRangeType = 'EndDate'|'NoEnd'|'Numbered';
|
|
197
|
+
|
|
198
|
+
export interface RecurrenceRange {
|
|
199
|
+
Type?: RecurrenceRangeType;
|
|
200
|
+
StartDate?: string;
|
|
201
|
+
EndDate?: string;
|
|
202
|
+
NumberOfOccurrences?: number;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
export interface CalendarEventListClientReceive {
|
|
206
|
+
// List of calendar items
|
|
207
|
+
value?: CalendarEventClientReceive[];
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
export interface CalendarEventClientReceive {
|
|
211
|
+
// Event subject
|
|
212
|
+
Subject?: string;
|
|
213
|
+
// Start time of the event (example: '2016-11-01T14:30:00Z')
|
|
214
|
+
Start?: string;
|
|
215
|
+
// End time of the event (example: '2016-11-01T15:30:00Z')
|
|
216
|
+
End?: string;
|
|
217
|
+
// Status to show during the event (Unknown - -1, Free - 0, Tentative - 1, Busy - 2, Oof - 3, WorkingElsewhere - 4)
|
|
218
|
+
ShowAs?: number;
|
|
219
|
+
// The recurrence pattern for the event (None - 0, Daily - 1, Weekly - 2, Monthly - 3, Yearly - 4)
|
|
220
|
+
Recurrence?: number;
|
|
221
|
+
// The response type of the event (None - 0, Organizer - 1, TentativelyAccepted - 2, Accepted - 3, Declined - 4, NotResponded - 5)
|
|
222
|
+
ResponseType?: number;
|
|
223
|
+
// The response time of the event
|
|
224
|
+
ResponseTime?: string;
|
|
225
|
+
// A unique identifier that is shared by all instances of an event across different calendars
|
|
226
|
+
ICalUId?: string;
|
|
227
|
+
// The importance of the event (0 - Low, 1 - Normal, 2 - High)
|
|
228
|
+
Importance?: number;
|
|
229
|
+
// The event's unique identifier
|
|
230
|
+
Id?: string;
|
|
231
|
+
// The date and time that the event was created
|
|
232
|
+
DateTimeCreated?: string;
|
|
233
|
+
// The date and time that the event was last modified
|
|
234
|
+
DateTimeLastModified?: string;
|
|
235
|
+
// The organizer of the event
|
|
236
|
+
Organizer?: string;
|
|
237
|
+
// Time zone of the event
|
|
238
|
+
TimeZone?: string;
|
|
239
|
+
// Unique identifier for Series Master event type
|
|
240
|
+
SeriesMasterId?: string;
|
|
241
|
+
// The categories associated with the event
|
|
242
|
+
Categories?: string[];
|
|
243
|
+
// The URL to open the event in Outlook Web App
|
|
244
|
+
WebLink?: string;
|
|
245
|
+
// Required attendees for the event separated by semicolons
|
|
246
|
+
RequiredAttendees?: string;
|
|
247
|
+
// Optional attendees for the event separated by semicolons
|
|
248
|
+
OptionalAttendees?: string;
|
|
249
|
+
// Resource attendees for the event separated by semicolons
|
|
250
|
+
ResourceAttendees?: string;
|
|
251
|
+
// Body of the message associated with the event
|
|
252
|
+
Body?: string;
|
|
253
|
+
// Set to true if the body is Html
|
|
254
|
+
IsHtml?: boolean;
|
|
255
|
+
// Location of the event
|
|
256
|
+
Location?: string;
|
|
257
|
+
// Set to true if the event lasts all day
|
|
258
|
+
IsAllDay?: boolean;
|
|
259
|
+
// End time of the recurrence
|
|
260
|
+
RecurrenceEnd?: string;
|
|
261
|
+
// How many times to repeat the event
|
|
262
|
+
NumberOfOccurrences?: number;
|
|
263
|
+
// Time in minutes before event start to remind
|
|
264
|
+
Reminder?: number;
|
|
265
|
+
// Set to true if the sender would like a response when the event is accepted or declined
|
|
266
|
+
ResponseRequested?: boolean;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
export interface GraphCalendarEventListClientReceive {
|
|
270
|
+
// List of calendar items
|
|
271
|
+
value?: GraphCalendarEventClientReceive[];
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
export type GraphCalendarEventClientReceiveresponseType = 'none'|'organizer'|'tentativelyAccepted'|'accepted'|'declined'|'notResponded';
|
|
275
|
+
export type GraphCalendarEventClientReceiveimportance = 'low'|'normal'|'high';
|
|
276
|
+
export type GraphCalendarEventClientReceiverecurrence = 'none'|'daily'|'weekly'|'monthly'|'yearly';
|
|
277
|
+
export type GraphCalendarEventClientReceiveshowAs = 'free'|'tentative'|'busy'|'oof'|'workingElsewhere'|'unknown';
|
|
278
|
+
export type GraphCalendarEventClientReceivesensitivity = 'normal'|'personal'|'private'|'confidential';
|
|
279
|
+
|
|
280
|
+
export interface GraphCalendarEventClientReceive {
|
|
281
|
+
// Event subject
|
|
282
|
+
subject?: string;
|
|
283
|
+
// Start time of the event (example: '2017-08-29T04:00:00.0000000')
|
|
284
|
+
start?: string;
|
|
285
|
+
// End time of the event (example: '2017-08-29T05:00:00.0000000')
|
|
286
|
+
end?: string;
|
|
287
|
+
// Start time of the event with time zone (example: '2017-08-29T04:00:00.0000000+00:00')
|
|
288
|
+
startWithTimeZone?: string;
|
|
289
|
+
// End time of the event with time zone (example: '2017-08-29T05:00:00.0000000+00:00')
|
|
290
|
+
endWithTimeZone?: string;
|
|
291
|
+
// Body of the message associated with the event
|
|
292
|
+
body?: string;
|
|
293
|
+
// Set to true if the body is Html
|
|
294
|
+
isHtml?: boolean;
|
|
295
|
+
// The response type of the event (none, organizer, tentativelyAccepted, accepted, declined or notResponded)
|
|
296
|
+
responseType?: GraphCalendarEventClientReceiveresponseType;
|
|
297
|
+
// The response time of the event
|
|
298
|
+
responseTime?: string;
|
|
299
|
+
// The event's unique identifier
|
|
300
|
+
id?: string;
|
|
301
|
+
// The date and time that the event was created
|
|
302
|
+
createdDateTime?: string;
|
|
303
|
+
// The date and time that the event was last modified
|
|
304
|
+
lastModifiedDateTime?: string;
|
|
305
|
+
// The organizer of the event
|
|
306
|
+
organizer?: string;
|
|
307
|
+
// Time zone of the event
|
|
308
|
+
timeZone?: string;
|
|
309
|
+
// Unique identifier for Series Master event type
|
|
310
|
+
seriesMasterId?: string;
|
|
311
|
+
// A unique identifier for an event across calendars. This ID is different for each occurrence in a recurring series
|
|
312
|
+
iCalUId?: string;
|
|
313
|
+
// The categories associated with the event
|
|
314
|
+
categories?: string[];
|
|
315
|
+
// The URL to open the event in Outlook Web App
|
|
316
|
+
webLink?: string;
|
|
317
|
+
// Required attendees for the event separated by semicolons
|
|
318
|
+
requiredAttendees?: string;
|
|
319
|
+
// Optional attendees for the event separated by semicolons
|
|
320
|
+
optionalAttendees?: string;
|
|
321
|
+
// Resource attendees for the event separated by semicolons
|
|
322
|
+
resourceAttendees?: string;
|
|
323
|
+
// Location of the event
|
|
324
|
+
location?: string;
|
|
325
|
+
// The importance of the event: low, normal, or high
|
|
326
|
+
importance?: GraphCalendarEventClientReceiveimportance;
|
|
327
|
+
// Set to true if the event lasts all day
|
|
328
|
+
isAllDay?: boolean;
|
|
329
|
+
// The recurrence pattern for the event: none, daily, weekly, monthly or yearly
|
|
330
|
+
recurrence?: GraphCalendarEventClientReceiverecurrence;
|
|
331
|
+
// End Date of the recurrence
|
|
332
|
+
recurrenceEnd?: string;
|
|
333
|
+
// How many times to repeat the event
|
|
334
|
+
numberOfOccurences?: number;
|
|
335
|
+
// Time in minutes before event start to remind
|
|
336
|
+
reminderMinutesBeforeStart?: number;
|
|
337
|
+
// Set to true if an alert is set to remind the user of the event.
|
|
338
|
+
isReminderOn?: boolean;
|
|
339
|
+
// Status to show during the event: free, tentative, busy, oof, workingElsewhere or unknown
|
|
340
|
+
showAs?: GraphCalendarEventClientReceiveshowAs;
|
|
341
|
+
// Set to true if the sender would like a response when the event is accepted or declined
|
|
342
|
+
responseRequested?: boolean;
|
|
343
|
+
// The possible values are: normal, personal, private, confidential
|
|
344
|
+
sensitivity?: GraphCalendarEventClientReceivesensitivity;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
export interface PaginatedListResponse_CalendarEventClientReceiveStringEnums {
|
|
348
|
+
// Values
|
|
349
|
+
Values?: CalendarEventClientReceiveStringEnums[];
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
export type CalendarEventClientReceiveStringEnumsImportance = 'Low'|'Normal'|'High';
|
|
353
|
+
export type CalendarEventClientReceiveStringEnumsResponseType = 'None'|'Organizer'|'TentativelyAccepted'|'Accepted'|'Declined'|'NotResponded';
|
|
354
|
+
export type CalendarEventClientReceiveStringEnumsRecurrence = 'None'|'Daily'|'Weekly'|'Monthly'|'Yearly';
|
|
355
|
+
export type CalendarEventClientReceiveStringEnumsShowAs = 'Free'|'Tentative'|'Busy'|'Oof'|'WorkingElsewhere'|'Unknown';
|
|
356
|
+
|
|
357
|
+
export interface CalendarEventClientReceiveStringEnums {
|
|
358
|
+
// The importance of the event: Low, Normal, or High
|
|
359
|
+
Importance?: CalendarEventClientReceiveStringEnumsImportance;
|
|
360
|
+
// The response type of the event: None, Organizer, TentativelyAccepted, Accepted, Declined or NotResponded
|
|
361
|
+
ResponseType?: CalendarEventClientReceiveStringEnumsResponseType;
|
|
362
|
+
// The recurrence pattern for the event
|
|
363
|
+
Recurrence?: CalendarEventClientReceiveStringEnumsRecurrence;
|
|
364
|
+
// Status to show during the event
|
|
365
|
+
ShowAs?: CalendarEventClientReceiveStringEnumsShowAs;
|
|
366
|
+
// Event subject
|
|
367
|
+
Subject?: string;
|
|
368
|
+
// Start time of the event (example: '2016-11-01T14:30:00Z')
|
|
369
|
+
Start?: string;
|
|
370
|
+
// End time of the event (example: '2016-11-01T15:30:00Z')
|
|
371
|
+
End?: string;
|
|
372
|
+
// The response time of the event
|
|
373
|
+
ResponseTime?: string;
|
|
374
|
+
// A unique identifier that is shared by all instances of an event across different calendars
|
|
375
|
+
ICalUId?: string;
|
|
376
|
+
// The event's unique identifier
|
|
377
|
+
Id?: string;
|
|
378
|
+
// The date and time that the event was created
|
|
379
|
+
DateTimeCreated?: string;
|
|
380
|
+
// The date and time that the event was last modified
|
|
381
|
+
DateTimeLastModified?: string;
|
|
382
|
+
// The organizer of the event
|
|
383
|
+
Organizer?: string;
|
|
384
|
+
// Time zone of the event
|
|
385
|
+
TimeZone?: string;
|
|
386
|
+
// Unique identifier for Series Master event type
|
|
387
|
+
SeriesMasterId?: string;
|
|
388
|
+
// The categories associated with the event
|
|
389
|
+
Categories?: string[];
|
|
390
|
+
// The URL to open the event in Outlook Web App
|
|
391
|
+
WebLink?: string;
|
|
392
|
+
// Required attendees for the event separated by semicolons
|
|
393
|
+
RequiredAttendees?: string;
|
|
394
|
+
// Optional attendees for the event separated by semicolons
|
|
395
|
+
OptionalAttendees?: string;
|
|
396
|
+
// Resource attendees for the event separated by semicolons
|
|
397
|
+
ResourceAttendees?: string;
|
|
398
|
+
// Body of the message associated with the event
|
|
399
|
+
Body?: string;
|
|
400
|
+
// Set to true if the body is Html
|
|
401
|
+
IsHtml?: boolean;
|
|
402
|
+
// Location of the event
|
|
403
|
+
Location?: string;
|
|
404
|
+
// Set to true if the event lasts all day
|
|
405
|
+
IsAllDay?: boolean;
|
|
406
|
+
// End time of the recurrence
|
|
407
|
+
RecurrenceEnd?: string;
|
|
408
|
+
// How many times to repeat the event
|
|
409
|
+
NumberOfOccurrences?: number;
|
|
410
|
+
// Time in minutes before event start to remind
|
|
411
|
+
Reminder?: number;
|
|
412
|
+
// Set to true if the sender would like a response when the event is accepted or declined
|
|
413
|
+
ResponseRequested?: boolean;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
export interface ClientSubscription {
|
|
417
|
+
// Callback url to the flow engine. Expected as part of the request and provided by Flow.
|
|
418
|
+
NotificationUrl: string;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
export interface SubscriptionResponse {
|
|
422
|
+
// Id of the subscription
|
|
423
|
+
id?: string;
|
|
424
|
+
// Resource of the subscription request
|
|
425
|
+
resource?: string;
|
|
426
|
+
// Notification Type
|
|
427
|
+
notificationType?: string;
|
|
428
|
+
// Notification Url
|
|
429
|
+
notificationUrl?: string;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
export interface EntityListResponse_FilePickerFile {
|
|
433
|
+
// List of values
|
|
434
|
+
value?: FilePickerFile[];
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
export interface FilePickerFile {
|
|
438
|
+
// Uniquely identifies the file
|
|
439
|
+
Id?: string;
|
|
440
|
+
// Display name for the file
|
|
441
|
+
DisplayName?: string;
|
|
442
|
+
// Set to true if the file is a folder
|
|
443
|
+
IsFolder?: boolean;
|
|
444
|
+
// Path of the file
|
|
445
|
+
Path?: string;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
export type ClientSendMessageImportance = 'Low'|'Normal'|'High';
|
|
449
|
+
|
|
450
|
+
export interface ClientSendMessage {
|
|
451
|
+
// Email address to send mail from (requires "Send as" or "Send on behalf of" permission for that mailbox). For more info on granting permissions please refer https://docs.microsoft.com/office365/admin/manage/send-email-as-distribution-list
|
|
452
|
+
From?: string;
|
|
453
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
454
|
+
Cc?: string;
|
|
455
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
456
|
+
Bcc?: string;
|
|
457
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
458
|
+
To: string;
|
|
459
|
+
// Specify the subject of the mail
|
|
460
|
+
Subject: string;
|
|
461
|
+
// Specify the body of the mail
|
|
462
|
+
Body: string;
|
|
463
|
+
// Attachments
|
|
464
|
+
Attachments?: ClientSendAttachment[];
|
|
465
|
+
// Sensitivity
|
|
466
|
+
Sensitivity?: string;
|
|
467
|
+
// The email addresses to use when replying
|
|
468
|
+
ReplyTo?: string;
|
|
469
|
+
// Importance
|
|
470
|
+
Importance?: ClientSendMessageImportance;
|
|
471
|
+
// Is Html?
|
|
472
|
+
IsHtml?: boolean;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
export interface ClientSendAttachment {
|
|
476
|
+
// Attachment name
|
|
477
|
+
Name: string;
|
|
478
|
+
// Attachment content
|
|
479
|
+
ContentBytes: string;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
export type ClientReceiveMessageStringEnumsImportance = 'Low'|'Normal'|'High';
|
|
483
|
+
|
|
484
|
+
export interface ClientReceiveMessageStringEnums {
|
|
485
|
+
// The importance of the message
|
|
486
|
+
Importance?: ClientReceiveMessageStringEnumsImportance;
|
|
487
|
+
// The mailbox owner and sender of the message
|
|
488
|
+
From?: string;
|
|
489
|
+
// The recipients for the message
|
|
490
|
+
To?: string;
|
|
491
|
+
// The Cc recipients for the message
|
|
492
|
+
Cc?: string;
|
|
493
|
+
// The Bcc recipients for the message
|
|
494
|
+
Bcc?: string;
|
|
495
|
+
// The email addresses to use when replying
|
|
496
|
+
ReplyTo?: string;
|
|
497
|
+
// The subject of the message
|
|
498
|
+
Subject?: string;
|
|
499
|
+
// The body of the message
|
|
500
|
+
Body?: string;
|
|
501
|
+
// The preview of the message
|
|
502
|
+
BodyPreview?: string;
|
|
503
|
+
// Indicates whether the message has attachments
|
|
504
|
+
HasAttachment?: boolean;
|
|
505
|
+
// The unique identifier of the message
|
|
506
|
+
Id?: string;
|
|
507
|
+
// The message ID in the format specified by RFC2822
|
|
508
|
+
InternetMessageId?: string;
|
|
509
|
+
// The Id of the conversation the email belongs to
|
|
510
|
+
ConversationId?: string;
|
|
511
|
+
// The date and time the message was received
|
|
512
|
+
DateTimeReceived?: string;
|
|
513
|
+
// Indicates whether the message has been read
|
|
514
|
+
IsRead?: boolean;
|
|
515
|
+
// The file attachments for the message
|
|
516
|
+
Attachments?: ClientReceiveFileAttachment[];
|
|
517
|
+
// Is Html?
|
|
518
|
+
IsHtml?: boolean;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
export interface ClientReceiveFileAttachment {
|
|
522
|
+
// Attachment Id
|
|
523
|
+
Id?: string;
|
|
524
|
+
// Attachment name
|
|
525
|
+
Name?: string;
|
|
526
|
+
// Attachment content
|
|
527
|
+
ContentBytes?: string;
|
|
528
|
+
// Attachment content type
|
|
529
|
+
ContentType?: string;
|
|
530
|
+
// The size in bytes of the attachment
|
|
531
|
+
Size?: number;
|
|
532
|
+
// Set to true if this is an inline attachment
|
|
533
|
+
IsInline?: boolean;
|
|
534
|
+
// The date and time when the attachment was last modified
|
|
535
|
+
LastModifiedDateTime?: string;
|
|
536
|
+
// Content Id
|
|
537
|
+
ContentId?: string;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
export type ClientSendHtmlMessageImportance = 'Low'|'Normal'|'High';
|
|
541
|
+
|
|
542
|
+
export interface ClientSendHtmlMessage {
|
|
543
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
544
|
+
To: string;
|
|
545
|
+
// Specify the subject of the mail
|
|
546
|
+
Subject: string;
|
|
547
|
+
// Specify the body of the mail
|
|
548
|
+
Body: string;
|
|
549
|
+
// Email address to send mail from (requires "Send as" or "Send on behalf of" permission for that mailbox). For more info on granting permissions please refer https://docs.microsoft.com/office365/admin/manage/send-email-as-distribution-list
|
|
550
|
+
From?: string;
|
|
551
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
552
|
+
Cc?: string;
|
|
553
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
554
|
+
Bcc?: string;
|
|
555
|
+
// Attachments
|
|
556
|
+
Attachments?: ClientSendAttachment[];
|
|
557
|
+
// Sensitivity
|
|
558
|
+
Sensitivity?: string;
|
|
559
|
+
// The email addresses to use when replying
|
|
560
|
+
ReplyTo?: string;
|
|
561
|
+
// Importance
|
|
562
|
+
Importance?: ClientSendHtmlMessageImportance;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
export type ClientDraftHtmlMessageImportance = 'Low'|'Normal'|'High';
|
|
566
|
+
|
|
567
|
+
export interface ClientDraftHtmlMessage {
|
|
568
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
569
|
+
To: string;
|
|
570
|
+
// Specify the subject of the mail
|
|
571
|
+
Subject: string;
|
|
572
|
+
// Specify the body of the mail
|
|
573
|
+
Body: string;
|
|
574
|
+
// Email address to send mail from (requires "Send as" or "Send on behalf of" permission for that mailbox). For more info on granting permissions please refer https://docs.microsoft.com/office365/admin/manage/send-email-as-distribution-list
|
|
575
|
+
From?: string;
|
|
576
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
577
|
+
Cc?: string;
|
|
578
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
579
|
+
Bcc?: string;
|
|
580
|
+
// Attachments
|
|
581
|
+
Attachments?: ClientSendAttachment[];
|
|
582
|
+
// Sensitivity
|
|
583
|
+
Sensitivity?: string;
|
|
584
|
+
// The email addresses to use when replying
|
|
585
|
+
ReplyTo?: string;
|
|
586
|
+
// Importance
|
|
587
|
+
Importance?: ClientDraftHtmlMessageImportance;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
export interface GraphOutlookCategory {
|
|
591
|
+
// The ID of the Outlook Category.
|
|
592
|
+
id?: string;
|
|
593
|
+
// The display name of the Outlook Category.
|
|
594
|
+
displayName?: string;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
export interface BatchOperationResult {
|
|
598
|
+
// The count of messages processed successfully.
|
|
599
|
+
successCount?: number;
|
|
600
|
+
// The list of failed messages with errors.
|
|
601
|
+
failures?: BatchItemFailureResult[];
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
export interface BatchItemFailureResult {
|
|
605
|
+
// The ID of the failed message.
|
|
606
|
+
MessageId?: string;
|
|
607
|
+
// The error message of the failure.
|
|
608
|
+
Error?: string;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
export interface BatchResponse_ClientReceiveMessage {
|
|
612
|
+
// A list of the response objects
|
|
613
|
+
value?: ClientReceiveMessage[];
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
export interface ClientReceiveMessage {
|
|
617
|
+
// The mailbox owner and sender of the message
|
|
618
|
+
From?: string;
|
|
619
|
+
// The recipients for the message
|
|
620
|
+
To?: string;
|
|
621
|
+
// The Cc recipients for the message
|
|
622
|
+
Cc?: string;
|
|
623
|
+
// The Bcc recipients for the message
|
|
624
|
+
Bcc?: string;
|
|
625
|
+
// The email addresses to use when replying
|
|
626
|
+
ReplyTo?: string;
|
|
627
|
+
// The subject of the message
|
|
628
|
+
Subject?: string;
|
|
629
|
+
// The body of the message
|
|
630
|
+
Body?: string;
|
|
631
|
+
// The importance of the message (0 - Low, 1 - Normal, 2 - High)
|
|
632
|
+
Importance?: number;
|
|
633
|
+
// The preview of the message
|
|
634
|
+
BodyPreview?: string;
|
|
635
|
+
// Indicates whether the message has attachments
|
|
636
|
+
HasAttachment?: boolean;
|
|
637
|
+
// The unique identifier of the message
|
|
638
|
+
Id?: string;
|
|
639
|
+
// The message ID in the format specified by RFC2822
|
|
640
|
+
InternetMessageId?: string;
|
|
641
|
+
// The Id of the conversation the email belongs to
|
|
642
|
+
ConversationId?: string;
|
|
643
|
+
// The date and time the message was received
|
|
644
|
+
DateTimeReceived?: string;
|
|
645
|
+
// Indicates whether the message has been read
|
|
646
|
+
IsRead?: boolean;
|
|
647
|
+
// The file attachments for the message
|
|
648
|
+
Attachments?: ClientReceiveFileAttachment[];
|
|
649
|
+
// Is Html?
|
|
650
|
+
IsHtml?: boolean;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
export type GraphClientReceiveMessageimportance = 'low'|'normal'|'high';
|
|
654
|
+
|
|
655
|
+
export interface GraphClientReceiveMessage {
|
|
656
|
+
// The mailbox owner and sender of the message
|
|
657
|
+
_from?: string;
|
|
658
|
+
// The recipients for the message
|
|
659
|
+
toRecipients?: string;
|
|
660
|
+
// The Cc recipients for the message
|
|
661
|
+
ccRecipients?: string;
|
|
662
|
+
// The Bcc recipients for the message
|
|
663
|
+
bccRecipients?: string;
|
|
664
|
+
// The email addresses to use when replying
|
|
665
|
+
replyTo?: string;
|
|
666
|
+
// The subject of the message
|
|
667
|
+
subject?: string;
|
|
668
|
+
// The body of the message
|
|
669
|
+
body?: string;
|
|
670
|
+
// The importance of the message (low, normal, high)
|
|
671
|
+
importance?: GraphClientReceiveMessageimportance;
|
|
672
|
+
// The preview of the message
|
|
673
|
+
bodyPreview?: string;
|
|
674
|
+
// Indicates whether the message has attachments
|
|
675
|
+
hasAttachments?: boolean;
|
|
676
|
+
// The unique identifier of the message
|
|
677
|
+
id?: string;
|
|
678
|
+
// The message ID in the format specified by RFC2822
|
|
679
|
+
internetMessageId?: string;
|
|
680
|
+
// The Id of the conversation the email belongs to
|
|
681
|
+
conversationId?: string;
|
|
682
|
+
// The date and time the message was received
|
|
683
|
+
receivedDateTime?: string;
|
|
684
|
+
// Indicates whether the message has been read
|
|
685
|
+
isRead?: boolean;
|
|
686
|
+
// The file attachments for the message
|
|
687
|
+
attachments?: GraphClientReceiveFileAttachment[];
|
|
688
|
+
// Is Html?
|
|
689
|
+
isHtml?: boolean;
|
|
690
|
+
sensitivityLabelInfo?: sensitivityLabelMetadata[];
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
export interface GraphClientReceiveFileAttachment {
|
|
694
|
+
// Attachment Id
|
|
695
|
+
id?: string;
|
|
696
|
+
// Attachment name
|
|
697
|
+
name?: string;
|
|
698
|
+
// Attachment content
|
|
699
|
+
contentBytes?: string;
|
|
700
|
+
// Attachment content type
|
|
701
|
+
contentType?: string;
|
|
702
|
+
// The size in bytes of the attachment
|
|
703
|
+
size?: number;
|
|
704
|
+
// Set to true if this is an inline attachment
|
|
705
|
+
isInline?: boolean;
|
|
706
|
+
// The date and time when the attachment was last modified
|
|
707
|
+
lastModifiedDateTime?: string;
|
|
708
|
+
// Content Id
|
|
709
|
+
contentId?: string;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
export interface BatchResponse_GraphClientReceiveMessage {
|
|
713
|
+
// A list of the response objects
|
|
714
|
+
value?: GraphClientReceiveMessage[];
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
export type ReplyMessageImportance = 'Low'|'Normal'|'High';
|
|
718
|
+
|
|
719
|
+
export interface ReplyMessage {
|
|
720
|
+
// Example: recipient1@domain.com; recipient2@domain.com
|
|
721
|
+
To?: string;
|
|
722
|
+
// Example: recipient1@domain.com; recipient2@domain.com
|
|
723
|
+
Cc?: string;
|
|
724
|
+
// Example: recipient1@domain.com; recipient2@domain.com
|
|
725
|
+
Bcc?: string;
|
|
726
|
+
// Email subject (if empty, the original subject used).
|
|
727
|
+
Subject?: string;
|
|
728
|
+
// Content of the email.
|
|
729
|
+
Body?: string;
|
|
730
|
+
// True to reply to all recipients. (default: False)
|
|
731
|
+
ReplyAll?: boolean;
|
|
732
|
+
// True to send the reply as HTML. (default: True)
|
|
733
|
+
IsHtml?: boolean;
|
|
734
|
+
// Pick an importance. (default: Low)
|
|
735
|
+
Importance?: ReplyMessageImportance;
|
|
736
|
+
// Details of attachments to be sent along with the reply.
|
|
737
|
+
Attachments?: ClientSendAttachment[];
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
export type ReplyHtmlMessageImportance = 'Low'|'Normal'|'High';
|
|
741
|
+
|
|
742
|
+
export interface ReplyHtmlMessage {
|
|
743
|
+
// Example: recipient1@domain.com; recipient2@domain.com
|
|
744
|
+
To?: string;
|
|
745
|
+
// Example: recipient1@domain.com; recipient2@domain.com
|
|
746
|
+
Cc?: string;
|
|
747
|
+
// Example: recipient1@domain.com; recipient2@domain.com
|
|
748
|
+
Bcc?: string;
|
|
749
|
+
// Email subject (if empty, the original subject used).
|
|
750
|
+
Subject?: string;
|
|
751
|
+
// Content of the email.
|
|
752
|
+
Body?: string;
|
|
753
|
+
// True to reply to all recipients. (default: False)
|
|
754
|
+
ReplyAll?: boolean;
|
|
755
|
+
// Pick an importance. (default: Low)
|
|
756
|
+
Importance?: ReplyHtmlMessageImportance;
|
|
757
|
+
// Details of attachments to be sent along with the reply.
|
|
758
|
+
Attachments?: ClientSendAttachment[];
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
export interface TriggerBatchResponse_ClientReceiveMessage {
|
|
762
|
+
// A list of the response objects
|
|
763
|
+
value?: ClientReceiveMessage[];
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
export interface TriggerBatchResponse_GraphClientReceiveMessage {
|
|
767
|
+
// A list of the response objects
|
|
768
|
+
value?: GraphClientReceiveMessage[];
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
export type AutomaticRepliesSettingClientStatus = 'Disabled'|'AlwaysEnabled'|'Scheduled';
|
|
772
|
+
export type AutomaticRepliesSettingClientExternalAudience = 'None'|'ContactsOnly'|'All';
|
|
773
|
+
|
|
774
|
+
export interface AutomaticRepliesSettingClient {
|
|
775
|
+
// Automatic reply setting status
|
|
776
|
+
Status: AutomaticRepliesSettingClientStatus;
|
|
777
|
+
// The audience that will see the external reply message
|
|
778
|
+
ExternalAudience: AutomaticRepliesSettingClientExternalAudience;
|
|
779
|
+
// Scheduled start time (example: '2016-11-01T15:30:00-00:00Z')
|
|
780
|
+
ScheduledStartDateTimeOffset?: string;
|
|
781
|
+
// Scheduled end time (example: '2016-11-01T15:30:00-00:00Z')
|
|
782
|
+
ScheduledEndDateTimeOffset?: string;
|
|
783
|
+
// Message for people within your organization
|
|
784
|
+
InternalReplyMessage?: string;
|
|
785
|
+
// Message for people outside your organization
|
|
786
|
+
ExternalReplyMessage?: string;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
export interface MailTipsClientReceive {
|
|
790
|
+
AutomaticReplies?: MailTipsAutomaticReplies;
|
|
791
|
+
// Is delivery restricted
|
|
792
|
+
DeliveryRestricted?: boolean;
|
|
793
|
+
// Number of external members
|
|
794
|
+
ExternalMemberCount?: number;
|
|
795
|
+
// Is moderated
|
|
796
|
+
IsModerated?: boolean;
|
|
797
|
+
// Is mailbox full
|
|
798
|
+
MailboxFull?: boolean;
|
|
799
|
+
// Maximum message size
|
|
800
|
+
MaxMessageSize?: number;
|
|
801
|
+
// Total member count
|
|
802
|
+
TotalMemberCount?: number;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
export interface MailTipsAutomaticReplies {
|
|
806
|
+
// Automatic replies message
|
|
807
|
+
Message?: string;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
export interface BatchResponse_SensitivityLabel {
|
|
811
|
+
// A list of the response objects
|
|
812
|
+
value?: SensitivityLabel[];
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
export interface SensitivityLabel {
|
|
816
|
+
// Gets or sets the identifier.
|
|
817
|
+
Id?: string;
|
|
818
|
+
// Gets or sets the display name.
|
|
819
|
+
DisplayName?: string;
|
|
820
|
+
// Gets or sets the applicable to.
|
|
821
|
+
ApplicableTo?: string;
|
|
822
|
+
// Gets or sets sub labels.
|
|
823
|
+
SubLabels?: SensitivityLabel[];
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
export interface TriggerBatchResponse_ReceiveMessageMetadata {
|
|
827
|
+
// A list of the response objects
|
|
828
|
+
value?: ReceiveMessageMetadata[];
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
export interface ReceiveMessageMetadata {
|
|
832
|
+
// The mailbox owner and sender of the message
|
|
833
|
+
From?: string;
|
|
834
|
+
// The recipients for the message
|
|
835
|
+
To?: string;
|
|
836
|
+
// The Cc recipients for the message
|
|
837
|
+
Cc?: string;
|
|
838
|
+
// The Bcc recipients for the message
|
|
839
|
+
Bcc?: string;
|
|
840
|
+
// The email addresses to use when replying
|
|
841
|
+
ReplyTo?: string;
|
|
842
|
+
// The subject of the message
|
|
843
|
+
Subject?: string;
|
|
844
|
+
// The importance of the message (0 - Low, 1 - Normal, 2 - High)
|
|
845
|
+
Importance?: number;
|
|
846
|
+
// Indicates whether the message has attachments
|
|
847
|
+
HasAttachment?: boolean;
|
|
848
|
+
// The unique identifier of the message
|
|
849
|
+
Id?: string;
|
|
850
|
+
// The date and time the message was received
|
|
851
|
+
DateTimeReceived?: string;
|
|
852
|
+
// Indicates whether the message has been read
|
|
853
|
+
IsRead?: boolean;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
export interface DataSetsMetadata {
|
|
857
|
+
tabular?: TabularDataSetsMetadata;
|
|
858
|
+
blob?: BlobDataSetsMetadata;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
export interface TabularDataSetsMetadata {
|
|
862
|
+
// Dataset source
|
|
863
|
+
source?: string;
|
|
864
|
+
// Dataset display name
|
|
865
|
+
displayName?: string;
|
|
866
|
+
// Dataset url encoding
|
|
867
|
+
urlEncoding?: string;
|
|
868
|
+
// Table display name
|
|
869
|
+
tableDisplayName?: string;
|
|
870
|
+
// Table plural display name
|
|
871
|
+
tablePluralName?: string;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
export interface BlobDataSetsMetadata {
|
|
875
|
+
// Blob dataset source
|
|
876
|
+
source?: string;
|
|
877
|
+
// Blob dataset display name
|
|
878
|
+
displayName?: string;
|
|
879
|
+
// Blob dataset url encoding
|
|
880
|
+
urlEncoding?: string;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
export interface OptionsEmailSubscription {
|
|
884
|
+
// Gets or sets callback url to flow engine. It is expected as part of request
|
|
885
|
+
NotificationUrl: string;
|
|
886
|
+
Message: MessageWithOptions;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
export type MessageWithOptionsImportance = 'Low'|'Normal'|'High';
|
|
890
|
+
|
|
891
|
+
export interface MessageWithOptions {
|
|
892
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
893
|
+
To: string;
|
|
894
|
+
// Subject of the email
|
|
895
|
+
Subject?: string;
|
|
896
|
+
// List of comma separated options for the email response
|
|
897
|
+
Options?: string;
|
|
898
|
+
// Header text for email body
|
|
899
|
+
HeaderText?: string;
|
|
900
|
+
// Header text for users options selection
|
|
901
|
+
SelectionText?: string;
|
|
902
|
+
// Body of the email
|
|
903
|
+
Body?: string;
|
|
904
|
+
// Importance
|
|
905
|
+
Importance?: MessageWithOptionsImportance;
|
|
906
|
+
// Attachments
|
|
907
|
+
Attachments?: ClientSendAttachment[];
|
|
908
|
+
// Use only HTML message
|
|
909
|
+
UseOnlyHTMLMessage?: boolean;
|
|
910
|
+
// If set to Yes, then the email body is hidden and only message card is displayed. Email clients which do not support actionable messages will display HTML message regardless of the parameter value.
|
|
911
|
+
HideHTMLMessage?: boolean;
|
|
912
|
+
// If set to Yes then a dialog wil be shown to confirm selected option of HTML message
|
|
913
|
+
ShowHTMLConfirmationDialog?: boolean;
|
|
914
|
+
// If set to Yes, then the Microsoft footer is hidden in the email body.
|
|
915
|
+
HideMicrosoftFooter?: boolean;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
export interface ApprovalEmailResponse {
|
|
919
|
+
// User response
|
|
920
|
+
SelectedOption?: string;
|
|
921
|
+
// User email address. The value is the user's email address for individual users and user ID for the members in Distribution Group or Mail Enabled Security Group.
|
|
922
|
+
UserEmailAddress?: string;
|
|
923
|
+
// User tenant ID. The value is the tenant id of the user for both individual users and the members in Distribution Group or Mail Enabled Security Group.
|
|
924
|
+
UserTenantId?: string;
|
|
925
|
+
// User ID. The value is the user id for both individual users and the members in Distribution Group or Mail Enabled Security Group.
|
|
926
|
+
UserId?: string;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
export interface ApprovalEmailSubscription {
|
|
930
|
+
// Gets or sets callback url to flow engine. It is expected as part of request
|
|
931
|
+
NotificationUrl: string;
|
|
932
|
+
Message: ApprovalMessage;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
export type ApprovalMessageImportance = 'Low'|'Normal'|'High';
|
|
936
|
+
|
|
937
|
+
export interface ApprovalMessage {
|
|
938
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
939
|
+
To: string;
|
|
940
|
+
// Subject
|
|
941
|
+
Subject?: string;
|
|
942
|
+
// User Options
|
|
943
|
+
Options?: string;
|
|
944
|
+
// Header text for email body
|
|
945
|
+
HeaderText?: string;
|
|
946
|
+
// Header text for users options selection
|
|
947
|
+
SelectionText?: string;
|
|
948
|
+
// Body
|
|
949
|
+
Body?: string;
|
|
950
|
+
// Importance
|
|
951
|
+
Importance?: ApprovalMessageImportance;
|
|
952
|
+
// Attachments
|
|
953
|
+
Attachments?: ClientSendAttachment[];
|
|
954
|
+
// Use only HTML message
|
|
955
|
+
UseOnlyHTMLMessage?: boolean;
|
|
956
|
+
// If set to Yes, then the email body is hidden and only message card is displayed. Email clients which do not support actionable messages will display HTML message regardless of the parameter value.
|
|
957
|
+
HideHTMLMessage?: boolean;
|
|
958
|
+
// If set to Yes then a dialog wil be shown to confirm selected option of HTML message
|
|
959
|
+
ShowHTMLConfirmationDialog?: boolean;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
export type SharedMailboxClientSendMessageImportance = 'Low'|'Normal'|'High';
|
|
963
|
+
|
|
964
|
+
export interface SharedMailboxClientSendMessage {
|
|
965
|
+
// Specify email address of a shared mailbox like someone@contoso.com
|
|
966
|
+
MailboxAddress: string;
|
|
967
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
968
|
+
To: string;
|
|
969
|
+
// Specify the subject of the mail
|
|
970
|
+
Subject: string;
|
|
971
|
+
// Specify the body of the mail
|
|
972
|
+
Body: string;
|
|
973
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
974
|
+
Cc?: string;
|
|
975
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
976
|
+
Bcc?: string;
|
|
977
|
+
// Attachments
|
|
978
|
+
Attachments?: ClientSendAttachment[];
|
|
979
|
+
// Sensitivity
|
|
980
|
+
Sensitivity?: string;
|
|
981
|
+
// The email addresses to use when replying
|
|
982
|
+
ReplyTo?: string;
|
|
983
|
+
// Importance
|
|
984
|
+
Importance?: SharedMailboxClientSendMessageImportance;
|
|
985
|
+
// Is Html?
|
|
986
|
+
IsHtml?: boolean;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
export type SharedMailboxClientSendHtmlMessageImportance = 'Low'|'Normal'|'High';
|
|
990
|
+
|
|
991
|
+
export interface SharedMailboxClientSendHtmlMessage {
|
|
992
|
+
// Specify email address of a shared mailbox like someone@contoso.com
|
|
993
|
+
MailboxAddress: string;
|
|
994
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
995
|
+
To: string;
|
|
996
|
+
// Specify the subject of the mail
|
|
997
|
+
Subject: string;
|
|
998
|
+
// Specify the body of the mail
|
|
999
|
+
Body: string;
|
|
1000
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
1001
|
+
Cc?: string;
|
|
1002
|
+
// Specify email addresses separated by semicolons like someone@contoso.com
|
|
1003
|
+
Bcc?: string;
|
|
1004
|
+
// Attachments
|
|
1005
|
+
Attachments?: ClientSendAttachment[];
|
|
1006
|
+
// Sensitivity
|
|
1007
|
+
Sensitivity?: string;
|
|
1008
|
+
// The email addresses to use when replying
|
|
1009
|
+
ReplyTo?: string;
|
|
1010
|
+
// Importance
|
|
1011
|
+
Importance?: SharedMailboxClientSendHtmlMessageImportance;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
export interface SubscriptionPayload_OutlookReceiveMessage {
|
|
1015
|
+
// List of values
|
|
1016
|
+
value?: SubscriptionPayloadEntity_OutlookReceiveMessage[];
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
export interface SubscriptionPayloadEntity_OutlookReceiveMessage {
|
|
1020
|
+
// Sequence number
|
|
1021
|
+
SequenceNumber?: number;
|
|
1022
|
+
// Change type
|
|
1023
|
+
ChangeType?: string;
|
|
1024
|
+
// Client state
|
|
1025
|
+
ClientState?: string;
|
|
1026
|
+
// Resource
|
|
1027
|
+
Resource?: string;
|
|
1028
|
+
ResourceData?: OutlookReceiveMessage;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
export type OutlookReceiveMessageImportance = 'Low'|'Normal'|'High';
|
|
1032
|
+
|
|
1033
|
+
export interface OutlookReceiveMessage {
|
|
1034
|
+
// Internet Message Id
|
|
1035
|
+
InternetMessageId?: string;
|
|
1036
|
+
// Body preview
|
|
1037
|
+
BodyPreview?: string;
|
|
1038
|
+
// Id
|
|
1039
|
+
Id?: string;
|
|
1040
|
+
// Conversation Id
|
|
1041
|
+
ConversationId?: string;
|
|
1042
|
+
// Has attachments
|
|
1043
|
+
HasAttachments?: boolean;
|
|
1044
|
+
// Is read
|
|
1045
|
+
IsRead?: boolean;
|
|
1046
|
+
// Created date and time
|
|
1047
|
+
CreatedDateTime?: string;
|
|
1048
|
+
// Received date and time
|
|
1049
|
+
ReceivedDateTime?: string;
|
|
1050
|
+
// Last modified date and time
|
|
1051
|
+
LastModifiedDateTime?: string;
|
|
1052
|
+
// Attachments
|
|
1053
|
+
Attachments?: OutlookReceiveAttachment[];
|
|
1054
|
+
// To Recipient
|
|
1055
|
+
ToRecipients?: Recipient[];
|
|
1056
|
+
// Cc Recipients
|
|
1057
|
+
CcRecipients?: Recipient[];
|
|
1058
|
+
// Bcc Recipients
|
|
1059
|
+
BccRecipients?: Recipient[];
|
|
1060
|
+
// The email addresses to use when replying
|
|
1061
|
+
ReplyTo?: Recipient[];
|
|
1062
|
+
// Subject
|
|
1063
|
+
Subject?: string;
|
|
1064
|
+
Body?: ItemBody;
|
|
1065
|
+
From?: Recipient;
|
|
1066
|
+
// Importance
|
|
1067
|
+
Importance?: OutlookReceiveMessageImportance;
|
|
1068
|
+
// Internet message headers
|
|
1069
|
+
InternetMessageHeaders?: InternetMessageHeader[];
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
export interface OutlookReceiveAttachment {
|
|
1073
|
+
// OData type
|
|
1074
|
+
"@odata.type"?: string;
|
|
1075
|
+
// Attachment Id
|
|
1076
|
+
Id?: string;
|
|
1077
|
+
// Attachment name
|
|
1078
|
+
Name?: string;
|
|
1079
|
+
// Attachment content
|
|
1080
|
+
ContentBytes?: string;
|
|
1081
|
+
// Attachment content type
|
|
1082
|
+
ContentType?: string;
|
|
1083
|
+
// Attachment size in bytes
|
|
1084
|
+
Size?: number;
|
|
1085
|
+
// Permission associated with a reference attachment
|
|
1086
|
+
Permission?: string;
|
|
1087
|
+
// Provider for the reference attachment
|
|
1088
|
+
ProviderType?: string;
|
|
1089
|
+
// Reference attachment source url
|
|
1090
|
+
SourceUrl?: string;
|
|
1091
|
+
// Set to true if this is an inline attachment
|
|
1092
|
+
IsInline?: boolean;
|
|
1093
|
+
// The date and time when the attachment was last modified
|
|
1094
|
+
LastModifiedDateTime?: string;
|
|
1095
|
+
// Content Id
|
|
1096
|
+
ContentId?: string;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
export interface InternetMessageHeader {
|
|
1100
|
+
// Header name
|
|
1101
|
+
Name?: string;
|
|
1102
|
+
// Header value
|
|
1103
|
+
Value?: string;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
export interface SubscriptionPayload_SubscriptionEvent {
|
|
1107
|
+
// List of values
|
|
1108
|
+
value?: SubscriptionPayloadEntity_SubscriptionEvent[];
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
export interface SubscriptionPayloadEntity_SubscriptionEvent {
|
|
1112
|
+
// Sequence number
|
|
1113
|
+
SequenceNumber?: number;
|
|
1114
|
+
// Change type
|
|
1115
|
+
ChangeType?: string;
|
|
1116
|
+
// Client state
|
|
1117
|
+
ClientState?: string;
|
|
1118
|
+
// Resource
|
|
1119
|
+
Resource?: string;
|
|
1120
|
+
ResourceData?: SubscriptionEvent;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
export interface SubscriptionEvent {
|
|
1124
|
+
// The Event's unique identifier
|
|
1125
|
+
Id?: string;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
export interface EntityListResponse_Table {
|
|
1129
|
+
// List of values
|
|
1130
|
+
value?: Table[];
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
export interface Table {
|
|
1134
|
+
// The name of the table. The name is used at runtime.
|
|
1135
|
+
Name?: string;
|
|
1136
|
+
// The display name of the table.
|
|
1137
|
+
DisplayName?: string;
|
|
1138
|
+
// Additional table properties provided by the connector to the clients.
|
|
1139
|
+
DynamicProperties?: Record<string, unknown>;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
export interface EntityListResponse_CalendarEventBackend {
|
|
1143
|
+
// List of values
|
|
1144
|
+
value?: CalendarEventBackend[];
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
export interface EntityListResponse_CalendarEventClientReceiveStringEnums {
|
|
1148
|
+
// List of values
|
|
1149
|
+
value?: CalendarEventClientReceiveStringEnums[];
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
export interface EntityListResponse_GraphCalendarEventClientReceive {
|
|
1153
|
+
// List of values
|
|
1154
|
+
value?: GraphCalendarEventClientReceive[];
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
export type CalendarEventClientTimeZone = ''|'(UTC-12:00) International Date Line West'|'(UTC-11:00) Coordinated Universal Time-11'|'(UTC-10:00) Aleutian Islands'|'(UTC-10:00) Hawaii'|'(UTC-09:30) Marquesas Islands'|'(UTC-09:00) Alaska'|'(UTC-09:00) Coordinated Universal Time-09'|'(UTC-08:00) Baja California'|'(UTC-08:00) Coordinated Universal Time-08'|'(UTC-08:00) Pacific Time (US & Canada)'|'(UTC-07:00) Arizona'|'(UTC-07:00) Chihuahua, La Paz, Mazatlan'|'(UTC-07:00) Mountain Time (US & Canada)'|'(UTC-06:00) Central America'|'(UTC-06:00) Central Time (US & Canada)'|'(UTC-06:00) Easter Island'|'(UTC-06:00) Guadalajara, Mexico City, Monterrey'|'(UTC-06:00) Saskatchewan'|'(UTC-05:00) Bogota, Lima, Quito, Rio Branco'|'(UTC-05:00) Chetumal'|'(UTC-05:00) Eastern Time (US & Canada)'|'(UTC-05:00) Haiti'|'(UTC-05:00) Havana'|'(UTC-05:00) Indiana (East)'|'(UTC-04:00) Asuncion'|'(UTC-04:00) Atlantic Time (Canada)'|'(UTC-04:00) Caracas'|'(UTC-04:00) Cuiaba'|'(UTC-04:00) Georgetown, La Paz, Manaus, San Juan'|'(UTC-04:00) Santiago'|'(UTC-04:00) Turks and Caicos'|'(UTC-03:30) Newfoundland'|'(UTC-03:00) Araguaina'|'(UTC-03:00) Brasilia'|'(UTC-03:00) Cayenne, Fortaleza'|'(UTC-03:00) City of Buenos Aires'|'(UTC-03:00) Greenland'|'(UTC-03:00) Montevideo'|'(UTC-03:00) Punta Arenas'|'(UTC-03:00) Saint Pierre and Miquelon'|'(UTC-03:00) Salvador'|'(UTC-02:00) Coordinated Universal Time-02'|'(UTC-02:00) Mid-Atlantic - Old'|'(UTC-01:00) Azores'|'(UTC-01:00) Cabo Verde Is.'|'(UTC) Coordinated Universal Time'|'(UTC+00:00) Casablanca'|'(UTC+00:00) Dublin, Edinburgh, Lisbon, London'|'(UTC+00:00) Monrovia, Reykjavik'|'(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna'|'(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague'|'(UTC+01:00) Brussels, Copenhagen, Madrid, Paris'|'(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb'|'(UTC+01:00) West Central Africa'|'(UTC+01:00) Windhoek'|'(UTC+02:00) Amman'|'(UTC+02:00) Athens, Bucharest'|'(UTC+02:00) Beirut'|'(UTC+02:00) Cairo'|'(UTC+02:00) Chisinau'|'(UTC+02:00) Damascus'|'(UTC+02:00) Gaza, Hebron'|'(UTC+02:00) Harare, Pretoria'|'(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius'|'(UTC+02:00) Jerusalem'|'(UTC+02:00) Kaliningrad'|'(UTC+02:00) Tripoli'|'(UTC+03:00) Baghdad'|'(UTC+03:00) Istanbul'|'(UTC+03:00) Kuwait, Riyadh'|'(UTC+03:00) Minsk'|'(UTC+03:00) Moscow, St. Petersburg'|'(UTC+03:00) Nairobi'|'(UTC+03:30) Tehran'|'(UTC+04:00) Abu Dhabi, Muscat'|'(UTC+04:00) Astrakhan, Ulyanovsk'|'(UTC+04:00) Baku'|'(UTC+04:00) Izhevsk, Samara'|'(UTC+04:00) Port Louis'|'(UTC+04:00) Saratov'|'(UTC+04:00) Tbilisi'|'(UTC+04:00) Volgograd'|'(UTC+04:00) Yerevan'|'(UTC+04:30) Kabul'|'(UTC+05:00) Ashgabat, Tashkent'|'(UTC+05:00) Ekaterinburg'|'(UTC+05:00) Islamabad, Karachi'|'(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi'|'(UTC+05:30) Sri Jayawardenepura'|'(UTC+05:45) Kathmandu'|'(UTC+06:00) Astana'|'(UTC+06:00) Dhaka'|'(UTC+06:00) Omsk'|'(UTC+06:30) Yangon (Rangoon)'|'(UTC+07:00) Bangkok, Hanoi, Jakarta'|'(UTC+07:00) Barnaul, Gorno-Altaysk'|'(UTC+07:00) Hovd'|'(UTC+07:00) Krasnoyarsk'|'(UTC+07:00) Novosibirsk'|'(UTC+07:00) Tomsk'|'(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi'|'(UTC+08:00) Irkutsk'|'(UTC+08:00) Kuala Lumpur, Singapore'|'(UTC+08:00) Perth'|'(UTC+08:00) Taipei'|'(UTC+08:00) Ulaanbaatar'|'(UTC+08:30) Pyongyang'|'(UTC+08:45) Eucla'|'(UTC+09:00) Chita'|'(UTC+09:00) Osaka, Sapporo, Tokyo'|'(UTC+09:00) Seoul'|'(UTC+09:00) Yakutsk'|'(UTC+09:30) Adelaide'|'(UTC+09:30) Darwin'|'(UTC+10:00) Brisbane'|'(UTC+10:00) Canberra, Melbourne, Sydney'|'(UTC+10:00) Guam, Port Moresby'|'(UTC+10:00) Hobart'|'(UTC+10:00) Vladivostok'|'(UTC+10:30) Lord Howe Island'|'(UTC+11:00) Bougainville Island'|'(UTC+11:00) Chokurdakh'|'(UTC+11:00) Magadan'|'(UTC+11:00) Norfolk Island'|'(UTC+11:00) Sakhalin'|'(UTC+11:00) Solomon Is., New Caledonia'|'(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky'|'(UTC+12:00) Auckland, Wellington'|'(UTC+12:00) Coordinated Universal Time+12'|'(UTC+12:00) Fiji'|'(UTC+12:00) Petropavlovsk-Kamchatsky - Old'|'(UTC+12:45) Chatham Islands'|'(UTC+13:00) Coordinated Universal Time+13'|'(UTC+13:00) Nuku\'alofa'|'(UTC+13:00) Samoa'|'(UTC+14:00) Kiritimati Island';
|
|
1158
|
+
export type CalendarEventClientImportance = 'Low'|'Normal'|'High';
|
|
1159
|
+
export type CalendarEventClientRecurrence = 'None'|'Daily'|'Weekly'|'Monthly'|'Yearly';
|
|
1160
|
+
export type CalendarEventClientShowAs = 'Free'|'Tentative'|'Busy'|'Oof'|'WorkingElsewhere'|'Unknown';
|
|
1161
|
+
|
|
1162
|
+
export interface CalendarEventClient {
|
|
1163
|
+
// Event subject
|
|
1164
|
+
Subject: string;
|
|
1165
|
+
// Start time of the event (example: '2016-11-01T14:30:00Z')
|
|
1166
|
+
Start: string;
|
|
1167
|
+
// End time of the event (example: '2016-11-01T15:30:00Z')
|
|
1168
|
+
End: string;
|
|
1169
|
+
// Time zone of the event
|
|
1170
|
+
TimeZone?: CalendarEventClientTimeZone;
|
|
1171
|
+
// Required attendees for the event separated by semicolons
|
|
1172
|
+
RequiredAttendees?: string;
|
|
1173
|
+
// Optional attendees for the event separated by semicolons
|
|
1174
|
+
OptionalAttendees?: string;
|
|
1175
|
+
// Resource attendees for the event separated by semicolons
|
|
1176
|
+
ResourceAttendees?: string;
|
|
1177
|
+
// Body of the message associated with the event
|
|
1178
|
+
Body?: string;
|
|
1179
|
+
// Set to true if the body is Html
|
|
1180
|
+
IsHtml?: boolean;
|
|
1181
|
+
// Location of the event
|
|
1182
|
+
Location?: string;
|
|
1183
|
+
// The importance of the event: Low, Normal, or High
|
|
1184
|
+
Importance?: CalendarEventClientImportance;
|
|
1185
|
+
// Set to true if the event lasts all day
|
|
1186
|
+
IsAllDay?: boolean;
|
|
1187
|
+
// The recurrence pattern for the event
|
|
1188
|
+
Recurrence?: CalendarEventClientRecurrence;
|
|
1189
|
+
// End time of the recurrence
|
|
1190
|
+
RecurrenceEnd?: string;
|
|
1191
|
+
// How many times to repeat the event
|
|
1192
|
+
NumberOfOccurrences?: number;
|
|
1193
|
+
// Time in minutes before event start to remind
|
|
1194
|
+
Reminder?: number;
|
|
1195
|
+
// Status to show during the event
|
|
1196
|
+
ShowAs?: CalendarEventClientShowAs;
|
|
1197
|
+
// Set to true if the sender would like a response when the event is accepted or declined
|
|
1198
|
+
ResponseRequested?: boolean;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
export type CalendarEventHtmlClientTimeZone = ''|'(UTC-12:00) International Date Line West'|'(UTC-11:00) Coordinated Universal Time-11'|'(UTC-10:00) Aleutian Islands'|'(UTC-10:00) Hawaii'|'(UTC-09:30) Marquesas Islands'|'(UTC-09:00) Alaska'|'(UTC-09:00) Coordinated Universal Time-09'|'(UTC-08:00) Baja California'|'(UTC-08:00) Coordinated Universal Time-08'|'(UTC-08:00) Pacific Time (US & Canada)'|'(UTC-07:00) Arizona'|'(UTC-07:00) Chihuahua, La Paz, Mazatlan'|'(UTC-07:00) Mountain Time (US & Canada)'|'(UTC-06:00) Central America'|'(UTC-06:00) Central Time (US & Canada)'|'(UTC-06:00) Easter Island'|'(UTC-06:00) Guadalajara, Mexico City, Monterrey'|'(UTC-06:00) Saskatchewan'|'(UTC-05:00) Bogota, Lima, Quito, Rio Branco'|'(UTC-05:00) Chetumal'|'(UTC-05:00) Eastern Time (US & Canada)'|'(UTC-05:00) Haiti'|'(UTC-05:00) Havana'|'(UTC-05:00) Indiana (East)'|'(UTC-04:00) Asuncion'|'(UTC-04:00) Atlantic Time (Canada)'|'(UTC-04:00) Caracas'|'(UTC-04:00) Cuiaba'|'(UTC-04:00) Georgetown, La Paz, Manaus, San Juan'|'(UTC-04:00) Santiago'|'(UTC-04:00) Turks and Caicos'|'(UTC-03:30) Newfoundland'|'(UTC-03:00) Araguaina'|'(UTC-03:00) Brasilia'|'(UTC-03:00) Cayenne, Fortaleza'|'(UTC-03:00) City of Buenos Aires'|'(UTC-03:00) Greenland'|'(UTC-03:00) Montevideo'|'(UTC-03:00) Punta Arenas'|'(UTC-03:00) Saint Pierre and Miquelon'|'(UTC-03:00) Salvador'|'(UTC-02:00) Coordinated Universal Time-02'|'(UTC-02:00) Mid-Atlantic - Old'|'(UTC-01:00) Azores'|'(UTC-01:00) Cabo Verde Is.'|'(UTC) Coordinated Universal Time'|'(UTC+00:00) Casablanca'|'(UTC+00:00) Dublin, Edinburgh, Lisbon, London'|'(UTC+00:00) Monrovia, Reykjavik'|'(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna'|'(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague'|'(UTC+01:00) Brussels, Copenhagen, Madrid, Paris'|'(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb'|'(UTC+01:00) West Central Africa'|'(UTC+01:00) Windhoek'|'(UTC+02:00) Amman'|'(UTC+02:00) Athens, Bucharest'|'(UTC+02:00) Beirut'|'(UTC+02:00) Cairo'|'(UTC+02:00) Chisinau'|'(UTC+02:00) Damascus'|'(UTC+02:00) Gaza, Hebron'|'(UTC+02:00) Harare, Pretoria'|'(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius'|'(UTC+02:00) Jerusalem'|'(UTC+02:00) Kaliningrad'|'(UTC+02:00) Tripoli'|'(UTC+03:00) Baghdad'|'(UTC+03:00) Istanbul'|'(UTC+03:00) Kuwait, Riyadh'|'(UTC+03:00) Minsk'|'(UTC+03:00) Moscow, St. Petersburg'|'(UTC+03:00) Nairobi'|'(UTC+03:30) Tehran'|'(UTC+04:00) Abu Dhabi, Muscat'|'(UTC+04:00) Astrakhan, Ulyanovsk'|'(UTC+04:00) Baku'|'(UTC+04:00) Izhevsk, Samara'|'(UTC+04:00) Port Louis'|'(UTC+04:00) Saratov'|'(UTC+04:00) Tbilisi'|'(UTC+04:00) Volgograd'|'(UTC+04:00) Yerevan'|'(UTC+04:30) Kabul'|'(UTC+05:00) Ashgabat, Tashkent'|'(UTC+05:00) Ekaterinburg'|'(UTC+05:00) Islamabad, Karachi'|'(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi'|'(UTC+05:30) Sri Jayawardenepura'|'(UTC+05:45) Kathmandu'|'(UTC+06:00) Astana'|'(UTC+06:00) Dhaka'|'(UTC+06:00) Omsk'|'(UTC+06:30) Yangon (Rangoon)'|'(UTC+07:00) Bangkok, Hanoi, Jakarta'|'(UTC+07:00) Barnaul, Gorno-Altaysk'|'(UTC+07:00) Hovd'|'(UTC+07:00) Krasnoyarsk'|'(UTC+07:00) Novosibirsk'|'(UTC+07:00) Tomsk'|'(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi'|'(UTC+08:00) Irkutsk'|'(UTC+08:00) Kuala Lumpur, Singapore'|'(UTC+08:00) Perth'|'(UTC+08:00) Taipei'|'(UTC+08:00) Ulaanbaatar'|'(UTC+08:30) Pyongyang'|'(UTC+08:45) Eucla'|'(UTC+09:00) Chita'|'(UTC+09:00) Osaka, Sapporo, Tokyo'|'(UTC+09:00) Seoul'|'(UTC+09:00) Yakutsk'|'(UTC+09:30) Adelaide'|'(UTC+09:30) Darwin'|'(UTC+10:00) Brisbane'|'(UTC+10:00) Canberra, Melbourne, Sydney'|'(UTC+10:00) Guam, Port Moresby'|'(UTC+10:00) Hobart'|'(UTC+10:00) Vladivostok'|'(UTC+10:30) Lord Howe Island'|'(UTC+11:00) Bougainville Island'|'(UTC+11:00) Chokurdakh'|'(UTC+11:00) Magadan'|'(UTC+11:00) Norfolk Island'|'(UTC+11:00) Sakhalin'|'(UTC+11:00) Solomon Is., New Caledonia'|'(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky'|'(UTC+12:00) Auckland, Wellington'|'(UTC+12:00) Coordinated Universal Time+12'|'(UTC+12:00) Fiji'|'(UTC+12:00) Petropavlovsk-Kamchatsky - Old'|'(UTC+12:45) Chatham Islands'|'(UTC+13:00) Coordinated Universal Time+13'|'(UTC+13:00) Nuku\'alofa'|'(UTC+13:00) Samoa'|'(UTC+14:00) Kiritimati Island';
|
|
1202
|
+
export type CalendarEventHtmlClientImportance = 'Low'|'Normal'|'High';
|
|
1203
|
+
export type CalendarEventHtmlClientRecurrence = 'None'|'Daily'|'Weekly'|'Monthly'|'Yearly';
|
|
1204
|
+
export type CalendarEventHtmlClientShowAs = 'Free'|'Tentative'|'Busy'|'Oof'|'WorkingElsewhere'|'Unknown';
|
|
1205
|
+
|
|
1206
|
+
export interface CalendarEventHtmlClient {
|
|
1207
|
+
// Event subject
|
|
1208
|
+
Subject: string;
|
|
1209
|
+
// Start time of the event (example: '2016-11-01T14:30:00Z')
|
|
1210
|
+
Start: string;
|
|
1211
|
+
// End time of the event (example: '2016-11-01T15:30:00Z')
|
|
1212
|
+
End: string;
|
|
1213
|
+
// Time zone of the event
|
|
1214
|
+
TimeZone?: CalendarEventHtmlClientTimeZone;
|
|
1215
|
+
// Required attendees for the event separated by semicolons
|
|
1216
|
+
RequiredAttendees?: string;
|
|
1217
|
+
// Optional attendees for the event separated by semicolons
|
|
1218
|
+
OptionalAttendees?: string;
|
|
1219
|
+
// Resource attendees for the event separated by semicolons
|
|
1220
|
+
ResourceAttendees?: string;
|
|
1221
|
+
// Body of the message associated with the event
|
|
1222
|
+
Body?: string;
|
|
1223
|
+
// Location of the event
|
|
1224
|
+
Location?: string;
|
|
1225
|
+
// The importance of the event: Low, Normal, or High
|
|
1226
|
+
Importance?: CalendarEventHtmlClientImportance;
|
|
1227
|
+
// Set to true if the event lasts all day
|
|
1228
|
+
IsAllDay?: boolean;
|
|
1229
|
+
// The recurrence pattern for the event
|
|
1230
|
+
Recurrence?: CalendarEventHtmlClientRecurrence;
|
|
1231
|
+
// End time of the recurrence
|
|
1232
|
+
RecurrenceEnd?: string;
|
|
1233
|
+
// How many times to repeat the event
|
|
1234
|
+
NumberOfOccurrences?: number;
|
|
1235
|
+
// Time in minutes before event start to remind
|
|
1236
|
+
Reminder?: number;
|
|
1237
|
+
// Status to show during the event
|
|
1238
|
+
ShowAs?: CalendarEventHtmlClientShowAs;
|
|
1239
|
+
// Set to true if the sender would like a response when the event is accepted or declined
|
|
1240
|
+
ResponseRequested?: boolean;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
export type GraphCalendarEventClienttimeZone = ''|'(UTC-12:00) International Date Line West'|'(UTC-11:00) Coordinated Universal Time-11'|'(UTC-10:00) Aleutian Islands'|'(UTC-10:00) Hawaii'|'(UTC-09:30) Marquesas Islands'|'(UTC-09:00) Alaska'|'(UTC-09:00) Coordinated Universal Time-09'|'(UTC-08:00) Baja California'|'(UTC-08:00) Coordinated Universal Time-08'|'(UTC-08:00) Pacific Time (US & Canada)'|'(UTC-07:00) Arizona'|'(UTC-07:00) Chihuahua, La Paz, Mazatlan'|'(UTC-07:00) Mountain Time (US & Canada)'|'(UTC-06:00) Central America'|'(UTC-06:00) Central Time (US & Canada)'|'(UTC-06:00) Easter Island'|'(UTC-06:00) Guadalajara, Mexico City, Monterrey'|'(UTC-06:00) Saskatchewan'|'(UTC-05:00) Bogota, Lima, Quito, Rio Branco'|'(UTC-05:00) Chetumal'|'(UTC-05:00) Eastern Time (US & Canada)'|'(UTC-05:00) Haiti'|'(UTC-05:00) Havana'|'(UTC-05:00) Indiana (East)'|'(UTC-04:00) Asuncion'|'(UTC-04:00) Atlantic Time (Canada)'|'(UTC-04:00) Caracas'|'(UTC-04:00) Cuiaba'|'(UTC-04:00) Georgetown, La Paz, Manaus, San Juan'|'(UTC-04:00) Santiago'|'(UTC-04:00) Turks and Caicos'|'(UTC-03:30) Newfoundland'|'(UTC-03:00) Araguaina'|'(UTC-03:00) Brasilia'|'(UTC-03:00) Cayenne, Fortaleza'|'(UTC-03:00) City of Buenos Aires'|'(UTC-03:00) Greenland'|'(UTC-03:00) Montevideo'|'(UTC-03:00) Punta Arenas'|'(UTC-03:00) Saint Pierre and Miquelon'|'(UTC-03:00) Salvador'|'(UTC-02:00) Coordinated Universal Time-02'|'(UTC-02:00) Mid-Atlantic - Old'|'(UTC-01:00) Azores'|'(UTC-01:00) Cabo Verde Is.'|'(UTC) Coordinated Universal Time'|'(UTC+00:00) Casablanca'|'(UTC+00:00) Dublin, Edinburgh, Lisbon, London'|'(UTC+00:00) Monrovia, Reykjavik'|'(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna'|'(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague'|'(UTC+01:00) Brussels, Copenhagen, Madrid, Paris'|'(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb'|'(UTC+01:00) West Central Africa'|'(UTC+01:00) Windhoek'|'(UTC+02:00) Amman'|'(UTC+02:00) Athens, Bucharest'|'(UTC+02:00) Beirut'|'(UTC+02:00) Cairo'|'(UTC+02:00) Chisinau'|'(UTC+02:00) Damascus'|'(UTC+02:00) Gaza, Hebron'|'(UTC+02:00) Harare, Pretoria'|'(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius'|'(UTC+02:00) Jerusalem'|'(UTC+02:00) Kaliningrad'|'(UTC+02:00) Tripoli'|'(UTC+03:00) Baghdad'|'(UTC+03:00) Istanbul'|'(UTC+03:00) Kuwait, Riyadh'|'(UTC+03:00) Minsk'|'(UTC+03:00) Moscow, St. Petersburg'|'(UTC+03:00) Nairobi'|'(UTC+03:30) Tehran'|'(UTC+04:00) Abu Dhabi, Muscat'|'(UTC+04:00) Astrakhan, Ulyanovsk'|'(UTC+04:00) Baku'|'(UTC+04:00) Izhevsk, Samara'|'(UTC+04:00) Port Louis'|'(UTC+04:00) Saratov'|'(UTC+04:00) Tbilisi'|'(UTC+04:00) Volgograd'|'(UTC+04:00) Yerevan'|'(UTC+04:30) Kabul'|'(UTC+05:00) Ashgabat, Tashkent'|'(UTC+05:00) Ekaterinburg'|'(UTC+05:00) Islamabad, Karachi'|'(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi'|'(UTC+05:30) Sri Jayawardenepura'|'(UTC+05:45) Kathmandu'|'(UTC+06:00) Astana'|'(UTC+06:00) Dhaka'|'(UTC+06:00) Omsk'|'(UTC+06:30) Yangon (Rangoon)'|'(UTC+07:00) Bangkok, Hanoi, Jakarta'|'(UTC+07:00) Barnaul, Gorno-Altaysk'|'(UTC+07:00) Hovd'|'(UTC+07:00) Krasnoyarsk'|'(UTC+07:00) Novosibirsk'|'(UTC+07:00) Tomsk'|'(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi'|'(UTC+08:00) Irkutsk'|'(UTC+08:00) Kuala Lumpur, Singapore'|'(UTC+08:00) Perth'|'(UTC+08:00) Taipei'|'(UTC+08:00) Ulaanbaatar'|'(UTC+08:30) Pyongyang'|'(UTC+08:45) Eucla'|'(UTC+09:00) Chita'|'(UTC+09:00) Osaka, Sapporo, Tokyo'|'(UTC+09:00) Seoul'|'(UTC+09:00) Yakutsk'|'(UTC+09:30) Adelaide'|'(UTC+09:30) Darwin'|'(UTC+10:00) Brisbane'|'(UTC+10:00) Canberra, Melbourne, Sydney'|'(UTC+10:00) Guam, Port Moresby'|'(UTC+10:00) Hobart'|'(UTC+10:00) Vladivostok'|'(UTC+10:30) Lord Howe Island'|'(UTC+11:00) Bougainville Island'|'(UTC+11:00) Chokurdakh'|'(UTC+11:00) Magadan'|'(UTC+11:00) Norfolk Island'|'(UTC+11:00) Sakhalin'|'(UTC+11:00) Solomon Is., New Caledonia'|'(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky'|'(UTC+12:00) Auckland, Wellington'|'(UTC+12:00) Coordinated Universal Time+12'|'(UTC+12:00) Fiji'|'(UTC+12:00) Petropavlovsk-Kamchatsky - Old'|'(UTC+12:45) Chatham Islands'|'(UTC+13:00) Coordinated Universal Time+13'|'(UTC+13:00) Nuku\'alofa'|'(UTC+13:00) Samoa'|'(UTC+14:00) Kiritimati Island';
|
|
1244
|
+
export type GraphCalendarEventClientimportance = 'low'|'normal'|'high';
|
|
1245
|
+
export type GraphCalendarEventClientrecurrence = 'none'|'daily'|'weekly'|'monthly'|'yearly';
|
|
1246
|
+
export type GraphCalendarEventClientshowAs = 'free'|'tentative'|'busy'|'oof'|'workingElsewhere'|'unknown';
|
|
1247
|
+
export type GraphCalendarEventClientsensitivity = 'normal'|'personal'|'private'|'confidential';
|
|
1248
|
+
|
|
1249
|
+
export interface GraphCalendarEventClient {
|
|
1250
|
+
// Event subject
|
|
1251
|
+
subject: string;
|
|
1252
|
+
// Start time of the event (example: '2017-08-29T04:00:00')
|
|
1253
|
+
start: string;
|
|
1254
|
+
// End time of the event (example: '2017-08-29T05:00:00')
|
|
1255
|
+
end: string;
|
|
1256
|
+
// Time zone of the event
|
|
1257
|
+
timeZone: GraphCalendarEventClienttimeZone;
|
|
1258
|
+
// Required attendees for the event separated by semicolons
|
|
1259
|
+
requiredAttendees?: string;
|
|
1260
|
+
// Optional attendees for the event separated by semicolons
|
|
1261
|
+
optionalAttendees?: string;
|
|
1262
|
+
// Resource attendees for the event separated by semicolons
|
|
1263
|
+
resourceAttendees?: string;
|
|
1264
|
+
// Body of the message associated with the event
|
|
1265
|
+
body?: string;
|
|
1266
|
+
// The categories associated with the event
|
|
1267
|
+
categories?: string[];
|
|
1268
|
+
// Location of the event
|
|
1269
|
+
location?: string;
|
|
1270
|
+
// The importance of the event: low, normal, or high
|
|
1271
|
+
importance?: GraphCalendarEventClientimportance;
|
|
1272
|
+
// Set to true if the event lasts all day
|
|
1273
|
+
isAllDay?: boolean;
|
|
1274
|
+
// The recurrence pattern for the event: none, daily, weekly, monthly or yearly
|
|
1275
|
+
recurrence?: GraphCalendarEventClientrecurrence;
|
|
1276
|
+
// Days of week for weekly recurrence
|
|
1277
|
+
selectedDaysOfWeek?: string[];
|
|
1278
|
+
// End Date of the recurrence
|
|
1279
|
+
recurrenceEnd?: string;
|
|
1280
|
+
// How many times to repeat the event
|
|
1281
|
+
numberOfOccurences?: number;
|
|
1282
|
+
// Time in minutes before event start to remind
|
|
1283
|
+
reminderMinutesBeforeStart?: number;
|
|
1284
|
+
// Set to true if an alert is set to remind the user of the event.
|
|
1285
|
+
isReminderOn?: boolean;
|
|
1286
|
+
// Status to show during the event: free, tentative, busy, oof, workingElsewhere or unknown
|
|
1287
|
+
showAs?: GraphCalendarEventClientshowAs;
|
|
1288
|
+
// Set to true if the sender would like a response when the event is accepted or declined
|
|
1289
|
+
responseRequested?: boolean;
|
|
1290
|
+
// The possible values are: normal, personal, private, confidential
|
|
1291
|
+
sensitivity?: GraphCalendarEventClientsensitivity;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
export interface CalendarEventListWithActionType {
|
|
1295
|
+
// List of calendar items
|
|
1296
|
+
value?: CalendarEventClientWithActionType[];
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
export type CalendarEventClientWithActionTypeActionType = 'added'|'updated'|'deleted';
|
|
1300
|
+
|
|
1301
|
+
export interface CalendarEventClientWithActionType {
|
|
1302
|
+
// Changed action type of the event - added, updated or deleted.
|
|
1303
|
+
ActionType?: CalendarEventClientWithActionTypeActionType;
|
|
1304
|
+
// Flag that indicates whether the event was added since the last poll of the trigger.
|
|
1305
|
+
IsAdded?: boolean;
|
|
1306
|
+
// Flag that indicates whether the event was updated since the last poll of the trigger.
|
|
1307
|
+
IsUpdated?: boolean;
|
|
1308
|
+
// Event subject
|
|
1309
|
+
Subject?: string;
|
|
1310
|
+
// Start time of the event (example: '2016-11-01T14:30:00Z')
|
|
1311
|
+
Start?: string;
|
|
1312
|
+
// End time of the event (example: '2016-11-01T15:30:00Z')
|
|
1313
|
+
End?: string;
|
|
1314
|
+
// Status to show during the event (Unknown - -1, Free - 0, Tentative - 1, Busy - 2, Oof - 3, WorkingElsewhere - 4)
|
|
1315
|
+
ShowAs?: number;
|
|
1316
|
+
// The recurrence pattern for the event (None - 0, Daily - 1, Weekly - 2, Monthly - 3, Yearly - 4)
|
|
1317
|
+
Recurrence?: number;
|
|
1318
|
+
// The response type of the event (None - 0, Organizer - 1, TentativelyAccepted - 2, Accepted - 3, Declined - 4, NotResponded - 5)
|
|
1319
|
+
ResponseType?: number;
|
|
1320
|
+
// The response time of the event
|
|
1321
|
+
ResponseTime?: string;
|
|
1322
|
+
// A unique identifier that is shared by all instances of an event across different calendars
|
|
1323
|
+
ICalUId?: string;
|
|
1324
|
+
// The importance of the event (0 - Low, 1 - Normal, 2 - High)
|
|
1325
|
+
Importance?: number;
|
|
1326
|
+
// The event's unique identifier
|
|
1327
|
+
Id?: string;
|
|
1328
|
+
// The date and time that the event was created
|
|
1329
|
+
DateTimeCreated?: string;
|
|
1330
|
+
// The date and time that the event was last modified
|
|
1331
|
+
DateTimeLastModified?: string;
|
|
1332
|
+
// The organizer of the event
|
|
1333
|
+
Organizer?: string;
|
|
1334
|
+
// Time zone of the event
|
|
1335
|
+
TimeZone?: string;
|
|
1336
|
+
// Unique identifier for Series Master event type
|
|
1337
|
+
SeriesMasterId?: string;
|
|
1338
|
+
// The categories associated with the event
|
|
1339
|
+
Categories?: string[];
|
|
1340
|
+
// The URL to open the event in Outlook Web App
|
|
1341
|
+
WebLink?: string;
|
|
1342
|
+
// Required attendees for the event separated by semicolons
|
|
1343
|
+
RequiredAttendees?: string;
|
|
1344
|
+
// Optional attendees for the event separated by semicolons
|
|
1345
|
+
OptionalAttendees?: string;
|
|
1346
|
+
// Resource attendees for the event separated by semicolons
|
|
1347
|
+
ResourceAttendees?: string;
|
|
1348
|
+
// Body of the message associated with the event
|
|
1349
|
+
Body?: string;
|
|
1350
|
+
// Set to true if the body is Html
|
|
1351
|
+
IsHtml?: boolean;
|
|
1352
|
+
// Location of the event
|
|
1353
|
+
Location?: string;
|
|
1354
|
+
// Set to true if the event lasts all day
|
|
1355
|
+
IsAllDay?: boolean;
|
|
1356
|
+
// End time of the recurrence
|
|
1357
|
+
RecurrenceEnd?: string;
|
|
1358
|
+
// How many times to repeat the event
|
|
1359
|
+
NumberOfOccurrences?: number;
|
|
1360
|
+
// Time in minutes before event start to remind
|
|
1361
|
+
Reminder?: number;
|
|
1362
|
+
// Set to true if the sender would like a response when the event is accepted or declined
|
|
1363
|
+
ResponseRequested?: boolean;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
export interface GraphCalendarEventListWithActionType {
|
|
1367
|
+
// List of calendar items
|
|
1368
|
+
value?: GraphCalendarEventClientWithActionType[];
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
export type GraphCalendarEventClientWithActionTypeActionType = 'added'|'updated'|'deleted';
|
|
1372
|
+
export type GraphCalendarEventClientWithActionTyperesponseType = 'none'|'organizer'|'tentativelyAccepted'|'accepted'|'declined'|'notResponded';
|
|
1373
|
+
export type GraphCalendarEventClientWithActionTypeimportance = 'low'|'normal'|'high';
|
|
1374
|
+
export type GraphCalendarEventClientWithActionTyperecurrence = 'none'|'daily'|'weekly'|'monthly'|'yearly';
|
|
1375
|
+
export type GraphCalendarEventClientWithActionTypeshowAs = 'free'|'tentative'|'busy'|'oof'|'workingElsewhere'|'unknown';
|
|
1376
|
+
export type GraphCalendarEventClientWithActionTypesensitivity = 'normal'|'personal'|'private'|'confidential';
|
|
1377
|
+
|
|
1378
|
+
export interface GraphCalendarEventClientWithActionType {
|
|
1379
|
+
// Changed action type of the event - added, updated or deleted.
|
|
1380
|
+
ActionType?: GraphCalendarEventClientWithActionTypeActionType;
|
|
1381
|
+
// Flag that indicates whether the event was added since the last poll of the trigger.
|
|
1382
|
+
IsAdded?: boolean;
|
|
1383
|
+
// Flag that indicates whether the event was updated since the last poll of the trigger.
|
|
1384
|
+
IsUpdated?: boolean;
|
|
1385
|
+
// Event subject
|
|
1386
|
+
subject?: string;
|
|
1387
|
+
// Start time of the event (example: '2017-08-29T04:00:00.0000000')
|
|
1388
|
+
start?: string;
|
|
1389
|
+
// End time of the event (example: '2017-08-29T05:00:00.0000000')
|
|
1390
|
+
end?: string;
|
|
1391
|
+
// Start time of the event with time zone (example: '2017-08-29T04:00:00.0000000+00:00')
|
|
1392
|
+
startWithTimeZone?: string;
|
|
1393
|
+
// End time of the event with time zone (example: '2017-08-29T05:00:00.0000000+00:00')
|
|
1394
|
+
endWithTimeZone?: string;
|
|
1395
|
+
// Body of the message associated with the event
|
|
1396
|
+
body?: string;
|
|
1397
|
+
// Set to true if the body is Html
|
|
1398
|
+
isHtml?: boolean;
|
|
1399
|
+
// The response type of the event (none, organizer, tentativelyAccepted, accepted, declined or notResponded)
|
|
1400
|
+
responseType?: GraphCalendarEventClientWithActionTyperesponseType;
|
|
1401
|
+
// The response time of the event
|
|
1402
|
+
responseTime?: string;
|
|
1403
|
+
// The event's unique identifier
|
|
1404
|
+
id?: string;
|
|
1405
|
+
// The date and time that the event was created
|
|
1406
|
+
createdDateTime?: string;
|
|
1407
|
+
// The date and time that the event was last modified
|
|
1408
|
+
lastModifiedDateTime?: string;
|
|
1409
|
+
// The organizer of the event
|
|
1410
|
+
organizer?: string;
|
|
1411
|
+
// Time zone of the event
|
|
1412
|
+
timeZone?: string;
|
|
1413
|
+
// Unique identifier for Series Master event type
|
|
1414
|
+
seriesMasterId?: string;
|
|
1415
|
+
// A unique identifier for an event across calendars. This ID is different for each occurrence in a recurring series
|
|
1416
|
+
iCalUId?: string;
|
|
1417
|
+
// The categories associated with the event
|
|
1418
|
+
categories?: string[];
|
|
1419
|
+
// The URL to open the event in Outlook Web App
|
|
1420
|
+
webLink?: string;
|
|
1421
|
+
// Required attendees for the event separated by semicolons
|
|
1422
|
+
requiredAttendees?: string;
|
|
1423
|
+
// Optional attendees for the event separated by semicolons
|
|
1424
|
+
optionalAttendees?: string;
|
|
1425
|
+
// Resource attendees for the event separated by semicolons
|
|
1426
|
+
resourceAttendees?: string;
|
|
1427
|
+
// Location of the event
|
|
1428
|
+
location?: string;
|
|
1429
|
+
// The importance of the event: low, normal, or high
|
|
1430
|
+
importance?: GraphCalendarEventClientWithActionTypeimportance;
|
|
1431
|
+
// Set to true if the event lasts all day
|
|
1432
|
+
isAllDay?: boolean;
|
|
1433
|
+
// The recurrence pattern for the event: none, daily, weekly, monthly or yearly
|
|
1434
|
+
recurrence?: GraphCalendarEventClientWithActionTyperecurrence;
|
|
1435
|
+
// End Date of the recurrence
|
|
1436
|
+
recurrenceEnd?: string;
|
|
1437
|
+
// How many times to repeat the event
|
|
1438
|
+
numberOfOccurences?: number;
|
|
1439
|
+
// Time in minutes before event start to remind
|
|
1440
|
+
reminderMinutesBeforeStart?: number;
|
|
1441
|
+
// Set to true if an alert is set to remind the user of the event.
|
|
1442
|
+
isReminderOn?: boolean;
|
|
1443
|
+
// Status to show during the event: free, tentative, busy, oof, workingElsewhere or unknown
|
|
1444
|
+
showAs?: GraphCalendarEventClientWithActionTypeshowAs;
|
|
1445
|
+
// Set to true if the sender would like a response when the event is accepted or declined
|
|
1446
|
+
responseRequested?: boolean;
|
|
1447
|
+
// The possible values are: normal, personal, private, confidential
|
|
1448
|
+
sensitivity?: GraphCalendarEventClientWithActionTypesensitivity;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
export interface EntityListResponse_GraphContactFolder {
|
|
1452
|
+
// List of values
|
|
1453
|
+
value?: GraphContactFolder[];
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
export interface GraphContactFolder {
|
|
1457
|
+
// The ID of the contacts folder
|
|
1458
|
+
id?: string;
|
|
1459
|
+
// The name of the contacts folder
|
|
1460
|
+
displayName?: string;
|
|
1461
|
+
// The ID of the parent folder
|
|
1462
|
+
parentFolderId?: string;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
export interface EntityListResponse_ContactResponse {
|
|
1466
|
+
// List of values
|
|
1467
|
+
value?: ContactResponse[];
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
export interface ContactResponse {
|
|
1471
|
+
// The contact's given name
|
|
1472
|
+
GivenName?: string;
|
|
1473
|
+
// The contact's home phone numbers
|
|
1474
|
+
HomePhones?: string[];
|
|
1475
|
+
// The contact's unique identifier.
|
|
1476
|
+
Id?: string;
|
|
1477
|
+
// The ID of the contact's parent folder
|
|
1478
|
+
ParentFolderId?: string;
|
|
1479
|
+
// The contact's birthday
|
|
1480
|
+
Birthday?: string;
|
|
1481
|
+
// The name the contact is filed under
|
|
1482
|
+
FileAs?: string;
|
|
1483
|
+
// The contact's display name
|
|
1484
|
+
DisplayName?: string;
|
|
1485
|
+
// The contact's initials
|
|
1486
|
+
Initials?: string;
|
|
1487
|
+
// The contact's middle name
|
|
1488
|
+
MiddleName?: string;
|
|
1489
|
+
// The contact's nickname
|
|
1490
|
+
NickName?: string;
|
|
1491
|
+
// The contact's surname
|
|
1492
|
+
Surname?: string;
|
|
1493
|
+
// The contact's title
|
|
1494
|
+
Title?: string;
|
|
1495
|
+
// The contact's generation
|
|
1496
|
+
Generation?: string;
|
|
1497
|
+
// The contact's email addresses
|
|
1498
|
+
EmailAddresses?: EmailAddress[];
|
|
1499
|
+
// The contact's instant messaging (IM) addresses
|
|
1500
|
+
ImAddresses?: string[];
|
|
1501
|
+
// The contact's job title
|
|
1502
|
+
JobTitle?: string;
|
|
1503
|
+
// The name of the contact's company
|
|
1504
|
+
CompanyName?: string;
|
|
1505
|
+
// The contact's department
|
|
1506
|
+
Department?: string;
|
|
1507
|
+
// The location of the contact's office
|
|
1508
|
+
OfficeLocation?: string;
|
|
1509
|
+
// The contact's profession
|
|
1510
|
+
Profession?: string;
|
|
1511
|
+
// The business home page of the contact
|
|
1512
|
+
BusinessHomePage?: string;
|
|
1513
|
+
// The name of the contact's assistant
|
|
1514
|
+
AssistantName?: string;
|
|
1515
|
+
// The name of the contact's manager
|
|
1516
|
+
Manager?: string;
|
|
1517
|
+
// The contact's business phone numbers
|
|
1518
|
+
BusinessPhones?: string[];
|
|
1519
|
+
// The contact's mobile phone number
|
|
1520
|
+
MobilePhone1?: string;
|
|
1521
|
+
HomeAddress?: PhysicalAddress;
|
|
1522
|
+
BusinessAddress?: PhysicalAddress;
|
|
1523
|
+
OtherAddress?: PhysicalAddress;
|
|
1524
|
+
// The phonetic Japanese company name of the contact
|
|
1525
|
+
YomiCompanyName?: string;
|
|
1526
|
+
// The phonetic Japanese given name (first name) of the contact
|
|
1527
|
+
YomiGivenName?: string;
|
|
1528
|
+
// The phonetic Japanese surname (last name) of the contact
|
|
1529
|
+
YomiSurname?: string;
|
|
1530
|
+
// The categories associated with the contact
|
|
1531
|
+
Categories?: string[];
|
|
1532
|
+
// Identifies the version of the event object
|
|
1533
|
+
ChangeKey?: string;
|
|
1534
|
+
// The time the contact was created
|
|
1535
|
+
DateTimeCreated?: string;
|
|
1536
|
+
// The time the contact was modified
|
|
1537
|
+
DateTimeLastModified?: string;
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
export interface Contact {
|
|
1541
|
+
// The contact's unique identifier.
|
|
1542
|
+
Id?: string;
|
|
1543
|
+
// The ID of the contact's parent folder
|
|
1544
|
+
ParentFolderId?: string;
|
|
1545
|
+
// The contact's birthday
|
|
1546
|
+
Birthday?: string;
|
|
1547
|
+
// The name the contact is filed under
|
|
1548
|
+
FileAs?: string;
|
|
1549
|
+
// The contact's display name
|
|
1550
|
+
DisplayName?: string;
|
|
1551
|
+
// The contact's given name
|
|
1552
|
+
GivenName: string;
|
|
1553
|
+
// The contact's initials
|
|
1554
|
+
Initials?: string;
|
|
1555
|
+
// The contact's middle name
|
|
1556
|
+
MiddleName?: string;
|
|
1557
|
+
// The contact's nickname
|
|
1558
|
+
NickName?: string;
|
|
1559
|
+
// The contact's surname
|
|
1560
|
+
Surname?: string;
|
|
1561
|
+
// The contact's title
|
|
1562
|
+
Title?: string;
|
|
1563
|
+
// The contact's generation
|
|
1564
|
+
Generation?: string;
|
|
1565
|
+
// The contact's email addresses
|
|
1566
|
+
EmailAddresses?: EmailAddress[];
|
|
1567
|
+
// The contact's instant messaging (IM) addresses
|
|
1568
|
+
ImAddresses?: string[];
|
|
1569
|
+
// The contact's job title
|
|
1570
|
+
JobTitle?: string;
|
|
1571
|
+
// The name of the contact's company
|
|
1572
|
+
CompanyName?: string;
|
|
1573
|
+
// The contact's department
|
|
1574
|
+
Department?: string;
|
|
1575
|
+
// The location of the contact's office
|
|
1576
|
+
OfficeLocation?: string;
|
|
1577
|
+
// The contact's profession
|
|
1578
|
+
Profession?: string;
|
|
1579
|
+
// The business home page of the contact
|
|
1580
|
+
BusinessHomePage?: string;
|
|
1581
|
+
// The name of the contact's assistant
|
|
1582
|
+
AssistantName?: string;
|
|
1583
|
+
// The name of the contact's manager
|
|
1584
|
+
Manager?: string;
|
|
1585
|
+
// The contact's home phone numbers
|
|
1586
|
+
HomePhones: string[];
|
|
1587
|
+
// The contact's business phone numbers
|
|
1588
|
+
BusinessPhones?: string[];
|
|
1589
|
+
// The contact's mobile phone number
|
|
1590
|
+
MobilePhone1?: string;
|
|
1591
|
+
HomeAddress?: PhysicalAddress;
|
|
1592
|
+
BusinessAddress?: PhysicalAddress;
|
|
1593
|
+
OtherAddress?: PhysicalAddress;
|
|
1594
|
+
// The phonetic Japanese company name of the contact
|
|
1595
|
+
YomiCompanyName?: string;
|
|
1596
|
+
// The phonetic Japanese given name (first name) of the contact
|
|
1597
|
+
YomiGivenName?: string;
|
|
1598
|
+
// The phonetic Japanese surname (last name) of the contact
|
|
1599
|
+
YomiSurname?: string;
|
|
1600
|
+
// The categories associated with the contact
|
|
1601
|
+
Categories?: string[];
|
|
1602
|
+
// Identifies the version of the event object
|
|
1603
|
+
ChangeKey?: string;
|
|
1604
|
+
// The time the contact was created
|
|
1605
|
+
DateTimeCreated?: string;
|
|
1606
|
+
// The time the contact was modified
|
|
1607
|
+
DateTimeLastModified?: string;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
export interface DataSetsList {
|
|
1611
|
+
// List of datasets
|
|
1612
|
+
value?: DataSet[];
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
export interface DataSet {
|
|
1616
|
+
// Dataset name
|
|
1617
|
+
Name?: string;
|
|
1618
|
+
// Dataset display name
|
|
1619
|
+
DisplayName?: string;
|
|
1620
|
+
// Pass-through Native Queries
|
|
1621
|
+
query?: PassThroughNativeQuery[];
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
export interface Procedure {
|
|
1625
|
+
// Procedure name
|
|
1626
|
+
Name?: string;
|
|
1627
|
+
// Procedure display name
|
|
1628
|
+
DisplayName?: string;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
export interface PassThroughNativeQuery {
|
|
1632
|
+
// Query language
|
|
1633
|
+
Language?: string;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
export type AutomaticRepliesSettingClient_V2status = 'disabled'|'alwaysEnabled'|'scheduled';
|
|
1637
|
+
export type AutomaticRepliesSettingClient_V2externalAudience = 'none'|'contactsOnly'|'all';
|
|
1638
|
+
|
|
1639
|
+
export interface AutomaticRepliesSettingClient_V2 {
|
|
1640
|
+
// Automatic reply setting status
|
|
1641
|
+
status: AutomaticRepliesSettingClient_V2status;
|
|
1642
|
+
// The audience that will see the external reply message
|
|
1643
|
+
externalAudience: AutomaticRepliesSettingClient_V2externalAudience;
|
|
1644
|
+
// Scheduled start time (example: '2017-08-29T04:00:00.0000000')
|
|
1645
|
+
scheduledStartDateTime?: {
|
|
1646
|
+
// Scheduled start time (example: '2017-08-29T04:00:00.0000000')
|
|
1647
|
+
dateTime?: string;
|
|
1648
|
+
// TimeZone (example: 'Pacific Standard Time')
|
|
1649
|
+
timeZone?: string;
|
|
1650
|
+
};
|
|
1651
|
+
// Scheduled end time (example: '2017-08-29T05:00:00.0000000')
|
|
1652
|
+
scheduledEndDateTime?: {
|
|
1653
|
+
// Scheduled end time (example: '2017-08-29T05:00:00.0000000')
|
|
1654
|
+
dateTime?: string;
|
|
1655
|
+
// TimeZone (example: 'Pacific Standard Time')
|
|
1656
|
+
timeZone?: string;
|
|
1657
|
+
};
|
|
1658
|
+
// Message for people within your organization
|
|
1659
|
+
internalReplyMessage?: string;
|
|
1660
|
+
// Message for people outside your organization
|
|
1661
|
+
externalReplyMessage?: string;
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
export interface MailTipsClientReceive_V2 {
|
|
1665
|
+
automaticReplies?: MailTipsAutomaticReplies_V2;
|
|
1666
|
+
// Is delivery restricted
|
|
1667
|
+
deliveryRestricted?: boolean;
|
|
1668
|
+
// Number of external members
|
|
1669
|
+
externalMemberCount?: number;
|
|
1670
|
+
// Is moderated
|
|
1671
|
+
isModerated?: boolean;
|
|
1672
|
+
// Is mailbox full
|
|
1673
|
+
mailboxFull?: boolean;
|
|
1674
|
+
// Maximum message size
|
|
1675
|
+
maxMessageSize?: number;
|
|
1676
|
+
// Total member count
|
|
1677
|
+
totalMemberCount?: number;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
export interface MailTipsAutomaticReplies_V2 {
|
|
1681
|
+
// Automatic replies message
|
|
1682
|
+
message?: string;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
export type UpdateEmailFlagflagStatus = 'flagged'|'notFlagged'|'complete';
|
|
1686
|
+
|
|
1687
|
+
export interface UpdateEmailFlag {
|
|
1688
|
+
// Flag status
|
|
1689
|
+
flag?: {
|
|
1690
|
+
// Flag status
|
|
1691
|
+
flagStatus?: UpdateEmailFlagflagStatus;
|
|
1692
|
+
};
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
export interface ResponseToEventInvite {
|
|
1696
|
+
// Comment
|
|
1697
|
+
Comment?: string;
|
|
1698
|
+
// Send response to organizer?
|
|
1699
|
+
SendResponse?: boolean;
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
export interface DirectForwardMessage {
|
|
1703
|
+
// Comment
|
|
1704
|
+
Comment?: string;
|
|
1705
|
+
// Semicolon separated list of recipients to forward the message to
|
|
1706
|
+
ToRecipients: string;
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
export interface MeetingTimeSuggestionsItem {
|
|
1710
|
+
// Confidence
|
|
1711
|
+
Confidence?: number;
|
|
1712
|
+
// Organizer Availability
|
|
1713
|
+
OrganizerAvailability?: string;
|
|
1714
|
+
// Suggestion Reason
|
|
1715
|
+
SuggestionReason?: string;
|
|
1716
|
+
// Meeting Time Slot
|
|
1717
|
+
MeetingTimeSlot?: {
|
|
1718
|
+
Start?: DateTimeTimeZone;
|
|
1719
|
+
End?: DateTimeTimeZone;
|
|
1720
|
+
};
|
|
1721
|
+
// Attendee Availability
|
|
1722
|
+
AttendeeAvailability?: {
|
|
1723
|
+
// Availability
|
|
1724
|
+
Availability?: string;
|
|
1725
|
+
// Attendee
|
|
1726
|
+
Attendee?: {
|
|
1727
|
+
// Type
|
|
1728
|
+
Type?: string;
|
|
1729
|
+
// Email Address
|
|
1730
|
+
EmailAddress?: {
|
|
1731
|
+
// Address
|
|
1732
|
+
Address?: string;
|
|
1733
|
+
};
|
|
1734
|
+
};
|
|
1735
|
+
}[];
|
|
1736
|
+
// Locations
|
|
1737
|
+
Locations?: {
|
|
1738
|
+
// Display Name
|
|
1739
|
+
DisplayName?: string;
|
|
1740
|
+
// Location Email Address
|
|
1741
|
+
LocationEmailAddress?: string;
|
|
1742
|
+
// Address
|
|
1743
|
+
Address?: {
|
|
1744
|
+
// Type
|
|
1745
|
+
Type?: string;
|
|
1746
|
+
// Street
|
|
1747
|
+
Street?: string;
|
|
1748
|
+
// City
|
|
1749
|
+
City?: string;
|
|
1750
|
+
// State
|
|
1751
|
+
State?: string;
|
|
1752
|
+
// Country Or Region
|
|
1753
|
+
CountryOrRegion?: string;
|
|
1754
|
+
// Postal Code
|
|
1755
|
+
PostalCode?: string;
|
|
1756
|
+
};
|
|
1757
|
+
}[];
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
export type MeetingTimeSuggestions = MeetingTimeSuggestionsItem[];
|
|
1761
|
+
|
|
1762
|
+
export interface MeetingTimeSuggestions_V2Item {
|
|
1763
|
+
// Confidence
|
|
1764
|
+
confidence?: number;
|
|
1765
|
+
// Organizer Availability
|
|
1766
|
+
organizerAvailability?: string;
|
|
1767
|
+
// Suggestion Reason
|
|
1768
|
+
suggestionReason?: string;
|
|
1769
|
+
// Meeting Time Slot
|
|
1770
|
+
meetingTimeSlot?: {
|
|
1771
|
+
start?: DateTimeTimeZone_V2;
|
|
1772
|
+
end?: DateTimeTimeZone_V2;
|
|
1773
|
+
};
|
|
1774
|
+
// Attendee Availability
|
|
1775
|
+
attendeeAvailability?: {
|
|
1776
|
+
// Availability
|
|
1777
|
+
availability?: string;
|
|
1778
|
+
// Attendee
|
|
1779
|
+
attendee?: {
|
|
1780
|
+
// Type
|
|
1781
|
+
_type?: string;
|
|
1782
|
+
// Email Address
|
|
1783
|
+
emailAddress?: {
|
|
1784
|
+
// Address
|
|
1785
|
+
address?: string;
|
|
1786
|
+
};
|
|
1787
|
+
};
|
|
1788
|
+
}[];
|
|
1789
|
+
// Locations
|
|
1790
|
+
locations?: {
|
|
1791
|
+
// Display Name
|
|
1792
|
+
displayName?: string;
|
|
1793
|
+
// Location Email Address
|
|
1794
|
+
locationEmailAddress?: string;
|
|
1795
|
+
// Address
|
|
1796
|
+
address?: {
|
|
1797
|
+
// Street
|
|
1798
|
+
street?: string;
|
|
1799
|
+
// City
|
|
1800
|
+
city?: string;
|
|
1801
|
+
// State
|
|
1802
|
+
state?: string;
|
|
1803
|
+
// Country Or Region
|
|
1804
|
+
countryOrRegion?: string;
|
|
1805
|
+
// Postal Code
|
|
1806
|
+
postalCode?: string;
|
|
1807
|
+
};
|
|
1808
|
+
}[];
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
export type MeetingTimeSuggestions_V2 = MeetingTimeSuggestions_V2Item[];
|
|
1812
|
+
|
|
1813
|
+
export interface LocationConstraint {
|
|
1814
|
+
// Should a meeting location be returned for the meeting?
|
|
1815
|
+
IsRequired?: boolean;
|
|
1816
|
+
// Should the response provide one or more meeting location suggestions?
|
|
1817
|
+
SuggestLocation?: boolean;
|
|
1818
|
+
// Locations
|
|
1819
|
+
Locations?: {
|
|
1820
|
+
// If set to true and the specified resource is busy, looks for another resource that is free. If false and resource is busy, returns the best resource regardless of if it's free
|
|
1821
|
+
ResolveAvailability?: boolean;
|
|
1822
|
+
// The name associated with the location
|
|
1823
|
+
DisplayName?: string;
|
|
1824
|
+
}[];
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
export interface DateTimeTimeZone {
|
|
1828
|
+
// DateTime
|
|
1829
|
+
DateTime?: string;
|
|
1830
|
+
// TimeZone
|
|
1831
|
+
TimeZone?: string;
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
export interface DateTimeTimeZone_V2 {
|
|
1835
|
+
// DateTime (example: '2017-08-29T04:00:00.0000000')
|
|
1836
|
+
dateTime?: string;
|
|
1837
|
+
// TimeZone (example: 'Pacific Standard Time')
|
|
1838
|
+
timeZone?: string;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
export interface EntityListResponse_ContactResponse_V2 {
|
|
1842
|
+
// List of values
|
|
1843
|
+
value?: ContactResponse_V2[];
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
export interface EmailAddress_V2 {
|
|
1847
|
+
name?: string;
|
|
1848
|
+
address?: string;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
export interface PhysicalAddress_V2 {
|
|
1852
|
+
// The contact's street address.
|
|
1853
|
+
street?: string;
|
|
1854
|
+
// The contact's city.
|
|
1855
|
+
city?: string;
|
|
1856
|
+
// The contact's state.
|
|
1857
|
+
state?: string;
|
|
1858
|
+
// The contact's country of region.
|
|
1859
|
+
countryOrRegion?: string;
|
|
1860
|
+
// The contact's postal code.
|
|
1861
|
+
postalCode?: string;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
export interface Contact_V2 {
|
|
1865
|
+
// The contact's unique identifier.
|
|
1866
|
+
id?: string;
|
|
1867
|
+
// The ID of the contact's parent folder
|
|
1868
|
+
parentFolderId?: string;
|
|
1869
|
+
// The contact's birthday
|
|
1870
|
+
birthday?: string;
|
|
1871
|
+
// The name the contact is filed under
|
|
1872
|
+
fileAs?: string;
|
|
1873
|
+
// The contact's display name
|
|
1874
|
+
displayName?: string;
|
|
1875
|
+
// The contact's given name
|
|
1876
|
+
givenName: string;
|
|
1877
|
+
// The contact's initials
|
|
1878
|
+
initials?: string;
|
|
1879
|
+
// The contact's middle name
|
|
1880
|
+
middleName?: string;
|
|
1881
|
+
// The contact's nickname
|
|
1882
|
+
nickName?: string;
|
|
1883
|
+
// The contact's surname
|
|
1884
|
+
surname?: string;
|
|
1885
|
+
// The contact's title
|
|
1886
|
+
title?: string;
|
|
1887
|
+
// The contact's generation
|
|
1888
|
+
generation?: string;
|
|
1889
|
+
// The contact's email addresses
|
|
1890
|
+
emailAddresses?: EmailAddress_V2[];
|
|
1891
|
+
// The contact's instant messaging (IM) addresses
|
|
1892
|
+
imAddresses?: string[];
|
|
1893
|
+
// The contact's job title
|
|
1894
|
+
jobTitle?: string;
|
|
1895
|
+
// The name of the contact's company
|
|
1896
|
+
companyName?: string;
|
|
1897
|
+
// The contact's department
|
|
1898
|
+
department?: string;
|
|
1899
|
+
// The location of the contact's office
|
|
1900
|
+
officeLocation?: string;
|
|
1901
|
+
// The contact's profession
|
|
1902
|
+
profession?: string;
|
|
1903
|
+
// The business home page of the contact
|
|
1904
|
+
businessHomePage?: string;
|
|
1905
|
+
// The name of the contact's assistant
|
|
1906
|
+
assistantName?: string;
|
|
1907
|
+
// The name of the contact's manager
|
|
1908
|
+
manager?: string;
|
|
1909
|
+
// The contact's home phone numbers
|
|
1910
|
+
homePhones: string[];
|
|
1911
|
+
// The contact's business phone numbers
|
|
1912
|
+
businessPhones?: string[];
|
|
1913
|
+
// The contact's mobile phone number
|
|
1914
|
+
mobilePhone?: string;
|
|
1915
|
+
homeAddress?: PhysicalAddress_V2;
|
|
1916
|
+
businessAddress?: PhysicalAddress_V2;
|
|
1917
|
+
otherAddress?: PhysicalAddress_V2;
|
|
1918
|
+
// The phonetic Japanese company name of the contact
|
|
1919
|
+
yomiCompanyName?: string;
|
|
1920
|
+
// The phonetic Japanese given name (first name) of the contact
|
|
1921
|
+
yomiGivenName?: string;
|
|
1922
|
+
// The phonetic Japanese surname (last name) of the contact
|
|
1923
|
+
yomiSurname?: string;
|
|
1924
|
+
// The categories associated with the contact
|
|
1925
|
+
categories?: string[];
|
|
1926
|
+
// Identifies the version of the event object
|
|
1927
|
+
changeKey?: string;
|
|
1928
|
+
// The time the contact was created
|
|
1929
|
+
createdDateTime?: string;
|
|
1930
|
+
// The time the contact was modified
|
|
1931
|
+
lastModifiedDateTime?: string;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
export interface ContactResponse_V2 {
|
|
1935
|
+
// The contact's unique identifier.
|
|
1936
|
+
id?: string;
|
|
1937
|
+
// The ID of the contact's parent folder
|
|
1938
|
+
parentFolderId?: string;
|
|
1939
|
+
// The contact's birthday
|
|
1940
|
+
birthday?: string;
|
|
1941
|
+
// The name the contact is filed under
|
|
1942
|
+
fileAs?: string;
|
|
1943
|
+
// The contact's display name
|
|
1944
|
+
displayName?: string;
|
|
1945
|
+
// The contact's given name
|
|
1946
|
+
givenName?: string;
|
|
1947
|
+
// The contact's initials
|
|
1948
|
+
initials?: string;
|
|
1949
|
+
// The contact's middle name
|
|
1950
|
+
middleName?: string;
|
|
1951
|
+
// The contact's nickname
|
|
1952
|
+
nickName?: string;
|
|
1953
|
+
// The contact's surname
|
|
1954
|
+
surname?: string;
|
|
1955
|
+
// The contact's title
|
|
1956
|
+
title?: string;
|
|
1957
|
+
// The contact's generation
|
|
1958
|
+
generation?: string;
|
|
1959
|
+
// The contact's email addresses
|
|
1960
|
+
emailAddresses?: EmailAddress_V2[];
|
|
1961
|
+
// The contact's instant messaging (IM) addresses
|
|
1962
|
+
imAddresses?: string[];
|
|
1963
|
+
// The contact's job title
|
|
1964
|
+
jobTitle?: string;
|
|
1965
|
+
// The name of the contact's company
|
|
1966
|
+
companyName?: string;
|
|
1967
|
+
// The contact's department
|
|
1968
|
+
department?: string;
|
|
1969
|
+
// The location of the contact's office
|
|
1970
|
+
officeLocation?: string;
|
|
1971
|
+
// The contact's profession
|
|
1972
|
+
profession?: string;
|
|
1973
|
+
// The business home page of the contact
|
|
1974
|
+
businessHomePage?: string;
|
|
1975
|
+
// The name of the contact's assistant
|
|
1976
|
+
assistantName?: string;
|
|
1977
|
+
// The name of the contact's manager
|
|
1978
|
+
manager?: string;
|
|
1979
|
+
// The contact's home phone numbers
|
|
1980
|
+
homePhones?: string[];
|
|
1981
|
+
// The contact's business phone numbers
|
|
1982
|
+
businessPhones?: string[];
|
|
1983
|
+
// The contact's mobile phone number
|
|
1984
|
+
mobilePhone?: string;
|
|
1985
|
+
homeAddress?: PhysicalAddress_V2;
|
|
1986
|
+
businessAddress?: PhysicalAddress_V2;
|
|
1987
|
+
otherAddress?: PhysicalAddress_V2;
|
|
1988
|
+
// The phonetic Japanese company name of the contact
|
|
1989
|
+
yomiCompanyName?: string;
|
|
1990
|
+
// The phonetic Japanese given name (first name) of the contact
|
|
1991
|
+
yomiGivenName?: string;
|
|
1992
|
+
// The phonetic Japanese surname (last name) of the contact
|
|
1993
|
+
yomiSurname?: string;
|
|
1994
|
+
// The categories associated with the contact
|
|
1995
|
+
categories?: string[];
|
|
1996
|
+
// Identifies the version of the event object
|
|
1997
|
+
changeKey?: string;
|
|
1998
|
+
// The time the contact was created
|
|
1999
|
+
createdDateTime?: string;
|
|
2000
|
+
// The time the contact was modified
|
|
2001
|
+
lastModifiedDateTime?: string;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
export type ObjectWithoutType = object;
|
|
2005
|
+
|
|
2006
|
+
export interface sensitivityLabelMetadata {
|
|
2007
|
+
// SensitivityLabel Id.
|
|
2008
|
+
sensitivityLabelId?: string;
|
|
2009
|
+
// SensitivityLabel name.
|
|
2010
|
+
name?: string;
|
|
2011
|
+
// SensitivityLabel displayName info
|
|
2012
|
+
displayName?: string;
|
|
2013
|
+
// SensitivityLabel details on tooltip.
|
|
2014
|
+
tooltip?: string;
|
|
2015
|
+
// SensitivityLabel priority.
|
|
2016
|
+
priority?: number;
|
|
2017
|
+
// SensitivityLabel color.
|
|
2018
|
+
color?: string;
|
|
2019
|
+
// is SensitivityLabel Encrypted.
|
|
2020
|
+
isEncrypted?: boolean;
|
|
2021
|
+
// Whether SensitivityLabel is Enabled.
|
|
2022
|
+
isEnabled?: boolean;
|
|
2023
|
+
// Whether SensitivityLabel is Parent.
|
|
2024
|
+
isParent?: boolean;
|
|
2025
|
+
// Parent SensitivityLabel Id.
|
|
2026
|
+
parentSensitivityLabelId?: string;
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
export interface MCPQueryRequest {
|
|
2030
|
+
jsonrpc?: string;
|
|
2031
|
+
id?: string;
|
|
2032
|
+
method?: string;
|
|
2033
|
+
params?: Record<string, unknown>;
|
|
2034
|
+
result?: Record<string, unknown>;
|
|
2035
|
+
error?: Record<string, unknown>;
|
|
2036
|
+
callbackEndpoint?: string;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
export interface MCPQueryResponse {
|
|
2040
|
+
jsonrpc?: string;
|
|
2041
|
+
id?: string;
|
|
2042
|
+
method?: string;
|
|
2043
|
+
params?: Record<string, unknown>;
|
|
2044
|
+
result?: Record<string, unknown>;
|
|
2045
|
+
error?: Record<string, unknown>;
|
|
2046
|
+
}
|