@clerk/shared
Version:
Internal package utils used by the Clerk SDKs
137 lines (134 loc) • 5.07 kB
text/typescript
import { ClerkAPIErrorJSON, ClerkAPIError } from '@clerk/types';
declare function isUnauthorizedError(e: any): boolean;
declare function is4xxError(e: any): boolean;
declare function isNetworkError(e: any): boolean;
interface ClerkAPIResponseOptions {
data: ClerkAPIErrorJSON[];
status: number;
}
interface MetamaskError extends Error {
code: 4001 | 32602 | 32603;
message: string;
data?: unknown;
}
declare function isKnownError(error: any): boolean;
declare function isClerkAPIResponseError(err: any): err is ClerkAPIResponseError;
/**
* Checks if the provided error object is an instance of ClerkRuntimeError.
*
* @param {any} err - The error object to check.
* @returns {boolean} True if the error is a ClerkRuntimeError, false otherwise.
*
* @example
* const error = new ClerkRuntimeError('An error occurred');
* if (isClerkRuntimeError(error)) {
* // Handle ClerkRuntimeError
* console.error('ClerkRuntimeError:', error.message);
* } else {
* // Handle other errors
* console.error('Other error:', error.message);
* }
*/
declare function isClerkRuntimeError(err: any): err is ClerkRuntimeError;
declare function isMetamaskError(err: any): err is MetamaskError;
declare function parseErrors(data?: ClerkAPIErrorJSON[]): ClerkAPIError[];
declare function parseError(error: ClerkAPIErrorJSON): ClerkAPIError;
declare class ClerkAPIResponseError extends Error {
clerkError: true;
status: number;
message: string;
errors: ClerkAPIError[];
constructor(message: string, { data, status }: ClerkAPIResponseOptions);
toString: () => string;
}
/**
* Custom error class for representing Clerk runtime errors.
*
* @class ClerkRuntimeError
* @example
* throw new ClerkRuntimeError('An error occurred', { code: 'password_invalid' });
*/
declare class ClerkRuntimeError extends Error {
clerkRuntimeError: true;
/**
* The error message.
*
* @type {string}
* @memberof ClerkRuntimeError
*/
message: string;
/**
* A unique code identifying the error, used for localization
*
* @type {string}
* @memberof ClerkRuntimeError
*/
code: string;
constructor(message: string, { code }: {
code: string;
});
/**
* Returns a string representation of the error.
*
* @returns {string} A formatted string with the error name and message.
* @memberof ClerkRuntimeError
*/
toString: () => string;
}
/**
* @deprecated Use `EmailLinkError` instead.
*/
declare class MagicLinkError extends Error {
code: string;
constructor(code: string);
}
declare class EmailLinkError extends Error {
code: string;
constructor(code: string);
}
/**
* Check if the error is a MagicLinkError.
* @deprecated Use `isEmailLinkError` instead.
*/
declare function isMagicLinkError(err: Error): err is MagicLinkError;
declare function isEmailLinkError(err: Error): err is EmailLinkError;
/**
* @deprecated Use `EmailLinkErrorCode` instead.
*/
declare const MagicLinkErrorCode: {
Expired: string;
Failed: string;
};
declare const EmailLinkErrorCode: {
Expired: string;
Failed: string;
};
declare const DefaultMessages: Readonly<{
InvalidFrontendApiErrorMessage: "The frontendApi passed to Clerk is invalid. You can get your Frontend API key at https://dashboard.clerk.com/last-active?path=api-keys. (key={{key}})";
InvalidProxyUrlErrorMessage: "The proxyUrl passed to Clerk is invalid. The expected value for proxyUrl is an absolute URL or a relative path with a leading '/'. (key={{url}})";
InvalidPublishableKeyErrorMessage: "The publishableKey passed to Clerk is invalid. You can get your Publishable key at https://dashboard.clerk.com/last-active?path=api-keys. (key={{key}})";
MissingPublishableKeyErrorMessage: "Missing publishableKey. You can get your key at https://dashboard.clerk.com/last-active?path=api-keys.";
}>;
type MessageKeys = keyof typeof DefaultMessages;
type Messages = Record<MessageKeys, string>;
type CustomMessages = Partial<Messages>;
type ErrorThrowerOptions = {
packageName: string;
customMessages?: CustomMessages;
};
interface ErrorThrower {
setPackageName(options: ErrorThrowerOptions): ErrorThrower;
setMessages(options: ErrorThrowerOptions): ErrorThrower;
throwInvalidPublishableKeyError(params: {
key?: string;
}): never;
throwInvalidFrontendApiError(params: {
key?: string;
}): never;
throwInvalidProxyUrl(params: {
url?: string;
}): never;
throwMissingPublishableKeyError(): never;
}
declare function buildErrorThrower({ packageName, customMessages }: ErrorThrowerOptions): ErrorThrower;
export { ClerkAPIResponseError, ClerkRuntimeError, EmailLinkError, EmailLinkErrorCode, ErrorThrower, ErrorThrowerOptions, MagicLinkError, MagicLinkErrorCode, MetamaskError, buildErrorThrower, is4xxError, isClerkAPIResponseError, isClerkRuntimeError, isEmailLinkError, isKnownError, isMagicLinkError, isMetamaskError, isNetworkError, isUnauthorizedError, parseError, parseErrors };