@daocloud-proto/ghippo 0.15.0-dev-8 → 0.15.0-dev-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/ghippo",
3
- "version":"0.15.0-dev-8",
3
+ "version":"0.15.0-dev-10",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -21,6 +21,13 @@ export type GetLdapResponse = {
21
21
  userObjectClasses?: string
22
22
  usernameLdapAttribute?: string
23
23
  fullSyncPeriod?: string
24
+ rdnLdapAttribute?: string
25
+ uuidLdapAttribute?: string
26
+ editMode?: string
27
+ readTimeout?: string
28
+ firstName?: string
29
+ lastName?: string
30
+ email?: string
24
31
  }
25
32
 
26
33
  export type CreateLdapRequest = {
@@ -34,6 +41,13 @@ export type CreateLdapRequest = {
34
41
  userObjectClasses?: string
35
42
  usernameLdapAttribute?: string
36
43
  fullSyncPeriod?: string
44
+ rdnLdapAttribute?: string
45
+ uuidLdapAttribute?: string
46
+ editMode?: string
47
+ readTimeout?: string
48
+ firstName?: string
49
+ lastName?: string
50
+ email?: string
37
51
  }
38
52
 
39
53
  export type CreateLdapResponse = {
@@ -80,6 +94,13 @@ export type UpdateLdapRequest = {
80
94
  userObjectClasses?: string
81
95
  usernameLdapAttribute?: string
82
96
  fullSyncPeriod?: string
97
+ rdnLdapAttribute?: string
98
+ uuidLdapAttribute?: string
99
+ editMode?: string
100
+ readTimeout?: string
101
+ firstName?: string
102
+ lastName?: string
103
+ email?: string
83
104
  }
84
105
 
85
106
  export type UpdateLdapResponse = {
@@ -155,6 +155,7 @@ export type MemberRoleWorkspaceInfo = {
155
155
  memberType?: string
156
156
  roleName?: string
157
157
  workspaceId?: number
158
+ memberId?: string
158
159
  }
159
160
 
160
161
  export type ListMembersRolesByWorkspaceRequest = {
@@ -242,6 +243,7 @@ export type AuthorizeRequest = {
242
243
  roleName?: string
243
244
  memberName?: string
244
245
  memberType?: string
246
+ memberId?: string
245
247
  }
246
248
 
247
249
  export type AuthorizeResponse = {
@@ -252,6 +254,7 @@ export type DeauthorizeRequest = {
252
254
  roleName?: string
253
255
  memberName?: string
254
256
  memberType?: string
257
+ memberId?: string
255
258
  }
256
259
 
257
260
  export type DeauthorizeResponse = {
@@ -263,6 +266,7 @@ export type ReauthorizeRequest = {
263
266
  newRoleName?: string
264
267
  memberName?: string
265
268
  memberType?: string
269
+ memberId?: string
266
270
  }
267
271
 
268
272
  export type ReauthorizeResponse = {
@@ -273,6 +277,7 @@ export type MemberRoleFolderInfo = {
273
277
  memberType?: string
274
278
  roleName?: string
275
279
  folderId?: number
280
+ memberId?: string
276
281
  }
277
282
 
278
283
  export type ListMembersRolesByFolderRequest = {