export type MerchantAdminResponse = { id: number; name: string; avantlinkMid: string | null; feedUrl: string | null; offerFeedUrl: string | null; isActive: boolean; lastFullImportAt: string | null; lastOfferSyncAt: string | null; }; export type MerchantAdminCreateRequest = { name: string; avantlinkMid?: string | null; feedUrl?: string | null; offerFeedUrl?: string | null; isActive?: boolean | null; }; export type MerchantAdminUpdateRequest = { feedUrl?: string | null; offerFeedUrl?: string | null; isActive?: boolean | null; };