Variable AnalyticsTraitsSchemaConst
AnalyticsTraitsSchema: ZodObject<{
distinctId: ZodString;
timestamp: ZodString;
traits: ZodRecord<ZodString, ZodUnion<[ZodString, ZodNumber, ZodBoolean, ZodNull]>>;
}, "strip", ZodTypeAny, {
distinctId: string;
timestamp: string;
traits: Record<string,
| null
| string
| number
| boolean>;
}, {
distinctId: string;
timestamp: string;
traits: Record<string,
| null
| string
| number
| boolean>;
}> = ...
Segment-style identify envelope for node traits.