Files
dmail-api/src/modules/quota-sync/interfaces/quota-sync-job.interface.ts
T
2025-07-15 15:52:01 +03:30

17 lines
385 B
TypeScript

export interface ISyncUserQuotaJob {
userId: string;
businessId: string;
wildduckUserId: string;
}
export interface ISyncBusinessQuotaJob {
businessId: string;
businessName: string;
}
export type ISyncAllUsersQuotaJob = Record<string, never>;
export type ISyncAllBusinessesQuotaJob = Record<string, never>;
export type ISyncComprehensiveQuotaJob = Record<string, never>;