@vulog/aima-event
Version:
```bash npm i @vulog/aima-client @vulog/aima-core @vulog/aima-event ```
20 lines (18 loc) • 374 B
text/typescript
export type ExtraInfo = {
bookingId?: string;
[key: string]: any;
};
export type Event = {
fleetId: string;
userId: string;
origin: string;
type: string;
date: string;
failed: boolean;
originId?: string;
insertionDate?: string;
deletionDate?: string;
doNotTrack: boolean;
extraInfo: ExtraInfo;
[key: string]: any;
};