@smartico/public-api 0.0.186 → 0.0.187
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/dist/Inbox/InboxMessage.d.ts +2 -0
- package/dist/Store/StoreItemPublicMeta.d.ts +1 -0
- package/dist/WSAPI/WSAPI.d.ts +1 -1
- package/dist/WSAPI/WSAPITypes.d.ts +2 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +2 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Inbox/InboxMessage.ts +18 -0
- package/src/Store/StoreItem.ts +2 -0
- package/src/Store/StoreItemPublicMeta.ts +1 -0
- package/src/WSAPI/WSAPI.ts +1 -1
- package/src/WSAPI/WSAPITypes.ts +3 -0
package/dist/index.modern.mjs
CHANGED
|
@@ -778,7 +778,8 @@ const StoreItemTransform = items => {
|
|
|
778
778
|
type: StoreItemTypeNamed(r.itemTypeId),
|
|
779
779
|
can_buy: r.canBuy,
|
|
780
780
|
category_ids: (_r$categoryIds = r.categoryIds) != null ? _r$categoryIds : [],
|
|
781
|
-
pool: r.shopPool
|
|
781
|
+
pool: r.shopPool,
|
|
782
|
+
custom_data: IntUtils.JsonOrText(r.itemPublicMeta.custom_data)
|
|
782
783
|
};
|
|
783
784
|
return x;
|
|
784
785
|
});
|