import { DashAuthType, VerifiedAuthResult } from "@vibes.diy/identity"; export type ReqWithVerifiedAuth = REQ & { readonly _auth: VerifiedAuthResult; }; export type ReqWithOptionalAuth = REQ & { readonly _auth?: VerifiedAuthResult; };