diff --git a/src/v2/providers/https.ts b/src/v2/providers/https.ts index 398233a9b..76ac1e06e 100644 --- a/src/v2/providers/https.ts +++ b/src/v2/providers/https.ts @@ -210,12 +210,12 @@ export interface CallableOptions extends HttpsOptions { heartbeatSeconds?: number | null; /** - * @deprecated - * - * Callback for whether a request is authorized. + * (Deprecated) Callback for whether a request is authorized. * * Designed to allow reusable auth policies to be passed as an options object. Two built-in reusable policies exist: * isSignedIn and hasClaim. + * + * @deprecated */ authPolicy?: (auth: AuthData | null, data: T) => boolean | Promise; }