@daocloud-proto/leopard 0.1.0-dev32 → 0.1.0-dev34
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/bill.pb.ts +2 -1
- package/v1alpha1/order.pb.ts +1 -1
- package/v1alpha1/product.pb.ts +4 -9
package/package.json
CHANGED
package/v1alpha1/bill.pb.ts
CHANGED
|
@@ -18,7 +18,7 @@ export enum UnitType {
|
|
|
18
18
|
HOUR = "HOUR",
|
|
19
19
|
THOUSAND_TOKENS = "THOUSAND_TOKENS",
|
|
20
20
|
GB_DAY = "GB_DAY",
|
|
21
|
-
|
|
21
|
+
INSTANCE_NUMBER = "INSTANCE_NUMBER",
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
export type ListBillsRequest = {
|
|
@@ -58,6 +58,7 @@ export type bill = {
|
|
|
58
58
|
orderPrice?: string
|
|
59
59
|
couponPayment?: string
|
|
60
60
|
amountDue?: string
|
|
61
|
+
billingItem?: string
|
|
61
62
|
}
|
|
62
63
|
|
|
63
64
|
export type BillingCycle = {
|
package/v1alpha1/order.pb.ts
CHANGED
package/v1alpha1/product.pb.ts
CHANGED
|
@@ -14,7 +14,7 @@ export enum UnitType {
|
|
|
14
14
|
HOUR = "HOUR",
|
|
15
15
|
THOUSAND_TOKENS = "THOUSAND_TOKENS",
|
|
16
16
|
GB_DAY = "GB_DAY",
|
|
17
|
-
|
|
17
|
+
INSTANCE_NUMBER = "INSTANCE_NUMBER",
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
export enum QuantityUnit {
|
|
@@ -63,16 +63,11 @@ export type GetSKURequest = {
|
|
|
63
63
|
id?: string
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
export type I18nWithValue = {
|
|
67
|
-
value?: string
|
|
68
|
-
zhCnName?: string
|
|
69
|
-
enUsName?: string
|
|
70
|
-
}
|
|
71
|
-
|
|
72
66
|
export type SpecField = {
|
|
73
67
|
specId?: number
|
|
74
|
-
key?:
|
|
75
|
-
value?:
|
|
68
|
+
key?: string
|
|
69
|
+
value?: string
|
|
70
|
+
keyName?: string
|
|
76
71
|
}
|
|
77
72
|
|
|
78
73
|
export type ListRegionsRequest = {
|