Event in a database-agnostic shape, AKA an ingestion event. * This is what should be passed around most of the time in the plugin server.
| 563 | * This is what should be passed around most of the time in the plugin server. |
| 564 | */ |
| 565 | interface BaseIngestionEvent { |
| 566 | eventUuid: string |
| 567 | event: string |
| 568 | ip: string | null |
| 569 | teamId: TeamId |
| 570 | distinctId: string |
| 571 | properties: Properties |
| 572 | timestamp: ISOTimestamp |
| 573 | elementsList: Element[] |
| 574 | } |
| 575 | |
| 576 | /** Ingestion event before saving, currently just an alias of BaseIngestionEvent. */ |
| 577 | export type PreIngestionEvent = BaseIngestionEvent |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…