Files
shadow-gunbuilder-ai-proto/types/merchant-admin.ts
T
2026-01-23 21:40:16 -05:00

25 lines
599 B
TypeScript

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;
};