You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 23:16:20 +00:00
🆙 Fix Catalog Editor
This commit is contained in:
@@ -14,6 +14,7 @@ export class CatalogPageMessageOfferData
|
||||
private _bundlePurchaseAllowed: boolean;
|
||||
private _isPet: boolean;
|
||||
private _previewImage: string;
|
||||
private _itemIds: string;
|
||||
private _products: CatalogPageMessageProductData[];
|
||||
|
||||
constructor(wrapper: IMessageDataWrapper)
|
||||
@@ -41,6 +42,7 @@ export class CatalogPageMessageOfferData
|
||||
this._bundlePurchaseAllowed = wrapper.readBoolean();
|
||||
this._isPet = wrapper.readBoolean();
|
||||
this._previewImage = wrapper.readString();
|
||||
this._itemIds = wrapper.readString();
|
||||
}
|
||||
|
||||
public get offerId(): number
|
||||
@@ -102,4 +104,9 @@ export class CatalogPageMessageOfferData
|
||||
{
|
||||
return this._products;
|
||||
}
|
||||
|
||||
public get itemIds(): string
|
||||
{
|
||||
return this._itemIds;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user