Variable fingerprintSchemaConst
fingerprintSchema: ZodObject<
{
blocked: ZodBoolean;
created: ZodEffects<
ZodObject<
{ type: ZodEnum<["Timestamp"]>; value: ZodNumber },
"strip",
ZodTypeAny,
{ type: "Timestamp"; value: number },
{ type: "Timestamp"; value: number },
>,
Timestamp,
{ type: "Timestamp"; value: number },
>;
initialQuiz: ZodOptional<ZodBranded<ZodString, "UID">>;
lastSeen: ZodEffects<
ZodObject<
{ type: ZodEnum<["Timestamp"]>; value: ZodNumber },
"strip",
ZodTypeAny,
{ type: "Timestamp"; value: number },
{ type: "Timestamp"; value: number },
>,
Timestamp,
{ type: "Timestamp"; value: number },
>;
uid: ZodBranded<ZodString, "UID">;
updated: ZodEffects<
ZodObject<
{ type: ZodEnum<["Timestamp"]>; value: ZodNumber },
"strip",
ZodTypeAny,
{ type: "Timestamp"; value: number },
{ type: "Timestamp"; value: number },
>,
Timestamp,
{ type: "Timestamp"; value: number },
>;
usageCount: ZodNumber;
userUid: ZodBranded<ZodString, "UID">;
},
"strip",
ZodTypeAny,
{
blocked: boolean;
created: Timestamp;
initialQuiz?: string & BRAND<"UID">;
lastSeen: Timestamp;
uid: string & BRAND<"UID">;
updated: Timestamp;
usageCount: number;
userUid: string & BRAND<"UID">;
},
{
blocked: boolean;
created: { type: "Timestamp"; value: number };
initialQuiz?: string;
lastSeen: { type: "Timestamp"; value: number };
uid: string;
updated: { type: "Timestamp"; value: number };
usageCount: number;
userUid: string;
},
> = ...