@microsoft/msgraph-sdk 1.0.0-preview.10
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/LICENSE +21 -0
- package/README.md +11 -0
- package/graphRequestAdapter.d.ts +15 -0
- package/graphRequestAdapter.d.ts.map +1 -0
- package/graphRequestAdapter.js +21 -0
- package/graphServiceClient.d.ts +19 -0
- package/graphServiceClient.d.ts.map +1 -0
- package/graphServiceClient.js +51 -0
- package/index.d.ts +3 -0
- package/index.d.ts.map +1 -0
- package/index.js +18 -0
- package/models/callRecords/index.d.ts +1414 -0
- package/models/callRecords/index.d.ts.map +1 -0
- package/models/callRecords/index.js +1104 -0
- package/models/externalConnectors/index.d.ts +975 -0
- package/models/externalConnectors/index.d.ts.map +1 -0
- package/models/externalConnectors/index.js +928 -0
- package/models/identityGovernance/index.d.ts +1334 -0
- package/models/identityGovernance/index.d.ts.map +1 -0
- package/models/identityGovernance/index.js +1189 -0
- package/models/index.d.ts +86017 -0
- package/models/index.d.ts.map +1 -0
- package/models/index.js +74768 -0
- package/models/oDataErrors/index.d.ts +158 -0
- package/models/oDataErrors/index.d.ts.map +1 -0
- package/models/oDataErrors/index.js +139 -0
- package/models/security/index.d.ts +6556 -0
- package/models/security/index.d.ts.map +1 -0
- package/models/security/index.js +5717 -0
- package/models/termStore/index.d.ts +454 -0
- package/models/termStore/index.d.ts.map +1 -0
- package/models/termStore/index.js +406 -0
- package/package.json +51 -0
- package/tsconfig.json +9 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/version.d.ts +2 -0
- package/version.d.ts.map +1 -0
- package/version.js +4 -0
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
import { type BaseCollectionPaginationCountResponse, type Entity, type KeyValue } from '../';
|
|
2
|
+
import { type AdditionalDataHolder, type BackedModel, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
5
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
6
|
+
* @returns a groupCollectionResponse
|
|
7
|
+
*/
|
|
8
|
+
export declare function createGroupCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoGroupCollectionResponse;
|
|
9
|
+
/**
|
|
10
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
11
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
12
|
+
* @returns a group
|
|
13
|
+
*/
|
|
14
|
+
export declare function createGroupFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoGroup;
|
|
15
|
+
/**
|
|
16
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
17
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
18
|
+
* @returns a localizedDescription
|
|
19
|
+
*/
|
|
20
|
+
export declare function createLocalizedDescriptionFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoLocalizedDescription;
|
|
21
|
+
/**
|
|
22
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
23
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
24
|
+
* @returns a localizedLabel
|
|
25
|
+
*/
|
|
26
|
+
export declare function createLocalizedLabelFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoLocalizedLabel;
|
|
27
|
+
/**
|
|
28
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
29
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
30
|
+
* @returns a localizedName
|
|
31
|
+
*/
|
|
32
|
+
export declare function createLocalizedNameFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoLocalizedName;
|
|
33
|
+
/**
|
|
34
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
35
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
36
|
+
* @returns a relationCollectionResponse
|
|
37
|
+
*/
|
|
38
|
+
export declare function createRelationCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoRelationCollectionResponse;
|
|
39
|
+
/**
|
|
40
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
41
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
42
|
+
* @returns a relation
|
|
43
|
+
*/
|
|
44
|
+
export declare function createRelationFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoRelation;
|
|
45
|
+
/**
|
|
46
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
47
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
48
|
+
* @returns a setCollectionResponse
|
|
49
|
+
*/
|
|
50
|
+
export declare function createSetCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoSetCollectionResponse;
|
|
51
|
+
/**
|
|
52
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
53
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
54
|
+
* @returns a set
|
|
55
|
+
*/
|
|
56
|
+
export declare function createSetFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoSet;
|
|
57
|
+
/**
|
|
58
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
59
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
60
|
+
* @returns a storeCollectionResponse
|
|
61
|
+
*/
|
|
62
|
+
export declare function createStoreCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoStoreCollectionResponse;
|
|
63
|
+
/**
|
|
64
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
65
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
66
|
+
* @returns a store
|
|
67
|
+
*/
|
|
68
|
+
export declare function createStoreFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoStore;
|
|
69
|
+
/**
|
|
70
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
71
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
72
|
+
* @returns a termCollectionResponse
|
|
73
|
+
*/
|
|
74
|
+
export declare function createTermCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoTermCollectionResponse;
|
|
75
|
+
/**
|
|
76
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
77
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
78
|
+
* @returns a term
|
|
79
|
+
*/
|
|
80
|
+
export declare function createTermFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoTerm;
|
|
81
|
+
/**
|
|
82
|
+
* The deserialization information for the current model
|
|
83
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
84
|
+
*/
|
|
85
|
+
export declare function deserializeIntoGroup(group?: Group | undefined): Record<string, (node: ParseNode) => void>;
|
|
86
|
+
/**
|
|
87
|
+
* The deserialization information for the current model
|
|
88
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
89
|
+
*/
|
|
90
|
+
export declare function deserializeIntoGroupCollectionResponse(groupCollectionResponse?: GroupCollectionResponse | undefined): Record<string, (node: ParseNode) => void>;
|
|
91
|
+
/**
|
|
92
|
+
* The deserialization information for the current model
|
|
93
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
94
|
+
*/
|
|
95
|
+
export declare function deserializeIntoLocalizedDescription(localizedDescription?: LocalizedDescription | undefined): Record<string, (node: ParseNode) => void>;
|
|
96
|
+
/**
|
|
97
|
+
* The deserialization information for the current model
|
|
98
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
99
|
+
*/
|
|
100
|
+
export declare function deserializeIntoLocalizedLabel(localizedLabel?: LocalizedLabel | undefined): Record<string, (node: ParseNode) => void>;
|
|
101
|
+
/**
|
|
102
|
+
* The deserialization information for the current model
|
|
103
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
104
|
+
*/
|
|
105
|
+
export declare function deserializeIntoLocalizedName(localizedName?: LocalizedName | undefined): Record<string, (node: ParseNode) => void>;
|
|
106
|
+
/**
|
|
107
|
+
* The deserialization information for the current model
|
|
108
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
109
|
+
*/
|
|
110
|
+
export declare function deserializeIntoRelation(relation?: Relation | undefined): Record<string, (node: ParseNode) => void>;
|
|
111
|
+
/**
|
|
112
|
+
* The deserialization information for the current model
|
|
113
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
114
|
+
*/
|
|
115
|
+
export declare function deserializeIntoRelationCollectionResponse(relationCollectionResponse?: RelationCollectionResponse | undefined): Record<string, (node: ParseNode) => void>;
|
|
116
|
+
/**
|
|
117
|
+
* The deserialization information for the current model
|
|
118
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
119
|
+
*/
|
|
120
|
+
export declare function deserializeIntoSet(set?: Set | undefined): Record<string, (node: ParseNode) => void>;
|
|
121
|
+
/**
|
|
122
|
+
* The deserialization information for the current model
|
|
123
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
124
|
+
*/
|
|
125
|
+
export declare function deserializeIntoSetCollectionResponse(setCollectionResponse?: SetCollectionResponse | undefined): Record<string, (node: ParseNode) => void>;
|
|
126
|
+
/**
|
|
127
|
+
* The deserialization information for the current model
|
|
128
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
129
|
+
*/
|
|
130
|
+
export declare function deserializeIntoStore(store?: Store | undefined): Record<string, (node: ParseNode) => void>;
|
|
131
|
+
/**
|
|
132
|
+
* The deserialization information for the current model
|
|
133
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
134
|
+
*/
|
|
135
|
+
export declare function deserializeIntoStoreCollectionResponse(storeCollectionResponse?: StoreCollectionResponse | undefined): Record<string, (node: ParseNode) => void>;
|
|
136
|
+
/**
|
|
137
|
+
* The deserialization information for the current model
|
|
138
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
139
|
+
*/
|
|
140
|
+
export declare function deserializeIntoTerm(term?: Term | undefined): Record<string, (node: ParseNode) => void>;
|
|
141
|
+
/**
|
|
142
|
+
* The deserialization information for the current model
|
|
143
|
+
* @returns a Record<string, (node: ParseNode) => void>
|
|
144
|
+
*/
|
|
145
|
+
export declare function deserializeIntoTermCollectionResponse(termCollectionResponse?: TermCollectionResponse | undefined): Record<string, (node: ParseNode) => void>;
|
|
146
|
+
export interface Group extends Entity, Parsable {
|
|
147
|
+
/**
|
|
148
|
+
* Date and time of the group creation. Read-only.
|
|
149
|
+
*/
|
|
150
|
+
createdDateTime?: Date;
|
|
151
|
+
/**
|
|
152
|
+
* Description that gives details on the term usage.
|
|
153
|
+
*/
|
|
154
|
+
description?: string;
|
|
155
|
+
/**
|
|
156
|
+
* Name of the group.
|
|
157
|
+
*/
|
|
158
|
+
displayName?: string;
|
|
159
|
+
/**
|
|
160
|
+
* ID of the parent site of this group.
|
|
161
|
+
*/
|
|
162
|
+
parentSiteId?: string;
|
|
163
|
+
/**
|
|
164
|
+
* Returns the type of the group. Possible values are: global, system, and siteCollection.
|
|
165
|
+
*/
|
|
166
|
+
scope?: TermGroupScope;
|
|
167
|
+
/**
|
|
168
|
+
* All sets under the group in a term [store].
|
|
169
|
+
*/
|
|
170
|
+
sets?: Set[];
|
|
171
|
+
}
|
|
172
|
+
export interface GroupCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
173
|
+
/**
|
|
174
|
+
* The value property
|
|
175
|
+
*/
|
|
176
|
+
value?: Group[];
|
|
177
|
+
}
|
|
178
|
+
export interface LocalizedDescription extends AdditionalDataHolder, BackedModel, Parsable {
|
|
179
|
+
/**
|
|
180
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
181
|
+
*/
|
|
182
|
+
additionalData?: Record<string, unknown>;
|
|
183
|
+
/**
|
|
184
|
+
* Stores model information.
|
|
185
|
+
*/
|
|
186
|
+
backingStoreEnabled?: boolean;
|
|
187
|
+
/**
|
|
188
|
+
* The description in the localized language.
|
|
189
|
+
*/
|
|
190
|
+
description?: string;
|
|
191
|
+
/**
|
|
192
|
+
* The language tag for the label.
|
|
193
|
+
*/
|
|
194
|
+
languageTag?: string;
|
|
195
|
+
/**
|
|
196
|
+
* The OdataType property
|
|
197
|
+
*/
|
|
198
|
+
odataType?: string;
|
|
199
|
+
}
|
|
200
|
+
export interface LocalizedLabel extends AdditionalDataHolder, BackedModel, Parsable {
|
|
201
|
+
/**
|
|
202
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
203
|
+
*/
|
|
204
|
+
additionalData?: Record<string, unknown>;
|
|
205
|
+
/**
|
|
206
|
+
* Stores model information.
|
|
207
|
+
*/
|
|
208
|
+
backingStoreEnabled?: boolean;
|
|
209
|
+
/**
|
|
210
|
+
* Indicates whether the label is the default label.
|
|
211
|
+
*/
|
|
212
|
+
isDefault?: boolean;
|
|
213
|
+
/**
|
|
214
|
+
* The language tag for the label.
|
|
215
|
+
*/
|
|
216
|
+
languageTag?: string;
|
|
217
|
+
/**
|
|
218
|
+
* The name of the label.
|
|
219
|
+
*/
|
|
220
|
+
name?: string;
|
|
221
|
+
/**
|
|
222
|
+
* The OdataType property
|
|
223
|
+
*/
|
|
224
|
+
odataType?: string;
|
|
225
|
+
}
|
|
226
|
+
export interface LocalizedName extends AdditionalDataHolder, BackedModel, Parsable {
|
|
227
|
+
/**
|
|
228
|
+
* Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
|
|
229
|
+
*/
|
|
230
|
+
additionalData?: Record<string, unknown>;
|
|
231
|
+
/**
|
|
232
|
+
* Stores model information.
|
|
233
|
+
*/
|
|
234
|
+
backingStoreEnabled?: boolean;
|
|
235
|
+
/**
|
|
236
|
+
* The language tag for the label.
|
|
237
|
+
*/
|
|
238
|
+
languageTag?: string;
|
|
239
|
+
/**
|
|
240
|
+
* The name in the localized language.
|
|
241
|
+
*/
|
|
242
|
+
name?: string;
|
|
243
|
+
/**
|
|
244
|
+
* The OdataType property
|
|
245
|
+
*/
|
|
246
|
+
odataType?: string;
|
|
247
|
+
}
|
|
248
|
+
export interface Relation extends Entity, Parsable {
|
|
249
|
+
/**
|
|
250
|
+
* The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set].
|
|
251
|
+
*/
|
|
252
|
+
fromTerm?: Term;
|
|
253
|
+
/**
|
|
254
|
+
* The type of relation. Possible values are: pin, reuse.
|
|
255
|
+
*/
|
|
256
|
+
relationship?: RelationType;
|
|
257
|
+
/**
|
|
258
|
+
* The [set] in which the relation is relevant.
|
|
259
|
+
*/
|
|
260
|
+
set?: Set;
|
|
261
|
+
/**
|
|
262
|
+
* The to [term] of the relation. The term to which the relationship is defined.
|
|
263
|
+
*/
|
|
264
|
+
toTerm?: Term;
|
|
265
|
+
}
|
|
266
|
+
export interface RelationCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
267
|
+
/**
|
|
268
|
+
* The value property
|
|
269
|
+
*/
|
|
270
|
+
value?: Relation[];
|
|
271
|
+
}
|
|
272
|
+
export type RelationType = (typeof RelationTypeObject)[keyof typeof RelationTypeObject];
|
|
273
|
+
/**
|
|
274
|
+
* Serializes information the current object
|
|
275
|
+
* @param writer Serialization writer to use to serialize this model
|
|
276
|
+
*/
|
|
277
|
+
export declare function serializeGroup(writer: SerializationWriter, group?: Group | undefined): void;
|
|
278
|
+
/**
|
|
279
|
+
* Serializes information the current object
|
|
280
|
+
* @param writer Serialization writer to use to serialize this model
|
|
281
|
+
*/
|
|
282
|
+
export declare function serializeGroupCollectionResponse(writer: SerializationWriter, groupCollectionResponse?: GroupCollectionResponse | undefined): void;
|
|
283
|
+
/**
|
|
284
|
+
* Serializes information the current object
|
|
285
|
+
* @param writer Serialization writer to use to serialize this model
|
|
286
|
+
*/
|
|
287
|
+
export declare function serializeLocalizedDescription(writer: SerializationWriter, localizedDescription?: LocalizedDescription | undefined): void;
|
|
288
|
+
/**
|
|
289
|
+
* Serializes information the current object
|
|
290
|
+
* @param writer Serialization writer to use to serialize this model
|
|
291
|
+
*/
|
|
292
|
+
export declare function serializeLocalizedLabel(writer: SerializationWriter, localizedLabel?: LocalizedLabel | undefined): void;
|
|
293
|
+
/**
|
|
294
|
+
* Serializes information the current object
|
|
295
|
+
* @param writer Serialization writer to use to serialize this model
|
|
296
|
+
*/
|
|
297
|
+
export declare function serializeLocalizedName(writer: SerializationWriter, localizedName?: LocalizedName | undefined): void;
|
|
298
|
+
/**
|
|
299
|
+
* Serializes information the current object
|
|
300
|
+
* @param writer Serialization writer to use to serialize this model
|
|
301
|
+
*/
|
|
302
|
+
export declare function serializeRelation(writer: SerializationWriter, relation?: Relation | undefined): void;
|
|
303
|
+
/**
|
|
304
|
+
* Serializes information the current object
|
|
305
|
+
* @param writer Serialization writer to use to serialize this model
|
|
306
|
+
*/
|
|
307
|
+
export declare function serializeRelationCollectionResponse(writer: SerializationWriter, relationCollectionResponse?: RelationCollectionResponse | undefined): void;
|
|
308
|
+
/**
|
|
309
|
+
* Serializes information the current object
|
|
310
|
+
* @param writer Serialization writer to use to serialize this model
|
|
311
|
+
*/
|
|
312
|
+
export declare function serializeSet(writer: SerializationWriter, set?: Set | undefined): void;
|
|
313
|
+
/**
|
|
314
|
+
* Serializes information the current object
|
|
315
|
+
* @param writer Serialization writer to use to serialize this model
|
|
316
|
+
*/
|
|
317
|
+
export declare function serializeSetCollectionResponse(writer: SerializationWriter, setCollectionResponse?: SetCollectionResponse | undefined): void;
|
|
318
|
+
/**
|
|
319
|
+
* Serializes information the current object
|
|
320
|
+
* @param writer Serialization writer to use to serialize this model
|
|
321
|
+
*/
|
|
322
|
+
export declare function serializeStore(writer: SerializationWriter, store?: Store | undefined): void;
|
|
323
|
+
/**
|
|
324
|
+
* Serializes information the current object
|
|
325
|
+
* @param writer Serialization writer to use to serialize this model
|
|
326
|
+
*/
|
|
327
|
+
export declare function serializeStoreCollectionResponse(writer: SerializationWriter, storeCollectionResponse?: StoreCollectionResponse | undefined): void;
|
|
328
|
+
/**
|
|
329
|
+
* Serializes information the current object
|
|
330
|
+
* @param writer Serialization writer to use to serialize this model
|
|
331
|
+
*/
|
|
332
|
+
export declare function serializeTerm(writer: SerializationWriter, term?: Term | undefined): void;
|
|
333
|
+
/**
|
|
334
|
+
* Serializes information the current object
|
|
335
|
+
* @param writer Serialization writer to use to serialize this model
|
|
336
|
+
*/
|
|
337
|
+
export declare function serializeTermCollectionResponse(writer: SerializationWriter, termCollectionResponse?: TermCollectionResponse | undefined): void;
|
|
338
|
+
export interface Set extends Entity, Parsable {
|
|
339
|
+
/**
|
|
340
|
+
* Children terms of set in term [store].
|
|
341
|
+
*/
|
|
342
|
+
children?: Term[];
|
|
343
|
+
/**
|
|
344
|
+
* Date and time of set creation. Read-only.
|
|
345
|
+
*/
|
|
346
|
+
createdDateTime?: Date;
|
|
347
|
+
/**
|
|
348
|
+
* Description that gives details on the term usage.
|
|
349
|
+
*/
|
|
350
|
+
description?: string;
|
|
351
|
+
/**
|
|
352
|
+
* Name of the set for each languageTag.
|
|
353
|
+
*/
|
|
354
|
+
localizedNames?: LocalizedName[];
|
|
355
|
+
/**
|
|
356
|
+
* The parentGroup property
|
|
357
|
+
*/
|
|
358
|
+
parentGroup?: Group;
|
|
359
|
+
/**
|
|
360
|
+
* Custom properties for the set.
|
|
361
|
+
*/
|
|
362
|
+
properties?: KeyValue[];
|
|
363
|
+
/**
|
|
364
|
+
* Indicates which terms have been pinned or reused directly under the set.
|
|
365
|
+
*/
|
|
366
|
+
relations?: Relation[];
|
|
367
|
+
/**
|
|
368
|
+
* All the terms under the set.
|
|
369
|
+
*/
|
|
370
|
+
terms?: Term[];
|
|
371
|
+
}
|
|
372
|
+
export interface SetCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
373
|
+
/**
|
|
374
|
+
* The value property
|
|
375
|
+
*/
|
|
376
|
+
value?: Set[];
|
|
377
|
+
}
|
|
378
|
+
export interface Store extends Entity, Parsable {
|
|
379
|
+
/**
|
|
380
|
+
* Default language of the term store.
|
|
381
|
+
*/
|
|
382
|
+
defaultLanguageTag?: string;
|
|
383
|
+
/**
|
|
384
|
+
* Collection of all groups available in the term store.
|
|
385
|
+
*/
|
|
386
|
+
groups?: Group[];
|
|
387
|
+
/**
|
|
388
|
+
* List of languages for the term store.
|
|
389
|
+
*/
|
|
390
|
+
languageTags?: string[];
|
|
391
|
+
/**
|
|
392
|
+
* Collection of all sets available in the term store. This relationship can only be used to load a specific term set.
|
|
393
|
+
*/
|
|
394
|
+
sets?: Set[];
|
|
395
|
+
}
|
|
396
|
+
export interface StoreCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
397
|
+
/**
|
|
398
|
+
* The value property
|
|
399
|
+
*/
|
|
400
|
+
value?: Store[];
|
|
401
|
+
}
|
|
402
|
+
export interface Term extends Entity, Parsable {
|
|
403
|
+
/**
|
|
404
|
+
* Children of current term.
|
|
405
|
+
*/
|
|
406
|
+
children?: Term[];
|
|
407
|
+
/**
|
|
408
|
+
* Date and time of term creation. Read-only.
|
|
409
|
+
*/
|
|
410
|
+
createdDateTime?: Date;
|
|
411
|
+
/**
|
|
412
|
+
* Description about term that is dependent on the languageTag.
|
|
413
|
+
*/
|
|
414
|
+
descriptions?: LocalizedDescription[];
|
|
415
|
+
/**
|
|
416
|
+
* Label metadata for a term.
|
|
417
|
+
*/
|
|
418
|
+
labels?: LocalizedLabel[];
|
|
419
|
+
/**
|
|
420
|
+
* Last date and time of term modification. Read-only.
|
|
421
|
+
*/
|
|
422
|
+
lastModifiedDateTime?: Date;
|
|
423
|
+
/**
|
|
424
|
+
* Collection of properties on the term.
|
|
425
|
+
*/
|
|
426
|
+
properties?: KeyValue[];
|
|
427
|
+
/**
|
|
428
|
+
* To indicate which terms are related to the current term as either pinned or reused.
|
|
429
|
+
*/
|
|
430
|
+
relations?: Relation[];
|
|
431
|
+
/**
|
|
432
|
+
* The [set] in which the term is created.
|
|
433
|
+
*/
|
|
434
|
+
set?: Set;
|
|
435
|
+
}
|
|
436
|
+
export interface TermCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
437
|
+
/**
|
|
438
|
+
* The value property
|
|
439
|
+
*/
|
|
440
|
+
value?: Term[];
|
|
441
|
+
}
|
|
442
|
+
export type TermGroupScope = (typeof TermGroupScopeObject)[keyof typeof TermGroupScopeObject];
|
|
443
|
+
export declare const RelationTypeObject: {
|
|
444
|
+
readonly Pin: "pin";
|
|
445
|
+
readonly Reuse: "reuse";
|
|
446
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
447
|
+
};
|
|
448
|
+
export declare const TermGroupScopeObject: {
|
|
449
|
+
readonly Global: "global";
|
|
450
|
+
readonly System: "system";
|
|
451
|
+
readonly SiteCollection: "siteCollection";
|
|
452
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
453
|
+
};
|
|
454
|
+
//# 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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"}
|