Interface PostHogNodeParameters
Sourceinterface PostHogNodeParameters {
additionalFields?:
| {
contextUi?: {
contextValues: { key?: string; value?: string }[];
};
timestamp?: string;
}
| {
propertiesUi?: {
propertyValues: { key?: string; value?: string }[];
};
timestamp?: string;
}
| {
messageId?: string;
propertiesUi?: {
propertyValues: { key?: string; value?: string }[];
};
timestamp?: string;
}
| {
category?: string;
contextUi?: {
contextValues: { key?: string; value?: string }[];
};
messageId?: string;
propertiesUi?: {
propertyValues: { key?: string; value?: string }[];
};
timestamp?: string;
};
alias?: string;
distinctId?: string;
eventName?: string;
name?: string;
operation?: "create"
| "page"
| "screen";
resource?: "event" | "track" | "alias" | "identity";
}
Default: {}