/*** * * SaaSquatch Type Definitions * * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. * * Generated on 2026-03-20T21:11:42.771Z * ***/ /*** * UserEventImportLine.schema.json * Generated on 2026-03-20T21:11:42.991Z * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. ***/ export type UserID = string export type AccountID = string export type IdempotencyKey = string export type EventKey = string export type DateTriggered = number /** * Represents the schema for a single line of the user event import JSONL file */ export interface UserEventImportLine { userId: UserID accountId: AccountID idempotencyKey?: IdempotencyKey event: Event } export interface Event { key: EventKey dateTriggered?: DateTriggered fields?: EventFields } export interface EventFields { [k: string]: unknown }