@daocloud-proto/hydra 0.11.0-rc1 → 0.11.0-rc1-dev-rc1
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/common/errorcode.ts +3 -0
- package/package.json +1 -1
package/common/errorcode.ts
CHANGED
|
@@ -21,6 +21,9 @@ export enum ErrorCode {
|
|
|
21
21
|
// EN: out of inventory, can not create.
|
|
22
22
|
// ZH: 库存不足,无法创建。
|
|
23
23
|
SYSTEM_OUT_OF_INVENTORY = "SYSTEM-OUT_OF_INVENTORY",
|
|
24
|
+
// EN: sub-account balance limit exceeded.
|
|
25
|
+
// ZH: 子账号可用额度不足。
|
|
26
|
+
SYSTEM_OUT_OF_VIRTUAL_BALANCE = "SYSTEM-OUT_OF_VIRTUAL_BALANCE",
|
|
24
27
|
// EN: request params error: %v
|
|
25
28
|
// ZH: 请求参数错误:%v
|
|
26
29
|
SYSTEM_PARAMS_ERROR = "SYSTEM-PARAMS_ERROR",
|