Variable userActivityEntitySchemaConst
userActivityEntitySchema: ZodObject<
{
acceptLanguage: ZodOptional<ZodString>;
createdAt: ZodDate;
deletedAt: ZodNullable<ZodDate>;
ipAddress: ZodOptional<ZodUnion<[ZodIPv4, ZodIPv6]>>;
partitionKey: ZodUUID;
referer: ZodOptional<ZodString>;
rowKey: ZodString;
triggerPath: ZodString;
type: ZodLiteral<"query" | "mutation" | "subscription">;
updatedAt: ZodDate;
userAgent: ZodOptional<ZodString>;
},
$strip,
> = ...