gd-sprest-def 1.2.6 → 1.2.7
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/lib/Microsoft/Graph/api.d.ts +79 -79
- package/lib/Microsoft/Graph/entityTypes.d.ts +740 -740
- package/main.js +5 -5
- package/package.json +1 -1
|
@@ -1,262 +1,262 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IBaseExecution } from "../../base";
|
|
2
2
|
/*********************************************
|
|
3
3
|
* invitations
|
|
4
4
|
**********************************************/
|
|
5
|
-
export interface invitations extends
|
|
6
|
-
invitedUser:
|
|
5
|
+
export interface invitations extends IBaseExecution<EntityTypes.invitation> {
|
|
6
|
+
invitedUser: IBaseExecution<users>;
|
|
7
7
|
}
|
|
8
8
|
/*********************************************
|
|
9
9
|
* users
|
|
10
10
|
**********************************************/
|
|
11
|
-
export interface users extends
|
|
12
|
-
createdObjects:
|
|
13
|
-
directReports:
|
|
14
|
-
manager:
|
|
15
|
-
memberOf:
|
|
16
|
-
ownedDevices:
|
|
17
|
-
ownedObjects:
|
|
18
|
-
registeredDevices:
|
|
19
|
-
transitiveMemberOf:
|
|
11
|
+
export interface users extends IBaseExecution<EntityTypes.user> {
|
|
12
|
+
createdObjects: IBaseExecution<directoryObjects>;
|
|
13
|
+
directReports: IBaseExecution<directoryObjects>;
|
|
14
|
+
manager: IBaseExecution<directoryObjects>;
|
|
15
|
+
memberOf: IBaseExecution<directoryObjects>;
|
|
16
|
+
ownedDevices: IBaseExecution<directoryObjects>;
|
|
17
|
+
ownedObjects: IBaseExecution<directoryObjects>;
|
|
18
|
+
registeredDevices: IBaseExecution<directoryObjects>;
|
|
19
|
+
transitiveMemberOf: IBaseExecution<directoryObjects>;
|
|
20
20
|
}
|
|
21
21
|
/*********************************************
|
|
22
22
|
* applicationTemplates
|
|
23
23
|
**********************************************/
|
|
24
|
-
export interface applicationTemplates extends
|
|
24
|
+
export interface applicationTemplates extends IBaseExecution<EntityTypes.applicationTemplate> {
|
|
25
25
|
|
|
26
26
|
}
|
|
27
27
|
/*********************************************
|
|
28
28
|
* authenticationMethodConfigurations
|
|
29
29
|
**********************************************/
|
|
30
|
-
export interface authenticationMethodConfigurations extends
|
|
30
|
+
export interface authenticationMethodConfigurations extends IBaseExecution<EntityTypes.authenticationMethodConfiguration> {
|
|
31
31
|
|
|
32
32
|
}
|
|
33
33
|
/*********************************************
|
|
34
34
|
* identityProviders
|
|
35
35
|
**********************************************/
|
|
36
|
-
export interface identityProviders extends
|
|
36
|
+
export interface identityProviders extends IBaseExecution<EntityTypes.identityProvider> {
|
|
37
37
|
|
|
38
38
|
}
|
|
39
39
|
/*********************************************
|
|
40
40
|
* applications
|
|
41
41
|
**********************************************/
|
|
42
|
-
export interface applications extends
|
|
43
|
-
createdOnBehalfOf:
|
|
44
|
-
owners:
|
|
42
|
+
export interface applications extends IBaseExecution<EntityTypes.application> {
|
|
43
|
+
createdOnBehalfOf: IBaseExecution<directoryObjects>;
|
|
44
|
+
owners: IBaseExecution<directoryObjects>;
|
|
45
45
|
}
|
|
46
46
|
/*********************************************
|
|
47
47
|
* certificateBasedAuthConfiguration
|
|
48
48
|
**********************************************/
|
|
49
|
-
export interface certificateBasedAuthConfiguration extends
|
|
49
|
+
export interface certificateBasedAuthConfiguration extends IBaseExecution<EntityTypes.certificateBasedAuthConfiguration> {
|
|
50
50
|
|
|
51
51
|
}
|
|
52
52
|
/*********************************************
|
|
53
53
|
* contacts
|
|
54
54
|
**********************************************/
|
|
55
|
-
export interface contacts extends
|
|
56
|
-
directReports:
|
|
57
|
-
manager:
|
|
58
|
-
memberOf:
|
|
59
|
-
transitiveMemberOf:
|
|
55
|
+
export interface contacts extends IBaseExecution<EntityTypes.orgContact> {
|
|
56
|
+
directReports: IBaseExecution<directoryObjects>;
|
|
57
|
+
manager: IBaseExecution<directoryObjects>;
|
|
58
|
+
memberOf: IBaseExecution<directoryObjects>;
|
|
59
|
+
transitiveMemberOf: IBaseExecution<directoryObjects>;
|
|
60
60
|
}
|
|
61
61
|
/*********************************************
|
|
62
62
|
* contracts
|
|
63
63
|
**********************************************/
|
|
64
|
-
export interface contracts extends
|
|
64
|
+
export interface contracts extends IBaseExecution<EntityTypes.contract> {
|
|
65
65
|
|
|
66
66
|
}
|
|
67
67
|
/*********************************************
|
|
68
68
|
* devices
|
|
69
69
|
**********************************************/
|
|
70
|
-
export interface devices extends
|
|
71
|
-
registeredOwners:
|
|
72
|
-
registeredUsers:
|
|
73
|
-
transitiveMemberOf:
|
|
70
|
+
export interface devices extends IBaseExecution<EntityTypes.device> {
|
|
71
|
+
registeredOwners: IBaseExecution<directoryObjects>;
|
|
72
|
+
registeredUsers: IBaseExecution<directoryObjects>;
|
|
73
|
+
transitiveMemberOf: IBaseExecution<directoryObjects>;
|
|
74
74
|
}
|
|
75
75
|
/*********************************************
|
|
76
76
|
* directoryObjects
|
|
77
77
|
**********************************************/
|
|
78
|
-
export interface directoryObjects extends
|
|
78
|
+
export interface directoryObjects extends IBaseExecution<EntityTypes.directoryObject> {
|
|
79
79
|
|
|
80
80
|
}
|
|
81
81
|
/*********************************************
|
|
82
82
|
* directoryRoles
|
|
83
83
|
**********************************************/
|
|
84
|
-
export interface directoryRoles extends
|
|
85
|
-
members:
|
|
84
|
+
export interface directoryRoles extends IBaseExecution<EntityTypes.directoryRole> {
|
|
85
|
+
members: IBaseExecution<directoryObjects>;
|
|
86
86
|
}
|
|
87
87
|
/*********************************************
|
|
88
88
|
* directoryRoleTemplates
|
|
89
89
|
**********************************************/
|
|
90
|
-
export interface directoryRoleTemplates extends
|
|
90
|
+
export interface directoryRoleTemplates extends IBaseExecution<EntityTypes.directoryRoleTemplate> {
|
|
91
91
|
|
|
92
92
|
}
|
|
93
93
|
/*********************************************
|
|
94
94
|
* domainDnsRecords
|
|
95
95
|
**********************************************/
|
|
96
|
-
export interface domainDnsRecords extends
|
|
96
|
+
export interface domainDnsRecords extends IBaseExecution<EntityTypes.domainDnsRecord> {
|
|
97
97
|
|
|
98
98
|
}
|
|
99
99
|
/*********************************************
|
|
100
100
|
* domains
|
|
101
101
|
**********************************************/
|
|
102
|
-
export interface domains extends
|
|
103
|
-
domainNameReferences:
|
|
102
|
+
export interface domains extends IBaseExecution<EntityTypes.domain> {
|
|
103
|
+
domainNameReferences: IBaseExecution<directoryObjects>;
|
|
104
104
|
}
|
|
105
105
|
/*********************************************
|
|
106
106
|
* groups
|
|
107
107
|
**********************************************/
|
|
108
|
-
export interface groups extends
|
|
109
|
-
createdOnBehalfOf:
|
|
110
|
-
memberOf:
|
|
111
|
-
members:
|
|
112
|
-
owners:
|
|
113
|
-
transitiveMemberOf:
|
|
114
|
-
transitiveMembers:
|
|
108
|
+
export interface groups extends IBaseExecution<EntityTypes.group> {
|
|
109
|
+
createdOnBehalfOf: IBaseExecution<directoryObjects>;
|
|
110
|
+
memberOf: IBaseExecution<directoryObjects>;
|
|
111
|
+
members: IBaseExecution<directoryObjects>;
|
|
112
|
+
owners: IBaseExecution<directoryObjects>;
|
|
113
|
+
transitiveMemberOf: IBaseExecution<directoryObjects>;
|
|
114
|
+
transitiveMembers: IBaseExecution<directoryObjects>;
|
|
115
115
|
}
|
|
116
116
|
/*********************************************
|
|
117
117
|
* groupSettings
|
|
118
118
|
**********************************************/
|
|
119
|
-
export interface groupSettings extends
|
|
119
|
+
export interface groupSettings extends IBaseExecution<EntityTypes.groupSetting> {
|
|
120
120
|
|
|
121
121
|
}
|
|
122
122
|
/*********************************************
|
|
123
123
|
* groupSettingTemplates
|
|
124
124
|
**********************************************/
|
|
125
|
-
export interface groupSettingTemplates extends
|
|
125
|
+
export interface groupSettingTemplates extends IBaseExecution<EntityTypes.groupSettingTemplate> {
|
|
126
126
|
|
|
127
127
|
}
|
|
128
128
|
/*********************************************
|
|
129
129
|
* localizations
|
|
130
130
|
**********************************************/
|
|
131
|
-
export interface localizations extends
|
|
131
|
+
export interface localizations extends IBaseExecution<EntityTypes.organizationalBrandingLocalization> {
|
|
132
132
|
|
|
133
133
|
}
|
|
134
134
|
/*********************************************
|
|
135
135
|
* oauth2PermissionGrants
|
|
136
136
|
**********************************************/
|
|
137
|
-
export interface oauth2PermissionGrants extends
|
|
137
|
+
export interface oauth2PermissionGrants extends IBaseExecution<EntityTypes.oAuth2PermissionGrant> {
|
|
138
138
|
|
|
139
139
|
}
|
|
140
140
|
/*********************************************
|
|
141
141
|
* organization
|
|
142
142
|
**********************************************/
|
|
143
|
-
export interface organization extends
|
|
144
|
-
certificateBasedAuthConfiguration:
|
|
143
|
+
export interface organization extends IBaseExecution<EntityTypes.organization> {
|
|
144
|
+
certificateBasedAuthConfiguration: IBaseExecution<EntityTypes.certificateBasedAuthConfiguration>;
|
|
145
145
|
}
|
|
146
146
|
/*********************************************
|
|
147
147
|
* permissionGrants
|
|
148
148
|
**********************************************/
|
|
149
|
-
export interface permissionGrants extends
|
|
149
|
+
export interface permissionGrants extends IBaseExecution<EntityTypes.resourceSpecificPermissionGrant> {
|
|
150
150
|
|
|
151
151
|
}
|
|
152
152
|
/*********************************************
|
|
153
153
|
* scopedRoleMemberships
|
|
154
154
|
**********************************************/
|
|
155
|
-
export interface scopedRoleMemberships extends
|
|
155
|
+
export interface scopedRoleMemberships extends IBaseExecution<EntityTypes.scopedRoleMembership> {
|
|
156
156
|
|
|
157
157
|
}
|
|
158
158
|
/*********************************************
|
|
159
159
|
* servicePrincipals
|
|
160
160
|
**********************************************/
|
|
161
|
-
export interface servicePrincipals extends
|
|
162
|
-
createdObjects:
|
|
163
|
-
memberOf:
|
|
164
|
-
oauth2PermissionGrants:
|
|
165
|
-
ownedObjects:
|
|
166
|
-
owners:
|
|
167
|
-
transitiveMemberOf:
|
|
161
|
+
export interface servicePrincipals extends IBaseExecution<EntityTypes.servicePrincipal> {
|
|
162
|
+
createdObjects: IBaseExecution<directoryObjects>;
|
|
163
|
+
memberOf: IBaseExecution<directoryObjects>;
|
|
164
|
+
oauth2PermissionGrants: IBaseExecution<oauth2PermissionGrants>;
|
|
165
|
+
ownedObjects: IBaseExecution<directoryObjects>;
|
|
166
|
+
owners: IBaseExecution<directoryObjects>;
|
|
167
|
+
transitiveMemberOf: IBaseExecution<directoryObjects>;
|
|
168
168
|
}
|
|
169
169
|
/*********************************************
|
|
170
170
|
* subscribedSkus
|
|
171
171
|
**********************************************/
|
|
172
|
-
export interface subscribedSkus extends
|
|
172
|
+
export interface subscribedSkus extends IBaseExecution<EntityTypes.subscribedSku> {
|
|
173
173
|
|
|
174
174
|
}
|
|
175
175
|
/*********************************************
|
|
176
176
|
* places
|
|
177
177
|
**********************************************/
|
|
178
|
-
export interface places extends
|
|
178
|
+
export interface places extends IBaseExecution<EntityTypes.place> {
|
|
179
179
|
|
|
180
180
|
}
|
|
181
181
|
/*********************************************
|
|
182
182
|
* drives
|
|
183
183
|
**********************************************/
|
|
184
|
-
export interface drives extends
|
|
184
|
+
export interface drives extends IBaseExecution<EntityTypes.drive> {
|
|
185
185
|
|
|
186
186
|
}
|
|
187
187
|
/*********************************************
|
|
188
188
|
* shares
|
|
189
189
|
**********************************************/
|
|
190
|
-
export interface shares extends
|
|
190
|
+
export interface shares extends IBaseExecution<EntityTypes.sharedDriveItem> {
|
|
191
191
|
|
|
192
192
|
}
|
|
193
193
|
/*********************************************
|
|
194
194
|
* sites
|
|
195
195
|
**********************************************/
|
|
196
|
-
export interface sites extends
|
|
197
|
-
parentTerm:
|
|
198
|
-
termSet:
|
|
199
|
-
sharedColumns:
|
|
200
|
-
welcomePageColumns:
|
|
196
|
+
export interface sites extends IBaseExecution<EntityTypes.site> {
|
|
197
|
+
parentTerm: IBaseExecution<terms>;
|
|
198
|
+
termSet: IBaseExecution<sets>;
|
|
199
|
+
sharedColumns: IBaseExecution<columns>;
|
|
200
|
+
welcomePageColumns: IBaseExecution<columns>;
|
|
201
201
|
}
|
|
202
202
|
/*********************************************
|
|
203
203
|
* schemaExtensions
|
|
204
204
|
**********************************************/
|
|
205
|
-
export interface schemaExtensions extends
|
|
205
|
+
export interface schemaExtensions extends IBaseExecution<EntityTypes.schemaExtension> {
|
|
206
206
|
|
|
207
207
|
}
|
|
208
208
|
/*********************************************
|
|
209
209
|
* groupLifecyclePolicies
|
|
210
210
|
**********************************************/
|
|
211
|
-
export interface groupLifecyclePolicies extends
|
|
211
|
+
export interface groupLifecyclePolicies extends IBaseExecution<EntityTypes.groupLifecyclePolicy> {
|
|
212
212
|
|
|
213
213
|
}
|
|
214
214
|
/*********************************************
|
|
215
215
|
* agreementAcceptances
|
|
216
216
|
**********************************************/
|
|
217
|
-
export interface agreementAcceptances extends
|
|
217
|
+
export interface agreementAcceptances extends IBaseExecution<EntityTypes.agreementAcceptance> {
|
|
218
218
|
|
|
219
219
|
}
|
|
220
220
|
/*********************************************
|
|
221
221
|
* agreements
|
|
222
222
|
**********************************************/
|
|
223
|
-
export interface agreements extends
|
|
223
|
+
export interface agreements extends IBaseExecution<EntityTypes.agreement> {
|
|
224
224
|
|
|
225
225
|
}
|
|
226
226
|
/*********************************************
|
|
227
227
|
* dataPolicyOperations
|
|
228
228
|
**********************************************/
|
|
229
|
-
export interface dataPolicyOperations extends
|
|
229
|
+
export interface dataPolicyOperations extends IBaseExecution<EntityTypes.dataPolicyOperation> {
|
|
230
230
|
|
|
231
231
|
}
|
|
232
232
|
/*********************************************
|
|
233
233
|
* subscriptions
|
|
234
234
|
**********************************************/
|
|
235
|
-
export interface subscriptions extends
|
|
235
|
+
export interface subscriptions extends IBaseExecution<EntityTypes.subscription> {
|
|
236
236
|
|
|
237
237
|
}
|
|
238
238
|
/*********************************************
|
|
239
239
|
* connections
|
|
240
240
|
**********************************************/
|
|
241
|
-
export interface connections extends
|
|
241
|
+
export interface connections extends IBaseExecution<EntityTypes.externalConnection> {
|
|
242
242
|
|
|
243
243
|
}
|
|
244
244
|
/*********************************************
|
|
245
245
|
* chats
|
|
246
246
|
**********************************************/
|
|
247
|
-
export interface chats extends
|
|
247
|
+
export interface chats extends IBaseExecution<EntityTypes.chat> {
|
|
248
248
|
|
|
249
249
|
}
|
|
250
250
|
/*********************************************
|
|
251
251
|
* teams
|
|
252
252
|
**********************************************/
|
|
253
|
-
export interface teams extends
|
|
254
|
-
group:
|
|
255
|
-
template:
|
|
253
|
+
export interface teams extends IBaseExecution<EntityTypes.team> {
|
|
254
|
+
group: IBaseExecution<groups>;
|
|
255
|
+
template: IBaseExecution<teamsTemplates>;
|
|
256
256
|
}
|
|
257
257
|
/*********************************************
|
|
258
258
|
* teamsTemplates
|
|
259
259
|
**********************************************/
|
|
260
|
-
export interface teamsTemplates extends
|
|
260
|
+
export interface teamsTemplates extends IBaseExecution<EntityTypes.teamsTemplate> {
|
|
261
261
|
|
|
262
262
|
}
|