* send bookingId in BOOKING_CANCELLED through requestReschedule * fix: make customInputs nullable in BookingWebhookFactory * fix: make customInputs nullable in BookingWebhookFactory
7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
/**
|
|
* Decouples the types from Prisma
|
|
*/
|
|
export type JsonValue = string | number | boolean | null | JsonObject | JsonArray;
|
|
export type JsonArray = JsonValue[];
|
|
export type JsonObject = { [Key in string]?: JsonValue };
|