![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/frontend/node_modules/pusher-js/src/core/auth/ |
export enum AuthRequestType { UserAuthentication = 'user-authentication', ChannelAuthorization = 'channel-authorization' } export interface ChannelAuthorizationData { auth: string; channel_data?: string; shared_secret?: string; } export type ChannelAuthorizationCallback = ( error: Error | null, authData: ChannelAuthorizationData | null ) => void; export interface ChannelAuthorizationRequestParams { socketId: string; channelName: string; } export interface ChannelAuthorizationHandler { ( params: ChannelAuthorizationRequestParams, callback: ChannelAuthorizationCallback ): void; } export interface UserAuthenticationData { auth: string; user_data: string; } export type UserAuthenticationCallback = ( error: Error | null, authData: UserAuthenticationData | null ) => void; export interface UserAuthenticationRequestParams { socketId: string; } export interface UserAuthenticationHandler { ( params: UserAuthenticationRequestParams, callback: UserAuthenticationCallback ): void; } export type AuthTransportCallback = | ChannelAuthorizationCallback | UserAuthenticationCallback; export interface AuthOptionsT<AuthHandler> { transport: 'ajax' | 'jsonp'; endpoint: string; params?: any; headers?: any; paramsProvider?: () => any; headersProvider?: () => any; customHandler?: AuthHandler; } export declare type UserAuthenticationOptions = AuthOptionsT< UserAuthenticationHandler >; export declare type ChannelAuthorizationOptions = AuthOptionsT< ChannelAuthorizationHandler >; export interface InternalAuthOptions { transport: 'ajax' | 'jsonp'; endpoint: string; params?: any; headers?: any; paramsProvider?: () => any; headersProvider?: () => any; }