@daocloud-proto/ghippo 0.10.6-dev-4 → 0.10.6-dev-6
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/workspace.pb.ts +7 -1
package/package.json
CHANGED
package/v1alpha1/workspace.pb.ts
CHANGED
|
@@ -33,13 +33,18 @@ export enum QuotaType {
|
|
|
33
33
|
export enum WorkspaceResourceTypeEnum {
|
|
34
34
|
cluster = "cluster",
|
|
35
35
|
shared_cluster = "shared_cluster",
|
|
36
|
-
cluster_namespace = "cluster_namespace",
|
|
37
36
|
mesh = "mesh",
|
|
38
37
|
mesh_namespace = "mesh_namespace",
|
|
39
38
|
kairship = "kairship",
|
|
40
39
|
kairship_namespace = "kairship_namespace",
|
|
41
40
|
}
|
|
42
41
|
|
|
42
|
+
export enum WorkspaceResourceKindEnum {
|
|
43
|
+
resource_group = "resource_group",
|
|
44
|
+
shared_resource = "shared_resource",
|
|
45
|
+
registry = "registry",
|
|
46
|
+
}
|
|
47
|
+
|
|
43
48
|
export type Pagination = {
|
|
44
49
|
total?: number
|
|
45
50
|
page?: number
|
|
@@ -198,6 +203,7 @@ export type FolderTree = {
|
|
|
198
203
|
parentId?: number
|
|
199
204
|
children?: FolderTree[]
|
|
200
205
|
permissions?: FolderPermission[]
|
|
206
|
+
resourceKind?: WorkspaceResourceKindEnum[]
|
|
201
207
|
}
|
|
202
208
|
|
|
203
209
|
export type ListFolderTreeRequest = {
|