17 lines
385 B
TypeScript
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>;
|