@daocloud-proto/ghippo 0.9.32 → 0.9.35

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.9.32",
3
+ "version":"0.9.35",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -21,6 +21,7 @@ export type GetLdapResponse = {
21
21
  userObjectClasses?: string
22
22
  usernameLdapAttribute?: string
23
23
  fullSyncPeriod?: string
24
+ enabled?: string
24
25
  }
25
26
 
26
27
  export type CreateLdapRequest = {
@@ -38,6 +39,7 @@ export type CreateLdapRequest = {
38
39
 
39
40
  export type CreateLdapResponse = {
40
41
  id?: string
42
+ enabled?: string
41
43
  }
42
44
 
43
45
  export type TestLdapConnectionRequest = {
@@ -83,6 +85,7 @@ export type UpdateLdapRequest = {
83
85
  }
84
86
 
85
87
  export type UpdateLdapResponse = {
88
+ enabled?: string
86
89
  }
87
90
 
88
91
  export type SyncUsersRequest = {
@@ -11,17 +11,13 @@ export type TopNavRequest = {
11
11
  export type TopNavResponse = {
12
12
  icon?: string
13
13
  favicon?: string
14
- navName?: string
15
14
  tabName?: string
16
- portalUrl?: string
17
15
  }
18
16
 
19
17
  export type UpdateTopNavRequest = {
20
18
  icon?: string
21
19
  favicon?: string
22
- navName?: string
23
20
  tabName?: string
24
- portalUrl?: string
25
21
  }
26
22
 
27
23
  export type UpdateTopNavResponse = {