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