{"version":3,"file":"clerk-vendor-CG8L0UKp.js","sources":["../../node_modules/@clerk/shared/dist/chunk-DL452J2I.mjs","../../node_modules/@clerk/shared/dist/chunk-7ELT755Q.mjs","../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js","../../node_modules/use-sync-external-store/shim/index.js","../../node_modules/dequal/lite/index.mjs","../../node_modules/swr/dist/_internal/config-context-client-x_C9_NWC.mjs","../../node_modules/swr/dist/_internal/index.mjs","../../node_modules/swr/dist/index/index.mjs","../../node_modules/swr/dist/infinite/index.mjs","../../node_modules/dequal/dist/index.mjs","../../node_modules/@clerk/shared/dist/react/index.mjs","../../node_modules/@clerk/shared/dist/chunk-TETGTEI2.mjs","../../node_modules/@clerk/shared/dist/chunk-I6MTSTOF.mjs","../../node_modules/@clerk/shared/dist/chunk-NJGRVCG7.mjs","../../node_modules/@clerk/shared/dist/chunk-QMOEH4QX.mjs","../../node_modules/@clerk/shared/dist/chunk-4EIZQYWK.mjs","../../node_modules/@clerk/clerk-react/dist/chunk-GNFPFS75.mjs","../../node_modules/@clerk/clerk-react/dist/chunk-OANWQR3B.mjs","../../node_modules/@clerk/shared/dist/chunk-JMFHSME2.mjs","../../node_modules/@clerk/shared/dist/chunk-6NDGN2IU.mjs","../../node_modules/@clerk/shared/dist/chunk-IFTVZ2LQ.mjs","../../node_modules/@clerk/shared/dist/chunk-QE36JXB4.mjs","../../node_modules/@clerk/shared/dist/chunk-DKITONR4.mjs","../../node_modules/@clerk/shared/dist/chunk-6O4KFNGJ.mjs","../../node_modules/@clerk/shared/dist/chunk-CFXQSUF6.mjs","../../node_modules/@clerk/shared/dist/chunk-JNWT25N5.mjs","../../node_modules/@clerk/shared/dist/chunk-LJ4R7M7R.mjs","../../node_modules/@clerk/clerk-react/dist/index.mjs"],"sourcesContent":["// src/error.ts\nfunction isUnauthorizedError(e) {\n var _a, _b;\n const status = e == null ? void 0 : e.status;\n const code = (_b = (_a = e == null ? void 0 : e.errors) == null ? void 0 : _a[0]) == null ? void 0 : _b.code;\n return code === \"authentication_invalid\" && status === 401;\n}\nfunction isCaptchaError(e) {\n return [\"captcha_invalid\", \"captcha_not_enabled\", \"captcha_missing_token\"].includes(e.errors[0].code);\n}\nfunction is4xxError(e) {\n const status = e == null ? void 0 : e.status;\n return !!status && status >= 400 && status < 500;\n}\nfunction isNetworkError(e) {\n const message = (`${e.message}${e.name}` || \"\").toLowerCase().replace(/\\s+/g, \"\");\n return message.includes(\"networkerror\");\n}\nfunction isKnownError(error) {\n return isClerkAPIResponseError(error) || isMetamaskError(error) || isClerkRuntimeError(error);\n}\nfunction isClerkAPIResponseError(err) {\n return \"clerkError\" in err;\n}\nfunction isClerkRuntimeError(err) {\n return \"clerkRuntimeError\" in err;\n}\nfunction isMetamaskError(err) {\n return \"code\" in err && [4001, 32602, 32603].includes(err.code) && \"message\" in err;\n}\nfunction isUserLockedError(err) {\n var _a, _b;\n return isClerkAPIResponseError(err) && ((_b = (_a = err.errors) == null ? void 0 : _a[0]) == null ? void 0 : _b.code) === \"user_locked\";\n}\nfunction isPasswordPwnedError(err) {\n var _a, _b;\n return isClerkAPIResponseError(err) && ((_b = (_a = err.errors) == null ? void 0 : _a[0]) == null ? void 0 : _b.code) === \"form_password_pwned\";\n}\nfunction parseErrors(data = []) {\n return data.length > 0 ? data.map(parseError) : [];\n}\nfunction parseError(error) {\n var _a, _b, _c, _d, _e;\n return {\n code: error.code,\n message: error.message,\n longMessage: error.long_message,\n meta: {\n paramName: (_a = error == null ? void 0 : error.meta) == null ? void 0 : _a.param_name,\n sessionId: (_b = error == null ? void 0 : error.meta) == null ? void 0 : _b.session_id,\n emailAddresses: (_c = error == null ? void 0 : error.meta) == null ? void 0 : _c.email_addresses,\n identifiers: (_d = error == null ? void 0 : error.meta) == null ? void 0 : _d.identifiers,\n zxcvbn: (_e = error == null ? void 0 : error.meta) == null ? void 0 : _e.zxcvbn\n }\n };\n}\nfunction errorToJSON(error) {\n var _a, _b, _c, _d, _e;\n return {\n code: (error == null ? void 0 : error.code) || \"\",\n message: (error == null ? void 0 : error.message) || \"\",\n long_message: error == null ? void 0 : error.longMessage,\n meta: {\n param_name: (_a = error == null ? void 0 : error.meta) == null ? void 0 : _a.paramName,\n session_id: (_b = error == null ? void 0 : error.meta) == null ? void 0 : _b.sessionId,\n email_addresses: (_c = error == null ? void 0 : error.meta) == null ? void 0 : _c.emailAddresses,\n identifiers: (_d = error == null ? void 0 : error.meta) == null ? void 0 : _d.identifiers,\n zxcvbn: (_e = error == null ? void 0 : error.meta) == null ? void 0 : _e.zxcvbn\n }\n };\n}\nvar ClerkAPIResponseError = class _ClerkAPIResponseError extends Error {\n constructor(message, { data, status, clerkTraceId }) {\n super(message);\n this.toString = () => {\n let message = `[${this.name}]\nMessage:${this.message}\nStatus:${this.status}\nSerialized errors: ${this.errors.map(\n (e) => JSON.stringify(e)\n )}`;\n if (this.clerkTraceId) {\n message += `\nClerk Trace ID: ${this.clerkTraceId}`;\n }\n return message;\n };\n Object.setPrototypeOf(this, _ClerkAPIResponseError.prototype);\n this.status = status;\n this.message = message;\n this.clerkTraceId = clerkTraceId;\n this.clerkError = true;\n this.errors = parseErrors(data);\n }\n};\nvar ClerkRuntimeError = class _ClerkRuntimeError extends Error {\n constructor(message, { code }) {\n const prefix = \"\\u{1F512} Clerk:\";\n const regex = new RegExp(prefix.replace(\" \", \"\\\\s*\"), \"i\");\n const sanitized = message.replace(regex, \"\");\n const _message = `${prefix} ${sanitized.trim()}\n\n(code=\"${code}\")\n`;\n super(_message);\n /**\n * Returns a string representation of the error.\n *\n * @returns {string} A formatted string with the error name and message.\n * @memberof ClerkRuntimeError\n */\n this.toString = () => {\n return `[${this.name}]\nMessage:${this.message}`;\n };\n Object.setPrototypeOf(this, _ClerkRuntimeError.prototype);\n this.code = code;\n this.message = _message;\n this.clerkRuntimeError = true;\n this.name = \"ClerkRuntimeError\";\n }\n};\nvar EmailLinkError = class _EmailLinkError extends Error {\n constructor(code) {\n super(code);\n this.code = code;\n Object.setPrototypeOf(this, _EmailLinkError.prototype);\n }\n};\nfunction isEmailLinkError(err) {\n return err instanceof EmailLinkError;\n}\nvar EmailLinkErrorCode = {\n Expired: \"expired\",\n Failed: \"failed\",\n ClientMismatch: \"client_mismatch\"\n};\nvar DefaultMessages = Object.freeze({\n 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}})`,\n 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}})`,\n MissingPublishableKeyErrorMessage: `Missing publishableKey. You can get your key at https://dashboard.clerk.com/last-active?path=api-keys.`,\n MissingSecretKeyErrorMessage: `Missing secretKey. You can get your key at https://dashboard.clerk.com/last-active?path=api-keys.`,\n MissingClerkProvider: `{{source}} can only be used within the