Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/v2/providers/https.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,12 +210,12 @@ export interface CallableOptions<T = any> 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<boolean>;
}
Expand Down
Loading