gd-sprest-def 1.2.7 → 1.2.9
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 +41 -39
- package/lib/Microsoft/Graph/entityTypes.d.ts +739 -739
- package/main.js +11 -9
- package/package.json +1 -1
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
import { IBaseExecution } from "../../base";
|
|
2
|
+
import * as EntityTypes from "./entityTypes.d"
|
|
3
|
+
|
|
2
4
|
/*********************************************
|
|
3
5
|
* invitations
|
|
4
6
|
**********************************************/
|
|
5
7
|
export interface invitations extends IBaseExecution<EntityTypes.invitation> {
|
|
6
|
-
invitedUser: IBaseExecution<
|
|
8
|
+
invitedUser: () => IBaseExecution<EntityTypes.user[]>;
|
|
7
9
|
}
|
|
8
10
|
/*********************************************
|
|
9
11
|
* users
|
|
10
12
|
**********************************************/
|
|
11
13
|
export interface users extends IBaseExecution<EntityTypes.user> {
|
|
12
|
-
createdObjects: IBaseExecution<
|
|
13
|
-
directReports: IBaseExecution<
|
|
14
|
-
manager: IBaseExecution<
|
|
15
|
-
memberOf: IBaseExecution<
|
|
16
|
-
ownedDevices: IBaseExecution<
|
|
17
|
-
ownedObjects: IBaseExecution<
|
|
18
|
-
registeredDevices: IBaseExecution<
|
|
19
|
-
transitiveMemberOf: IBaseExecution<
|
|
14
|
+
createdObjects: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
15
|
+
directReports: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
16
|
+
manager: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
17
|
+
memberOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
18
|
+
ownedDevices: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
19
|
+
ownedObjects: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
20
|
+
registeredDevices: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
21
|
+
transitiveMemberOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
20
22
|
}
|
|
21
23
|
/*********************************************
|
|
22
24
|
* applicationTemplates
|
|
@@ -40,8 +42,8 @@ export interface identityProviders extends IBaseExecution<EntityTypes.identityPr
|
|
|
40
42
|
* applications
|
|
41
43
|
**********************************************/
|
|
42
44
|
export interface applications extends IBaseExecution<EntityTypes.application> {
|
|
43
|
-
createdOnBehalfOf: IBaseExecution<
|
|
44
|
-
owners: IBaseExecution<
|
|
45
|
+
createdOnBehalfOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
46
|
+
owners: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
45
47
|
}
|
|
46
48
|
/*********************************************
|
|
47
49
|
* certificateBasedAuthConfiguration
|
|
@@ -53,10 +55,10 @@ export interface certificateBasedAuthConfiguration extends IBaseExecution<Entity
|
|
|
53
55
|
* contacts
|
|
54
56
|
**********************************************/
|
|
55
57
|
export interface contacts extends IBaseExecution<EntityTypes.orgContact> {
|
|
56
|
-
directReports: IBaseExecution<
|
|
57
|
-
manager: IBaseExecution<
|
|
58
|
-
memberOf: IBaseExecution<
|
|
59
|
-
transitiveMemberOf: IBaseExecution<
|
|
58
|
+
directReports: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
59
|
+
manager: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
60
|
+
memberOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
61
|
+
transitiveMemberOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
60
62
|
}
|
|
61
63
|
/*********************************************
|
|
62
64
|
* contracts
|
|
@@ -68,9 +70,9 @@ export interface contracts extends IBaseExecution<EntityTypes.contract> {
|
|
|
68
70
|
* devices
|
|
69
71
|
**********************************************/
|
|
70
72
|
export interface devices extends IBaseExecution<EntityTypes.device> {
|
|
71
|
-
registeredOwners: IBaseExecution<
|
|
72
|
-
registeredUsers: IBaseExecution<
|
|
73
|
-
transitiveMemberOf: IBaseExecution<
|
|
73
|
+
registeredOwners: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
74
|
+
registeredUsers: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
75
|
+
transitiveMemberOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
74
76
|
}
|
|
75
77
|
/*********************************************
|
|
76
78
|
* directoryObjects
|
|
@@ -82,7 +84,7 @@ export interface directoryObjects extends IBaseExecution<EntityTypes.directoryOb
|
|
|
82
84
|
* directoryRoles
|
|
83
85
|
**********************************************/
|
|
84
86
|
export interface directoryRoles extends IBaseExecution<EntityTypes.directoryRole> {
|
|
85
|
-
members: IBaseExecution<
|
|
87
|
+
members: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
86
88
|
}
|
|
87
89
|
/*********************************************
|
|
88
90
|
* directoryRoleTemplates
|
|
@@ -100,18 +102,18 @@ export interface domainDnsRecords extends IBaseExecution<EntityTypes.domainDnsRe
|
|
|
100
102
|
* domains
|
|
101
103
|
**********************************************/
|
|
102
104
|
export interface domains extends IBaseExecution<EntityTypes.domain> {
|
|
103
|
-
domainNameReferences: IBaseExecution<
|
|
105
|
+
domainNameReferences: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
104
106
|
}
|
|
105
107
|
/*********************************************
|
|
106
108
|
* groups
|
|
107
109
|
**********************************************/
|
|
108
110
|
export interface groups extends IBaseExecution<EntityTypes.group> {
|
|
109
|
-
createdOnBehalfOf: IBaseExecution<
|
|
110
|
-
memberOf: IBaseExecution<
|
|
111
|
-
members: IBaseExecution<
|
|
112
|
-
owners: IBaseExecution<
|
|
113
|
-
transitiveMemberOf: IBaseExecution<
|
|
114
|
-
transitiveMembers: IBaseExecution<
|
|
111
|
+
createdOnBehalfOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
112
|
+
memberOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
113
|
+
members: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
114
|
+
owners: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
115
|
+
transitiveMemberOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
116
|
+
transitiveMembers: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
115
117
|
}
|
|
116
118
|
/*********************************************
|
|
117
119
|
* groupSettings
|
|
@@ -141,7 +143,7 @@ export interface oauth2PermissionGrants extends IBaseExecution<EntityTypes.oAuth
|
|
|
141
143
|
* organization
|
|
142
144
|
**********************************************/
|
|
143
145
|
export interface organization extends IBaseExecution<EntityTypes.organization> {
|
|
144
|
-
certificateBasedAuthConfiguration: IBaseExecution<EntityTypes.certificateBasedAuthConfiguration>;
|
|
146
|
+
certificateBasedAuthConfiguration: () => IBaseExecution<EntityTypes.certificateBasedAuthConfiguration>;
|
|
145
147
|
}
|
|
146
148
|
/*********************************************
|
|
147
149
|
* permissionGrants
|
|
@@ -159,12 +161,12 @@ export interface scopedRoleMemberships extends IBaseExecution<EntityTypes.scoped
|
|
|
159
161
|
* servicePrincipals
|
|
160
162
|
**********************************************/
|
|
161
163
|
export interface servicePrincipals extends IBaseExecution<EntityTypes.servicePrincipal> {
|
|
162
|
-
createdObjects: IBaseExecution<
|
|
163
|
-
memberOf: IBaseExecution<
|
|
164
|
-
oauth2PermissionGrants: IBaseExecution<oauth2PermissionGrants>;
|
|
165
|
-
ownedObjects: IBaseExecution<
|
|
166
|
-
owners: IBaseExecution<
|
|
167
|
-
transitiveMemberOf: IBaseExecution<
|
|
164
|
+
createdObjects: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
165
|
+
memberOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
166
|
+
oauth2PermissionGrants: () => IBaseExecution<oauth2PermissionGrants>;
|
|
167
|
+
ownedObjects: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
168
|
+
owners: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
169
|
+
transitiveMemberOf: () => IBaseExecution<EntityTypes.directoryObject[]>;
|
|
168
170
|
}
|
|
169
171
|
/*********************************************
|
|
170
172
|
* subscribedSkus
|
|
@@ -194,10 +196,10 @@ export interface shares extends IBaseExecution<EntityTypes.sharedDriveItem> {
|
|
|
194
196
|
* sites
|
|
195
197
|
**********************************************/
|
|
196
198
|
export interface sites extends IBaseExecution<EntityTypes.site> {
|
|
197
|
-
parentTerm: IBaseExecution<
|
|
198
|
-
termSet: IBaseExecution<
|
|
199
|
-
sharedColumns: IBaseExecution<columns>;
|
|
200
|
-
welcomePageColumns: IBaseExecution<columns>;
|
|
199
|
+
parentTerm: () => IBaseExecution<EntityTypes.term[]>;
|
|
200
|
+
termSet: () => IBaseExecution<EntityTypes.set[]>;
|
|
201
|
+
sharedColumns: () => IBaseExecution<columns>;
|
|
202
|
+
welcomePageColumns: () => IBaseExecution<columns>;
|
|
201
203
|
}
|
|
202
204
|
/*********************************************
|
|
203
205
|
* schemaExtensions
|
|
@@ -251,8 +253,8 @@ export interface chats extends IBaseExecution<EntityTypes.chat> {
|
|
|
251
253
|
* teams
|
|
252
254
|
**********************************************/
|
|
253
255
|
export interface teams extends IBaseExecution<EntityTypes.team> {
|
|
254
|
-
group: IBaseExecution<
|
|
255
|
-
template: IBaseExecution<
|
|
256
|
+
group: () => IBaseExecution<EntityTypes.group[]>;
|
|
257
|
+
template: () => IBaseExecution<EntityTypes.teamsTemplate[]>;
|
|
256
258
|
}
|
|
257
259
|
/*********************************************
|
|
258
260
|
* teamsTemplates
|