fix: object or null instead of json for extends event-types

This commit is contained in:
Agusti Fernandez Pardo
2022-05-18 21:50:34 +02:00
parent 27053e7c80
commit df16126a49
+3 -3
View File
@@ -125,9 +125,9 @@ export type EventTypeCustomInputsResponse = BaseResponse & {
event_type_custom_inputs?: Partial<EventTypeCustomInput>[];
};
export interface EventTypeMeta extends Omit<EventType, "locations" | "metadata" | "recurringEvent"> {
locations?: JSON;
metadata?: JSON;
recurringEvent: JSON;
locations: object | null;
metadata: object | null;
recurringEvent: object | null;
}
// EventType
export type EventTypeResponse = BaseResponse & {