@bolttech/server-side-next
Version:
This library was generated with [Nx](https://nx.dev).
12 lines (11 loc) • 527 B
TypeScript
export interface ISessionCompareService {
getPlans(vertical: string): Promise<Array<Record<string, unknown>>>;
addPlans(plans: Array<Record<string, unknown>>, vertical: string): Promise<void>;
removePlans(plans: Array<Record<string, unknown>>, vertical: string): Promise<void>;
updatePlans(plans: Array<Record<string, unknown>>, vertical: string): Promise<void>;
}
export interface ISessionComparePutPayload {
operation: string;
plans: Array<Record<string, unknown>>;
vertical: string;
}