fix: add locations to event type in response types

pull/9078/head
Agusti Fernandez Pardo 2022-05-18 19:49:42 +02:00
parent 5c97283aa1
commit 7b90ccb3bf
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ export type EventTypeCustomInputsResponse = BaseResponse & {
// EventType
export type EventTypeResponse = BaseResponse & {
event_type?: Partial<EventType>;
event_type?: Partial<EventType & { locations?: object[] }>;
};
export type EventTypesResponse = BaseResponse & {
event_types?: Partial<EventType>[];