@smartico/public-api 0.0.303 → 0.0.304
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.
|
@@ -18,5 +18,7 @@ export declare enum BuyStoreItemErrorCode {
|
|
|
18
18
|
/** User doesn't have enough gems on balance */
|
|
19
19
|
SHOP_NO_BALANCE_GEMS = 11011,
|
|
20
20
|
/** User doesn't have enough diamonds on balance */
|
|
21
|
-
SHOP_NO_BALANCE_DIAMONDS = 11012
|
|
21
|
+
SHOP_NO_BALANCE_DIAMONDS = 11012,
|
|
22
|
+
/** Failed to buy item because of purchase limitation */
|
|
23
|
+
SHOP_FAILED_PURCHASE_LIMITATION = 11014
|
|
22
24
|
}
|
package/dist/index.js
CHANGED
|
@@ -910,6 +910,8 @@ exports.BuyStoreItemErrorCode = void 0;
|
|
|
910
910
|
BuyStoreItemErrorCode[BuyStoreItemErrorCode["SHOP_NO_BALANCE_GEMS"] = 11011] = "SHOP_NO_BALANCE_GEMS";
|
|
911
911
|
/** User doesn't have enough diamonds on balance */
|
|
912
912
|
BuyStoreItemErrorCode[BuyStoreItemErrorCode["SHOP_NO_BALANCE_DIAMONDS"] = 11012] = "SHOP_NO_BALANCE_DIAMONDS";
|
|
913
|
+
/** Failed to buy item because of purchase limitation */
|
|
914
|
+
BuyStoreItemErrorCode[BuyStoreItemErrorCode["SHOP_FAILED_PURCHASE_LIMITATION"] = 11014] = "SHOP_FAILED_PURCHASE_LIMITATION";
|
|
913
915
|
})(exports.BuyStoreItemErrorCode || (exports.BuyStoreItemErrorCode = {}));
|
|
914
916
|
|
|
915
917
|
var StoreCategoryTransform = function StoreCategoryTransform(items) {
|