@daocloud-proto/leopard 0.1.0-dev32 → 0.1.0-dev33

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/leopard",
3
- "version":"0.1.0-dev32",
3
+ "version":"0.1.0-dev33",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -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 = {
@@ -31,7 +31,7 @@ export enum UnitType {
31
31
  HOUR = "HOUR",
32
32
  THOUSAND_TOKENS = "THOUSAND_TOKENS",
33
33
  GB_DAY = "GB_DAY",
34
- COMPUTE_UNIT = "COMPUTE_UNIT",
34
+ INSTANCE_NUMBER = "INSTANCE_NUMBER",
35
35
  }
36
36
 
37
37
  export enum CreateOrderStatus {
@@ -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?: I18nWithValue
75
- value?: I18nWithValue
68
+ key?: string
69
+ value?: string
70
+ keyName?: string
76
71
  }
77
72
 
78
73
  export type ListRegionsRequest = {