import { ApiResponse } from "../../apiResponse"; import { SalesAppCatalogSettings, SalesAppSettings } from "../../repositories"; export interface ISalesAppSettingsApiService { GetSettingAsync(): Promise>; UpdateSettingAsync(settings: SalesAppSettings): Promise>; GetCatalogSettingsAsync(publicId: string): Promise>; UpdateCatalogSettingsAsync(publicId: string, settings: SalesAppCatalogSettings): Promise>; }