mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-10 19:34:41 +00:00
129 lines
3.3 KiB
TypeScript
129 lines
3.3 KiB
TypeScript
import { AuthError } from "./AuthError";
|
|
import * as ClientConfigurationErrorCodes from "./ClientConfigurationErrorCodes";
|
|
export { ClientConfigurationErrorCodes };
|
|
export declare const ClientConfigurationErrorMessages: {
|
|
redirect_uri_empty: string;
|
|
claims_request_parsing_error: string;
|
|
authority_uri_insecure: string;
|
|
url_parse_error: string;
|
|
empty_url_error: string;
|
|
empty_input_scopes_error: string;
|
|
invalid_prompt_value: string;
|
|
invalid_claims: string;
|
|
token_request_empty: string;
|
|
logout_request_empty: string;
|
|
invalid_code_challenge_method: string;
|
|
pkce_params_missing: string;
|
|
invalid_cloud_discovery_metadata: string;
|
|
invalid_authority_metadata: string;
|
|
untrusted_authority: string;
|
|
missing_ssh_jwk: string;
|
|
missing_ssh_kid: string;
|
|
missing_nonce_authentication_header: string;
|
|
invalid_authentication_header: string;
|
|
cannot_set_OIDCOptions: string;
|
|
cannot_allow_native_broker: string;
|
|
authority_mismatch: string;
|
|
};
|
|
/**
|
|
* ClientConfigurationErrorMessage class containing string constants used by error codes and messages.
|
|
* @deprecated Use ClientConfigurationErrorCodes instead
|
|
*/
|
|
export declare const ClientConfigurationErrorMessage: {
|
|
redirectUriNotSet: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
claimsRequestParsingError: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
authorityUriInsecure: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
urlParseError: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
urlEmptyError: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
emptyScopesError: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
invalidPrompt: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
invalidClaimsRequest: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
tokenRequestEmptyError: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
logoutRequestEmptyError: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
invalidCodeChallengeMethod: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
invalidCodeChallengeParams: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
invalidCloudDiscoveryMetadata: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
invalidAuthorityMetadata: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
untrustedAuthority: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
missingSshJwk: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
missingSshKid: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
missingNonceAuthenticationHeader: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
invalidAuthenticationHeader: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
cannotSetOIDCOptions: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
cannotAllowNativeBroker: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
authorityMismatch: {
|
|
code: string;
|
|
desc: string;
|
|
};
|
|
};
|
|
/**
|
|
* Error thrown when there is an error in configuration of the MSAL.js library.
|
|
*/
|
|
export declare class ClientConfigurationError extends AuthError {
|
|
constructor(errorCode: string);
|
|
}
|
|
export declare function createClientConfigurationError(errorCode: string): ClientConfigurationError;
|
|
//# sourceMappingURL=ClientConfigurationError.d.ts.map
|