mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-16 02:36:19 +00:00

* fix: commission device API * task: add create booking API * add get All api for dashboard & mobile * add Find APIs for bookings * implement sending email updates on update bookable space * move email interfaces to separate files
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
export interface SingleEmailData {
|
|
from: { email: string };
|
|
to: { email: string }[];
|
|
template_uuid: string;
|
|
template_variables?: Record<string, any>;
|
|
isBatch: false;
|
|
}
|