@daocloud-proto/ghippo 0.7.26 → 0.7.27
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 +1 -1
- package/v1alpha1/audit.pb.ts +2 -2
- package/v1alpha1/workspace.pb.ts +4 -19
package/package.json
CHANGED
package/v1alpha1/audit.pb.ts
CHANGED
package/v1alpha1/workspace.pb.ts
CHANGED
|
@@ -93,7 +93,6 @@ export type UnbindResourceFromWorkspaceResponse = {
|
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
export type CreateWorkspaceRequest = {
|
|
96
|
-
name?: string
|
|
97
96
|
alias?: string
|
|
98
97
|
parentFolderId?: number
|
|
99
98
|
}
|
|
@@ -252,23 +251,17 @@ export type ListMembersRolesResourcesResponse = {
|
|
|
252
251
|
pagination?: Pagination
|
|
253
252
|
}
|
|
254
253
|
|
|
255
|
-
export type SubResourceInfo = {
|
|
256
|
-
type?: string
|
|
257
|
-
names?: string[]
|
|
258
|
-
}
|
|
259
|
-
|
|
260
254
|
export type ResourceInfo = {
|
|
261
255
|
name?: string
|
|
262
256
|
type?: string
|
|
263
257
|
gproduct?: string
|
|
264
|
-
|
|
258
|
+
scope?: string
|
|
265
259
|
}
|
|
266
260
|
|
|
267
261
|
export type ListResourcesRequest = {
|
|
268
262
|
page?: number
|
|
269
263
|
pageSize?: number
|
|
270
264
|
name?: string
|
|
271
|
-
parent?: boolean
|
|
272
265
|
type?: string
|
|
273
266
|
}
|
|
274
267
|
|
|
@@ -277,33 +270,25 @@ export type ListResourcesResponse = {
|
|
|
277
270
|
pagination?: Pagination
|
|
278
271
|
}
|
|
279
272
|
|
|
280
|
-
export type ResourceType = {
|
|
281
|
-
parent?: boolean
|
|
282
|
-
name?: string
|
|
283
|
-
}
|
|
284
|
-
|
|
285
273
|
export type ListResourceTypesRequest = {
|
|
286
274
|
}
|
|
287
275
|
|
|
288
276
|
export type ListResourceTypesResponse = {
|
|
289
|
-
items?:
|
|
290
|
-
pagination?: Pagination
|
|
277
|
+
items?: string[]
|
|
291
278
|
}
|
|
292
279
|
|
|
293
280
|
export type ListExclusiveResourceTypesRequest = {
|
|
294
281
|
}
|
|
295
282
|
|
|
296
283
|
export type ListExclusiveResourceTypesResponse = {
|
|
297
|
-
items?:
|
|
298
|
-
pagination?: Pagination
|
|
284
|
+
items?: string[]
|
|
299
285
|
}
|
|
300
286
|
|
|
301
287
|
export type ListSharedResourceTypesRequest = {
|
|
302
288
|
}
|
|
303
289
|
|
|
304
290
|
export type ListSharedResourceTypesResponse = {
|
|
305
|
-
items?:
|
|
306
|
-
pagination?: Pagination
|
|
291
|
+
items?: string[]
|
|
307
292
|
}
|
|
308
293
|
|
|
309
294
|
export type Resource = {
|