@daocloud-proto/ghippo 0.9.42-temp2 → 0.9.44

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.9.42-temp2",
3
+ "version":"0.9.44",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -17,6 +17,7 @@ export type GProduct = {
17
17
  title?: string
18
18
  url?: string
19
19
  uiAssetsUrl?: string
20
+ needImportLicense?: boolean
20
21
  }
21
22
 
22
23
  export class GProducts {
@@ -56,13 +56,6 @@ export type GetGProductLicensesOverQuotaResponse = {
56
56
  licenses?: GProductLicense[]
57
57
  }
58
58
 
59
- export type GetGProductLicensesValidatedRequest = {
60
- }
61
-
62
- export type GetGProductLicensesValidatedResponse = {
63
- licenses?: GProductLicense[]
64
- }
65
-
66
59
  export type GProductLicense = {
67
60
  id?: string
68
61
  name?: string
@@ -109,7 +102,4 @@ export class GProducts {
109
102
  static GetGProductLicensesOverQuota(req: GetGProductLicensesOverQuotaRequest, initReq?: fm.InitReq): Promise<GetGProductLicensesOverQuotaResponse> {
110
103
  return fm.fetchReq<GetGProductLicensesOverQuotaRequest, GetGProductLicensesOverQuotaResponse>(`/apis/ghippo.io/v1alpha1/gproduct-licenses/over-quota?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
111
104
  }
112
- static GetGProductLicensesValidated(req: GetGProductLicensesValidatedRequest, initReq?: fm.InitReq): Promise<GetGProductLicensesValidatedResponse> {
113
- return fm.fetchReq<GetGProductLicensesValidatedRequest, GetGProductLicensesValidatedResponse>(`/apis/ghippo.io/v1alpha1/gproduct-licenses/validated?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
114
- }
115
105
  }
@@ -23,7 +23,6 @@ export type ProductMenu = {
23
23
  iconUrl?: string
24
24
  target?: string
25
25
  menus?: ProductMenu[]
26
- requireLicense?: boolean
27
26
  }
28
27
 
29
28
  export class ProductNavigator {