@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/ghippo",
3
- "version":"0.7.26",
3
+ "version":"0.7.27",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -23,8 +23,8 @@ export type ListAuditRequest = {
23
23
  type?: string
24
24
  status?: StatusType
25
25
  search?: string
26
- timeType?: TimeType
27
- timeCount?: number
26
+ start?: string
27
+ end?: string
28
28
  page?: number
29
29
  pageSize?: number
30
30
  }
@@ -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
- subresource?: SubResourceInfo
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?: ResourceType[]
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?: ResourceType[]
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?: ResourceType[]
306
- pagination?: Pagination
291
+ items?: string[]
307
292
  }
308
293
 
309
294
  export type Resource = {