@microsoft/msgraph-sdk 1.0.0-preview.15 → 1.0.0-preview.17
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/models/callRecords/index.d.ts +4 -4
- package/models/index.d.ts +1603 -33
- package/models/index.d.ts.map +1 -1
- package/models/index.js +1569 -128
- package/models/search/index.d.ts +428 -0
- package/models/search/index.d.ts.map +1 -0
- package/models/search/index.js +380 -0
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -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
|
+
* The standsFor property
|
|
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
|
+
* The keywords property
|
|
30
|
+
*/
|
|
31
|
+
keywords?: string[];
|
|
32
|
+
/**
|
|
33
|
+
* The matchSimilarKeywords property
|
|
34
|
+
*/
|
|
35
|
+
matchSimilarKeywords?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* The OdataType property
|
|
38
|
+
*/
|
|
39
|
+
odataType?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The reservedKeywords property
|
|
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 description property
|
|
57
|
+
*/
|
|
58
|
+
description?: string;
|
|
59
|
+
/**
|
|
60
|
+
* The displayName property
|
|
61
|
+
*/
|
|
62
|
+
displayName?: string;
|
|
63
|
+
/**
|
|
64
|
+
* The languageTag property
|
|
65
|
+
*/
|
|
66
|
+
languageTag?: string;
|
|
67
|
+
/**
|
|
68
|
+
* The OdataType property
|
|
69
|
+
*/
|
|
70
|
+
odataType?: string;
|
|
71
|
+
/**
|
|
72
|
+
* The platform property
|
|
73
|
+
*/
|
|
74
|
+
platform?: DevicePlatformType;
|
|
75
|
+
/**
|
|
76
|
+
* The webUrl property
|
|
77
|
+
*/
|
|
78
|
+
webUrl?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface Bookmark extends Parsable, SearchAnswer {
|
|
81
|
+
/**
|
|
82
|
+
* The availabilityEndDateTime property
|
|
83
|
+
*/
|
|
84
|
+
availabilityEndDateTime?: Date;
|
|
85
|
+
/**
|
|
86
|
+
* The availabilityStartDateTime property
|
|
87
|
+
*/
|
|
88
|
+
availabilityStartDateTime?: Date;
|
|
89
|
+
/**
|
|
90
|
+
* The categories property
|
|
91
|
+
*/
|
|
92
|
+
categories?: string[];
|
|
93
|
+
/**
|
|
94
|
+
* The groupIds property
|
|
95
|
+
*/
|
|
96
|
+
groupIds?: string[];
|
|
97
|
+
/**
|
|
98
|
+
* The isSuggested property
|
|
99
|
+
*/
|
|
100
|
+
isSuggested?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* The keywords property
|
|
103
|
+
*/
|
|
104
|
+
keywords?: AnswerKeyword;
|
|
105
|
+
/**
|
|
106
|
+
* The languageTags property
|
|
107
|
+
*/
|
|
108
|
+
languageTags?: string[];
|
|
109
|
+
/**
|
|
110
|
+
* The platforms property
|
|
111
|
+
*/
|
|
112
|
+
platforms?: DevicePlatformType[];
|
|
113
|
+
/**
|
|
114
|
+
* The powerAppIds property
|
|
115
|
+
*/
|
|
116
|
+
powerAppIds?: string[];
|
|
117
|
+
/**
|
|
118
|
+
* The state property
|
|
119
|
+
*/
|
|
120
|
+
state?: AnswerState;
|
|
121
|
+
/**
|
|
122
|
+
* The targetedVariations property
|
|
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
|
+
* The availabilityEndDateTime property
|
|
304
|
+
*/
|
|
305
|
+
availabilityEndDateTime?: Date;
|
|
306
|
+
/**
|
|
307
|
+
* The availabilityStartDateTime property
|
|
308
|
+
*/
|
|
309
|
+
availabilityStartDateTime?: Date;
|
|
310
|
+
/**
|
|
311
|
+
* The groupIds property
|
|
312
|
+
*/
|
|
313
|
+
groupIds?: string[];
|
|
314
|
+
/**
|
|
315
|
+
* The isSuggested property
|
|
316
|
+
*/
|
|
317
|
+
isSuggested?: boolean;
|
|
318
|
+
/**
|
|
319
|
+
* The keywords property
|
|
320
|
+
*/
|
|
321
|
+
keywords?: AnswerKeyword;
|
|
322
|
+
/**
|
|
323
|
+
* The languageTags property
|
|
324
|
+
*/
|
|
325
|
+
languageTags?: string[];
|
|
326
|
+
/**
|
|
327
|
+
* The platforms property
|
|
328
|
+
*/
|
|
329
|
+
platforms?: DevicePlatformType[];
|
|
330
|
+
/**
|
|
331
|
+
* The state property
|
|
332
|
+
*/
|
|
333
|
+
state?: AnswerState;
|
|
334
|
+
/**
|
|
335
|
+
* The targetedVariations property
|
|
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 description property
|
|
348
|
+
*/
|
|
349
|
+
description?: string;
|
|
350
|
+
/**
|
|
351
|
+
* The displayName property
|
|
352
|
+
*/
|
|
353
|
+
displayName?: string;
|
|
354
|
+
/**
|
|
355
|
+
* The lastModifiedBy property
|
|
356
|
+
*/
|
|
357
|
+
lastModifiedBy?: IdentitySet;
|
|
358
|
+
/**
|
|
359
|
+
* The lastModifiedDateTime property
|
|
360
|
+
*/
|
|
361
|
+
lastModifiedDateTime?: Date;
|
|
362
|
+
/**
|
|
363
|
+
* The webUrl property
|
|
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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"}
|