MCPcopy
hub / github.com/PostHog/posthog / BaseIngestionEvent

Interface BaseIngestionEvent

plugin-server/src/types.ts:565–574  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

563 * This is what should be passed around most of the time in the plugin server.
564 */
565interface 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. */
577export type PreIngestionEvent = BaseIngestionEvent

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…