@daocloud-proto/ghippo 0.15.0-dev-17 → 0.15.0-dev-18

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-17",
3
+ "version":"0.15.0-dev-18",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -95,7 +95,6 @@ export type RoleInfo = {
95
95
  scope?: AuthScope
96
96
  createdAt?: string
97
97
  updatedAt?: string
98
- alias?: string
99
98
  }
100
99
 
101
100
  export type ListRolesRequest = {
@@ -129,7 +128,6 @@ export type GetRoleResponse = {
129
128
  createdAt?: string
130
129
  updatedAt?: string
131
130
  gproductPerms?: GProductPermissions[]
132
- alias?: string
133
131
  }
134
132
 
135
133
  export type GProductPermissions = {
@@ -149,11 +147,9 @@ export type ResourcePermissions = {
149
147
 
150
148
  export type CreateRoleRequest = {
151
149
  name?: string
152
- gproduct?: string
153
150
  description?: string
154
151
  scope?: AuthScope
155
152
  perms?: Permission[]
156
- alias?: string
157
153
  }
158
154
 
159
155
  export type CreateRoleResponse = {
@@ -163,7 +159,6 @@ export type UpdateRoleRequest = {
163
159
  name?: string
164
160
  description?: string
165
161
  perms?: Permission[]
166
- alias?: string
167
162
  }
168
163
 
169
164
  export type UpdateRoleResponse = {