diff --git a/packages/communication/src/NitroMessages.ts b/packages/communication/src/NitroMessages.ts index 53a6b70..469995a 100644 --- a/packages/communication/src/NitroMessages.ts +++ b/packages/communication/src/NitroMessages.ts @@ -648,8 +648,6 @@ export class NitroMessages implements IMessageConfiguration this._composers.set(OutgoingHeader.CATALOG_ADMIN_MOVE_OFFER, CatalogAdminMoveOfferComposer); this._composers.set(OutgoingHeader.CATALOG_ADMIN_MOVE_PAGE, CatalogAdminMovePageComposer); this._composers.set(OutgoingHeader.CATALOG_ADMIN_PUBLISH, CatalogAdminPublishComposer); - this._composers.set(OutgoingHeader.CATALOG_ADMIN_SAVE_PAGE_IMAGES, CatalogAdminSavePageImagesComposer); - this._composers.set(OutgoingHeader.CATALOG_ADMIN_SAVE_PAGE_ICON, CatalogAdminSavePageIconComposer); // Furni Editor this._composers.set(OutgoingHeader.FURNI_EDITOR_SEARCH, FurniEditorSearchComposer); diff --git a/packages/communication/src/messages/outgoing/OutgoingHeader.ts b/packages/communication/src/messages/outgoing/OutgoingHeader.ts index f305d8c..cfb0ece 100644 --- a/packages/communication/src/messages/outgoing/OutgoingHeader.ts +++ b/packages/communication/src/messages/outgoing/OutgoingHeader.ts @@ -500,8 +500,6 @@ export class OutgoingHeader public static CATALOG_ADMIN_MOVE_OFFER = 10056; public static CATALOG_ADMIN_MOVE_PAGE = 10057; public static CATALOG_ADMIN_PUBLISH = 10058; - public static CATALOG_ADMIN_SAVE_PAGE_IMAGES = 10060; - public static CATALOG_ADMIN_SAVE_PAGE_ICON = 10061; public static DELETE_ITEM = 10018; public static DELETE_PET = 10030; diff --git a/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageIconComposer.ts b/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageIconComposer.ts deleted file mode 100644 index 2a6a09a..0000000 --- a/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageIconComposer.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { IMessageComposer } from '@nitrots/api'; - -export class CatalogAdminSavePageIconComposer implements IMessageComposer> -{ - private _data: ConstructorParameters; - - constructor(pageId: number, iconId: number) - { - this._data = [ pageId, iconId ]; - } - - dispose(): void - { - this._data = null; - } - - public getMessageArray() - { - return this._data; - } -} diff --git a/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageImagesComposer.ts b/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageImagesComposer.ts deleted file mode 100644 index cb1484c..0000000 --- a/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageImagesComposer.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { IMessageComposer } from '@nitrots/api'; - -export class CatalogAdminSavePageImagesComposer implements IMessageComposer> -{ - private _data: ConstructorParameters; - - constructor(pageId: number, headerImage: string, teaserImage: string) - { - this._data = [ pageId, headerImage, teaserImage ]; - } - - dispose(): void - { - this._data = null; - } - - public getMessageArray() - { - return this._data; - } -} diff --git a/packages/communication/src/messages/outgoing/catalog/index.ts b/packages/communication/src/messages/outgoing/catalog/index.ts index 1136514..c064884 100644 --- a/packages/communication/src/messages/outgoing/catalog/index.ts +++ b/packages/communication/src/messages/outgoing/catalog/index.ts @@ -8,8 +8,6 @@ export * from './CatalogAdminMovePageComposer'; export * from './CatalogAdminPublishComposer'; export * from './CatalogAdminSaveOfferComposer'; export * from './CatalogAdminSavePageComposer'; -export * from './CatalogAdminSavePageImagesComposer'; -export * from './CatalogAdminSavePageIconComposer'; export * from './BuildersClubPlaceWallItemMessageComposer'; export * from './BuildersClubQueryFurniCountMessageComposer'; export * from './CatalogAdminCreateOfferComposer';