gd-sprest-def 1.2.7 → 1.2.8
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 +39 -39
- package/lib/Microsoft/Graph/entityTypes.d.ts +739 -739
- package/main.js +2 -2
- package/package.json +1 -1
|
@@ -3,20 +3,20 @@ import { IBaseExecution } from "../../base";
|
|
|
3
3
|
* invitations
|
|
4
4
|
**********************************************/
|
|
5
5
|
export interface invitations extends IBaseExecution<EntityTypes.invitation> {
|
|
6
|
-
invitedUser: IBaseExecution<users>;
|
|
6
|
+
invitedUser: () => IBaseExecution<users>;
|
|
7
7
|
}
|
|
8
8
|
/*********************************************
|
|
9
9
|
* users
|
|
10
10
|
**********************************************/
|
|
11
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>;
|
|
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
|
|
@@ -40,8 +40,8 @@ export interface identityProviders extends IBaseExecution<EntityTypes.identityPr
|
|
|
40
40
|
* applications
|
|
41
41
|
**********************************************/
|
|
42
42
|
export interface applications extends IBaseExecution<EntityTypes.application> {
|
|
43
|
-
createdOnBehalfOf: IBaseExecution<directoryObjects>;
|
|
44
|
-
owners: IBaseExecution<directoryObjects>;
|
|
43
|
+
createdOnBehalfOf: () => IBaseExecution<directoryObjects>;
|
|
44
|
+
owners: () => IBaseExecution<directoryObjects>;
|
|
45
45
|
}
|
|
46
46
|
/*********************************************
|
|
47
47
|
* certificateBasedAuthConfiguration
|
|
@@ -53,10 +53,10 @@ export interface certificateBasedAuthConfiguration extends IBaseExecution<Entity
|
|
|
53
53
|
* contacts
|
|
54
54
|
**********************************************/
|
|
55
55
|
export interface contacts extends IBaseExecution<EntityTypes.orgContact> {
|
|
56
|
-
directReports: IBaseExecution<directoryObjects>;
|
|
57
|
-
manager: IBaseExecution<directoryObjects>;
|
|
58
|
-
memberOf: IBaseExecution<directoryObjects>;
|
|
59
|
-
transitiveMemberOf: IBaseExecution<directoryObjects>;
|
|
56
|
+
directReports: () => IBaseExecution<directoryObjects>;
|
|
57
|
+
manager: () => IBaseExecution<directoryObjects>;
|
|
58
|
+
memberOf: () => IBaseExecution<directoryObjects>;
|
|
59
|
+
transitiveMemberOf: () => IBaseExecution<directoryObjects>;
|
|
60
60
|
}
|
|
61
61
|
/*********************************************
|
|
62
62
|
* contracts
|
|
@@ -68,9 +68,9 @@ export interface contracts extends IBaseExecution<EntityTypes.contract> {
|
|
|
68
68
|
* devices
|
|
69
69
|
**********************************************/
|
|
70
70
|
export interface devices extends IBaseExecution<EntityTypes.device> {
|
|
71
|
-
registeredOwners: IBaseExecution<directoryObjects>;
|
|
72
|
-
registeredUsers: IBaseExecution<directoryObjects>;
|
|
73
|
-
transitiveMemberOf: IBaseExecution<directoryObjects>;
|
|
71
|
+
registeredOwners: () => IBaseExecution<directoryObjects>;
|
|
72
|
+
registeredUsers: () => IBaseExecution<directoryObjects>;
|
|
73
|
+
transitiveMemberOf: () => IBaseExecution<directoryObjects>;
|
|
74
74
|
}
|
|
75
75
|
/*********************************************
|
|
76
76
|
* directoryObjects
|
|
@@ -82,7 +82,7 @@ export interface directoryObjects extends IBaseExecution<EntityTypes.directoryOb
|
|
|
82
82
|
* directoryRoles
|
|
83
83
|
**********************************************/
|
|
84
84
|
export interface directoryRoles extends IBaseExecution<EntityTypes.directoryRole> {
|
|
85
|
-
members: IBaseExecution<directoryObjects>;
|
|
85
|
+
members: () => IBaseExecution<directoryObjects>;
|
|
86
86
|
}
|
|
87
87
|
/*********************************************
|
|
88
88
|
* directoryRoleTemplates
|
|
@@ -100,18 +100,18 @@ export interface domainDnsRecords extends IBaseExecution<EntityTypes.domainDnsRe
|
|
|
100
100
|
* domains
|
|
101
101
|
**********************************************/
|
|
102
102
|
export interface domains extends IBaseExecution<EntityTypes.domain> {
|
|
103
|
-
domainNameReferences: IBaseExecution<directoryObjects>;
|
|
103
|
+
domainNameReferences: () => IBaseExecution<directoryObjects>;
|
|
104
104
|
}
|
|
105
105
|
/*********************************************
|
|
106
106
|
* groups
|
|
107
107
|
**********************************************/
|
|
108
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>;
|
|
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
|
|
@@ -141,7 +141,7 @@ export interface oauth2PermissionGrants extends IBaseExecution<EntityTypes.oAuth
|
|
|
141
141
|
* organization
|
|
142
142
|
**********************************************/
|
|
143
143
|
export interface organization extends IBaseExecution<EntityTypes.organization> {
|
|
144
|
-
certificateBasedAuthConfiguration: IBaseExecution<EntityTypes.certificateBasedAuthConfiguration>;
|
|
144
|
+
certificateBasedAuthConfiguration: () => IBaseExecution<EntityTypes.certificateBasedAuthConfiguration>;
|
|
145
145
|
}
|
|
146
146
|
/*********************************************
|
|
147
147
|
* permissionGrants
|
|
@@ -159,12 +159,12 @@ export interface scopedRoleMemberships extends IBaseExecution<EntityTypes.scoped
|
|
|
159
159
|
* servicePrincipals
|
|
160
160
|
**********************************************/
|
|
161
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>;
|
|
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
|
|
@@ -194,10 +194,10 @@ export interface shares extends IBaseExecution<EntityTypes.sharedDriveItem> {
|
|
|
194
194
|
* sites
|
|
195
195
|
**********************************************/
|
|
196
196
|
export interface sites extends IBaseExecution<EntityTypes.site> {
|
|
197
|
-
parentTerm: IBaseExecution<terms>;
|
|
198
|
-
termSet: IBaseExecution<sets>;
|
|
199
|
-
sharedColumns: IBaseExecution<columns>;
|
|
200
|
-
welcomePageColumns: IBaseExecution<columns>;
|
|
197
|
+
parentTerm: () => IBaseExecution<terms>;
|
|
198
|
+
termSet: () => IBaseExecution<sets>;
|
|
199
|
+
sharedColumns: () => IBaseExecution<columns>;
|
|
200
|
+
welcomePageColumns: () => IBaseExecution<columns>;
|
|
201
201
|
}
|
|
202
202
|
/*********************************************
|
|
203
203
|
* schemaExtensions
|
|
@@ -251,8 +251,8 @@ export interface chats extends IBaseExecution<EntityTypes.chat> {
|
|
|
251
251
|
* teams
|
|
252
252
|
**********************************************/
|
|
253
253
|
export interface teams extends IBaseExecution<EntityTypes.team> {
|
|
254
|
-
group: IBaseExecution<groups>;
|
|
255
|
-
template: IBaseExecution<teamsTemplates>;
|
|
254
|
+
group: () => IBaseExecution<groups>;
|
|
255
|
+
template: () => IBaseExecution<teamsTemplates>;
|
|
256
256
|
}
|
|
257
257
|
/*********************************************
|
|
258
258
|
* teamsTemplates
|