🆙 Fix Catalog Editor

This commit is contained in:
duckietm
2026-04-17 13:53:07 +02:00
parent 2c2f03f20e
commit bc6bd8764d
3 changed files with 11 additions and 4 deletions
@@ -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;
}
}