@microsoft/msgraph-sdk 1.0.0-preview.74 → 1.0.0-preview.77
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/externalConnectors/index.d.ts +4 -4
- package/models/identityGovernance/index.d.ts +192 -1
- package/models/identityGovernance/index.d.ts.map +1 -1
- package/models/identityGovernance/index.js +251 -2
- package/models/identityGovernance/index.js.map +1 -1
- package/models/index.d.ts +3301 -303
- package/models/index.d.ts.map +1 -1
- package/models/index.js +3607 -20
- package/models/index.js.map +1 -1
- package/models/partners/billing/index.d.ts +1 -1
- package/models/search/index.d.ts +3 -3
- package/models/security/index.d.ts +484 -35
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +486 -3
- package/models/security/index.js.map +1 -1
- package/models/teamsAdministration/index.d.ts +256 -0
- package/models/teamsAdministration/index.d.ts.map +1 -0
- package/models/teamsAdministration/index.js +254 -0
- package/models/teamsAdministration/index.js.map +1 -0
- package/models/termStore/index.d.ts +2 -2
- package/package.json +2 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/LICENSE +0 -21
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
import { type BaseCollectionPaginationCountResponse, type Entity, type User } from '../index.js';
|
|
2
|
+
import { type AdditionalDataHolder, type BackedModel, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
|
|
3
|
+
export type AccountType = (typeof AccountTypeObject)[keyof typeof AccountTypeObject];
|
|
4
|
+
export interface AssignedTelephoneNumber extends AdditionalDataHolder, BackedModel, Parsable {
|
|
5
|
+
/**
|
|
6
|
+
* The assignmentCategory property
|
|
7
|
+
*/
|
|
8
|
+
assignmentCategory?: AssignmentCategory | null;
|
|
9
|
+
/**
|
|
10
|
+
* Stores model information.
|
|
11
|
+
*/
|
|
12
|
+
backingStoreEnabled?: boolean | null;
|
|
13
|
+
/**
|
|
14
|
+
* The OdataType property
|
|
15
|
+
*/
|
|
16
|
+
odataType?: string | null;
|
|
17
|
+
/**
|
|
18
|
+
* The assigned phone number.
|
|
19
|
+
*/
|
|
20
|
+
telephoneNumber?: string | null;
|
|
21
|
+
}
|
|
22
|
+
export type AssignmentCategory = (typeof AssignmentCategoryObject)[keyof typeof AssignmentCategoryObject];
|
|
23
|
+
export type AssignmentType = (typeof AssignmentTypeObject)[keyof typeof AssignmentTypeObject];
|
|
24
|
+
/**
|
|
25
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
26
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
27
|
+
* @returns {AssignedTelephoneNumber}
|
|
28
|
+
*/
|
|
29
|
+
export declare function createAssignedTelephoneNumberFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
30
|
+
/**
|
|
31
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
32
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
33
|
+
* @returns {EffectivePolicyAssignment}
|
|
34
|
+
*/
|
|
35
|
+
export declare function createEffectivePolicyAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
36
|
+
/**
|
|
37
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
38
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
39
|
+
* @returns {PolicyAssignment}
|
|
40
|
+
*/
|
|
41
|
+
export declare function createPolicyAssignmentFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
42
|
+
/**
|
|
43
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
44
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
45
|
+
* @returns {TeamsAdminRoot}
|
|
46
|
+
*/
|
|
47
|
+
export declare function createTeamsAdminRootFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
48
|
+
/**
|
|
49
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
50
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
51
|
+
* @returns {TeamsUserConfigurationCollectionResponse}
|
|
52
|
+
*/
|
|
53
|
+
export declare function createTeamsUserConfigurationCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
54
|
+
/**
|
|
55
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
56
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
57
|
+
* @returns {TeamsUserConfiguration}
|
|
58
|
+
*/
|
|
59
|
+
export declare function createTeamsUserConfigurationFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
|
|
60
|
+
/**
|
|
61
|
+
* The deserialization information for the current model
|
|
62
|
+
* @param AssignedTelephoneNumber The instance to deserialize into.
|
|
63
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
64
|
+
*/
|
|
65
|
+
export declare function deserializeIntoAssignedTelephoneNumber(assignedTelephoneNumber?: Partial<AssignedTelephoneNumber> | undefined): Record<string, (node: ParseNode) => void>;
|
|
66
|
+
/**
|
|
67
|
+
* The deserialization information for the current model
|
|
68
|
+
* @param EffectivePolicyAssignment The instance to deserialize into.
|
|
69
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
70
|
+
*/
|
|
71
|
+
export declare function deserializeIntoEffectivePolicyAssignment(effectivePolicyAssignment?: Partial<EffectivePolicyAssignment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
72
|
+
/**
|
|
73
|
+
* The deserialization information for the current model
|
|
74
|
+
* @param PolicyAssignment The instance to deserialize into.
|
|
75
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
76
|
+
*/
|
|
77
|
+
export declare function deserializeIntoPolicyAssignment(policyAssignment?: Partial<PolicyAssignment> | undefined): Record<string, (node: ParseNode) => void>;
|
|
78
|
+
/**
|
|
79
|
+
* The deserialization information for the current model
|
|
80
|
+
* @param TeamsAdminRoot The instance to deserialize into.
|
|
81
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
82
|
+
*/
|
|
83
|
+
export declare function deserializeIntoTeamsAdminRoot(teamsAdminRoot?: Partial<TeamsAdminRoot> | undefined): Record<string, (node: ParseNode) => void>;
|
|
84
|
+
/**
|
|
85
|
+
* The deserialization information for the current model
|
|
86
|
+
* @param TeamsUserConfiguration The instance to deserialize into.
|
|
87
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
88
|
+
*/
|
|
89
|
+
export declare function deserializeIntoTeamsUserConfiguration(teamsUserConfiguration?: Partial<TeamsUserConfiguration> | undefined): Record<string, (node: ParseNode) => void>;
|
|
90
|
+
/**
|
|
91
|
+
* The deserialization information for the current model
|
|
92
|
+
* @param TeamsUserConfigurationCollectionResponse The instance to deserialize into.
|
|
93
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
94
|
+
*/
|
|
95
|
+
export declare function deserializeIntoTeamsUserConfigurationCollectionResponse(teamsUserConfigurationCollectionResponse?: Partial<TeamsUserConfigurationCollectionResponse> | undefined): Record<string, (node: ParseNode) => void>;
|
|
96
|
+
export interface EffectivePolicyAssignment extends AdditionalDataHolder, BackedModel, Parsable {
|
|
97
|
+
/**
|
|
98
|
+
* Stores model information.
|
|
99
|
+
*/
|
|
100
|
+
backingStoreEnabled?: boolean | null;
|
|
101
|
+
/**
|
|
102
|
+
* The OdataType property
|
|
103
|
+
*/
|
|
104
|
+
odataType?: string | null;
|
|
105
|
+
/**
|
|
106
|
+
* The policyAssignment property
|
|
107
|
+
*/
|
|
108
|
+
policyAssignment?: PolicyAssignment | null;
|
|
109
|
+
/**
|
|
110
|
+
* The type of the assigned policy; for example, TeamsMeetingPolicy and TeamsCallingPolicy.
|
|
111
|
+
*/
|
|
112
|
+
policyType?: string | null;
|
|
113
|
+
}
|
|
114
|
+
export interface PolicyAssignment extends AdditionalDataHolder, BackedModel, Parsable {
|
|
115
|
+
/**
|
|
116
|
+
* The assignmentType property
|
|
117
|
+
*/
|
|
118
|
+
assignmentType?: AssignmentType | null;
|
|
119
|
+
/**
|
|
120
|
+
* Stores model information.
|
|
121
|
+
*/
|
|
122
|
+
backingStoreEnabled?: boolean | null;
|
|
123
|
+
/**
|
|
124
|
+
* Represents the name of the policy.
|
|
125
|
+
*/
|
|
126
|
+
displayName?: string | null;
|
|
127
|
+
/**
|
|
128
|
+
* Represents the group identifier.
|
|
129
|
+
*/
|
|
130
|
+
groupId?: string | null;
|
|
131
|
+
/**
|
|
132
|
+
* The OdataType property
|
|
133
|
+
*/
|
|
134
|
+
odataType?: string | null;
|
|
135
|
+
/**
|
|
136
|
+
* Represents the unique identifier for the policy.
|
|
137
|
+
*/
|
|
138
|
+
policyId?: string | null;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Serializes information the current object
|
|
142
|
+
* @param AssignedTelephoneNumber The instance to serialize from.
|
|
143
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
144
|
+
* @param writer Serialization writer to use to serialize this model
|
|
145
|
+
*/
|
|
146
|
+
export declare function serializeAssignedTelephoneNumber(writer: SerializationWriter, assignedTelephoneNumber?: Partial<AssignedTelephoneNumber> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
147
|
+
/**
|
|
148
|
+
* Serializes information the current object
|
|
149
|
+
* @param EffectivePolicyAssignment The instance to serialize from.
|
|
150
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
151
|
+
* @param writer Serialization writer to use to serialize this model
|
|
152
|
+
*/
|
|
153
|
+
export declare function serializeEffectivePolicyAssignment(writer: SerializationWriter, effectivePolicyAssignment?: Partial<EffectivePolicyAssignment> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
154
|
+
/**
|
|
155
|
+
* Serializes information the current object
|
|
156
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
157
|
+
* @param PolicyAssignment The instance to serialize from.
|
|
158
|
+
* @param writer Serialization writer to use to serialize this model
|
|
159
|
+
*/
|
|
160
|
+
export declare function serializePolicyAssignment(writer: SerializationWriter, policyAssignment?: Partial<PolicyAssignment> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
161
|
+
/**
|
|
162
|
+
* Serializes information the current object
|
|
163
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
164
|
+
* @param TeamsAdminRoot The instance to serialize from.
|
|
165
|
+
* @param writer Serialization writer to use to serialize this model
|
|
166
|
+
*/
|
|
167
|
+
export declare function serializeTeamsAdminRoot(writer: SerializationWriter, teamsAdminRoot?: Partial<TeamsAdminRoot> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
168
|
+
/**
|
|
169
|
+
* Serializes information the current object
|
|
170
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
171
|
+
* @param TeamsUserConfiguration The instance to serialize from.
|
|
172
|
+
* @param writer Serialization writer to use to serialize this model
|
|
173
|
+
*/
|
|
174
|
+
export declare function serializeTeamsUserConfiguration(writer: SerializationWriter, teamsUserConfiguration?: Partial<TeamsUserConfiguration> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
175
|
+
/**
|
|
176
|
+
* Serializes information the current object
|
|
177
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
178
|
+
* @param TeamsUserConfigurationCollectionResponse The instance to serialize from.
|
|
179
|
+
* @param writer Serialization writer to use to serialize this model
|
|
180
|
+
*/
|
|
181
|
+
export declare function serializeTeamsUserConfigurationCollectionResponse(writer: SerializationWriter, teamsUserConfigurationCollectionResponse?: Partial<TeamsUserConfigurationCollectionResponse> | undefined | null, isSerializingDerivedType?: boolean): void;
|
|
182
|
+
export interface TeamsAdminRoot extends Entity, Parsable {
|
|
183
|
+
/**
|
|
184
|
+
* Represents the configuration information of users who have accounts hosted on Microsoft Teams.
|
|
185
|
+
*/
|
|
186
|
+
userConfigurations?: TeamsUserConfiguration[] | null;
|
|
187
|
+
}
|
|
188
|
+
export interface TeamsUserConfiguration extends Entity, Parsable {
|
|
189
|
+
/**
|
|
190
|
+
* The accountType property
|
|
191
|
+
*/
|
|
192
|
+
accountType?: AccountType | null;
|
|
193
|
+
/**
|
|
194
|
+
* The date and time when the user was created. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
195
|
+
*/
|
|
196
|
+
createdDateTime?: Date | null;
|
|
197
|
+
/**
|
|
198
|
+
* Contains the user's effective policy assignments, with each assignment including policyType and policyAssignment details.
|
|
199
|
+
*/
|
|
200
|
+
effectivePolicyAssignments?: EffectivePolicyAssignment[] | null;
|
|
201
|
+
/**
|
|
202
|
+
* The Teams features enabled for a given user based on licensing or service plan.
|
|
203
|
+
*/
|
|
204
|
+
featureTypes?: string[] | null;
|
|
205
|
+
/**
|
|
206
|
+
* Indicates whether voice capability is enabled.
|
|
207
|
+
*/
|
|
208
|
+
isEnterpriseVoiceEnabled?: boolean | null;
|
|
209
|
+
/**
|
|
210
|
+
* The date and time when the user's details were last modified. The system updates this value each time the user's details are changed. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
211
|
+
*/
|
|
212
|
+
modifiedDateTime?: Date | null;
|
|
213
|
+
/**
|
|
214
|
+
* Includes both the phone number and its corresponding assignment category. The assignment category can include values such as primary, private, and alternate.
|
|
215
|
+
*/
|
|
216
|
+
telephoneNumbers?: AssignedTelephoneNumber[] | null;
|
|
217
|
+
/**
|
|
218
|
+
* The unique identifier of the tenant in Entra to which this user is assigned.
|
|
219
|
+
*/
|
|
220
|
+
tenantId?: string | null;
|
|
221
|
+
/**
|
|
222
|
+
* Represents an Entra user account.
|
|
223
|
+
*/
|
|
224
|
+
user?: User | null;
|
|
225
|
+
/**
|
|
226
|
+
* The sign-in address of the user.
|
|
227
|
+
*/
|
|
228
|
+
userPrincipalName?: string | null;
|
|
229
|
+
}
|
|
230
|
+
export interface TeamsUserConfigurationCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
231
|
+
/**
|
|
232
|
+
* The value property
|
|
233
|
+
*/
|
|
234
|
+
value?: TeamsUserConfiguration[] | null;
|
|
235
|
+
}
|
|
236
|
+
export declare const AccountTypeObject: {
|
|
237
|
+
readonly User: "user";
|
|
238
|
+
readonly ResourceAccount: "resourceAccount";
|
|
239
|
+
readonly Guest: "guest";
|
|
240
|
+
readonly SfbOnPremUser: "sfbOnPremUser";
|
|
241
|
+
readonly Unknown: "unknown";
|
|
242
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
243
|
+
readonly IneligibleUser: "ineligibleUser";
|
|
244
|
+
};
|
|
245
|
+
export declare const AssignmentCategoryObject: {
|
|
246
|
+
readonly Primary: "primary";
|
|
247
|
+
readonly Private: "private";
|
|
248
|
+
readonly Alternate: "alternate";
|
|
249
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
250
|
+
};
|
|
251
|
+
export declare const AssignmentTypeObject: {
|
|
252
|
+
readonly Direct: "direct";
|
|
253
|
+
readonly Group: "group";
|
|
254
|
+
readonly UnknownFutureValue: "unknownFutureValue";
|
|
255
|
+
};
|
|
256
|
+
//# 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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"}
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
// Generated by Microsoft Kiota
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import { createUserFromDiscriminatorValue, deserializeIntoBaseCollectionPaginationCountResponse, deserializeIntoEntity, serializeBaseCollectionPaginationCountResponse, serializeEntity, serializeUser } from '../index.js';
|
|
6
|
+
/**
|
|
7
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
8
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
9
|
+
* @returns {AssignedTelephoneNumber}
|
|
10
|
+
*/
|
|
11
|
+
// @ts-ignore
|
|
12
|
+
export function createAssignedTelephoneNumberFromDiscriminatorValue(parseNode) {
|
|
13
|
+
return deserializeIntoAssignedTelephoneNumber;
|
|
14
|
+
}
|
|
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 {EffectivePolicyAssignment}
|
|
19
|
+
*/
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
export function createEffectivePolicyAssignmentFromDiscriminatorValue(parseNode) {
|
|
22
|
+
return deserializeIntoEffectivePolicyAssignment;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
26
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
27
|
+
* @returns {PolicyAssignment}
|
|
28
|
+
*/
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
export function createPolicyAssignmentFromDiscriminatorValue(parseNode) {
|
|
31
|
+
return deserializeIntoPolicyAssignment;
|
|
32
|
+
}
|
|
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 {TeamsAdminRoot}
|
|
37
|
+
*/
|
|
38
|
+
// @ts-ignore
|
|
39
|
+
export function createTeamsAdminRootFromDiscriminatorValue(parseNode) {
|
|
40
|
+
return deserializeIntoTeamsAdminRoot;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Creates a new instance of the appropriate class based on discriminator value
|
|
44
|
+
* @param parseNode The parse node to use to read the discriminator value and create the object
|
|
45
|
+
* @returns {TeamsUserConfigurationCollectionResponse}
|
|
46
|
+
*/
|
|
47
|
+
// @ts-ignore
|
|
48
|
+
export function createTeamsUserConfigurationCollectionResponseFromDiscriminatorValue(parseNode) {
|
|
49
|
+
return deserializeIntoTeamsUserConfigurationCollectionResponse;
|
|
50
|
+
}
|
|
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 {TeamsUserConfiguration}
|
|
55
|
+
*/
|
|
56
|
+
// @ts-ignore
|
|
57
|
+
export function createTeamsUserConfigurationFromDiscriminatorValue(parseNode) {
|
|
58
|
+
return deserializeIntoTeamsUserConfiguration;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* The deserialization information for the current model
|
|
62
|
+
* @param AssignedTelephoneNumber The instance to deserialize into.
|
|
63
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
64
|
+
*/
|
|
65
|
+
// @ts-ignore
|
|
66
|
+
export function deserializeIntoAssignedTelephoneNumber(assignedTelephoneNumber = {}) {
|
|
67
|
+
return {
|
|
68
|
+
"assignmentCategory": n => { assignedTelephoneNumber.assignmentCategory = n.getEnumValue(AssignmentCategoryObject); },
|
|
69
|
+
"backingStoreEnabled": n => { assignedTelephoneNumber.backingStoreEnabled = true; },
|
|
70
|
+
"@odata.type": n => { assignedTelephoneNumber.odataType = n.getStringValue(); },
|
|
71
|
+
"telephoneNumber": n => { assignedTelephoneNumber.telephoneNumber = n.getStringValue(); },
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* The deserialization information for the current model
|
|
76
|
+
* @param EffectivePolicyAssignment The instance to deserialize into.
|
|
77
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
78
|
+
*/
|
|
79
|
+
// @ts-ignore
|
|
80
|
+
export function deserializeIntoEffectivePolicyAssignment(effectivePolicyAssignment = {}) {
|
|
81
|
+
return {
|
|
82
|
+
"backingStoreEnabled": n => { effectivePolicyAssignment.backingStoreEnabled = true; },
|
|
83
|
+
"@odata.type": n => { effectivePolicyAssignment.odataType = n.getStringValue(); },
|
|
84
|
+
"policyAssignment": n => { effectivePolicyAssignment.policyAssignment = n.getObjectValue(createPolicyAssignmentFromDiscriminatorValue); },
|
|
85
|
+
"policyType": n => { effectivePolicyAssignment.policyType = n.getStringValue(); },
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* The deserialization information for the current model
|
|
90
|
+
* @param PolicyAssignment The instance to deserialize into.
|
|
91
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
92
|
+
*/
|
|
93
|
+
// @ts-ignore
|
|
94
|
+
export function deserializeIntoPolicyAssignment(policyAssignment = {}) {
|
|
95
|
+
return {
|
|
96
|
+
"assignmentType": n => { policyAssignment.assignmentType = n.getEnumValue(AssignmentTypeObject); },
|
|
97
|
+
"backingStoreEnabled": n => { policyAssignment.backingStoreEnabled = true; },
|
|
98
|
+
"displayName": n => { policyAssignment.displayName = n.getStringValue(); },
|
|
99
|
+
"groupId": n => { policyAssignment.groupId = n.getStringValue(); },
|
|
100
|
+
"@odata.type": n => { policyAssignment.odataType = n.getStringValue(); },
|
|
101
|
+
"policyId": n => { policyAssignment.policyId = n.getStringValue(); },
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* The deserialization information for the current model
|
|
106
|
+
* @param TeamsAdminRoot The instance to deserialize into.
|
|
107
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
108
|
+
*/
|
|
109
|
+
// @ts-ignore
|
|
110
|
+
export function deserializeIntoTeamsAdminRoot(teamsAdminRoot = {}) {
|
|
111
|
+
return Object.assign(Object.assign({}, deserializeIntoEntity(teamsAdminRoot)), { "userConfigurations": n => { teamsAdminRoot.userConfigurations = n.getCollectionOfObjectValues(createTeamsUserConfigurationFromDiscriminatorValue); } });
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* The deserialization information for the current model
|
|
115
|
+
* @param TeamsUserConfiguration The instance to deserialize into.
|
|
116
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
117
|
+
*/
|
|
118
|
+
// @ts-ignore
|
|
119
|
+
export function deserializeIntoTeamsUserConfiguration(teamsUserConfiguration = {}) {
|
|
120
|
+
return Object.assign(Object.assign({}, deserializeIntoEntity(teamsUserConfiguration)), { "accountType": n => { teamsUserConfiguration.accountType = n.getEnumValue(AccountTypeObject); }, "createdDateTime": n => { teamsUserConfiguration.createdDateTime = n.getDateValue(); }, "effectivePolicyAssignments": n => { teamsUserConfiguration.effectivePolicyAssignments = n.getCollectionOfObjectValues(createEffectivePolicyAssignmentFromDiscriminatorValue); }, "featureTypes": n => { teamsUserConfiguration.featureTypes = n.getCollectionOfPrimitiveValues(); }, "isEnterpriseVoiceEnabled": n => { teamsUserConfiguration.isEnterpriseVoiceEnabled = n.getBooleanValue(); }, "modifiedDateTime": n => { teamsUserConfiguration.modifiedDateTime = n.getDateValue(); }, "telephoneNumbers": n => { teamsUserConfiguration.telephoneNumbers = n.getCollectionOfObjectValues(createAssignedTelephoneNumberFromDiscriminatorValue); }, "tenantId": n => { teamsUserConfiguration.tenantId = n.getStringValue(); }, "user": n => { teamsUserConfiguration.user = n.getObjectValue(createUserFromDiscriminatorValue); }, "userPrincipalName": n => { teamsUserConfiguration.userPrincipalName = n.getStringValue(); } });
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* The deserialization information for the current model
|
|
124
|
+
* @param TeamsUserConfigurationCollectionResponse The instance to deserialize into.
|
|
125
|
+
* @returns {Record<string, (node: ParseNode) => void>}
|
|
126
|
+
*/
|
|
127
|
+
// @ts-ignore
|
|
128
|
+
export function deserializeIntoTeamsUserConfigurationCollectionResponse(teamsUserConfigurationCollectionResponse = {}) {
|
|
129
|
+
return Object.assign(Object.assign({}, deserializeIntoBaseCollectionPaginationCountResponse(teamsUserConfigurationCollectionResponse)), { "value": n => { teamsUserConfigurationCollectionResponse.value = n.getCollectionOfObjectValues(createTeamsUserConfigurationFromDiscriminatorValue); } });
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* Serializes information the current object
|
|
133
|
+
* @param AssignedTelephoneNumber The instance to serialize from.
|
|
134
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
135
|
+
* @param writer Serialization writer to use to serialize this model
|
|
136
|
+
*/
|
|
137
|
+
// @ts-ignore
|
|
138
|
+
export function serializeAssignedTelephoneNumber(writer, assignedTelephoneNumber = {}, isSerializingDerivedType = false) {
|
|
139
|
+
if (!assignedTelephoneNumber || isSerializingDerivedType) {
|
|
140
|
+
return;
|
|
141
|
+
}
|
|
142
|
+
writer.writeEnumValue("assignmentCategory", assignedTelephoneNumber.assignmentCategory);
|
|
143
|
+
writer.writeStringValue("@odata.type", assignedTelephoneNumber.odataType);
|
|
144
|
+
writer.writeStringValue("telephoneNumber", assignedTelephoneNumber.telephoneNumber);
|
|
145
|
+
writer.writeAdditionalData(assignedTelephoneNumber.additionalData);
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Serializes information the current object
|
|
149
|
+
* @param EffectivePolicyAssignment The instance to serialize from.
|
|
150
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
151
|
+
* @param writer Serialization writer to use to serialize this model
|
|
152
|
+
*/
|
|
153
|
+
// @ts-ignore
|
|
154
|
+
export function serializeEffectivePolicyAssignment(writer, effectivePolicyAssignment = {}, isSerializingDerivedType = false) {
|
|
155
|
+
if (!effectivePolicyAssignment || isSerializingDerivedType) {
|
|
156
|
+
return;
|
|
157
|
+
}
|
|
158
|
+
writer.writeStringValue("@odata.type", effectivePolicyAssignment.odataType);
|
|
159
|
+
writer.writeObjectValue("policyAssignment", effectivePolicyAssignment.policyAssignment, serializePolicyAssignment);
|
|
160
|
+
writer.writeStringValue("policyType", effectivePolicyAssignment.policyType);
|
|
161
|
+
writer.writeAdditionalData(effectivePolicyAssignment.additionalData);
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* Serializes information the current object
|
|
165
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
166
|
+
* @param PolicyAssignment The instance to serialize from.
|
|
167
|
+
* @param writer Serialization writer to use to serialize this model
|
|
168
|
+
*/
|
|
169
|
+
// @ts-ignore
|
|
170
|
+
export function serializePolicyAssignment(writer, policyAssignment = {}, isSerializingDerivedType = false) {
|
|
171
|
+
if (!policyAssignment || isSerializingDerivedType) {
|
|
172
|
+
return;
|
|
173
|
+
}
|
|
174
|
+
writer.writeEnumValue("assignmentType", policyAssignment.assignmentType);
|
|
175
|
+
writer.writeStringValue("displayName", policyAssignment.displayName);
|
|
176
|
+
writer.writeStringValue("groupId", policyAssignment.groupId);
|
|
177
|
+
writer.writeStringValue("@odata.type", policyAssignment.odataType);
|
|
178
|
+
writer.writeStringValue("policyId", policyAssignment.policyId);
|
|
179
|
+
writer.writeAdditionalData(policyAssignment.additionalData);
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Serializes information the current object
|
|
183
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
184
|
+
* @param TeamsAdminRoot The instance to serialize from.
|
|
185
|
+
* @param writer Serialization writer to use to serialize this model
|
|
186
|
+
*/
|
|
187
|
+
// @ts-ignore
|
|
188
|
+
export function serializeTeamsAdminRoot(writer, teamsAdminRoot = {}, isSerializingDerivedType = false) {
|
|
189
|
+
if (!teamsAdminRoot || isSerializingDerivedType) {
|
|
190
|
+
return;
|
|
191
|
+
}
|
|
192
|
+
serializeEntity(writer, teamsAdminRoot, isSerializingDerivedType);
|
|
193
|
+
writer.writeCollectionOfObjectValues("userConfigurations", teamsAdminRoot.userConfigurations, serializeTeamsUserConfiguration);
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Serializes information the current object
|
|
197
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
198
|
+
* @param TeamsUserConfiguration The instance to serialize from.
|
|
199
|
+
* @param writer Serialization writer to use to serialize this model
|
|
200
|
+
*/
|
|
201
|
+
// @ts-ignore
|
|
202
|
+
export function serializeTeamsUserConfiguration(writer, teamsUserConfiguration = {}, isSerializingDerivedType = false) {
|
|
203
|
+
if (!teamsUserConfiguration || isSerializingDerivedType) {
|
|
204
|
+
return;
|
|
205
|
+
}
|
|
206
|
+
serializeEntity(writer, teamsUserConfiguration, isSerializingDerivedType);
|
|
207
|
+
writer.writeEnumValue("accountType", teamsUserConfiguration.accountType);
|
|
208
|
+
writer.writeDateValue("createdDateTime", teamsUserConfiguration.createdDateTime);
|
|
209
|
+
writer.writeCollectionOfObjectValues("effectivePolicyAssignments", teamsUserConfiguration.effectivePolicyAssignments, serializeEffectivePolicyAssignment);
|
|
210
|
+
writer.writeCollectionOfPrimitiveValues("featureTypes", teamsUserConfiguration.featureTypes);
|
|
211
|
+
writer.writeBooleanValue("isEnterpriseVoiceEnabled", teamsUserConfiguration.isEnterpriseVoiceEnabled);
|
|
212
|
+
writer.writeDateValue("modifiedDateTime", teamsUserConfiguration.modifiedDateTime);
|
|
213
|
+
writer.writeCollectionOfObjectValues("telephoneNumbers", teamsUserConfiguration.telephoneNumbers, serializeAssignedTelephoneNumber);
|
|
214
|
+
writer.writeStringValue("tenantId", teamsUserConfiguration.tenantId);
|
|
215
|
+
writer.writeObjectValue("user", teamsUserConfiguration.user, serializeUser);
|
|
216
|
+
writer.writeStringValue("userPrincipalName", teamsUserConfiguration.userPrincipalName);
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Serializes information the current object
|
|
220
|
+
* @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type.
|
|
221
|
+
* @param TeamsUserConfigurationCollectionResponse The instance to serialize from.
|
|
222
|
+
* @param writer Serialization writer to use to serialize this model
|
|
223
|
+
*/
|
|
224
|
+
// @ts-ignore
|
|
225
|
+
export function serializeTeamsUserConfigurationCollectionResponse(writer, teamsUserConfigurationCollectionResponse = {}, isSerializingDerivedType = false) {
|
|
226
|
+
if (!teamsUserConfigurationCollectionResponse || isSerializingDerivedType) {
|
|
227
|
+
return;
|
|
228
|
+
}
|
|
229
|
+
serializeBaseCollectionPaginationCountResponse(writer, teamsUserConfigurationCollectionResponse, isSerializingDerivedType);
|
|
230
|
+
writer.writeCollectionOfObjectValues("value", teamsUserConfigurationCollectionResponse.value, serializeTeamsUserConfiguration);
|
|
231
|
+
}
|
|
232
|
+
export const AccountTypeObject = {
|
|
233
|
+
User: "user",
|
|
234
|
+
ResourceAccount: "resourceAccount",
|
|
235
|
+
Guest: "guest",
|
|
236
|
+
SfbOnPremUser: "sfbOnPremUser",
|
|
237
|
+
Unknown: "unknown",
|
|
238
|
+
UnknownFutureValue: "unknownFutureValue",
|
|
239
|
+
IneligibleUser: "ineligibleUser",
|
|
240
|
+
};
|
|
241
|
+
export const AssignmentCategoryObject = {
|
|
242
|
+
Primary: "primary",
|
|
243
|
+
Private: "private",
|
|
244
|
+
Alternate: "alternate",
|
|
245
|
+
UnknownFutureValue: "unknownFutureValue",
|
|
246
|
+
};
|
|
247
|
+
export const AssignmentTypeObject = {
|
|
248
|
+
Direct: "direct",
|
|
249
|
+
Group: "group",
|
|
250
|
+
UnknownFutureValue: "unknownFutureValue",
|
|
251
|
+
};
|
|
252
|
+
/* tslint:enable */
|
|
253
|
+
/* eslint-enable */
|
|
254
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
|
|
@@ -174,7 +174,7 @@ export interface Group extends Entity, Parsable {
|
|
|
174
174
|
*/
|
|
175
175
|
parentSiteId?: string | null;
|
|
176
176
|
/**
|
|
177
|
-
* Returns the type of the group.
|
|
177
|
+
* Returns the type of the group. The possible values are: global, system, and siteCollection.
|
|
178
178
|
*/
|
|
179
179
|
scope?: TermGroupScope | null;
|
|
180
180
|
/**
|
|
@@ -252,7 +252,7 @@ export interface Relation extends Entity, Parsable {
|
|
|
252
252
|
*/
|
|
253
253
|
fromTerm?: Term | null;
|
|
254
254
|
/**
|
|
255
|
-
* The type of relation.
|
|
255
|
+
* The type of relation. The possible values are: pin, reuse.
|
|
256
256
|
*/
|
|
257
257
|
relationship?: RelationType | null;
|
|
258
258
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/msgraph-sdk",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.77",
|
|
4
4
|
"description": "Microsoft Graph JavaScript client library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"microsoft",
|
|
@@ -34,6 +34,5 @@
|
|
|
34
34
|
"@types/node": "^24.0.3",
|
|
35
35
|
"typescript": "^5.3.3"
|
|
36
36
|
},
|
|
37
|
-
"type": "module"
|
|
38
|
-
"gitHead": "a827e685eb91d40ef31e113f30cf7b3cf105e608"
|
|
37
|
+
"type": "module"
|
|
39
38
|
}
|