@microsoft/msgraph-sdk 1.0.0-preview.16 → 1.0.0-preview.18

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.
@@ -0,0 +1,428 @@
1
+ import { DevicePlatformType, type BaseCollectionPaginationCountResponse, type Entity } from '../';
2
+ import { type AdditionalDataHolder, type BackedModel, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
3
+ export interface Acronym extends Parsable, SearchAnswer {
4
+ /**
5
+ * What the acronym stands for.
6
+ */
7
+ standsFor?: string;
8
+ /**
9
+ * The state property
10
+ */
11
+ state?: AnswerState;
12
+ }
13
+ export interface AcronymCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
14
+ /**
15
+ * The value property
16
+ */
17
+ value?: Acronym[];
18
+ }
19
+ export interface AnswerKeyword extends AdditionalDataHolder, BackedModel, Parsable {
20
+ /**
21
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
22
+ */
23
+ additionalData?: Record<string, unknown>;
24
+ /**
25
+ * Stores model information.
26
+ */
27
+ backingStoreEnabled?: boolean;
28
+ /**
29
+ * A collection of keywords used to trigger the search answer.
30
+ */
31
+ keywords?: string[];
32
+ /**
33
+ * If true, indicates that the search term contains similar words to the keywords that should trigger the search answer.
34
+ */
35
+ matchSimilarKeywords?: boolean;
36
+ /**
37
+ * The OdataType property
38
+ */
39
+ odataType?: string;
40
+ /**
41
+ * Unique keywords that guarantee the search answer is triggered.
42
+ */
43
+ reservedKeywords?: string[];
44
+ }
45
+ export type AnswerState = (typeof AnswerStateObject)[keyof typeof AnswerStateObject];
46
+ export interface AnswerVariant extends AdditionalDataHolder, BackedModel, Parsable {
47
+ /**
48
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
49
+ */
50
+ additionalData?: Record<string, unknown>;
51
+ /**
52
+ * Stores model information.
53
+ */
54
+ backingStoreEnabled?: boolean;
55
+ /**
56
+ * The answer variation description that is shown on the search results page.
57
+ */
58
+ description?: string;
59
+ /**
60
+ * The answer variation name that is displayed in search results.
61
+ */
62
+ displayName?: string;
63
+ /**
64
+ * The country or region that can view this answer variation.
65
+ */
66
+ languageTag?: string;
67
+ /**
68
+ * The OdataType property
69
+ */
70
+ odataType?: string;
71
+ /**
72
+ * The device or operating system that can view this answer variation. Possible values are: android, androidForWork, ios, macOS, windowsPhone81, windowsPhone81AndLater, windows10AndLater, androidWorkProfile, unknown, androidASOP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
73
+ */
74
+ platform?: DevicePlatformType;
75
+ /**
76
+ * The URL link for the answer variation. When users select this answer variation from the search results, they're directed to the specified URL.
77
+ */
78
+ webUrl?: string;
79
+ }
80
+ export interface Bookmark extends Parsable, SearchAnswer {
81
+ /**
82
+ * Date and time when the bookmark stops appearing as a search result. Set as null for always available. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
83
+ */
84
+ availabilityEndDateTime?: Date;
85
+ /**
86
+ * Date and time when the bookmark starts to appear as a search result. Set as null for always available. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
87
+ */
88
+ availabilityStartDateTime?: Date;
89
+ /**
90
+ * Categories commonly used to describe this bookmark. For example, IT and HR.
91
+ */
92
+ categories?: string[];
93
+ /**
94
+ * The list of security groups that are able to view this bookmark.
95
+ */
96
+ groupIds?: string[];
97
+ /**
98
+ * True if this bookmark was suggested to the admin, by a user, or was mined and suggested by Microsoft. Read-only.
99
+ */
100
+ isSuggested?: boolean;
101
+ /**
102
+ * Keywords that trigger this bookmark to appear in search results.
103
+ */
104
+ keywords?: AnswerKeyword;
105
+ /**
106
+ * A list of geographically specific language names in which this bookmark can be viewed. Each language tag value follows the pattern {language}-{region}. For example, en-us is English as used in the United States. For the list of possible values, see Supported language tags.
107
+ */
108
+ languageTags?: string[];
109
+ /**
110
+ * List of devices and operating systems that are able to view this bookmark. Possible values are: android, androidForWork, ios, macOS, windowsPhone81, windowsPhone81AndLater, windows10AndLater, androidWorkProfile, unknown, androidASOP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
111
+ */
112
+ platforms?: DevicePlatformType[];
113
+ /**
114
+ * List of Power Apps associated with this bookmark. If users add existing Power Apps to a bookmark, they can complete tasks directly on the search results page, such as entering vacation time or reporting expenses.
115
+ */
116
+ powerAppIds?: string[];
117
+ /**
118
+ * The state property
119
+ */
120
+ state?: AnswerState;
121
+ /**
122
+ * Variations of a bookmark for different countries or devices. Use when you need to show different content to users based on their device, country/region, or both. The date and group settings apply to all variations.
123
+ */
124
+ targetedVariations?: AnswerVariant[];
125
+ }
126
+ export interface BookmarkCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
127
+ /**
128
+ * The value property
129
+ */
130
+ value?: Bookmark[];
131
+ }
132
+ /**
133
+ * Creates a new instance of the appropriate class based on discriminator value
134
+ * @param parseNode The parse node to use to read the discriminator value and create the object
135
+ * @returns {AcronymCollectionResponse}
136
+ */
137
+ export declare function createAcronymCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
138
+ /**
139
+ * Creates a new instance of the appropriate class based on discriminator value
140
+ * @param parseNode The parse node to use to read the discriminator value and create the object
141
+ * @returns {Acronym}
142
+ */
143
+ export declare function createAcronymFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
144
+ /**
145
+ * Creates a new instance of the appropriate class based on discriminator value
146
+ * @param parseNode The parse node to use to read the discriminator value and create the object
147
+ * @returns {AnswerKeyword}
148
+ */
149
+ export declare function createAnswerKeywordFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
150
+ /**
151
+ * Creates a new instance of the appropriate class based on discriminator value
152
+ * @param parseNode The parse node to use to read the discriminator value and create the object
153
+ * @returns {AnswerVariant}
154
+ */
155
+ export declare function createAnswerVariantFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
156
+ /**
157
+ * Creates a new instance of the appropriate class based on discriminator value
158
+ * @param parseNode The parse node to use to read the discriminator value and create the object
159
+ * @returns {BookmarkCollectionResponse}
160
+ */
161
+ export declare function createBookmarkCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
162
+ /**
163
+ * Creates a new instance of the appropriate class based on discriminator value
164
+ * @param parseNode The parse node to use to read the discriminator value and create the object
165
+ * @returns {Bookmark}
166
+ */
167
+ export declare function createBookmarkFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
168
+ /**
169
+ * Creates a new instance of the appropriate class based on discriminator value
170
+ * @param parseNode The parse node to use to read the discriminator value and create the object
171
+ * @returns {Identity}
172
+ */
173
+ export declare function createIdentityFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
174
+ /**
175
+ * Creates a new instance of the appropriate class based on discriminator value
176
+ * @param parseNode The parse node to use to read the discriminator value and create the object
177
+ * @returns {IdentitySet}
178
+ */
179
+ export declare function createIdentitySetFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
180
+ /**
181
+ * Creates a new instance of the appropriate class based on discriminator value
182
+ * @param parseNode The parse node to use to read the discriminator value and create the object
183
+ * @returns {QnaCollectionResponse}
184
+ */
185
+ export declare function createQnaCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
186
+ /**
187
+ * Creates a new instance of the appropriate class based on discriminator value
188
+ * @param parseNode The parse node to use to read the discriminator value and create the object
189
+ * @returns {Qna}
190
+ */
191
+ export declare function createQnaFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
192
+ /**
193
+ * Creates a new instance of the appropriate class based on discriminator value
194
+ * @param parseNode The parse node to use to read the discriminator value and create the object
195
+ * @returns {SearchAnswer}
196
+ */
197
+ export declare function createSearchAnswerFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
198
+ /**
199
+ * The deserialization information for the current model
200
+ * @returns {Record<string, (node: ParseNode) => void>}
201
+ */
202
+ export declare function deserializeIntoAcronym(acronym?: Partial<Acronym> | undefined): Record<string, (node: ParseNode) => void>;
203
+ /**
204
+ * The deserialization information for the current model
205
+ * @returns {Record<string, (node: ParseNode) => void>}
206
+ */
207
+ export declare function deserializeIntoAcronymCollectionResponse(acronymCollectionResponse?: Partial<AcronymCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
208
+ /**
209
+ * The deserialization information for the current model
210
+ * @returns {Record<string, (node: ParseNode) => void>}
211
+ */
212
+ export declare function deserializeIntoAnswerKeyword(answerKeyword?: Partial<AnswerKeyword> | undefined): Record<string, (node: ParseNode) => void>;
213
+ /**
214
+ * The deserialization information for the current model
215
+ * @returns {Record<string, (node: ParseNode) => void>}
216
+ */
217
+ export declare function deserializeIntoAnswerVariant(answerVariant?: Partial<AnswerVariant> | undefined): Record<string, (node: ParseNode) => void>;
218
+ /**
219
+ * The deserialization information for the current model
220
+ * @returns {Record<string, (node: ParseNode) => void>}
221
+ */
222
+ export declare function deserializeIntoBookmark(bookmark?: Partial<Bookmark> | undefined): Record<string, (node: ParseNode) => void>;
223
+ /**
224
+ * The deserialization information for the current model
225
+ * @returns {Record<string, (node: ParseNode) => void>}
226
+ */
227
+ export declare function deserializeIntoBookmarkCollectionResponse(bookmarkCollectionResponse?: Partial<BookmarkCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
228
+ /**
229
+ * The deserialization information for the current model
230
+ * @returns {Record<string, (node: ParseNode) => void>}
231
+ */
232
+ export declare function deserializeIntoIdentity(identity?: Partial<Identity> | undefined): Record<string, (node: ParseNode) => void>;
233
+ /**
234
+ * The deserialization information for the current model
235
+ * @returns {Record<string, (node: ParseNode) => void>}
236
+ */
237
+ export declare function deserializeIntoIdentitySet(identitySet?: Partial<IdentitySet> | undefined): Record<string, (node: ParseNode) => void>;
238
+ /**
239
+ * The deserialization information for the current model
240
+ * @returns {Record<string, (node: ParseNode) => void>}
241
+ */
242
+ export declare function deserializeIntoQna(qna?: Partial<Qna> | undefined): Record<string, (node: ParseNode) => void>;
243
+ /**
244
+ * The deserialization information for the current model
245
+ * @returns {Record<string, (node: ParseNode) => void>}
246
+ */
247
+ export declare function deserializeIntoQnaCollectionResponse(qnaCollectionResponse?: Partial<QnaCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
248
+ /**
249
+ * The deserialization information for the current model
250
+ * @returns {Record<string, (node: ParseNode) => void>}
251
+ */
252
+ export declare function deserializeIntoSearchAnswer(searchAnswer?: Partial<SearchAnswer> | undefined): Record<string, (node: ParseNode) => void>;
253
+ export interface Identity extends AdditionalDataHolder, BackedModel, Parsable {
254
+ /**
255
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
256
+ */
257
+ additionalData?: Record<string, unknown>;
258
+ /**
259
+ * Stores model information.
260
+ */
261
+ backingStoreEnabled?: boolean;
262
+ /**
263
+ * The displayName property
264
+ */
265
+ displayName?: string;
266
+ /**
267
+ * The id property
268
+ */
269
+ id?: string;
270
+ /**
271
+ * The OdataType property
272
+ */
273
+ odataType?: string;
274
+ }
275
+ export interface IdentitySet extends AdditionalDataHolder, BackedModel, Parsable {
276
+ /**
277
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
278
+ */
279
+ additionalData?: Record<string, unknown>;
280
+ /**
281
+ * The application property
282
+ */
283
+ application?: Identity;
284
+ /**
285
+ * Stores model information.
286
+ */
287
+ backingStoreEnabled?: boolean;
288
+ /**
289
+ * The device property
290
+ */
291
+ device?: Identity;
292
+ /**
293
+ * The OdataType property
294
+ */
295
+ odataType?: string;
296
+ /**
297
+ * The user property
298
+ */
299
+ user?: Identity;
300
+ }
301
+ export interface Qna extends Parsable, SearchAnswer {
302
+ /**
303
+ * Date and time when the QnA stops appearing as a search result. Set as null for always available. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
304
+ */
305
+ availabilityEndDateTime?: Date;
306
+ /**
307
+ * Date and time when the QnA starts to appear as a search result. Set as null for always available. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
308
+ */
309
+ availabilityStartDateTime?: Date;
310
+ /**
311
+ * The list of security groups that are able to view this QnA.
312
+ */
313
+ groupIds?: string[];
314
+ /**
315
+ * True if a user or Microsoft suggested this QnA to the admin. Read-only.
316
+ */
317
+ isSuggested?: boolean;
318
+ /**
319
+ * Keywords that trigger this QnA to appear in search results.
320
+ */
321
+ keywords?: AnswerKeyword;
322
+ /**
323
+ * A list of geographically specific language names in which this QnA can be viewed. Each language tag value follows the pattern {language}-{region}. For example, en-us is English as used in the United States. For the list of possible values, see Supported language tags.
324
+ */
325
+ languageTags?: string[];
326
+ /**
327
+ * List of devices and operating systems that are able to view this QnA. Possible values are: android, androidForWork, ios, macOS, windowsPhone81, windowsPhone81AndLater, windows10AndLater, androidWorkProfile, unknown, androidASOP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
328
+ */
329
+ platforms?: DevicePlatformType[];
330
+ /**
331
+ * The state property
332
+ */
333
+ state?: AnswerState;
334
+ /**
335
+ * Variations of a QnA for different countries or devices. Use when you need to show different content to users based on their device, country/region, or both. The date and group settings apply to all variations.
336
+ */
337
+ targetedVariations?: AnswerVariant[];
338
+ }
339
+ export interface QnaCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
340
+ /**
341
+ * The value property
342
+ */
343
+ value?: Qna[];
344
+ }
345
+ export interface SearchAnswer extends Entity, Parsable {
346
+ /**
347
+ * The search answer description that is shown on the search results page.
348
+ */
349
+ description?: string;
350
+ /**
351
+ * The search answer name that is displayed in search results.
352
+ */
353
+ displayName?: string;
354
+ /**
355
+ * Details of the user who created or last modified the search answer. Read-only.
356
+ */
357
+ lastModifiedBy?: IdentitySet;
358
+ /**
359
+ * Date and time when the search answer was created or last edited. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
360
+ */
361
+ lastModifiedDateTime?: Date;
362
+ /**
363
+ * The URL link for the search answer. When users select this search answer from the search results, they are directed to the specified URL.
364
+ */
365
+ webUrl?: string;
366
+ }
367
+ /**
368
+ * Serializes information the current object
369
+ * @param writer Serialization writer to use to serialize this model
370
+ */
371
+ export declare function serializeAcronym(writer: SerializationWriter, acronym?: Partial<Acronym> | undefined): void;
372
+ /**
373
+ * Serializes information the current object
374
+ * @param writer Serialization writer to use to serialize this model
375
+ */
376
+ export declare function serializeAcronymCollectionResponse(writer: SerializationWriter, acronymCollectionResponse?: Partial<AcronymCollectionResponse> | undefined): void;
377
+ /**
378
+ * Serializes information the current object
379
+ * @param writer Serialization writer to use to serialize this model
380
+ */
381
+ export declare function serializeAnswerKeyword(writer: SerializationWriter, answerKeyword?: Partial<AnswerKeyword> | undefined): void;
382
+ /**
383
+ * Serializes information the current object
384
+ * @param writer Serialization writer to use to serialize this model
385
+ */
386
+ export declare function serializeAnswerVariant(writer: SerializationWriter, answerVariant?: Partial<AnswerVariant> | undefined): void;
387
+ /**
388
+ * Serializes information the current object
389
+ * @param writer Serialization writer to use to serialize this model
390
+ */
391
+ export declare function serializeBookmark(writer: SerializationWriter, bookmark?: Partial<Bookmark> | undefined): void;
392
+ /**
393
+ * Serializes information the current object
394
+ * @param writer Serialization writer to use to serialize this model
395
+ */
396
+ export declare function serializeBookmarkCollectionResponse(writer: SerializationWriter, bookmarkCollectionResponse?: Partial<BookmarkCollectionResponse> | undefined): void;
397
+ /**
398
+ * Serializes information the current object
399
+ * @param writer Serialization writer to use to serialize this model
400
+ */
401
+ export declare function serializeIdentity(writer: SerializationWriter, identity?: Partial<Identity> | undefined): void;
402
+ /**
403
+ * Serializes information the current object
404
+ * @param writer Serialization writer to use to serialize this model
405
+ */
406
+ export declare function serializeIdentitySet(writer: SerializationWriter, identitySet?: Partial<IdentitySet> | undefined): void;
407
+ /**
408
+ * Serializes information the current object
409
+ * @param writer Serialization writer to use to serialize this model
410
+ */
411
+ export declare function serializeQna(writer: SerializationWriter, qna?: Partial<Qna> | undefined): void;
412
+ /**
413
+ * Serializes information the current object
414
+ * @param writer Serialization writer to use to serialize this model
415
+ */
416
+ export declare function serializeQnaCollectionResponse(writer: SerializationWriter, qnaCollectionResponse?: Partial<QnaCollectionResponse> | undefined): void;
417
+ /**
418
+ * Serializes information the current object
419
+ * @param writer Serialization writer to use to serialize this model
420
+ */
421
+ export declare function serializeSearchAnswer(writer: SerializationWriter, searchAnswer?: Partial<SearchAnswer> | undefined): void;
422
+ export declare const AnswerStateObject: {
423
+ readonly Published: "published";
424
+ readonly Draft: "draft";
425
+ readonly Excluded: "excluded";
426
+ readonly UnknownFutureValue: "unknownFutureValue";
427
+ };
428
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}