Variable UserPermissionsOptionsSchemaConst
UserPermissionsOptionsSchema: ZodObject<{
canCheckIn: ZodObject<{
eventId: ZodString;
productId: ZodOptional<ZodString>;
}, "strip", ZodTypeAny, {
eventId: string;
productId?: string;
}, {
eventId: string;
productId?: string;
}>;
members: ZodArray<ZodObject<{
eventId: ZodString;
productId: ZodOptional<ZodString>;
}, "strip", ZodTypeAny, {
eventId: string;
productId?: string;
}, {
eventId: string;
productId?: string;
}>, "many">;
}, "strip", ZodTypeAny, {
canCheckIn: {
eventId: string;
productId?: string;
};
members: {
eventId: string;
productId?: string;
}[];
}, {
canCheckIn: {
eventId: string;
productId?: string;
};
members: {
eventId: string;
productId?: string;
}[];
}> = ...
Type declaration
canCheckIn: ZodObject<{
eventId: ZodString;
productId: ZodOptional<ZodString>;
}, "strip", ZodTypeAny, {
eventId: string;
productId?: string;
}, {
eventId: string;
productId?: string;
}>
members: ZodArray<ZodObject<{
eventId: ZodString;
productId: ZodOptional<ZodString>;
}, "strip", ZodTypeAny, {
eventId: string;
productId?: string;
}, {
eventId: string;
productId?: string;
}>, "many">
Type declaration
canCheckIn: {
eventId: string;
productId?: string;
}
eventId: string
Optional
productId?: string
members: {
eventId: string;
productId?: string;
}[]
Type declaration
canCheckIn: {
eventId: string;
productId?: string;
}
eventId: string
Optional
productId?: string
members: {
eventId: string;
productId?: string;
}[]