@daocloud-proto/ghippo 0.7.6 → 0.7.9
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
package/v1alpha1/about.pb.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type ListDevelopersRequest = {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
export type ListDevelopersResponse = {
|
|
12
|
-
|
|
12
|
+
items?: Developer[]
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export type Developer = {
|
|
@@ -42,7 +42,7 @@ export type ListGProductVersionsRequest = {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
export type ListGProductVersionsResponse = {
|
|
45
|
-
|
|
45
|
+
items?: GProductVersion[]
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
export type GProductVersion = {
|
|
@@ -96,4 +96,7 @@ export class GProducts {
|
|
|
96
96
|
static GetGProductLicensesESN(req: GetGProductLicensesESNRequest, initReq?: fm.InitReq): Promise<GetGProductLicensesESNResponse> {
|
|
97
97
|
return fm.fetchReq<GetGProductLicensesESNRequest, GetGProductLicensesESNResponse>(`/apis/ghippo.io/v1alpha1/gproduct-licenses/esn?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
98
98
|
}
|
|
99
|
+
static GetGProductLicensesOverQuota(req: GetGProductLicensesOverQuotaRequest, initReq?: fm.InitReq): Promise<GetGProductLicensesOverQuotaResponse> {
|
|
100
|
+
return fm.fetchReq<GetGProductLicensesOverQuotaRequest, GetGProductLicensesOverQuotaResponse>(`/apis/ghippo.io/v1alpha1/gproduct-licenses/over-quota?${fm.renderURLSearchParams(req, [])}`, {...initReq, method: "GET"})
|
|
101
|
+
}
|
|
99
102
|
}
|