From de3eacda5ba4cd45106cecf3eb79781caa03ec43 Mon Sep 17 00:00:00 2001 From: Alaister Young Date: Mon, 15 Sep 2025 16:58:54 +0800 Subject: [PATCH 01/17] chore: add sso settings to enabled features (#38694) * chore: add sso settings to enabled features * mark as required * Smol tweaks --------- Co-authored-by: Joshen Lim --- .../components/layouts/OrganizationLayout.tsx | 10 +++++----- .../OrganizationSettingsLayout.tsx | 17 ++++++++++++----- apps/studio/pages/org/[slug]/sso.tsx | 10 ++++++++++ .../enabled-features/enabled-features.json | 3 +++ .../enabled-features.schema.json | 6 ++++++ 5 files changed, 36 insertions(+), 10 deletions(-) diff --git a/apps/studio/components/layouts/OrganizationLayout.tsx b/apps/studio/components/layouts/OrganizationLayout.tsx index ce196c37f72c9..427749ca007d3 100644 --- a/apps/studio/components/layouts/OrganizationLayout.tsx +++ b/apps/studio/components/layouts/OrganizationLayout.tsx @@ -3,14 +3,14 @@ import { type PropsWithChildren } from 'react' import PartnerIcon from 'components/ui/PartnerIcon' import { PARTNER_TO_NAME } from 'components/ui/PartnerManagedResource' +import { useAwsRedirectQuery } from 'data/integrations/aws-redirect-query' import { useVercelRedirectQuery } from 'data/integrations/vercel-redirect-query' import { useSelectedOrganizationQuery } from 'hooks/misc/useSelectedOrganization' import { withAuth } from 'hooks/misc/withAuth' -import { Alert_Shadcn_, AlertTitle_Shadcn_, Button, cn } from 'ui' -import { useAwsRedirectQuery } from 'data/integrations/aws-redirect-query' import { MANAGED_BY } from 'lib/constants/infrastructure' +import { Alert_Shadcn_, AlertTitle_Shadcn_, Button, cn } from 'ui' -const OrganizationLayoutContent = ({ children }: PropsWithChildren<{}>) => { +const OrganizationLayoutContent = ({ children }: PropsWithChildren) => { const { data: selectedOrganization } = useSelectedOrganizationQuery() const vercelQuery = useVercelRedirectQuery( @@ -53,12 +53,12 @@ const OrganizationLayoutContent = ({ children }: PropsWithChildren<{}>) => { )} -
{children}
+
{children}
) } -const OrganizationLayout = ({ children }: PropsWithChildren<{}>) => { +const OrganizationLayout = ({ children }: PropsWithChildren) => { return {children} } diff --git a/apps/studio/components/layouts/ProjectLayout/OrganizationSettingsLayout.tsx b/apps/studio/components/layouts/ProjectLayout/OrganizationSettingsLayout.tsx index 848edfc8dac42..d198aee651ec4 100644 --- a/apps/studio/components/layouts/ProjectLayout/OrganizationSettingsLayout.tsx +++ b/apps/studio/components/layouts/ProjectLayout/OrganizationSettingsLayout.tsx @@ -3,6 +3,7 @@ import { PropsWithChildren } from 'react' import { useParams } from 'common' import { useCurrentPath } from 'hooks/misc/useCurrentPath' +import { useIsFeatureEnabled } from 'hooks/misc/useIsFeatureEnabled' import { NavMenu, NavMenuItem } from 'ui' import { ScaffoldContainerLegacy, ScaffoldTitle } from '../Scaffold' @@ -12,6 +13,8 @@ function OrganizationSettingsLayout({ children }: PropsWithChildren) { const fullCurrentPath = useCurrentPath() const [currentPath] = fullCurrentPath.split('#') + const showSsoSettings = useIsFeatureEnabled('organization:show_sso_settings') + const navMenuItems = [ { label: 'General', @@ -26,10 +29,14 @@ function OrganizationSettingsLayout({ children }: PropsWithChildren) { href: `/org/${slug}/apps`, }, - { - label: 'SSO', - href: `/org/${slug}/sso`, - }, + ...(showSsoSettings + ? [ + { + label: 'SSO', + href: `/org/${slug}/sso`, + }, + ] + : []), { label: 'Audit Logs', @@ -53,7 +60,7 @@ function OrganizationSettingsLayout({ children }: PropsWithChildren) { ))} -
{children}
+
{children}
) } diff --git a/apps/studio/pages/org/[slug]/sso.tsx b/apps/studio/pages/org/[slug]/sso.tsx index ede0545671318..899b1cf7c7689 100644 --- a/apps/studio/pages/org/[slug]/sso.tsx +++ b/apps/studio/pages/org/[slug]/sso.tsx @@ -1,10 +1,20 @@ +import { useParams } from 'common' import { SSOConfig } from 'components/interfaces/Organization/SSO/SSOConfig' import DefaultLayout from 'components/layouts/DefaultLayout' import OrganizationLayout from 'components/layouts/OrganizationLayout' import OrganizationSettingsLayout from 'components/layouts/ProjectLayout/OrganizationSettingsLayout' +import { UnknownInterface } from 'components/ui/UnknownInterface' +import { useIsFeatureEnabled } from 'hooks/misc/useIsFeatureEnabled' import type { NextPageWithLayout } from 'types' const OrgSSO: NextPageWithLayout = () => { + const { slug } = useParams() + const showSsoSettings = useIsFeatureEnabled('organization:show_sso_settings') + + if (!showSsoSettings) { + return + } + return } diff --git a/packages/common/enabled-features/enabled-features.json b/packages/common/enabled-features/enabled-features.json index 440a8484327a5..866280cf5191f 100644 --- a/packages/common/enabled-features/enabled-features.json +++ b/packages/common/enabled-features/enabled-features.json @@ -44,6 +44,8 @@ "logs:templates": true, "logs:collections": true, + "organization:show_sso_settings": true, + "profile:show_email": true, "profile:show_information": true, "profile:show_analytics_and_marketing": true, @@ -58,6 +60,7 @@ "project_homepage:show_examples": true, "project_addons:dedicated_ipv4_address": true, + "project_settings:custom_domains": true, "project_settings:show_disable_legacy_api_keys": true, "project_settings:legacy_jwt_keys": true, diff --git a/packages/common/enabled-features/enabled-features.schema.json b/packages/common/enabled-features/enabled-features.schema.json index d68bad99e30a2..91aa791d6bf02 100644 --- a/packages/common/enabled-features/enabled-features.schema.json +++ b/packages/common/enabled-features/enabled-features.schema.json @@ -148,6 +148,11 @@ "description": "Enable the logs collections page" }, + "organization:show_sso_settings": { + "type": "boolean", + "description": "Show the SSO settings tab in the organization settings page" + }, + "profile:show_email": { "type": "boolean", "description": "Show the user's email address in the toolbar" @@ -273,6 +278,7 @@ "profile:show_account_deletion", "logs:templates", "logs:collections", + "organization:show_sso_settings", "project_creation:show_advanced_config", "project_homepage:show_instance_size", "project_homepage:show_examples", From 62ac8d9eb07657b375dc3fc3646ee22d8b04277d Mon Sep 17 00:00:00 2001 From: Alaister Young Date: Mon, 15 Sep 2025 16:59:38 +0800 Subject: [PATCH 02/17] chore: move connect modal custom content to enabled features (#38695) * chore: move connect modal custom content to enabled features * smol * Smol nit * Flip back flags --------- Co-authored-by: Joshen Lim --- .../components/interfaces/Connect/Connect.tsx | 69 ++++++++++++------- .../custom-content/CustomContent.types.ts | 11 --- .../hooks/custom-content/custom-content.json | 2 - .../custom-content/custom-content.schema.json | 30 -------- .../enabled-features/enabled-features.json | 3 + .../enabled-features.schema.json | 15 ++++ 6 files changed, 63 insertions(+), 67 deletions(-) diff --git a/apps/studio/components/interfaces/Connect/Connect.tsx b/apps/studio/components/interfaces/Connect/Connect.tsx index 196dd2ab3b74a..7118434b3d71e 100644 --- a/apps/studio/components/interfaces/Connect/Connect.tsx +++ b/apps/studio/components/interfaces/Connect/Connect.tsx @@ -9,8 +9,8 @@ import { ButtonTooltip } from 'components/ui/ButtonTooltip' import Panel from 'components/ui/Panel' import { getKeys, useAPIKeysQuery } from 'data/api-keys/api-keys-query' import { useProjectSettingsV2Query } from 'data/config/project-settings-v2-query' -import { useCustomContent } from 'hooks/custom-content/useCustomContent' import { useAsyncCheckProjectPermissions } from 'hooks/misc/useCheckPermissions' +import { useIsFeatureEnabled } from 'hooks/misc/useIsFeatureEnabled' import { useSelectedProjectQuery } from 'hooks/misc/useSelectedProject' import { PROJECT_STATUS } from 'lib/constants' import { @@ -21,6 +21,7 @@ import { DialogContent, DialogDescription, DialogHeader, + DialogSectionSeparator, DialogTitle, DialogTrigger, TabsContent_Shadcn_, @@ -40,15 +41,28 @@ export const Connect = () => { const { data: selectedProject } = useSelectedProjectQuery() const isActiveHealthy = selectedProject?.status === PROJECT_STATUS.ACTIVE_HEALTHY - const { connectFrameworks } = useCustomContent(['connect:frameworks']) - const connectionTypes = !connectFrameworks - ? CONNECTION_TYPES - : [ - { key: 'direct', label: 'Connection String', obj: [] }, - connectFrameworks, - { key: 'orms', label: 'ORMs', obj: ORMS }, - ] - const frameworks = !connectFrameworks ? FRAMEWORKS : connectFrameworks.obj + const { + projectConnectionShowAppFrameworks: showAppFrameworks, + projectConnectionShowMobileFrameworks: showMobileFrameworks, + projectConnectionShowOrms: showOrms, + } = useIsFeatureEnabled([ + 'project_connection:show_app_frameworks', + 'project_connection:show_mobile_frameworks', + 'project_connection:show_orms', + ]) + + const connectionTypes = CONNECTION_TYPES.filter(({ key }) => { + if (key === 'frameworks') { + return showAppFrameworks + } + if (key === 'mobiles') { + return showMobileFrameworks + } + if (key === 'orms') { + return showOrms + } + return true + }) const [showConnect, setShowConnect] = useQueryState( 'showConnect', @@ -57,7 +71,7 @@ export const Connect = () => { const [tab, setTab] = useQueryState('tab', parseAsString.withDefault('direct')) - const [connectionObject, setConnectionObject] = useState(frameworks) + const [connectionObject, setConnectionObject] = useState(FRAMEWORKS) const [selectedParent, setSelectedParent] = useState(connectionObject[0].key) // aka nextjs const [selectedChild, setSelectedChild] = useState( connectionObject.find((item) => item.key === selectedParent)?.children[0]?.key ?? '' @@ -68,7 +82,7 @@ export const Connect = () => { ?.children.find((child) => child.key === selectedChild)?.children[0]?.key || '' ) - const isFrameworkSelected = frameworks.some((x) => x.key === selectedParent) + const isFrameworkSelected = FRAMEWORKS.some((x) => x.key === selectedParent) const { data: settings } = useProjectSettingsV2Query({ projectRef }, { enabled: showConnect }) const { can: canReadAPIKeys } = useAsyncCheckProjectPermissions( @@ -127,8 +141,8 @@ export const Connect = () => { setTab(type) if (type === 'frameworks') { - setConnectionObject(frameworks) - handleConnectionTypeChange(frameworks) + setConnectionObject(FRAMEWORKS) + handleConnectionTypeChange(FRAMEWORKS) } if (type === 'mobiles') { @@ -226,20 +240,27 @@ export const Connect = () => { - Connect to your project + + Connect to your project + {connectionTypes.length === 1 ? ` via ${connectionTypes[0].label.toLowerCase()}` : null} + Get the connection strings and environment variables for your app handleConnectionType(value)}> - - {connectionTypes.map((type) => ( - - {type.label} - - ))} - + {connectionTypes.length > 1 ? ( + + {connectionTypes.map((type) => ( + + {type.label} + + ))} + + ) : ( + + )} {connectionTypes.map((type) => { const hasChildOptions = @@ -317,10 +338,10 @@ export const Connect = () => {

Add the following files below to your application

- {!!connectFrameworks && isFrameworkSelected ? ( + {isFrameworkSelected ? ( x.key === selectedParent)} + framework={FRAMEWORKS.find((x) => x.key === selectedParent)} /> ) : ( Date: Mon, 15 Sep 2025 17:00:28 +0800 Subject: [PATCH 03/17] fix: disable plan selection on billing enabled flag (#38697) --- .../Organization/NewOrg/NewOrgForm.tsx | 95 ++++++++++--------- 1 file changed, 50 insertions(+), 45 deletions(-) diff --git a/apps/studio/components/interfaces/Organization/NewOrg/NewOrgForm.tsx b/apps/studio/components/interfaces/Organization/NewOrg/NewOrgForm.tsx index bd6f53ceb29e7..ecaf67bad79ad 100644 --- a/apps/studio/components/interfaces/Organization/NewOrg/NewOrgForm.tsx +++ b/apps/studio/components/interfaces/Organization/NewOrg/NewOrgForm.tsx @@ -21,6 +21,7 @@ import type { CustomerAddress, CustomerTaxId } from 'data/organizations/types' import { useProjectsQuery } from 'data/projects/projects-query' import { SetupIntentResponse } from 'data/stripe/setup-intent-mutation' import { useConfirmPendingSubscriptionCreateMutation } from 'data/subscriptions/org-subscription-confirm-pending-create' +import { useIsFeatureEnabled } from 'hooks/misc/useIsFeatureEnabled' import { useLocalStorageQuery } from 'hooks/misc/useLocalStorage' import { PRICING_TIER_LABELS_ORG, STRIPE_PUBLIC_KEY } from 'lib/constants' import { useProfile } from 'lib/profile' @@ -103,6 +104,8 @@ const NewOrgForm = ({ onPaymentMethodReset, setupIntent, onPlanSelected }: NewOr const user = useProfile() const { resolvedTheme } = useTheme() + const isBillingEnabled = useIsFeatureEnabled('billing:all') + const { data: organizations, isSuccess } = useOrganizationsQuery() const { data } = useProjectsQuery() @@ -461,55 +464,57 @@ const NewOrgForm = ({ onPaymentMethodReset, setupIntent, onPlanSelected }: NewOr )} - -
-
- - Plan - - - - Pricing - - -
-
- { - updateForm('plan', value) - onPlanSelected(value) - }} - > - - - - - - {Object.entries(PRICING_TIER_LABELS_ORG).map(([k, v]) => ( - - {v} - - ))} - - + {isBillingEnabled && ( + +
+
+ + Plan + -
- - The Plan applies to your new organization. - + Pricing + + +
+
+ { + updateForm('plan', value) + onPlanSelected(value) + }} + > + + + + + + {Object.entries(PRICING_TIER_LABELS_ORG).map(([k, v]) => ( + + {v} + + ))} + + + +
+ + The Plan applies to your new organization. + +
-
-
+ + )} {formState.plan === 'PRO' && ( <> From 1d0d56a3f3f456eb8deadbf0a482102d89b8b655 Mon Sep 17 00:00:00 2001 From: Stojan Dimitrovski Date: Mon, 15 Sep 2025 11:57:03 +0200 Subject: [PATCH 04/17] feat: web3 (ethereum) ui (#38623) --- .../interfaces/Auth/AuthProvidersFormValidation.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/studio/components/interfaces/Auth/AuthProvidersFormValidation.tsx b/apps/studio/components/interfaces/Auth/AuthProvidersFormValidation.tsx index 0137a0685f3b5..b3dc3724fd5d5 100644 --- a/apps/studio/components/interfaces/Auth/AuthProvidersFormValidation.tsx +++ b/apps/studio/components/interfaces/Auth/AuthProvidersFormValidation.tsx @@ -1384,9 +1384,15 @@ const PROVIDER_SAML = { const PROVIDER_WEB3 = { $schema: JSON_SCHEMA_VERSION, type: 'object', - title: 'Web3 Wallet (Solana)', + title: 'Web3 Wallet', link: 'https://supabase.com/docs/guides/auth/auth-web3', properties: { + EXTERNAL_WEB3_ETHEREUM_ENABLED: { + title: 'Enable Sign in with Ethereum', + description: + 'Allow Ethereum wallets to sign in to your project via the Sign in with Ethereum (EIP-4361). Set up [attack protection](../auth/protection) and adjust [rate limits](../auth/rate-limits) to counter abuse.', + type: 'boolean', + }, EXTERNAL_WEB3_SOLANA_ENABLED: { title: 'Enable Sign in with Solana', description: @@ -1395,6 +1401,7 @@ const PROVIDER_WEB3 = { }, }, validationSchema: object().shape({ + EXTERNAL_WEB3_ETHEREUM_ENABLED: boolean().required(), EXTERNAL_WEB3_SOLANA_ENABLED: boolean().required(), }), misc: { From 6bc95800e1365772f8e2950d14b2e7a56ddef9eb Mon Sep 17 00:00:00 2001 From: Stojan Dimitrovski Date: Mon, 15 Sep 2025 11:57:16 +0200 Subject: [PATCH 05/17] docs: clarify the use of secret api key for accessing customer metrics (#38253) --- apps/docs/content/guides/telemetry/metrics.mdx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/docs/content/guides/telemetry/metrics.mdx b/apps/docs/content/guides/telemetry/metrics.mdx index 985f23eb1ea90..119fc99d9399f 100644 --- a/apps/docs/content/guides/telemetry/metrics.mdx +++ b/apps/docs/content/guides/telemetry/metrics.mdx @@ -27,7 +27,7 @@ Your project's metrics endpoint is accessible at `https://.supabase Access to the endpoint is secured via HTTP Basic Auth: - username: `service_role` -- password: the service role JWT from the [Supabase dashboard](/dashboard/project/_/settings/api-keys) +- password: the `service_role` API key or any other secret API key, get these from [Supabase dashboard](/dashboard/project/_/settings/api-keys) You can also retrieve your service role key programmatically using the Management API: @@ -43,6 +43,11 @@ curl -H "Authorization: Bearer $SUPABASE_ACCESS_TOKEN" \ +```shell +curl /customer/v1/privileged/metrics \ + --user 'service_role:sb_secret_...' +``` + ```shell curl /customer/v1/privileged/metrics \ --user 'service_role:' From 6a1c3390e19cd7fe3db059bc100b4f27087469a8 Mon Sep 17 00:00:00 2001 From: Joshen Lim Date: Mon, 15 Sep 2025 18:17:44 +0800 Subject: [PATCH 06/17] Fix default value placeholder for fields with foreign keys (#38693) --- .../SidePanelEditor/RowEditor/InputField.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/RowEditor/InputField.tsx b/apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/RowEditor/InputField.tsx index c996cedac0e81..1c13e580b23f4 100644 --- a/apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/RowEditor/InputField.tsx +++ b/apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/RowEditor/InputField.tsx @@ -100,7 +100,7 @@ const InputField = ({ @@ -216,7 +215,7 @@ const InputField = ({ } labelOptional={field.format} disabled={!isEditable || isTruncated} - placeholder={field?.defaultValue ?? 'NULL'} + placeholder={!!field?.defaultValue ? `Default: ${field.defaultValue}` : 'NULL'} error={errors[field.name]} onChange={(event: any) => onUpdateField({ [field.name]: event.target.value })} actions={ From 604be766a82ec384446fb77d0171c21841d47bcc Mon Sep 17 00:00:00 2001 From: "kemal.earth" <606977+kemaldotearth@users.noreply.github.com> Date: Mon, 15 Sep 2025 12:45:23 +0100 Subject: [PATCH 07/17] feat(studio): query performance metric cards (#38634) * feat: remove tabs and unify columns This removes the tabs from Query Performance with unified columns in the table. * chore: remove unused imports * chore: small adjustment to min max and mean time col size * feat: original experiment with metric cards * fix: height of table container on load * feat: add percentage background for time consumed col Adds a percentage based background colour for time consumed column and reshuffles some columns. * feat: working metrics above rows * feat: simplify stats + go back full width * style: bring up percentage bar opacity * chore: remove reportType again * feat: add metric queries to reset function * fix: type error for passing query metrics * fix: query queries plural thing * chore: remove next-env weirdness --- .../QueryPerformance.constants.ts | 4 +- .../QueryPerformance/QueryPerformance.tsx | 13 ++--- .../QueryPerformanceFilterBar.tsx | 2 +- .../QueryPerformance/QueryPerformanceGrid.tsx | 15 +++++- .../QueryPerformanceMetrics.tsx | 50 +++++++++++++++++++ .../interfaces/Reports/Reports.constants.ts | 32 ++++++++++++ .../interfaces/Reports/Reports.queries.ts | 2 + .../[ref]/advisors/query-performance.tsx | 11 ++-- 8 files changed, 111 insertions(+), 18 deletions(-) create mode 100644 apps/studio/components/interfaces/QueryPerformance/QueryPerformanceMetrics.tsx diff --git a/apps/studio/components/interfaces/QueryPerformance/QueryPerformance.constants.ts b/apps/studio/components/interfaces/QueryPerformance/QueryPerformance.constants.ts index 057583482936b..3fd1dbfbbeaa0 100644 --- a/apps/studio/components/interfaces/QueryPerformance/QueryPerformance.constants.ts +++ b/apps/studio/components/interfaces/QueryPerformance/QueryPerformance.constants.ts @@ -14,9 +14,9 @@ export const QUERY_PERFORMANCE_PRESET_MAP = { export const QUERY_PERFORMANCE_COLUMNS = [ { id: 'query', name: 'Query', description: undefined, minWidth: 500 }, - { id: 'calls', name: 'Calls', description: undefined, minWidth: 100 }, + { id: 'prop_total_time', name: 'Time consumed', description: undefined, minWidth: 130 }, { id: 'total_time', name: 'Total time', description: 'latency', minWidth: 150 }, - { id: 'prop_total_time', name: 'Time consumed', description: undefined, minWidth: 150 }, + { id: 'calls', name: 'Calls', description: undefined, minWidth: 100 }, { id: 'max_time', name: 'Max time', description: undefined, minWidth: 100 }, { id: 'mean_time', name: 'Mean time', description: undefined, minWidth: 100 }, { id: 'min_time', name: 'Min time', description: undefined, minWidth: 100 }, diff --git a/apps/studio/components/interfaces/QueryPerformance/QueryPerformance.tsx b/apps/studio/components/interfaces/QueryPerformance/QueryPerformance.tsx index 9df7a22eda7e1..c65e22d85a975 100644 --- a/apps/studio/components/interfaces/QueryPerformance/QueryPerformance.tsx +++ b/apps/studio/components/interfaces/QueryPerformance/QueryPerformance.tsx @@ -1,5 +1,4 @@ import { X } from 'lucide-react' -import { parseAsArrayOf, parseAsString, useQueryStates } from 'nuqs' import { useEffect, useState } from 'react' import { toast } from 'sonner' @@ -16,29 +15,25 @@ import { Button, LoadingLine, cn } from 'ui' import ConfirmationModal from 'ui-patterns/Dialogs/ConfirmationModal' import { Markdown } from '../Markdown' import { PresetHookResult } from '../Reports/Reports.utils' +import { QueryPerformanceMetrics } from './QueryPerformanceMetrics' import { QueryPerformanceFilterBar } from './QueryPerformanceFilterBar' import { QueryPerformanceGrid } from './QueryPerformanceGrid' interface QueryPerformanceProps { queryHitRate: PresetHookResult queryPerformanceQuery: DbQueryHook + queryMetrics: PresetHookResult } export const QueryPerformance = ({ queryHitRate, queryPerformanceQuery, + queryMetrics, }: QueryPerformanceProps) => { const { ref } = useParams() const { data: project } = useSelectedProjectQuery() const state = useDatabaseSelectorStateSnapshot() - const [{ search: searchQuery, roles }] = useQueryStates({ - sort: parseAsString, - search: parseAsString, - order: parseAsString, - roles: parseAsArrayOf(parseAsString).withDefault([]), - }) - const { isLoading, isRefetching } = queryPerformanceQuery const isPrimaryDatabase = state.selectedDatabaseId === ref const formattedDatabaseId = formatDatabaseID(state.selectedDatabaseId ?? '') @@ -53,6 +48,7 @@ export const QueryPerformance = ({ const handleRefresh = () => { queryPerformanceQuery.runQuery() queryHitRate.runQuery() + queryMetrics.runQuery() } const { data: databases } = useReadReplicasQuery({ projectRef: ref }) @@ -64,6 +60,7 @@ export const QueryPerformance = ({ return ( <> + setShowResetgPgStatStatements(true)} diff --git a/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceFilterBar.tsx b/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceFilterBar.tsx index 0775f723264d5..a2d91081a21d1 100644 --- a/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceFilterBar.tsx +++ b/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceFilterBar.tsx @@ -65,7 +65,7 @@ export const QueryPerformanceFilterBar = ({ }, [searchValue]) return ( -
+
= { key: col.id, name: col.name, + cellClass: `column-${col.id}`, resizable: true, minWidth: col.minWidth ?? 120, sortable: !nonSortableColumns.includes(col.id), @@ -113,7 +114,7 @@ export const QueryPerformanceGrid = ({ queryPerformanceQuery }: QueryPerformance const value = props.row?.[col.id] if (col.id === 'query') { return ( -
+
{hasIndexRecommendations(props.row.index_advisor_result, true) && ( +

{value ? `${value.toFixed(1)}%` : 'n/a'}

) @@ -274,7 +285,7 @@ export const QueryPerformanceGrid = ({ queryPerformanceQuery }: QueryPerformance `${isSelected ? 'bg-surface-300 dark:bg-surface-300' : 'bg-200'} cursor-pointer`, `${isSelected ? '[&>div:first-child]:border-l-4 border-l-secondary [&>div]:border-l-foreground' : ''}`, '[&>.rdg-cell]:box-border [&>.rdg-cell]:outline-none [&>.rdg-cell]:shadow-none', - '[&>.rdg-cell:first-child>div]:ml-4', + '[&>.rdg-cell.column-prop_total_time]:relative', ].join(' ') }} renderers={{ diff --git a/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceMetrics.tsx b/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceMetrics.tsx new file mode 100644 index 0000000000000..e8e3b908578ef --- /dev/null +++ b/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceMetrics.tsx @@ -0,0 +1,50 @@ +import { useMemo } from 'react' + +import { Skeleton } from 'ui' +import { useQueryPerformanceQuery } from '../Reports/Reports.queries' + +export const QueryPerformanceMetrics = () => { + const { data: queryMetrics, isLoading } = useQueryPerformanceQuery({ + preset: 'queryMetrics', + }) + + const stats = useMemo(() => { + return [ + { + title: queryMetrics?.[0]?.slow_queries === '1' ? 'Slow Query' : 'Slow Queries', + value: queryMetrics?.[0]?.slow_queries || '0', + }, + { + title: 'Cache Hit Rate', + value: queryMetrics?.[0]?.cache_hit_rate || '0%', + }, + { + title: 'Avg. Rows Per Call', + value: queryMetrics?.[0]?.avg_rows_per_call || '0', + }, + ] + }, [queryMetrics]) + + return ( +
+ {stats.map((card, i) => ( + <> +
+ {isLoading ? ( + + ) : ( + <> + {card.value} + {card.title} + + )} +
+ {i < stats.length - 1 && /} + + ))} +
+ ) +} diff --git a/apps/studio/components/interfaces/Reports/Reports.constants.ts b/apps/studio/components/interfaces/Reports/Reports.constants.ts index 28e9067953000..aea68a98aea85 100644 --- a/apps/studio/components/interfaces/Reports/Reports.constants.ts +++ b/apps/studio/components/interfaces/Reports/Reports.constants.ts @@ -539,6 +539,38 @@ select ${orderBy || 'order by statements.total_exec_time + statements.total_plan_time desc'} limit 20`, }, + slowQueriesCount: { + queryType: 'db', + sql: () => ` + -- reports-query-performance-slow-queries-count + set search_path to public, extensions; + + -- Count of slow queries (> 1 second average) + SELECT count(*) as slow_queries_count + FROM pg_stat_statements + WHERE statements.mean_exec_time > 1000;`, + }, + queryMetrics: { + queryType: 'db', + sql: (_params, where, orderBy, runIndexAdvisor = false) => ` + -- reports-query-performance-metrics + set search_path to public, extensions; + + SELECT + COALESCE(ROUND(AVG(statements.rows::numeric / NULLIF(statements.calls, 0)), 1), 0) as avg_rows_per_call, + COUNT(*) FILTER (WHERE statements.total_exec_time + statements.total_plan_time > 1000) as slow_queries, + COALESCE( + ROUND( + SUM(statements.shared_blks_hit) * 100.0 / + NULLIF(SUM(statements.shared_blks_hit + statements.shared_blks_read), 0), + 2 + ), 0 + ) || '%' as cache_hit_rate + FROM pg_stat_statements as statements + WHERE statements.calls > 0 + ${where || ''} + ${orderBy || ''}`, + }, }, }, [Presets.DATABASE]: { diff --git a/apps/studio/components/interfaces/Reports/Reports.queries.ts b/apps/studio/components/interfaces/Reports/Reports.queries.ts index 1ceae34789235..25151abfaf34b 100644 --- a/apps/studio/components/interfaces/Reports/Reports.queries.ts +++ b/apps/studio/components/interfaces/Reports/Reports.queries.ts @@ -23,6 +23,8 @@ export type QueryPerformanceQueryOpts = { | 'slowestExecutionTime' | 'queryHitRate' | 'unified' + | 'slowQueriesCount' + | 'queryMetrics' searchQuery?: string orderBy?: QueryPerformanceSort roles?: string[] diff --git a/apps/studio/pages/project/[ref]/advisors/query-performance.tsx b/apps/studio/pages/project/[ref]/advisors/query-performance.tsx index fccb44e2069f4..b94a267b3c16b 100644 --- a/apps/studio/pages/project/[ref]/advisors/query-performance.tsx +++ b/apps/studio/pages/project/[ref]/advisors/query-performance.tsx @@ -5,10 +5,6 @@ import { EnableIndexAdvisorButton } from 'components/interfaces/QueryPerformance import { useIndexAdvisorStatus } from 'components/interfaces/QueryPerformance/hooks/useIsIndexAdvisorStatus' import { useQueryPerformanceSort } from 'components/interfaces/QueryPerformance/hooks/useQueryPerformanceSort' import { QueryPerformance } from 'components/interfaces/QueryPerformance/QueryPerformance' -import { - QUERY_PERFORMANCE_PRESET_MAP, - QUERY_PERFORMANCE_REPORT_TYPES, -} from 'components/interfaces/QueryPerformance/QueryPerformance.constants' import { PRESET_CONFIG } from 'components/interfaces/Reports/Reports.constants' import { useQueryPerformanceQuery } from 'components/interfaces/Reports/Reports.queries' import { Presets } from 'components/interfaces/Reports/Reports.types' @@ -35,6 +31,7 @@ const QueryPerformanceReport: NextPageWithLayout = () => { const config = PRESET_CONFIG[Presets.QUERY_PERFORMANCE] const hooks = queriesFactory(config.queries, ref ?? 'default') const queryHitRate = hooks.queryHitRate() + const queryMetrics = hooks.queryMetrics() const queryPerformanceQuery = useQueryPerformanceQuery({ searchQuery, @@ -57,7 +54,11 @@ const QueryPerformanceReport: NextPageWithLayout = () => {
} /> - +
) } From 407d466aaf7dc79cd1c2bd250c017573b9629e17 Mon Sep 17 00:00:00 2001 From: Chris Chinchilla Date: Mon, 15 Sep 2025 14:02:04 +0200 Subject: [PATCH 08/17] chore: Add labeler action and documentation config (#38704) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add labeler action and documentation config * Update .github/labeler.yml Co-authored-by: Raúl Barroso --------- Co-authored-by: Raúl Barroso --- .github/labeler.yml | 5 +++++ .github/workflows/label_prs.yml | 13 +++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .github/labeler.yml create mode 100644 .github/workflows/label_prs.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000000000..be2f10f17c872 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,5 @@ +# Add 'documentation' to any change in apps/docs +# https://github.com/marketplace/actions/labeler +documentation: +- changed-files: + - any-glob-to-any-file: 'apps/docs/**/*' diff --git a/.github/workflows/label_prs.yml b/.github/workflows/label_prs.yml new file mode 100644 index 0000000000000..13c4f868a8e97 --- /dev/null +++ b/.github/workflows/label_prs.yml @@ -0,0 +1,13 @@ +name: 'Pull Request Labeler' +on: + - pull_request_target + +jobs: + labeler: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/labeler@v6 From 33f59a5a4a2d1f983529b53e6af1434f5f17a868 Mon Sep 17 00:00:00 2001 From: Jordi Enric <37541088+jordienr@users.noreply.github.com> Date: Mon, 15 Sep 2025 14:19:10 +0200 Subject: [PATCH 09/17] Add attachment to sentry permission error (#38702) * add attachment with error for better filtering * fix type error --- apps/studio/data/permissions/permissions-query.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/studio/data/permissions/permissions-query.ts b/apps/studio/data/permissions/permissions-query.ts index 3f5375e468f13..0a12374f13481 100644 --- a/apps/studio/data/permissions/permissions-query.ts +++ b/apps/studio/data/permissions/permissions-query.ts @@ -1,5 +1,4 @@ import { useQuery, UseQueryOptions } from '@tanstack/react-query' -import * as Sentry from '@sentry/nextjs' import { useIsLoggedIn } from 'common' import { get, handleError } from 'data/fetchers' @@ -18,6 +17,9 @@ export async function getPermissions(signal?: AbortSignal) { tags: { permissionsQuery: true, }, + contexts: { + rawError: error, + }, }, }) } From e8c158bc487aee871fb6e22f8960b6c0a7ffa6c4 Mon Sep 17 00:00:00 2001 From: Stojan Dimitrovski Date: Mon, 15 Sep 2025 14:56:34 +0200 Subject: [PATCH 10/17] docs: web3 and some other js reference improvements (#38670) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * docs: web3 and some other js reference improvements * add MetaMask to spell rules * apply suggestion from @cemalkilic Co-authored-by: Cemal Kılıç * fix tests * test: update snapshot --------- Co-authored-by: Cemal Kılıç Co-authored-by: Charis Lam <26616127+charislam@users.noreply.github.com> --- .../NavigationMenu.constants.ts | 2 +- apps/docs/content/guides/auth/auth-web3.mdx | 97 +- .../Reference.typeSpec.test.ts.snap | 6 +- apps/docs/spec/api_v1_openapi.json | 16 +- .../spec/common-client-libs-sections.json | 9 +- .../spec/enrichments/tsdoc_v2/combined.json | 3066 ++++++++--------- .../spec/enrichments/tsdoc_v2/gotrue.json | 1780 +++++----- .../tsdoc_v2/gotrue_dereferenced.json | 3066 ++++++++--------- apps/docs/spec/supabase_js_v2.yml | 156 +- .../transforms/api_v1_openapi_deparsed.json | 32 +- supa-mdx-lint/Rule003Spelling.toml | 1 + 11 files changed, 4241 insertions(+), 3990 deletions(-) diff --git a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts index fab190e7fc994..444ad2331d317 100644 --- a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts +++ b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts @@ -699,7 +699,7 @@ export const auth: NavMenuConstant = { enabled: allAuthProvidersEnabled, }, { - name: 'Web3 (Sign in with Solana)', + name: 'Web3 (Ethereum or Solana)', url: '/guides/auth/auth-web3', enabled: allAuthProvidersEnabled, }, diff --git a/apps/docs/content/guides/auth/auth-web3.mdx b/apps/docs/content/guides/auth/auth-web3.mdx index 3eb05326a429b..0a113aa4d63d1 100644 --- a/apps/docs/content/guides/auth/auth-web3.mdx +++ b/apps/docs/content/guides/auth/auth-web3.mdx @@ -9,17 +9,43 @@ subtitle: 'Use your Web3 wallet to authenticate users with Supabase' Supported Web3 wallets: - All Solana wallets -- Coming soon: All Ethereum wallets +- All Ethereum wallets ## How does it work? -Sign in with Web3 utilizes the [EIP 4361](https://eips.ethereum.org/EIPS/eip-4361) standard to authenticate wallet addresses off-chain. This standard is adopted by the Solana ecosystem with some minor differences from Ethereum. +Sign in with Web3 utilizes the [EIP 4361](https://eips.ethereum.org/EIPS/eip-4361) standard to authenticate wallet addresses off-chain. This standard is widely supported by the Ethereum and Solana ecosystems, making it the best choice for verifying wallet ownership. Authentication works by asking the Web3 wallet application to sign a predefined message with the user's wallet. This message is parsed both by the Web3 wallet application and Supabase Auth to verify its validity and purpose, before creating a user account or session. -The Web3 wallet application uses the information contained in the message to provide the user with a confirmation dialog, asking whether they want to allow sign in with your project. +An example of such a message is: -Not all Web3 wallet applications show a dedicated confirmation dialog for these sign in messages. In that case the Web3 wallet shows a traditional message signature confirmation dialog. +``` +example.com wants you to sign in with your Ethereum account: +0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 + +I accept the ExampleOrg Terms of Service: https://example.com/tos + +URI: https://example.com/login +Version: 1 +Chain ID: 1 +Nonce: 32891756 +Issued At: 2021-09-30T16:25:24Z +Resources: +- https://example.com/my-web2-claim.json +``` + +It defines the wallet address, timestamp, browser location where the sign-in occurred and includes a customizable statement (`I accept...`) which you can use to ask consent from the user. + +Most Web3 wallets are able to recognize these messages and show a dedicated "Confirm Sign In" dialog validating and presenting the information in the message in a secure and responsible way to the user. Even if the wallet does not directly support these messages, it will use the message signature dialog instead. + +Finally the Supabase Auth server validates both the message's contents and signature before issuing a valid [User session](/docs/guides/auth/sessions) to your application. Validation rules include: + +- Message structure validation +- Cryptographic signature verification +- Timestamp validation, ensuring the signature was created within 10 minutes of the sign-in call +- URI and Domain validation, ensuring these match your server's defined [Redirect URLs](/docs/guides/auth/redirect-urls) + +The wallet address is used as the identity identifier, and in the identity data you can also find the statement and additional metadata. ## Enable the Web3 provider @@ -30,6 +56,9 @@ In the CLI add the following config to your `supabase/config.toml` file: ```toml [auth.web3.solana] enabled = true + +[auth.web3.ethereum] +enabled = true ``` ### Potential for abuse @@ -63,7 +92,65 @@ For example if the user is signing in to the page `https://example.com/sign-in` ## Sign in with Ethereum -Sign in with Ethereum wallets is coming soon. +Ethereum defines the [`window.ethereum` global scope object](https://eips.ethereum.org/EIPS/eip-1193) that your app uses to interact with Ethereum Wallets. Additionally there is a [wallet discovery mechanism (EIP-6963)](https://eips.ethereum.org/EIPS/eip-6963) that your app can use to discover all of the available wallets on the user's browser. + +To sign in a user with their Ethereum wallet make sure that the user has installed a wallet application. There are two ways to do this: + +1. Detect the `window.ethereum` global scope object and ensure it's defined. This only works if your user has only one wallet installed on their browser. +2. Use the wallet discovery mechanism (EIP-6963) to ask the user to choose a wallet before they continue to sign in. Read [the MetaMask guide on the best way to support this](https://docs.metamask.io/wallet/tutorials/react-dapp-local-state). + + + + + +Use the following code to sign in a user, implicitly relying on the `window.ethereum` global scope wallet API: + +```typescript +const { data, error } = await supabase.auth.signInWithWeb3({ + chain: 'ethereum', + statement: 'I accept the Terms of Service at https://example.com/tos', +}) +``` + + + + + +Once you've obtained a wallet using the wallet detection (EIP-6963) mechanism, you can pass the selected wallet to the Supabase JavaScript SDK to continue the sign-in process. + +```typescript +const { data, error } = await supabase.auth.signInWithWeb3({ + chain: 'ethereum', + statement: 'I accept the Terms of Service at https://example.com/tos', + wallet: selectedWallet, // obtain this using the EIP-6963 mechanism +}) +``` + +An excellent guide on using the [EIP-6963](https://eips.ethereum.org/EIPS/eip-6963) mechanism is available by [MetaMask](https://docs.metamask.io/wallet/tutorials/react-dapp-local-state). + + + + + +If your application relies on a custom Ethereum wallet API, you can pass a [Sign in with Ethereum (EIP-4361)](https://eips.ethereum.org/EIPS/eip-4361) message and signature to complete the sign in process. + +```typescript +const { data, error } = await supabase.auth.signInWithWeb3({ + chain: 'ethereum', + message: '', + signature: '', +}) +``` + + + + ## Sign in with Solana diff --git a/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap b/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap index 5f662aea74961..534f8f547c727 100644 --- a/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap +++ b/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap @@ -16313,7 +16313,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" + "shortText": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" } }, { @@ -16324,7 +16324,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "Wallet interface to use. If not specified will default to \`window.solana\`." + "shortText": "Wallet interface to use. If not specified will default to \`window.ethereum\`." } } ] @@ -16376,7 +16376,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "Hex" }, "comment": { - "shortText": "Ed25519 signature of the message." + "shortText": "Ethereum curve (secp256k1) signature of the message." } } ] diff --git a/apps/docs/spec/api_v1_openapi.json b/apps/docs/spec/api_v1_openapi.json index bbdb896aa8fc2..658a292fa0665 100644 --- a/apps/docs/spec/api_v1_openapi.json +++ b/apps/docs/spec/api_v1_openapi.json @@ -4846,7 +4846,8 @@ "type": "object", "properties": { "id": { "type": "number" }, "username": { "type": "string" } }, "required": ["id", "username"] - } + }, + "favorite": { "type": "boolean" } }, "required": [ "id", @@ -4858,7 +4859,8 @@ "description", "project", "owner", - "updated_by" + "updated_by", + "favorite" ] } }, @@ -4891,14 +4893,19 @@ "properties": { "id": { "type": "number" }, "username": { "type": "string" } }, "required": ["id", "username"] }, + "favorite": { "type": "boolean" }, "content": { "type": "object", "properties": { - "favorite": { "type": "boolean" }, + "favorite": { + "type": "boolean", + "deprecated": true, + "description": "Deprecated: Rely on root-level favorite property instead." + }, "schema_version": { "type": "string" }, "sql": { "type": "string" } }, - "required": ["favorite", "schema_version", "sql"] + "required": ["schema_version", "sql"] } }, "required": [ @@ -4912,6 +4919,7 @@ "project", "owner", "updated_by", + "favorite", "content" ] }, diff --git a/apps/docs/spec/common-client-libs-sections.json b/apps/docs/spec/common-client-libs-sections.json index 039208b89f73c..5822f2d7e799b 100644 --- a/apps/docs/spec/common-client-libs-sections.json +++ b/apps/docs/spec/common-client-libs-sections.json @@ -450,7 +450,7 @@ }, { "id": "sign-in-with-id-token", - "title": "Sign in with ID Token", + "title": "Sign in with ID token (native sign-in)", "slug": "auth-signinwithidtoken", "product": "auth", "type": "function" @@ -490,6 +490,13 @@ "product": "auth", "type": "function" }, + { + "id": "sign-in-with-web3", + "title": "Sign in a user through Web3 (Solana, Ethereum)", + "slug": "auth-signinwithweb3", + "product": "auth", + "type": "function" + }, { "id": "get-claims", "title": "Get user claims from verified JWT", diff --git a/apps/docs/spec/enrichments/tsdoc_v2/combined.json b/apps/docs/spec/enrichments/tsdoc_v2/combined.json index f26b9fc972d82..5d649373305a2 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/combined.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/combined.json @@ -10462,7 +10462,7 @@ "fileName": "src/lib/errors.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L33" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L33" } ], "signatures": [ @@ -10563,7 +10563,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -10623,7 +10623,7 @@ "fileName": "src/lib/errors.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L31" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L31" } ], "type": { @@ -10652,7 +10652,7 @@ "fileName": "src/lib/errors.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L30" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L30" } ], "extendedTypes": [ @@ -10681,7 +10681,7 @@ "fileName": "src/lib/errors.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L18" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L18" } ], "signatures": [ @@ -10775,7 +10775,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -10830,7 +10830,7 @@ "fileName": "src/lib/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L14" } ], "type": { @@ -10863,7 +10863,7 @@ "fileName": "src/lib/errors.ts", "line": 4, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L4" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L4" } ], "extendedTypes": [ @@ -10910,7 +10910,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ], "signatures": [ @@ -10965,7 +10965,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 57, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ], "type": { @@ -10984,7 +10984,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ], "type": { @@ -11004,7 +11004,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 40, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ] } @@ -11061,7 +11061,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -11113,7 +11113,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -11143,7 +11143,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -11162,7 +11162,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -11182,7 +11182,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ] } @@ -11202,7 +11202,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -11234,7 +11234,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -11258,7 +11258,7 @@ "fileName": "src/lib/errors.ts", "line": 95, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L95" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L95" } ], "signatures": [ @@ -11288,7 +11288,7 @@ "fileName": "src/lib/errors.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L100" } ], "type": { @@ -11318,7 +11318,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -11337,7 +11337,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -11357,7 +11357,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ] } @@ -11377,7 +11377,7 @@ "fileName": "src/lib/errors.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L98" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L98" } ], "type": { @@ -11397,7 +11397,7 @@ "fileName": "src/lib/errors.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L97" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L97" } ], "type": { @@ -11417,7 +11417,7 @@ "fileName": "src/lib/errors.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L99" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L99" } ], "type": { @@ -11438,7 +11438,7 @@ "fileName": "src/lib/errors.ts", "line": 96, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L96" } ] } @@ -11466,7 +11466,7 @@ "fileName": "src/lib/errors.ts", "line": 88, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L88" } ], "extendedTypes": [ @@ -11495,7 +11495,7 @@ "fileName": "src/lib/errors.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L83" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L83" } ], "signatures": [ @@ -11565,7 +11565,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -11617,7 +11617,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -11649,7 +11649,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -11678,7 +11678,7 @@ "fileName": "src/lib/errors.ts", "line": 82, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L82" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L82" } ], "extendedTypes": [ @@ -11707,7 +11707,7 @@ "fileName": "src/lib/errors.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L162" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L162" } ], "signatures": [ @@ -11777,7 +11777,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -11829,7 +11829,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -11861,7 +11861,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -11890,7 +11890,7 @@ "fileName": "src/lib/errors.ts", "line": 161, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L161" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L161" } ], "extendedTypes": [ @@ -11919,7 +11919,7 @@ "fileName": "src/lib/errors.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L77" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L77" } ], "signatures": [ @@ -11976,7 +11976,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -12028,7 +12028,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -12060,7 +12060,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -12089,7 +12089,7 @@ "fileName": "src/lib/errors.ts", "line": 76, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L76" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L76" } ], "extendedTypes": [ @@ -12118,7 +12118,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ], "signatures": [ @@ -12173,7 +12173,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 57, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ], "type": { @@ -12192,7 +12192,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ], "type": { @@ -12212,7 +12212,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 40, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ] } @@ -12269,7 +12269,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -12321,7 +12321,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -12351,7 +12351,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -12370,7 +12370,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -12390,7 +12390,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ] } @@ -12410,7 +12410,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -12442,7 +12442,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -12466,7 +12466,7 @@ "fileName": "src/lib/errors.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L119" } ], "signatures": [ @@ -12496,7 +12496,7 @@ "fileName": "src/lib/errors.ts", "line": 124, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L124" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L124" } ], "type": { @@ -12526,7 +12526,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -12545,7 +12545,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -12565,7 +12565,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ] } @@ -12585,7 +12585,7 @@ "fileName": "src/lib/errors.ts", "line": 122, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L122" } ], "type": { @@ -12605,7 +12605,7 @@ "fileName": "src/lib/errors.ts", "line": 121, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L121" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L121" } ], "type": { @@ -12625,7 +12625,7 @@ "fileName": "src/lib/errors.ts", "line": 123, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L123" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L123" } ], "type": { @@ -12646,7 +12646,7 @@ "fileName": "src/lib/errors.ts", "line": 120, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L120" } ] } @@ -12674,7 +12674,7 @@ "fileName": "src/lib/errors.ts", "line": 111, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L111" } ], "extendedTypes": [ @@ -12703,7 +12703,7 @@ "fileName": "src/lib/errors.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L130" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L130" } ], "signatures": [ @@ -12784,7 +12784,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -12836,7 +12836,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -12868,7 +12868,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -12897,7 +12897,7 @@ "fileName": "src/lib/errors.ts", "line": 129, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L129" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L129" } ], "extendedTypes": [ @@ -12926,7 +12926,7 @@ "fileName": "src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L67" } ], "signatures": [ @@ -12983,7 +12983,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -13035,7 +13035,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -13067,7 +13067,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -13096,7 +13096,7 @@ "fileName": "src/lib/errors.ts", "line": 66, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L66" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L66" } ], "extendedTypes": [ @@ -13125,7 +13125,7 @@ "fileName": "src/lib/errors.ts", "line": 48, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L48" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L48" } ], "signatures": [ @@ -13206,7 +13206,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -13258,7 +13258,7 @@ "fileName": "src/lib/errors.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L46" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L46" } ], "type": { @@ -13285,7 +13285,7 @@ "fileName": "src/lib/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L14" } ], "type": { @@ -13323,7 +13323,7 @@ "fileName": "src/lib/errors.ts", "line": 45, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L45" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L45" } ], "extendedTypes": [ @@ -13360,7 +13360,7 @@ "fileName": "src/lib/errors.ts", "line": 150, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L150" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L150" } ], "signatures": [ @@ -13455,7 +13455,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -13507,7 +13507,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -13539,7 +13539,7 @@ "fileName": "src/lib/errors.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L148" } ], "type": { @@ -13570,7 +13570,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -13599,7 +13599,7 @@ "fileName": "src/lib/errors.ts", "line": 144, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L144" } ], "extendedTypes": [ @@ -13628,7 +13628,7 @@ "fileName": "src/lib/errors.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L59" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L59" } ], "signatures": [ @@ -13740,7 +13740,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -13792,7 +13792,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -13823,7 +13823,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -13852,7 +13852,7 @@ "fileName": "src/lib/errors.ts", "line": 55, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L55" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L55" } ], "extendedTypes": [ @@ -13923,7 +13923,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L37" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L37" } ], "signatures": [ @@ -13962,7 +13962,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -14060,7 +14060,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "type": { @@ -14076,7 +14076,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "indexSignature": { @@ -14116,7 +14116,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 42, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L42" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L42" } ], "type": { @@ -14136,7 +14136,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 41, "character": 5, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L41" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L41" } ] } @@ -14170,7 +14170,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 29, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L29" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L29" } ], "type": { @@ -14209,7 +14209,7 @@ "fileName": "src/lib/types.ts", "line": 1169, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1169" } ], "signatures": [ @@ -14275,7 +14275,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ], "type": { @@ -14306,7 +14306,7 @@ "fileName": "src/lib/types.ts", "line": 1122, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1122" } ], "type": { @@ -14333,7 +14333,7 @@ "fileName": "src/lib/types.ts", "line": 1125, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1125" } ], "type": { @@ -14353,7 +14353,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ] } @@ -14389,7 +14389,7 @@ "fileName": "src/lib/types.ts", "line": 1159, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1159" } ], "signatures": [ @@ -14438,7 +14438,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ], "type": { @@ -14469,7 +14469,7 @@ "fileName": "src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1146" } ], "type": { @@ -14489,7 +14489,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ] } @@ -14526,7 +14526,7 @@ "fileName": "src/lib/types.ts", "line": 1154, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1154" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1154" } ] } @@ -14543,7 +14543,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 160, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L160" } ], "signatures": [ @@ -14624,7 +14624,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -14653,7 +14653,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -14682,7 +14682,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -14715,7 +14715,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -14760,7 +14760,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -14789,7 +14789,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -14822,7 +14822,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -14863,7 +14863,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -14892,7 +14892,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -14925,7 +14925,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -14986,7 +14986,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -15031,7 +15031,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -15053,7 +15053,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -15106,7 +15106,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L280" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L280" } ], "signatures": [ @@ -15208,7 +15208,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 126, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L126" } ], "signatures": [ @@ -15248,7 +15248,7 @@ "fileName": "src/lib/types.ts", "line": 856, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L856" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L856" } ], "type": { @@ -15265,7 +15265,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ], "type": { @@ -15288,7 +15288,7 @@ "fileName": "src/lib/types.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L815" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L815" } ], "type": { @@ -15309,7 +15309,7 @@ "fileName": "src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L817" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L817" } ], "type": { @@ -15350,7 +15350,7 @@ "fileName": "src/lib/types.ts", "line": 816, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L816" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L816" } ], "type": { @@ -15369,7 +15369,7 @@ "fileName": "src/lib/types.ts", "line": 814, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L814" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L814" } ], "type": { @@ -15389,7 +15389,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 39, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ] } @@ -15406,7 +15406,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ], "type": { @@ -15437,7 +15437,7 @@ "fileName": "src/lib/types.ts", "line": 823, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L823" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L823" } ], "type": { @@ -15458,7 +15458,7 @@ "fileName": "src/lib/types.ts", "line": 824, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L824" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L824" } ], "type": { @@ -15499,7 +15499,7 @@ "fileName": "src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L821" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L821" } ], "type": { @@ -15528,7 +15528,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 46, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ] } @@ -15545,7 +15545,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ], "type": { @@ -15576,7 +15576,7 @@ "fileName": "src/lib/types.ts", "line": 830, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L830" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L830" } ], "type": { @@ -15597,7 +15597,7 @@ "fileName": "src/lib/types.ts", "line": 831, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L831" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L831" } ], "type": { @@ -15629,7 +15629,7 @@ "fileName": "src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L828" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L828" } ], "type": { @@ -15649,7 +15649,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ] } @@ -15666,7 +15666,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ], "type": { @@ -15697,7 +15697,7 @@ "fileName": "src/lib/types.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L837" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L837" } ], "type": { @@ -15724,7 +15724,7 @@ "fileName": "src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L841" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L841" } ], "type": { @@ -15745,7 +15745,7 @@ "fileName": "src/lib/types.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L842" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L842" } ], "type": { @@ -15777,7 +15777,7 @@ "fileName": "src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L835" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L835" } ], "type": { @@ -15806,7 +15806,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ] } @@ -15845,7 +15845,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 229, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L229" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L229" } ], "signatures": [ @@ -15919,7 +15919,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L93" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L93" } ], "signatures": [ @@ -16009,7 +16009,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L97" } ], "type": { @@ -16038,7 +16038,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L100" } ], "type": { @@ -16058,7 +16058,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 95, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L95" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L95" } ] } @@ -16093,7 +16093,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 182, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L182" } ], "signatures": [ @@ -16167,7 +16167,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ], "type": { @@ -16200,7 +16200,7 @@ "fileName": "src/lib/types.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1215" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1215" } ], "type": { @@ -16229,7 +16229,7 @@ "fileName": "src/lib/types.ts", "line": 1217, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1217" } ], "type": { @@ -16249,7 +16249,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ] } @@ -16284,7 +16284,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -16310,7 +16310,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -16329,7 +16329,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -16353,7 +16353,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -16377,7 +16377,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 59, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -16397,7 +16397,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -16422,7 +16422,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -16445,7 +16445,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -16464,7 +16464,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -16481,7 +16481,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 29, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -16502,7 +16502,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -16528,7 +16528,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 62, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L62" } ], "signatures": [ @@ -16623,7 +16623,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -16642,7 +16642,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -16672,7 +16672,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ] } @@ -16696,7 +16696,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 253, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L253" } ], "signatures": [ @@ -16796,7 +16796,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -16825,7 +16825,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -16854,7 +16854,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -16887,7 +16887,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -16932,7 +16932,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -16961,7 +16961,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -16994,7 +16994,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -17035,7 +17035,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -17064,7 +17064,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -17097,7 +17097,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -17158,7 +17158,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -17203,7 +17203,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -17225,7 +17225,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -17287,7 +17287,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 27, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L27" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L27" } ] }, @@ -17309,7 +17309,7 @@ "fileName": "src/GoTrueClient.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L240" } ], "signatures": [ @@ -17349,7 +17349,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ], "type": { @@ -17374,7 +17374,7 @@ "fileName": "src/lib/types.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L70" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L70" } ], "type": { @@ -17395,7 +17395,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "type": { @@ -17418,7 +17418,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "signatures": [ @@ -17481,7 +17481,7 @@ "fileName": "src/lib/types.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L68" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L68" } ], "type": { @@ -17502,7 +17502,7 @@ "fileName": "src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L84" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L84" } ], "type": { @@ -17523,7 +17523,7 @@ "fileName": "src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L86" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L86" } ], "type": { @@ -17541,7 +17541,7 @@ "fileName": "src/lib/types.ts", "line": 601, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L601" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L601" } ], "type": { @@ -17582,7 +17582,7 @@ "fileName": "src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L99" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L99" } ], "type": { @@ -17603,7 +17603,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "type": { @@ -17619,7 +17619,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "indexSignature": { @@ -17670,7 +17670,7 @@ "fileName": "src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L94" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L94" } ], "type": { @@ -17688,7 +17688,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "type": { @@ -17704,7 +17704,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 23, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -17814,7 +17814,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 69, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -17876,7 +17876,7 @@ "fileName": "src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L72" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L72" } ], "type": { @@ -17897,7 +17897,7 @@ "fileName": "src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L74" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L74" } ], "type": { @@ -17915,7 +17915,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -17996,7 +17996,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -18016,7 +18016,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -18039,7 +18039,7 @@ "fileName": "src/lib/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L66" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L66" } ], "type": { @@ -18060,7 +18060,7 @@ "fileName": "src/lib/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L62" } ], "type": { @@ -18130,7 +18130,7 @@ "fileName": "src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L82" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L82" } ], "type": { @@ -18148,7 +18148,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -18229,7 +18229,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -18249,7 +18249,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -18273,7 +18273,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ] } @@ -18309,7 +18309,7 @@ "fileName": "src/GoTrueClient.ts", "line": 167, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L167" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L167" } ], "type": { @@ -18334,7 +18334,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L37" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L37" } ], "signatures": [ @@ -18373,7 +18373,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -18471,7 +18471,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "type": { @@ -18487,7 +18487,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "indexSignature": { @@ -18527,7 +18527,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 42, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L42" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L42" } ], "type": { @@ -18547,7 +18547,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 41, "character": 5, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L41" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L41" } ] } @@ -18581,7 +18581,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 29, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L29" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L29" } ], "type": { @@ -18620,7 +18620,7 @@ "fileName": "src/lib/types.ts", "line": 1169, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1169" } ], "signatures": [ @@ -18686,7 +18686,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ], "type": { @@ -18717,7 +18717,7 @@ "fileName": "src/lib/types.ts", "line": 1122, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1122" } ], "type": { @@ -18744,7 +18744,7 @@ "fileName": "src/lib/types.ts", "line": 1125, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1125" } ], "type": { @@ -18764,7 +18764,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ] } @@ -18800,7 +18800,7 @@ "fileName": "src/lib/types.ts", "line": 1159, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1159" } ], "signatures": [ @@ -18849,7 +18849,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ], "type": { @@ -18880,7 +18880,7 @@ "fileName": "src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1146" } ], "type": { @@ -18900,7 +18900,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ] } @@ -18937,7 +18937,7 @@ "fileName": "src/lib/types.ts", "line": 1154, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1154" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1154" } ] } @@ -18954,7 +18954,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 160, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L160" } ], "signatures": [ @@ -19035,7 +19035,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -19064,7 +19064,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -19093,7 +19093,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -19126,7 +19126,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -19171,7 +19171,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -19200,7 +19200,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -19233,7 +19233,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -19274,7 +19274,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -19303,7 +19303,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -19336,7 +19336,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -19397,7 +19397,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -19442,7 +19442,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -19464,7 +19464,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -19517,7 +19517,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L280" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L280" } ], "signatures": [ @@ -19619,7 +19619,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 126, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L126" } ], "signatures": [ @@ -19659,7 +19659,7 @@ "fileName": "src/lib/types.ts", "line": 856, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L856" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L856" } ], "type": { @@ -19676,7 +19676,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ], "type": { @@ -19699,7 +19699,7 @@ "fileName": "src/lib/types.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L815" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L815" } ], "type": { @@ -19720,7 +19720,7 @@ "fileName": "src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L817" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L817" } ], "type": { @@ -19761,7 +19761,7 @@ "fileName": "src/lib/types.ts", "line": 816, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L816" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L816" } ], "type": { @@ -19780,7 +19780,7 @@ "fileName": "src/lib/types.ts", "line": 814, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L814" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L814" } ], "type": { @@ -19800,7 +19800,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 39, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ] } @@ -19817,7 +19817,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ], "type": { @@ -19848,7 +19848,7 @@ "fileName": "src/lib/types.ts", "line": 823, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L823" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L823" } ], "type": { @@ -19869,7 +19869,7 @@ "fileName": "src/lib/types.ts", "line": 824, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L824" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L824" } ], "type": { @@ -19910,7 +19910,7 @@ "fileName": "src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L821" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L821" } ], "type": { @@ -19939,7 +19939,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 46, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ] } @@ -19956,7 +19956,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ], "type": { @@ -19987,7 +19987,7 @@ "fileName": "src/lib/types.ts", "line": 830, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L830" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L830" } ], "type": { @@ -20008,7 +20008,7 @@ "fileName": "src/lib/types.ts", "line": 831, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L831" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L831" } ], "type": { @@ -20040,7 +20040,7 @@ "fileName": "src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L828" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L828" } ], "type": { @@ -20060,7 +20060,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ] } @@ -20077,7 +20077,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ], "type": { @@ -20108,7 +20108,7 @@ "fileName": "src/lib/types.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L837" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L837" } ], "type": { @@ -20135,7 +20135,7 @@ "fileName": "src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L841" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L841" } ], "type": { @@ -20156,7 +20156,7 @@ "fileName": "src/lib/types.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L842" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L842" } ], "type": { @@ -20188,7 +20188,7 @@ "fileName": "src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L835" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L835" } ], "type": { @@ -20217,7 +20217,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ] } @@ -20256,7 +20256,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 229, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L229" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L229" } ], "signatures": [ @@ -20330,7 +20330,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L93" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L93" } ], "signatures": [ @@ -20420,7 +20420,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L97" } ], "type": { @@ -20449,7 +20449,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L100" } ], "type": { @@ -20469,7 +20469,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 95, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L95" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L95" } ] } @@ -20504,7 +20504,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 182, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L182" } ], "signatures": [ @@ -20578,7 +20578,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ], "type": { @@ -20611,7 +20611,7 @@ "fileName": "src/lib/types.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1215" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1215" } ], "type": { @@ -20640,7 +20640,7 @@ "fileName": "src/lib/types.ts", "line": 1217, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1217" } ], "type": { @@ -20660,7 +20660,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ] } @@ -20695,7 +20695,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -20721,7 +20721,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -20740,7 +20740,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -20764,7 +20764,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -20788,7 +20788,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 59, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -20808,7 +20808,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -20833,7 +20833,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -20856,7 +20856,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -20875,7 +20875,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -20892,7 +20892,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 29, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -20913,7 +20913,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -20939,7 +20939,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 62, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L62" } ], "signatures": [ @@ -21034,7 +21034,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -21053,7 +21053,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -21083,7 +21083,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ] } @@ -21107,7 +21107,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 253, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L253" } ], "signatures": [ @@ -21207,7 +21207,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -21236,7 +21236,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -21265,7 +21265,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -21298,7 +21298,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -21343,7 +21343,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -21372,7 +21372,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -21405,7 +21405,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -21446,7 +21446,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -21475,7 +21475,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -21508,7 +21508,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -21569,7 +21569,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -21614,7 +21614,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -21636,7 +21636,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -21698,7 +21698,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 27, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L27" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L27" } ] } @@ -21723,7 +21723,7 @@ "fileName": "src/GoTrueClient.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L171" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L171" } ], "type": { @@ -21756,7 +21756,7 @@ "fileName": "src/lib/types.ts", "line": 1058, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1058" } ], "signatures": [ @@ -21796,7 +21796,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ], "type": { @@ -21829,7 +21829,7 @@ "fileName": "src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L930" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L930" } ], "type": { @@ -21865,7 +21865,7 @@ "fileName": "src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L928" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L928" } ], "type": { @@ -21885,7 +21885,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ] } @@ -21921,7 +21921,7 @@ "fileName": "src/lib/types.ts", "line": 1076, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1076" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1076" } ], "signatures": [ @@ -21961,7 +21961,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ], "type": { @@ -21992,7 +21992,7 @@ "fileName": "src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L937" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L937" } ], "type": { @@ -22019,7 +22019,7 @@ "fileName": "src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L935" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L935" } ], "type": { @@ -22039,7 +22039,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ] } @@ -22075,19 +22075,19 @@ "fileName": "src/lib/types.ts", "line": 1050, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1050" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1050" }, { "fileName": "src/lib/types.ts", "line": 1051, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1051" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1051" }, { "fileName": "src/lib/types.ts", "line": 1052, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1052" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1052" } ], "signatures": [ @@ -22143,7 +22143,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -22174,7 +22174,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -22203,7 +22203,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -22232,7 +22232,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -22252,7 +22252,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -22303,7 +22303,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -22334,7 +22334,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -22363,7 +22363,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -22390,7 +22390,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -22410,7 +22410,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -22461,7 +22461,7 @@ "fileName": "src/lib/types.ts", "line": 908, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L908" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L908" } ], "type": { @@ -22478,7 +22478,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -22509,7 +22509,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -22538,7 +22538,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -22567,7 +22567,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -22587,7 +22587,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -22604,7 +22604,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -22635,7 +22635,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -22664,7 +22664,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -22691,7 +22691,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -22711,7 +22711,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -22750,7 +22750,7 @@ "fileName": "src/lib/types.ts", "line": 1101, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1101" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1101" } ], "signatures": [ @@ -22819,7 +22819,7 @@ "fileName": "src/lib/types.ts", "line": 1086, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1086" } ], "signatures": [ @@ -22913,7 +22913,7 @@ "fileName": "src/lib/types.ts", "line": 1070, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1070" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1070" } ], "signatures": [ @@ -22969,7 +22969,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ], "type": { @@ -23000,7 +23000,7 @@ "fileName": "src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L912" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L912" } ], "type": { @@ -23020,7 +23020,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 32, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ] } @@ -23056,7 +23056,7 @@ "fileName": "src/lib/types.ts", "line": 1064, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1064" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1064" } ], "signatures": [ @@ -23096,7 +23096,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ], "type": { @@ -23127,7 +23127,7 @@ "fileName": "src/lib/types.ts", "line": 920, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L920" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L920" } ], "type": { @@ -23154,7 +23154,7 @@ "fileName": "src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L923" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L923" } ], "type": { @@ -23181,7 +23181,7 @@ "fileName": "src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L917" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L917" } ], "type": { @@ -23201,7 +23201,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 30, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ] } @@ -23238,7 +23238,7 @@ "fileName": "src/lib/types.ts", "line": 1039, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1039" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1039" } ] } @@ -23255,7 +23255,7 @@ "fileName": "src/GoTrueClient.ts", "line": 651, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L651" } ], "signatures": [ @@ -23313,7 +23313,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3181, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3181" } ], "signatures": [ @@ -23451,7 +23451,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3190, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3190" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3190" } ], "type": { @@ -23480,7 +23480,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3193, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3193" } ], "type": { @@ -23503,7 +23503,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3193, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3193" } ], "type": { @@ -23527,7 +23527,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3193, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3193" } ] } @@ -23560,7 +23560,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3187, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3187" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3187" } ], "type": { @@ -23584,7 +23584,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3183, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3183" } ] } @@ -23618,7 +23618,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -23641,7 +23641,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -23661,7 +23661,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 36, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -23681,7 +23681,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 55, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -23703,7 +23703,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ] } @@ -23720,7 +23720,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3198, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3198" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3198" } ], "type": { @@ -23740,7 +23740,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3196, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3196" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3196" } ] } @@ -23765,7 +23765,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3200, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3200" } ], "type": { @@ -23784,7 +23784,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3200, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3200" } ], "type": { @@ -23805,7 +23805,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3200, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3200" } ] } @@ -23830,7 +23830,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3201, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3201" } ], "type": { @@ -23849,7 +23849,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3201, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3201" } ], "type": { @@ -23869,7 +23869,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3201, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3201" } ] } @@ -23895,7 +23895,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1355, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1355" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1355" } ], "signatures": [ @@ -23949,7 +23949,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1448, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1448" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1448" } ], "type": { @@ -23972,7 +23972,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1449, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1449" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1449" } ], "type": { @@ -23993,7 +23993,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1448, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1448" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1448" } ] } @@ -24010,7 +24010,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1451, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1451" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1451" } ], "type": { @@ -24030,7 +24030,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1447, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1447" } ] } @@ -24055,7 +24055,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1454, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1454" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1454" } ], "type": { @@ -24078,7 +24078,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1455, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1455" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1455" } ], "type": { @@ -24098,7 +24098,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1454, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1454" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1454" } ] } @@ -24115,7 +24115,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1457, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1457" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1457" } ], "type": { @@ -24136,7 +24136,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1453, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1453" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1453" } ] } @@ -24161,7 +24161,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1460, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1460" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1460" } ], "type": { @@ -24184,7 +24184,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1461, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1461" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1461" } ], "type": { @@ -24204,7 +24204,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1460, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1460" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1460" } ] } @@ -24221,7 +24221,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1463, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1463" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1463" } ], "type": { @@ -24241,7 +24241,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1459, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1459" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1459" } ] } @@ -24267,7 +24267,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1599, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1599" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1599" } ], "signatures": [ @@ -24335,7 +24335,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2157, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2157" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2157" } ], "signatures": [ @@ -24379,7 +24379,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2159, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2159" } ], "type": { @@ -24402,7 +24402,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2160, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2160" } ], "type": { @@ -24426,7 +24426,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2159, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2159" } ] } @@ -24443,7 +24443,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2162, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2162" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2162" } ], "type": { @@ -24463,7 +24463,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2158, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2158" } ] } @@ -24488,7 +24488,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2164, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2164" } ], "type": { @@ -24507,7 +24507,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2164, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2164" } ], "type": { @@ -24528,7 +24528,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2164, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2164" } ] } @@ -24554,7 +24554,7 @@ "fileName": "src/GoTrueClient.ts", "line": 353, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L353" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L353" } ], "signatures": [ @@ -24599,7 +24599,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2181, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2181" } ], "signatures": [ @@ -24639,7 +24639,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ], "type": { @@ -24664,7 +24664,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ], "type": { @@ -24697,7 +24697,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "type": { @@ -24713,7 +24713,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "indexSignature": { @@ -24763,7 +24763,7 @@ "fileName": "src/lib/types.ts", "line": 607, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L607" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L607" } ], "type": { @@ -24792,7 +24792,7 @@ "fileName": "src/lib/types.ts", "line": 609, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L609" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L609" } ], "type": { @@ -24821,7 +24821,7 @@ "fileName": "src/lib/types.ts", "line": 613, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L613" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L613" } ], "type": { @@ -24841,7 +24841,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ] } @@ -24866,7 +24866,7 @@ "fileName": "src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L604" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L604" } ], "type": { @@ -24892,7 +24892,7 @@ "fileName": "src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L8" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L8" } ], "type": { @@ -25003,7 +25003,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ] } @@ -25039,7 +25039,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2055, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2055" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2055" } ], "signatures": [ @@ -25085,7 +25085,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2056, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2056" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2056" } ], "signatures": [ @@ -25177,7 +25177,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2058, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2058" } ], "type": { @@ -25200,7 +25200,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2058, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2058" } ], "type": { @@ -25225,7 +25225,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "type": { @@ -25241,7 +25241,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "signatures": [ @@ -25322,7 +25322,7 @@ "fileName": "src/lib/types.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L479" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L479" } ], "type": { @@ -25341,7 +25341,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "type": { @@ -25357,7 +25357,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "signatures": [ @@ -25396,7 +25396,7 @@ "fileName": "src/lib/types.ts", "line": 475, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L475" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L475" } ] } @@ -25414,7 +25414,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2058, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2058" } ] } @@ -25432,7 +25432,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2057, "character": 5, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2057" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2057" } ] } @@ -25451,7 +25451,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1271, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1271" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1271" } ], "signatures": [ @@ -25496,7 +25496,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1804, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1804" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1804" } ], "signatures": [ @@ -25551,7 +25551,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1804, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1804" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1804" } ], "type": { @@ -25571,7 +25571,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1804, "character": 40, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1804" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1804" } ] } @@ -25605,7 +25605,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1306, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1306" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1306" } ], "signatures": [ @@ -25645,7 +25645,7 @@ "fileName": "src/lib/types.ts", "line": 769, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L769" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L769" } ], "type": { @@ -25671,7 +25671,7 @@ "fileName": "src/lib/types.ts", "line": 772, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L772" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L772" } ], "type": { @@ -25692,7 +25692,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ], "type": { @@ -25725,7 +25725,7 @@ "fileName": "src/lib/types.ts", "line": 777, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L777" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L777" } ], "type": { @@ -25754,7 +25754,7 @@ "fileName": "src/lib/types.ts", "line": 775, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L775" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L775" } ], "type": { @@ -25774,7 +25774,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ] } @@ -25791,7 +25791,7 @@ "fileName": "src/lib/types.ts", "line": 771, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L771" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L771" } ], "type": { @@ -25833,7 +25833,7 @@ "fileName": "src/lib/types.ts", "line": 770, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L770" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L770" } ] } @@ -25860,7 +25860,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ], "type": { @@ -25893,7 +25893,7 @@ "fileName": "src/lib/types.ts", "line": 785, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L785" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L785" } ], "type": { @@ -25913,7 +25913,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ] } @@ -25930,7 +25930,7 @@ "fileName": "src/lib/types.ts", "line": 782, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L782" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L782" } ], "type": { @@ -25949,7 +25949,7 @@ "fileName": "src/lib/types.ts", "line": 781, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L781" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L781" } ], "type": { @@ -25991,7 +25991,7 @@ "fileName": "src/lib/types.ts", "line": 780, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L780" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L780" } ] } @@ -26029,7 +26029,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2111, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2111" } ], "signatures": [ @@ -26103,7 +26103,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2115, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2115" } ], "type": { @@ -26132,7 +26132,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2114, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2114" } ], "type": { @@ -26152,7 +26152,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2113, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2113" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2113" } ] } @@ -26186,7 +26186,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2119, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2119" } ], "type": { @@ -26211,7 +26211,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2120, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2120" } ], "type": { @@ -26231,7 +26231,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2118, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2118" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2118" } ] } @@ -26256,7 +26256,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2122, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2122" } ], "type": { @@ -26275,7 +26275,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2122, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2122" } ], "type": { @@ -26296,7 +26296,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2122, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2122" } ] } @@ -26322,7 +26322,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1729, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1729" } ], "signatures": [ @@ -26375,7 +26375,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1730, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1730" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1730" } ], "type": { @@ -26394,7 +26394,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1731, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1731" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1731" } ], "type": { @@ -26414,7 +26414,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1729, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1729" } ] } @@ -26448,7 +26448,7 @@ "fileName": "src/GoTrueClient.ts", "line": 456, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L456" } ], "signatures": [ @@ -26501,7 +26501,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ], "type": { @@ -26526,7 +26526,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ], "type": { @@ -26559,7 +26559,7 @@ "fileName": "src/lib/types.ts", "line": 499, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L499" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L499" } ], "type": { @@ -26604,7 +26604,7 @@ "fileName": "src/lib/types.ts", "line": 497, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L497" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L497" } ], "type": { @@ -26624,7 +26624,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ] } @@ -26642,7 +26642,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ] } @@ -26678,7 +26678,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1064, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1064" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1064" } ], "signatures": [ @@ -26718,7 +26718,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ], "type": { @@ -26759,7 +26759,7 @@ "fileName": "src/lib/types.ts", "line": 623, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L623" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L623" } ], "type": { @@ -26796,7 +26796,7 @@ "fileName": "src/lib/types.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L625" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L625" } ], "type": { @@ -26817,7 +26817,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ], "type": { @@ -26850,7 +26850,7 @@ "fileName": "src/lib/types.ts", "line": 628, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L628" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L628" } ], "type": { @@ -26870,7 +26870,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ] } @@ -26951,7 +26951,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ], "type": { @@ -26997,7 +26997,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 76, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ] } @@ -27058,7 +27058,7 @@ "fileName": "src/lib/types.ts", "line": 621, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L621" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L621" } ], "type": { @@ -27078,7 +27078,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ] } @@ -27114,7 +27114,7 @@ "fileName": "src/GoTrueClient.ts", "line": 639, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L639" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L639" } ], "signatures": [ @@ -27154,7 +27154,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ], "type": { @@ -27179,7 +27179,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ], "type": { @@ -27212,7 +27212,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "type": { @@ -27228,7 +27228,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "indexSignature": { @@ -27278,7 +27278,7 @@ "fileName": "src/lib/types.ts", "line": 607, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L607" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L607" } ], "type": { @@ -27307,7 +27307,7 @@ "fileName": "src/lib/types.ts", "line": 609, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L609" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L609" } ], "type": { @@ -27336,7 +27336,7 @@ "fileName": "src/lib/types.ts", "line": 613, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L613" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L613" } ], "type": { @@ -27356,7 +27356,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ] } @@ -27381,7 +27381,7 @@ "fileName": "src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L604" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L604" } ], "type": { @@ -27407,7 +27407,7 @@ "fileName": "src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L8" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L8" } ], "type": { @@ -27518,7 +27518,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ] } @@ -27554,7 +27554,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1119, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1119" } ], "signatures": [ @@ -27610,7 +27610,7 @@ "fileName": "src/lib/types.ts", "line": 563, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L563" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L563" } ], "type": { @@ -27644,7 +27644,7 @@ "fileName": "src/lib/types.ts", "line": 566, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L566" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L566" } ], "type": { @@ -27665,7 +27665,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ], "type": { @@ -27698,7 +27698,7 @@ "fileName": "src/lib/types.ts", "line": 579, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L579" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L579" } ], "type": { @@ -27743,7 +27743,7 @@ "fileName": "src/lib/types.ts", "line": 577, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L577" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L577" } ], "type": { @@ -27772,7 +27772,7 @@ "fileName": "src/lib/types.ts", "line": 569, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L569" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L569" } ], "type": { @@ -27801,7 +27801,7 @@ "fileName": "src/lib/types.ts", "line": 571, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L571" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L571" } ], "type": { @@ -27821,7 +27821,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ] } @@ -27839,7 +27839,7 @@ "fileName": "src/lib/types.ts", "line": 564, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L564" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L564" } ] } @@ -27866,7 +27866,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ], "type": { @@ -27899,7 +27899,7 @@ "fileName": "src/lib/types.ts", "line": 595, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L595" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L595" } ], "type": { @@ -27928,7 +27928,7 @@ "fileName": "src/lib/types.ts", "line": 597, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L597" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L597" } ], "type": { @@ -27982,7 +27982,7 @@ "fileName": "src/lib/types.ts", "line": 593, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L593" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L593" } ], "type": { @@ -28011,7 +28011,7 @@ "fileName": "src/lib/types.ts", "line": 587, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L587" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L587" } ], "type": { @@ -28031,7 +28031,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ] } @@ -28056,7 +28056,7 @@ "fileName": "src/lib/types.ts", "line": 584, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L584" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L584" } ], "type": { @@ -28076,7 +28076,7 @@ "fileName": "src/lib/types.ts", "line": 582, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L582" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L582" } ] } @@ -28114,7 +28114,7 @@ "fileName": "src/GoTrueClient.ts", "line": 576, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L576" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L576" } ], "signatures": [ @@ -28154,7 +28154,7 @@ "fileName": "src/lib/types.ts", "line": 541, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L541" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L541" } ], "type": { @@ -28188,7 +28188,7 @@ "fileName": "src/lib/types.ts", "line": 544, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L544" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L544" } ], "type": { @@ -28209,7 +28209,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ], "type": { @@ -28242,7 +28242,7 @@ "fileName": "src/lib/types.ts", "line": 549, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L549" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L549" } ], "type": { @@ -28262,7 +28262,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ] } @@ -28287,7 +28287,7 @@ "fileName": "src/lib/types.ts", "line": 546, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L546" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L546" } ], "type": { @@ -28307,7 +28307,7 @@ "fileName": "src/lib/types.ts", "line": 542, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L542" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L542" } ] } @@ -28334,7 +28334,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ], "type": { @@ -28367,7 +28367,7 @@ "fileName": "src/lib/types.ts", "line": 559, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L559" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L559" } ], "type": { @@ -28387,7 +28387,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ] } @@ -28412,7 +28412,7 @@ "fileName": "src/lib/types.ts", "line": 556, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L556" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L556" } ], "type": { @@ -28439,7 +28439,7 @@ "fileName": "src/lib/types.ts", "line": 554, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L554" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L554" } ], "type": { @@ -28459,7 +28459,7 @@ "fileName": "src/lib/types.ts", "line": 552, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L552" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L552" } ] } @@ -28497,7 +28497,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1233, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1233" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1233" } ], "signatures": [ @@ -28537,7 +28537,7 @@ "fileName": "src/lib/types.ts", "line": 789, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L789" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L789" } ], "type": { @@ -28565,7 +28565,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ], "type": { @@ -28598,7 +28598,7 @@ "fileName": "src/lib/types.ts", "line": 798, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L798" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L798" } ], "type": { @@ -28627,7 +28627,7 @@ "fileName": "src/lib/types.ts", "line": 796, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L796" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L796" } ], "type": { @@ -28647,7 +28647,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ] } @@ -28672,7 +28672,7 @@ "fileName": "src/lib/types.ts", "line": 792, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L792" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L792" } ], "type": { @@ -28692,7 +28692,7 @@ "fileName": "src/lib/types.ts", "line": 790, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L790" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L790" } ] } @@ -28725,7 +28725,7 @@ "fileName": "src/lib/types.ts", "line": 803, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L803" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L803" } ], "type": { @@ -28746,7 +28746,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ], "type": { @@ -28779,7 +28779,7 @@ "fileName": "src/lib/types.ts", "line": 809, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L809" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L809" } ], "type": { @@ -28808,7 +28808,7 @@ "fileName": "src/lib/types.ts", "line": 807, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L807" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L807" } ], "type": { @@ -28828,7 +28828,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ] } @@ -28846,7 +28846,7 @@ "fileName": "src/lib/types.ts", "line": 801, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L801" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L801" } ] } @@ -28884,7 +28884,7 @@ "fileName": "src/GoTrueClient.ts", "line": 666, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L666" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L666" } ], "signatures": [ @@ -28935,7 +28935,7 @@ "fileName": "src/lib/types.ts", "line": 717, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L717" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L717" } ], "type": { @@ -28952,7 +28952,7 @@ "fileName": "src/lib/types.ts", "line": 641, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L641" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L641" } ], "type": { @@ -28978,7 +28978,7 @@ "fileName": "src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L643" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L643" } ], "type": { @@ -28999,7 +28999,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ], "type": { @@ -29032,7 +29032,7 @@ "fileName": "src/lib/types.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L656" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L656" } ], "type": { @@ -29053,7 +29053,7 @@ "fileName": "src/lib/types.ts", "line": 658, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L658" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L658" } ], "type": { @@ -29123,7 +29123,7 @@ "fileName": "src/lib/types.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L653" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L653" } ], "type": { @@ -29143,7 +29143,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ] } @@ -29170,7 +29170,7 @@ "fileName": "src/lib/types.ts", "line": 649, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L649" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L649" } ], "type": { @@ -29207,7 +29207,7 @@ "fileName": "src/lib/types.ts", "line": 646, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L646" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L646" } ], "type": { @@ -29228,7 +29228,7 @@ "fileName": "src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L642" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L642" } ] } @@ -29253,7 +29253,7 @@ "fileName": "src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L664" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L664" } ], "type": { @@ -29304,7 +29304,7 @@ "fileName": "src/lib/types.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L667" } ], "type": { @@ -29325,7 +29325,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ], "type": { @@ -29358,7 +29358,7 @@ "fileName": "src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L674" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L674" } ], "type": { @@ -29378,7 +29378,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ] } @@ -29403,7 +29403,7 @@ "fileName": "src/lib/types.ts", "line": 670, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L670" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L670" } ], "type": { @@ -29425,7 +29425,7 @@ "fileName": "src/lib/types.ts", "line": 663, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L663" } ] } @@ -29444,7 +29444,7 @@ "fileName": "src/lib/types.ts", "line": 680, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L680" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L680" } ], "type": { @@ -29470,7 +29470,7 @@ "fileName": "src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L682" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L682" } ], "type": { @@ -29491,7 +29491,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ], "type": { @@ -29524,7 +29524,7 @@ "fileName": "src/lib/types.ts", "line": 695, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L695" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L695" } ], "type": { @@ -29545,7 +29545,7 @@ "fileName": "src/lib/types.ts", "line": 697, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L697" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L697" } ], "type": { @@ -29611,7 +29611,7 @@ "fileName": "src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L692" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L692" } ], "type": { @@ -29631,7 +29631,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ] } @@ -29649,7 +29649,7 @@ "summary": [ { "kind": "text", - "text": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" + "text": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" } ] }, @@ -29658,7 +29658,7 @@ "fileName": "src/lib/types.ts", "line": 688, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L688" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L688" } ], "type": { @@ -29682,7 +29682,7 @@ }, { "kind": "code", - "text": "`window.solana`" + "text": "`window.ethereum`" }, { "kind": "text", @@ -29695,7 +29695,7 @@ "fileName": "src/lib/types.ts", "line": 685, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L685" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L685" } ], "type": { @@ -29716,7 +29716,7 @@ "fileName": "src/lib/types.ts", "line": 681, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L681" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L681" } ] } @@ -29741,7 +29741,7 @@ "fileName": "src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L703" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L703" } ], "type": { @@ -29792,7 +29792,7 @@ "fileName": "src/lib/types.ts", "line": 706, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L706" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L706" } ], "type": { @@ -29813,7 +29813,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ], "type": { @@ -29846,7 +29846,7 @@ "fileName": "src/lib/types.ts", "line": 713, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L713" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L713" } ], "type": { @@ -29866,7 +29866,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ] } @@ -29882,7 +29882,7 @@ "summary": [ { "kind": "text", - "text": "Ed25519 signature of the message." + "text": "Ethereum curve (secp256k1) signature of the message." } ] }, @@ -29891,7 +29891,7 @@ "fileName": "src/lib/types.ts", "line": 709, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L709" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L709" } ], "type": { @@ -29911,7 +29911,7 @@ "fileName": "src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L702" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L702" } ] } @@ -29951,7 +29951,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ], "type": { @@ -29974,7 +29974,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ], "type": { @@ -29994,7 +29994,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ], "type": { @@ -30015,7 +30015,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ] } @@ -30032,7 +30032,7 @@ "fileName": "src/GoTrueClient.ts", "line": 669, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L669" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L669" } ], "type": { @@ -30052,7 +30052,7 @@ "fileName": "src/GoTrueClient.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L667" } ] } @@ -30077,7 +30077,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -30100,7 +30100,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -30119,7 +30119,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -30139,7 +30139,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ] } @@ -30156,7 +30156,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -30177,7 +30177,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ] } @@ -30203,7 +30203,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2011, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2011" } ], "signatures": [ @@ -30283,7 +30283,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ], "type": { @@ -30316,7 +30316,7 @@ "fileName": "src/lib/types.ts", "line": 1231, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1231" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1231" } ], "type": { @@ -30349,7 +30349,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ] } @@ -30382,7 +30382,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2011, "character": 67, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2011" } ], "type": { @@ -30412,7 +30412,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2011, "character": 65, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2011" } ] } @@ -30436,7 +30436,7 @@ "fileName": "src/GoTrueClient.ts", "line": 499, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L499" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L499" } ], "signatures": [ @@ -30496,7 +30496,7 @@ "fileName": "src/lib/types.ts", "line": 503, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L503" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L503" } ], "type": { @@ -30530,7 +30530,7 @@ "fileName": "src/lib/types.ts", "line": 506, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L506" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L506" } ], "type": { @@ -30551,7 +30551,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ], "type": { @@ -30584,7 +30584,7 @@ "fileName": "src/lib/types.ts", "line": 519, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L519" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L519" } ], "type": { @@ -30629,7 +30629,7 @@ "fileName": "src/lib/types.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L517" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L517" } ], "type": { @@ -30658,7 +30658,7 @@ "fileName": "src/lib/types.ts", "line": 511, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L511" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L511" } ], "type": { @@ -30678,7 +30678,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ] } @@ -30703,7 +30703,7 @@ "fileName": "src/lib/types.ts", "line": 508, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L508" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L508" } ], "type": { @@ -30723,7 +30723,7 @@ "fileName": "src/lib/types.ts", "line": 504, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L504" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L504" } ] } @@ -30750,7 +30750,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ], "type": { @@ -30783,7 +30783,7 @@ "fileName": "src/lib/types.ts", "line": 535, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L535" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L535" } ], "type": { @@ -30812,7 +30812,7 @@ "fileName": "src/lib/types.ts", "line": 537, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L537" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L537" } ], "type": { @@ -30866,7 +30866,7 @@ "fileName": "src/lib/types.ts", "line": 533, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L533" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L533" } ], "type": { @@ -30886,7 +30886,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ] } @@ -30911,7 +30911,7 @@ "fileName": "src/lib/types.ts", "line": 526, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L526" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L526" } ], "type": { @@ -30938,7 +30938,7 @@ "fileName": "src/lib/types.ts", "line": 524, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L524" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L524" } ], "type": { @@ -30958,7 +30958,7 @@ "fileName": "src/lib/types.ts", "line": 522, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L522" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L522" } ] } @@ -30996,7 +30996,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2698, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2698" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2698" } ], "signatures": [ @@ -31054,7 +31054,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2711, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2711" } ], "signatures": [ @@ -31108,7 +31108,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2217, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2217" } ], "signatures": [ @@ -31157,7 +31157,7 @@ "fileName": "src/lib/types.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L300" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L300" } ], "type": { @@ -31176,7 +31176,7 @@ "fileName": "src/lib/types.ts", "line": 293, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L293" } ], "type": { @@ -31197,7 +31197,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "type": { @@ -31213,7 +31213,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "indexSignature": { @@ -31253,7 +31253,7 @@ "fileName": "src/lib/types.ts", "line": 298, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L298" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L298" } ], "type": { @@ -31274,7 +31274,7 @@ "fileName": "src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L301" } ], "type": { @@ -31293,7 +31293,7 @@ "fileName": "src/lib/types.ts", "line": 299, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L299" } ], "type": { @@ -31314,7 +31314,7 @@ "fileName": "src/lib/types.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L302" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L302" } ], "type": { @@ -31333,7 +31333,7 @@ "fileName": "src/lib/types.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L294" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L294" } ], "type": { @@ -31353,7 +31353,7 @@ "fileName": "src/lib/types.ts", "line": 292, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L292" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L292" } ] } @@ -31386,7 +31386,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2219, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2219" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2219" } ], "type": { @@ -31411,7 +31411,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2220, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2220" } ], "type": { @@ -31431,7 +31431,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2218, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2218" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2218" } ] } @@ -31456,7 +31456,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2222, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2222" } ], "type": { @@ -31475,7 +31475,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2222, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2222" } ], "type": { @@ -31496,7 +31496,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2222, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2222" } ] } @@ -31522,7 +31522,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1660, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1660" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1660" } ], "signatures": [ @@ -31595,7 +31595,7 @@ "fileName": "src/lib/types.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L397" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L397" } ], "type": { @@ -31624,7 +31624,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -31653,7 +31653,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -31682,7 +31682,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -31711,7 +31711,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -31731,7 +31731,7 @@ "fileName": "src/lib/types.ts", "line": 368, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L368" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L368" } ] } @@ -31765,7 +31765,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1663, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1663" } ], "type": { @@ -31785,7 +31785,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1662, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1662" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1662" } ] } @@ -31820,7 +31820,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1172, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1172" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1172" } ], "signatures": [ @@ -31860,7 +31860,7 @@ "fileName": "src/lib/types.ts", "line": 719, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L719" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L719" } ], "type": { @@ -31886,7 +31886,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ], "type": { @@ -31925,7 +31925,7 @@ "fileName": "src/lib/types.ts", "line": 736, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L736" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L736" } ], "type": { @@ -31954,7 +31954,7 @@ "fileName": "src/lib/types.ts", "line": 729, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L729" } ], "type": { @@ -31974,7 +31974,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ] } @@ -31999,7 +31999,7 @@ "fileName": "src/lib/types.ts", "line": 722, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L722" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L722" } ], "type": { @@ -32026,7 +32026,7 @@ "fileName": "src/lib/types.ts", "line": 724, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L724" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L724" } ], "type": { @@ -32053,7 +32053,7 @@ "fileName": "src/lib/types.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L726" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L726" } ], "type": { @@ -32071,7 +32071,7 @@ "fileName": "src/lib/types.ts", "line": 766, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L766" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L766" } ], "type": { @@ -32102,7 +32102,7 @@ "fileName": "src/lib/types.ts", "line": 720, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L720" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L720" } ] }, @@ -32132,7 +32132,7 @@ "fileName": "src/lib/types.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L741" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L741" } ], "type": { @@ -32153,7 +32153,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ], "type": { @@ -32192,7 +32192,7 @@ "fileName": "src/lib/types.ts", "line": 754, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L754" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L754" } ], "type": { @@ -32221,7 +32221,7 @@ "fileName": "src/lib/types.ts", "line": 748, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L748" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L748" } ], "type": { @@ -32241,7 +32241,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ] } @@ -32266,7 +32266,7 @@ "fileName": "src/lib/types.ts", "line": 743, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L743" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L743" } ], "type": { @@ -32293,7 +32293,7 @@ "fileName": "src/lib/types.ts", "line": 745, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L745" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L745" } ], "type": { @@ -32311,7 +32311,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -32358,7 +32358,7 @@ "fileName": "src/lib/types.ts", "line": 739, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L739" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L739" } ] }, @@ -32388,7 +32388,7 @@ "fileName": "src/lib/types.ts", "line": 760, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L760" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L760" } ], "type": { @@ -32415,7 +32415,7 @@ "fileName": "src/lib/types.ts", "line": 763, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L763" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L763" } ], "type": { @@ -32433,7 +32433,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -32480,7 +32480,7 @@ "fileName": "src/lib/types.ts", "line": 758, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L758" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L758" } ] } @@ -32529,7 +32529,7 @@ "fileName": "src/GoTrueClient.ts", "line": 158, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L158" } ] }, @@ -32551,7 +32551,7 @@ "fileName": "src/lib/locks.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L26" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L26" } ], "signatures": [ @@ -32604,7 +32604,7 @@ "fileName": "src/lib/locks.ts", "line": 24, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L24" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L24" } ], "type": { @@ -32633,7 +32633,7 @@ "fileName": "src/lib/locks.ts", "line": 31, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L31" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L31" } ], "extendedTypes": [ @@ -32694,7 +32694,7 @@ "fileName": "src/lib/types.ts", "line": 283, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L283" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L283" } ], "type": { @@ -32757,7 +32757,7 @@ "fileName": "src/lib/types.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L289" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L289" } ], "type": { @@ -32777,7 +32777,7 @@ "fileName": "src/lib/types.ts", "line": 281, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L281" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L281" } ] }, @@ -32825,7 +32825,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -32854,7 +32854,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -32883,7 +32883,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -32916,7 +32916,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -32961,7 +32961,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -32990,7 +32990,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -33023,7 +33023,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -33064,7 +33064,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -33093,7 +33093,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -33126,7 +33126,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -33187,7 +33187,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -33232,7 +33232,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -33252,7 +33252,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -33349,7 +33349,7 @@ "fileName": "src/lib/types.ts", "line": 327, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L327" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L327" } ], "type": { @@ -33392,7 +33392,7 @@ "fileName": "src/lib/types.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L322" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L322" } ], "type": { @@ -33449,7 +33449,7 @@ "fileName": "src/lib/types.ts", "line": 317, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L317" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L317" } ], "type": { @@ -33476,7 +33476,7 @@ "fileName": "src/lib/types.ts", "line": 314, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L314" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L314" } ], "type": { @@ -33503,7 +33503,7 @@ "fileName": "src/lib/types.ts", "line": 325, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L325" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L325" } ], "type": { @@ -33531,7 +33531,7 @@ "fileName": "src/lib/types.ts", "line": 328, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L328" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L328" } ], "type": { @@ -33551,7 +33551,7 @@ "fileName": "src/lib/types.ts", "line": 312, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L312" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L312" } ] }, @@ -33599,7 +33599,7 @@ "fileName": "src/lib/types.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L851" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L851" } ], "type": { @@ -33628,7 +33628,7 @@ "fileName": "src/lib/types.ts", "line": 853, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L853" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L853" } ], "type": { @@ -33648,7 +33648,7 @@ "fileName": "src/lib/types.ts", "line": 845, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L845" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L845" } ] }, @@ -33684,7 +33684,7 @@ "fileName": "src/lib/types.ts", "line": 1169, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1169" } ], "signatures": [ @@ -33750,7 +33750,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ], "type": { @@ -33781,7 +33781,7 @@ "fileName": "src/lib/types.ts", "line": 1122, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1122" } ], "type": { @@ -33808,7 +33808,7 @@ "fileName": "src/lib/types.ts", "line": 1125, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1125" } ], "type": { @@ -33828,7 +33828,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ] } @@ -33864,7 +33864,7 @@ "fileName": "src/lib/types.ts", "line": 1159, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1159" } ], "signatures": [ @@ -33913,7 +33913,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ], "type": { @@ -33944,7 +33944,7 @@ "fileName": "src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1146" } ], "type": { @@ -33964,7 +33964,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ] } @@ -34001,7 +34001,7 @@ "fileName": "src/lib/types.ts", "line": 1154, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1154" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1154" } ] }, @@ -34031,7 +34031,7 @@ "fileName": "src/lib/types.ts", "line": 1058, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1058" } ], "signatures": [ @@ -34071,7 +34071,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ], "type": { @@ -34104,7 +34104,7 @@ "fileName": "src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L930" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L930" } ], "type": { @@ -34140,7 +34140,7 @@ "fileName": "src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L928" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L928" } ], "type": { @@ -34160,7 +34160,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ] } @@ -34196,7 +34196,7 @@ "fileName": "src/lib/types.ts", "line": 1076, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1076" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1076" } ], "signatures": [ @@ -34236,7 +34236,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ], "type": { @@ -34267,7 +34267,7 @@ "fileName": "src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L937" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L937" } ], "type": { @@ -34294,7 +34294,7 @@ "fileName": "src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L935" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L935" } ], "type": { @@ -34314,7 +34314,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ] } @@ -34350,19 +34350,19 @@ "fileName": "src/lib/types.ts", "line": 1050, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1050" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1050" }, { "fileName": "src/lib/types.ts", "line": 1051, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1051" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1051" }, { "fileName": "src/lib/types.ts", "line": 1052, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1052" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1052" } ], "signatures": [ @@ -34418,7 +34418,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -34449,7 +34449,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -34478,7 +34478,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -34507,7 +34507,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -34527,7 +34527,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -34578,7 +34578,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -34609,7 +34609,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -34638,7 +34638,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -34665,7 +34665,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -34685,7 +34685,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -34736,7 +34736,7 @@ "fileName": "src/lib/types.ts", "line": 908, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L908" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L908" } ], "type": { @@ -34753,7 +34753,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -34784,7 +34784,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -34813,7 +34813,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -34842,7 +34842,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -34862,7 +34862,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -34879,7 +34879,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -34910,7 +34910,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -34939,7 +34939,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -34966,7 +34966,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -34986,7 +34986,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -35025,7 +35025,7 @@ "fileName": "src/lib/types.ts", "line": 1101, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1101" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1101" } ], "signatures": [ @@ -35094,7 +35094,7 @@ "fileName": "src/lib/types.ts", "line": 1086, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1086" } ], "signatures": [ @@ -35188,7 +35188,7 @@ "fileName": "src/lib/types.ts", "line": 1070, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1070" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1070" } ], "signatures": [ @@ -35244,7 +35244,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ], "type": { @@ -35275,7 +35275,7 @@ "fileName": "src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L912" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L912" } ], "type": { @@ -35295,7 +35295,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 32, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ] } @@ -35331,7 +35331,7 @@ "fileName": "src/lib/types.ts", "line": 1064, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1064" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1064" } ], "signatures": [ @@ -35371,7 +35371,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ], "type": { @@ -35402,7 +35402,7 @@ "fileName": "src/lib/types.ts", "line": 920, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L920" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L920" } ], "type": { @@ -35429,7 +35429,7 @@ "fileName": "src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L923" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L923" } ], "type": { @@ -35456,7 +35456,7 @@ "fileName": "src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L917" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L917" } ], "type": { @@ -35476,7 +35476,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 30, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ] } @@ -35513,7 +35513,7 @@ "fileName": "src/lib/types.ts", "line": 1039, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1039" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1039" } ] }, @@ -35537,7 +35537,7 @@ "fileName": "src/lib/types.ts", "line": 1332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1332" } ], "type": { @@ -35556,7 +35556,7 @@ "fileName": "src/lib/types.ts", "line": 1331, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1331" } ], "type": { @@ -35580,7 +35580,7 @@ "fileName": "src/lib/types.ts", "line": 1333, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1333" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1333" } ], "type": { @@ -35599,7 +35599,7 @@ "fileName": "src/lib/types.ts", "line": 1330, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1330" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1330" } ], "type": { @@ -35632,7 +35632,7 @@ "fileName": "src/lib/types.ts", "line": 1329, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1329" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1329" } ], "indexSignature": { @@ -35685,7 +35685,7 @@ "fileName": "src/lib/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L252" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L252" } ], "type": { @@ -35714,7 +35714,7 @@ "fileName": "src/lib/types.ts", "line": 264, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L264" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L264" } ], "type": { @@ -35741,7 +35741,7 @@ "fileName": "src/lib/types.ts", "line": 260, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L260" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L260" } ], "type": { @@ -35770,7 +35770,7 @@ "fileName": "src/lib/types.ts", "line": 248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L248" } ], "type": { @@ -35808,7 +35808,7 @@ "fileName": "src/lib/types.ts", "line": 243, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L243" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L243" } ], "type": { @@ -35844,7 +35844,7 @@ "fileName": "src/lib/types.ts", "line": 256, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L256" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L256" } ], "type": { @@ -35863,7 +35863,7 @@ "fileName": "src/lib/types.ts", "line": 265, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L265" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L265" } ], "type": { @@ -35890,7 +35890,7 @@ "fileName": "src/lib/types.ts", "line": 270, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L270" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L270" } ], "type": { @@ -35917,7 +35917,7 @@ "fileName": "src/lib/types.ts", "line": 351, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L351" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L351" } ], "type": { @@ -35936,7 +35936,7 @@ "fileName": "src/lib/types.ts", "line": 342, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L342" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L342" } ], "type": { @@ -35963,7 +35963,7 @@ "fileName": "src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L332" } ], "type": { @@ -35983,7 +35983,7 @@ "fileName": "src/lib/types.ts", "line": 331, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L331" } ], "indexSignature": { @@ -36023,7 +36023,7 @@ "fileName": "src/lib/types.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L344" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L344" } ], "type": { @@ -36044,7 +36044,7 @@ "fileName": "src/lib/types.ts", "line": 345, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L345" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L345" } ], "type": { @@ -36065,7 +36065,7 @@ "fileName": "src/lib/types.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L355" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L355" } ], "type": { @@ -36084,7 +36084,7 @@ "fileName": "src/lib/types.ts", "line": 354, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L354" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L354" } ], "type": { @@ -36105,7 +36105,7 @@ "fileName": "src/lib/types.ts", "line": 365, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L365" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L365" } ], "type": { @@ -36126,7 +36126,7 @@ "fileName": "src/lib/types.ts", "line": 352, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L352" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L352" } ], "type": { @@ -36147,7 +36147,7 @@ "fileName": "src/lib/types.ts", "line": 347, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L347" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L347" } ], "type": { @@ -36168,7 +36168,7 @@ "fileName": "src/lib/types.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L356" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L356" } ], "type": { @@ -36189,7 +36189,7 @@ "fileName": "src/lib/types.ts", "line": 364, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L364" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L364" } ], "type": { @@ -36212,7 +36212,7 @@ "fileName": "src/lib/types.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L341" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L341" } ], "type": { @@ -36233,7 +36233,7 @@ "fileName": "src/lib/types.ts", "line": 361, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L361" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L361" } ], "type": { @@ -36258,7 +36258,7 @@ "fileName": "src/lib/types.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L350" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L350" } ], "type": { @@ -36279,7 +36279,7 @@ "fileName": "src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L362" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L362" } ], "type": { @@ -36300,7 +36300,7 @@ "fileName": "src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L363" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L363" } ], "type": { @@ -36321,7 +36321,7 @@ "fileName": "src/lib/types.ts", "line": 358, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L358" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L358" } ], "type": { @@ -36342,7 +36342,7 @@ "fileName": "src/lib/types.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L348" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L348" } ], "type": { @@ -36363,7 +36363,7 @@ "fileName": "src/lib/types.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L349" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L349" } ], "type": { @@ -36384,7 +36384,7 @@ "fileName": "src/lib/types.ts", "line": 353, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L353" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L353" } ], "type": { @@ -36405,7 +36405,7 @@ "fileName": "src/lib/types.ts", "line": 357, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L357" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L357" } ], "type": { @@ -36426,7 +36426,7 @@ "fileName": "src/lib/types.ts", "line": 346, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L346" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L346" } ], "type": { @@ -36447,7 +36447,7 @@ "fileName": "src/lib/types.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L359" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L359" } ], "type": { @@ -36468,7 +36468,7 @@ "fileName": "src/lib/types.ts", "line": 360, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L360" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L360" } ], "type": { @@ -36487,7 +36487,7 @@ "fileName": "src/lib/types.ts", "line": 343, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L343" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L343" } ], "type": { @@ -36505,7 +36505,7 @@ "fileName": "src/lib/types.ts", "line": 336, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L336" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L336" } ], "indexSignature": { @@ -36549,7 +36549,7 @@ "fileName": "src/lib/types.ts", "line": 340, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L340" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L340" } ] } @@ -36567,7 +36567,7 @@ "fileName": "src/lib/types.ts", "line": 239, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L239" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L239" } ] }, @@ -36589,7 +36589,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "type": { @@ -36605,7 +36605,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "signatures": [ @@ -36686,7 +36686,7 @@ "fileName": "src/lib/types.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L479" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L479" } ], "type": { @@ -36705,7 +36705,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "type": { @@ -36721,7 +36721,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "signatures": [ @@ -36760,7 +36760,7 @@ "fileName": "src/lib/types.ts", "line": 475, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L475" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L475" } ] }, @@ -36784,7 +36784,7 @@ "fileName": "src/lib/types.ts", "line": 351, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L351" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L351" } ], "type": { @@ -36803,7 +36803,7 @@ "fileName": "src/lib/types.ts", "line": 342, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L342" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L342" } ], "type": { @@ -36830,7 +36830,7 @@ "fileName": "src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L332" } ], "type": { @@ -36850,7 +36850,7 @@ "fileName": "src/lib/types.ts", "line": 331, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L331" } ], "indexSignature": { @@ -36890,7 +36890,7 @@ "fileName": "src/lib/types.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L344" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L344" } ], "type": { @@ -36911,7 +36911,7 @@ "fileName": "src/lib/types.ts", "line": 345, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L345" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L345" } ], "type": { @@ -36932,7 +36932,7 @@ "fileName": "src/lib/types.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L355" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L355" } ], "type": { @@ -36951,7 +36951,7 @@ "fileName": "src/lib/types.ts", "line": 354, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L354" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L354" } ], "type": { @@ -36972,7 +36972,7 @@ "fileName": "src/lib/types.ts", "line": 365, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L365" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L365" } ], "type": { @@ -36993,7 +36993,7 @@ "fileName": "src/lib/types.ts", "line": 352, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L352" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L352" } ], "type": { @@ -37014,7 +37014,7 @@ "fileName": "src/lib/types.ts", "line": 347, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L347" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L347" } ], "type": { @@ -37035,7 +37035,7 @@ "fileName": "src/lib/types.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L356" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L356" } ], "type": { @@ -37056,7 +37056,7 @@ "fileName": "src/lib/types.ts", "line": 364, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L364" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L364" } ], "type": { @@ -37079,7 +37079,7 @@ "fileName": "src/lib/types.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L341" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L341" } ], "type": { @@ -37100,7 +37100,7 @@ "fileName": "src/lib/types.ts", "line": 361, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L361" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L361" } ], "type": { @@ -37125,7 +37125,7 @@ "fileName": "src/lib/types.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L350" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L350" } ], "type": { @@ -37146,7 +37146,7 @@ "fileName": "src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L362" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L362" } ], "type": { @@ -37167,7 +37167,7 @@ "fileName": "src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L363" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L363" } ], "type": { @@ -37188,7 +37188,7 @@ "fileName": "src/lib/types.ts", "line": 358, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L358" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L358" } ], "type": { @@ -37209,7 +37209,7 @@ "fileName": "src/lib/types.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L348" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L348" } ], "type": { @@ -37230,7 +37230,7 @@ "fileName": "src/lib/types.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L349" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L349" } ], "type": { @@ -37251,7 +37251,7 @@ "fileName": "src/lib/types.ts", "line": 353, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L353" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L353" } ], "type": { @@ -37272,7 +37272,7 @@ "fileName": "src/lib/types.ts", "line": 357, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L357" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L357" } ], "type": { @@ -37293,7 +37293,7 @@ "fileName": "src/lib/types.ts", "line": 346, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L346" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L346" } ], "type": { @@ -37314,7 +37314,7 @@ "fileName": "src/lib/types.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L359" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L359" } ], "type": { @@ -37335,7 +37335,7 @@ "fileName": "src/lib/types.ts", "line": 360, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L360" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L360" } ], "type": { @@ -37354,7 +37354,7 @@ "fileName": "src/lib/types.ts", "line": 343, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L343" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L343" } ], "type": { @@ -37372,7 +37372,7 @@ "fileName": "src/lib/types.ts", "line": 336, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L336" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L336" } ], "indexSignature": { @@ -37416,7 +37416,7 @@ "fileName": "src/lib/types.ts", "line": 340, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L340" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L340" } ] }, @@ -37440,7 +37440,7 @@ "fileName": "src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L332" } ], "type": { @@ -37460,7 +37460,7 @@ "fileName": "src/lib/types.ts", "line": 331, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L331" } ], "indexSignature": { @@ -37531,7 +37531,7 @@ "fileName": "src/lib/types.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L397" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L397" } ], "type": { @@ -37560,7 +37560,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -37589,7 +37589,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -37618,7 +37618,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -37647,7 +37647,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -37667,7 +37667,7 @@ "fileName": "src/lib/types.ts", "line": 368, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L368" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L368" } ] }, @@ -37691,7 +37691,7 @@ "fileName": "src/lib/types.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L300" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L300" } ], "type": { @@ -37710,7 +37710,7 @@ "fileName": "src/lib/types.ts", "line": 293, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L293" } ], "type": { @@ -37731,7 +37731,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "type": { @@ -37747,7 +37747,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "indexSignature": { @@ -37787,7 +37787,7 @@ "fileName": "src/lib/types.ts", "line": 298, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L298" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L298" } ], "type": { @@ -37808,7 +37808,7 @@ "fileName": "src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L301" } ], "type": { @@ -37827,7 +37827,7 @@ "fileName": "src/lib/types.ts", "line": 299, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L299" } ], "type": { @@ -37848,7 +37848,7 @@ "fileName": "src/lib/types.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L302" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L302" } ], "type": { @@ -37867,7 +37867,7 @@ "fileName": "src/lib/types.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L294" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L294" } ], "type": { @@ -37887,7 +37887,7 @@ "fileName": "src/lib/types.ts", "line": 292, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L292" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L292" } ] }, @@ -37902,7 +37902,7 @@ "fileName": "src/lib/types.ts", "line": 336, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L336" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L336" } ], "indexSignature": { @@ -37955,7 +37955,7 @@ "fileName": "src/lib/types.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L741" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L741" } ], "type": { @@ -37976,7 +37976,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ], "type": { @@ -38015,7 +38015,7 @@ "fileName": "src/lib/types.ts", "line": 754, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L754" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L754" } ], "type": { @@ -38044,7 +38044,7 @@ "fileName": "src/lib/types.ts", "line": 748, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L748" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L748" } ], "type": { @@ -38064,7 +38064,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ] } @@ -38089,7 +38089,7 @@ "fileName": "src/lib/types.ts", "line": 743, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L743" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L743" } ], "type": { @@ -38116,7 +38116,7 @@ "fileName": "src/lib/types.ts", "line": 745, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L745" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L745" } ], "type": { @@ -38134,7 +38134,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -38181,7 +38181,7 @@ "fileName": "src/lib/types.ts", "line": 739, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L739" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L739" } ] }, @@ -38205,7 +38205,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ], "type": { @@ -38244,7 +38244,7 @@ "fileName": "src/lib/types.ts", "line": 736, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L736" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L736" } ], "type": { @@ -38273,7 +38273,7 @@ "fileName": "src/lib/types.ts", "line": 729, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L729" } ], "type": { @@ -38293,7 +38293,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ] } @@ -38318,7 +38318,7 @@ "fileName": "src/lib/types.ts", "line": 722, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L722" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L722" } ], "type": { @@ -38345,7 +38345,7 @@ "fileName": "src/lib/types.ts", "line": 724, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L724" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L724" } ], "type": { @@ -38372,7 +38372,7 @@ "fileName": "src/lib/types.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L726" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L726" } ], "type": { @@ -38390,7 +38390,7 @@ "fileName": "src/lib/types.ts", "line": 766, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L766" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L766" } ], "type": { @@ -38421,7 +38421,7 @@ "fileName": "src/lib/types.ts", "line": 720, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L720" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L720" } ] }, @@ -38451,7 +38451,7 @@ "fileName": "src/lib/types.ts", "line": 760, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L760" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L760" } ], "type": { @@ -38478,7 +38478,7 @@ "fileName": "src/lib/types.ts", "line": 763, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L763" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L763" } ], "type": { @@ -38496,7 +38496,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -38543,7 +38543,7 @@ "fileName": "src/lib/types.ts", "line": 758, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L758" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L758" } ] }, @@ -38558,7 +38558,7 @@ "fileName": "src/lib/types.ts", "line": 34, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L34" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L34" } ], "type": { @@ -38599,7 +38599,7 @@ "fileName": "src/lib/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L32" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L32" } ], "type": { @@ -38621,7 +38621,7 @@ "fileName": "src/lib/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L32" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L32" } ], "type": { @@ -38640,7 +38640,7 @@ "fileName": "src/lib/types.ts", "line": 601, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L601" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L601" } ], "type": { @@ -38677,7 +38677,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ], "type": { @@ -38708,7 +38708,7 @@ "fileName": "src/lib/types.ts", "line": 1122, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1122" } ], "type": { @@ -38735,7 +38735,7 @@ "fileName": "src/lib/types.ts", "line": 1125, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1125" } ], "type": { @@ -38755,7 +38755,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ] } @@ -38781,7 +38781,7 @@ "fileName": "src/lib/types.ts", "line": 1107, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1107" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1107" } ], "type": { @@ -38807,7 +38807,7 @@ "fileName": "src/lib/types.ts", "line": 1109, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1109" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1109" } ], "type": { @@ -38838,7 +38838,7 @@ "fileName": "src/lib/types.ts", "line": 1111, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1111" } ], "type": { @@ -38858,7 +38858,7 @@ "fileName": "src/lib/types.ts", "line": 1109, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1109" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1109" } ] } @@ -38875,7 +38875,7 @@ "fileName": "src/lib/types.ts", "line": 1113, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1113" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1113" } ], "type": { @@ -38895,7 +38895,7 @@ "fileName": "src/lib/types.ts", "line": 1108, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1108" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1108" } ] } @@ -38920,7 +38920,7 @@ "fileName": "src/lib/types.ts", "line": 1115, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1115" } ], "type": { @@ -38939,7 +38939,7 @@ "fileName": "src/lib/types.ts", "line": 1115, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1115" } ], "type": { @@ -38960,7 +38960,7 @@ "fileName": "src/lib/types.ts", "line": 1115, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1115" } ] } @@ -38988,7 +38988,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ], "type": { @@ -39019,7 +39019,7 @@ "fileName": "src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1146" } ], "type": { @@ -39039,7 +39039,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ] } @@ -39065,7 +39065,7 @@ "fileName": "src/lib/types.ts", "line": 1131, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1131" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1131" } ], "type": { @@ -39091,7 +39091,7 @@ "fileName": "src/lib/types.ts", "line": 1133, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1133" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1133" } ], "type": { @@ -39122,7 +39122,7 @@ "fileName": "src/lib/types.ts", "line": 1135, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1135" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1135" } ], "type": { @@ -39146,7 +39146,7 @@ "fileName": "src/lib/types.ts", "line": 1133, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1133" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1133" } ] } @@ -39163,7 +39163,7 @@ "fileName": "src/lib/types.ts", "line": 1137, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1137" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1137" } ], "type": { @@ -39183,7 +39183,7 @@ "fileName": "src/lib/types.ts", "line": 1132, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1132" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1132" } ] } @@ -39208,7 +39208,7 @@ "fileName": "src/lib/types.ts", "line": 1139, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1139" } ], "type": { @@ -39227,7 +39227,7 @@ "fileName": "src/lib/types.ts", "line": 1139, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1139" } ], "type": { @@ -39248,7 +39248,7 @@ "fileName": "src/lib/types.ts", "line": 1139, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1139" } ] } @@ -39267,7 +39267,7 @@ "fileName": "src/lib/types.ts", "line": 977, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L977" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L977" } ], "type": { @@ -39293,7 +39293,7 @@ "fileName": "src/lib/types.ts", "line": 979, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L979" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L979" } ], "type": { @@ -39324,7 +39324,7 @@ "fileName": "src/lib/types.ts", "line": 987, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L987" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L987" } ], "type": { @@ -39351,7 +39351,7 @@ "fileName": "src/lib/types.ts", "line": 981, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L981" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L981" } ], "type": { @@ -39378,7 +39378,7 @@ "fileName": "src/lib/types.ts", "line": 984, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L984" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L984" } ], "type": { @@ -39407,7 +39407,7 @@ "fileName": "src/lib/types.ts", "line": 979, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L979" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L979" } ] } @@ -39424,7 +39424,7 @@ "fileName": "src/lib/types.ts", "line": 989, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L989" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L989" } ], "type": { @@ -39444,7 +39444,7 @@ "fileName": "src/lib/types.ts", "line": 978, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L978" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L978" } ] } @@ -39469,7 +39469,7 @@ "fileName": "src/lib/types.ts", "line": 991, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L991" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L991" } ], "type": { @@ -39488,7 +39488,7 @@ "fileName": "src/lib/types.ts", "line": 991, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L991" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L991" } ], "type": { @@ -39509,7 +39509,7 @@ "fileName": "src/lib/types.ts", "line": 991, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L991" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L991" } ] } @@ -39528,7 +39528,7 @@ "fileName": "src/lib/types.ts", "line": 1286, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1286" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1286" } ], "type": { @@ -39554,7 +39554,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ], "type": { @@ -39587,7 +39587,7 @@ "fileName": "src/lib/types.ts", "line": 1296, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1296" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1296" } ], "type": { @@ -39614,7 +39614,7 @@ "fileName": "src/lib/types.ts", "line": 1290, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1290" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1290" } ], "type": { @@ -39641,7 +39641,7 @@ "fileName": "src/lib/types.ts", "line": 1299, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1299" } ], "type": { @@ -39668,7 +39668,7 @@ "fileName": "src/lib/types.ts", "line": 1293, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1293" } ], "type": { @@ -39688,7 +39688,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ] } @@ -39705,7 +39705,7 @@ "fileName": "src/lib/types.ts", "line": 1301, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1301" } ], "type": { @@ -39725,7 +39725,7 @@ "fileName": "src/lib/types.ts", "line": 1287, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1287" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1287" } ] } @@ -39750,7 +39750,7 @@ "fileName": "src/lib/types.ts", "line": 1304, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1304" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1304" } ], "type": { @@ -39769,7 +39769,7 @@ "fileName": "src/lib/types.ts", "line": 1305, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1305" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1305" } ], "type": { @@ -39790,7 +39790,7 @@ "fileName": "src/lib/types.ts", "line": 1303, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1303" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1303" } ] } @@ -39809,7 +39809,7 @@ "fileName": "src/lib/types.ts", "line": 965, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L965" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L965" } ], "type": { @@ -39826,7 +39826,7 @@ "fileName": "src/lib/types.ts", "line": 1251, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1251" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1251" } ], "type": { @@ -39852,7 +39852,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ], "type": { @@ -39885,7 +39885,7 @@ "fileName": "src/lib/types.ts", "line": 1277, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1277" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1277" } ], "type": { @@ -39912,7 +39912,7 @@ "fileName": "src/lib/types.ts", "line": 1255, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1255" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1255" } ], "type": { @@ -39939,7 +39939,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ], "type": { @@ -39978,7 +39978,7 @@ "fileName": "src/lib/types.ts", "line": 1265, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1265" } ], "type": { @@ -40005,7 +40005,7 @@ "fileName": "src/lib/types.ts", "line": 1270, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1270" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1270" } ], "type": { @@ -40032,7 +40032,7 @@ "fileName": "src/lib/types.ts", "line": 1274, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1274" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1274" } ], "type": { @@ -40052,7 +40052,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ] } @@ -40077,7 +40077,7 @@ "fileName": "src/lib/types.ts", "line": 1258, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1258" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1258" } ], "type": { @@ -40097,7 +40097,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ] } @@ -40114,7 +40114,7 @@ "fileName": "src/lib/types.ts", "line": 1279, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1279" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1279" } ], "type": { @@ -40134,7 +40134,7 @@ "fileName": "src/lib/types.ts", "line": 1252, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1252" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1252" } ] } @@ -40159,7 +40159,7 @@ "fileName": "src/lib/types.ts", "line": 1282, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1282" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1282" } ], "type": { @@ -40178,7 +40178,7 @@ "fileName": "src/lib/types.ts", "line": 1283, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1283" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1283" } ], "type": { @@ -40199,7 +40199,7 @@ "fileName": "src/lib/types.ts", "line": 1281, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1281" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1281" } ] } @@ -40218,7 +40218,7 @@ "fileName": "src/lib/types.ts", "line": 1286, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1286" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1286" } ], "type": { @@ -40244,7 +40244,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ], "type": { @@ -40277,7 +40277,7 @@ "fileName": "src/lib/types.ts", "line": 1296, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1296" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1296" } ], "type": { @@ -40304,7 +40304,7 @@ "fileName": "src/lib/types.ts", "line": 1290, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1290" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1290" } ], "type": { @@ -40331,7 +40331,7 @@ "fileName": "src/lib/types.ts", "line": 1299, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1299" } ], "type": { @@ -40358,7 +40358,7 @@ "fileName": "src/lib/types.ts", "line": 1293, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1293" } ], "type": { @@ -40378,7 +40378,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ] } @@ -40395,7 +40395,7 @@ "fileName": "src/lib/types.ts", "line": 1301, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1301" } ], "type": { @@ -40415,7 +40415,7 @@ "fileName": "src/lib/types.ts", "line": 1287, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1287" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1287" } ] } @@ -40440,7 +40440,7 @@ "fileName": "src/lib/types.ts", "line": 1304, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1304" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1304" } ], "type": { @@ -40459,7 +40459,7 @@ "fileName": "src/lib/types.ts", "line": 1305, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1305" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1305" } ], "type": { @@ -40480,7 +40480,7 @@ "fileName": "src/lib/types.ts", "line": 1303, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1303" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1303" } ] } @@ -40502,7 +40502,7 @@ "fileName": "src/lib/types.ts", "line": 1251, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1251" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1251" } ], "type": { @@ -40528,7 +40528,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ], "type": { @@ -40561,7 +40561,7 @@ "fileName": "src/lib/types.ts", "line": 1277, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1277" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1277" } ], "type": { @@ -40588,7 +40588,7 @@ "fileName": "src/lib/types.ts", "line": 1255, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1255" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1255" } ], "type": { @@ -40615,7 +40615,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ], "type": { @@ -40654,7 +40654,7 @@ "fileName": "src/lib/types.ts", "line": 1265, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1265" } ], "type": { @@ -40681,7 +40681,7 @@ "fileName": "src/lib/types.ts", "line": 1270, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1270" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1270" } ], "type": { @@ -40708,7 +40708,7 @@ "fileName": "src/lib/types.ts", "line": 1274, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1274" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1274" } ], "type": { @@ -40728,7 +40728,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ] } @@ -40753,7 +40753,7 @@ "fileName": "src/lib/types.ts", "line": 1258, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1258" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1258" } ], "type": { @@ -40773,7 +40773,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ] } @@ -40790,7 +40790,7 @@ "fileName": "src/lib/types.ts", "line": 1279, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1279" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1279" } ], "type": { @@ -40810,7 +40810,7 @@ "fileName": "src/lib/types.ts", "line": 1252, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1252" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1252" } ] } @@ -40835,7 +40835,7 @@ "fileName": "src/lib/types.ts", "line": 1282, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1282" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1282" } ], "type": { @@ -40854,7 +40854,7 @@ "fileName": "src/lib/types.ts", "line": 1283, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1283" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1283" } ], "type": { @@ -40875,7 +40875,7 @@ "fileName": "src/lib/types.ts", "line": 1281, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1281" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1281" } ] } @@ -40894,7 +40894,7 @@ "fileName": "src/lib/types.ts", "line": 1010, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1010" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1010" } ], "type": { @@ -40920,7 +40920,7 @@ "fileName": "src/lib/types.ts", "line": 1012, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1012" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1012" } ], "type": { @@ -40951,7 +40951,7 @@ "fileName": "src/lib/types.ts", "line": 1029, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1029" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1029" } ], "type": { @@ -40982,7 +40982,7 @@ "fileName": "src/lib/types.ts", "line": 1014, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1014" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1014" } ], "type": { @@ -41032,7 +41032,7 @@ "fileName": "src/lib/types.ts", "line": 1022, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1022" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1022" } ], "type": { @@ -41062,7 +41062,7 @@ "fileName": "src/lib/types.ts", "line": 1012, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1012" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1012" } ] } @@ -41079,7 +41079,7 @@ "fileName": "src/lib/types.ts", "line": 1031, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1031" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1031" } ], "type": { @@ -41099,7 +41099,7 @@ "fileName": "src/lib/types.ts", "line": 1011, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1011" } ] } @@ -41124,7 +41124,7 @@ "fileName": "src/lib/types.ts", "line": 1033, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1033" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1033" } ], "type": { @@ -41143,7 +41143,7 @@ "fileName": "src/lib/types.ts", "line": 1033, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1033" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1033" } ], "type": { @@ -41164,7 +41164,7 @@ "fileName": "src/lib/types.ts", "line": 1033, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1033" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1033" } ] } @@ -41183,7 +41183,7 @@ "fileName": "src/lib/types.ts", "line": 993, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L993" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L993" } ], "type": { @@ -41209,7 +41209,7 @@ "fileName": "src/lib/types.ts", "line": 995, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L995" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L995" } ], "type": { @@ -41240,7 +41240,7 @@ "fileName": "src/lib/types.ts", "line": 997, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L997" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L997" } ], "type": { @@ -41279,7 +41279,7 @@ "fileName": "src/lib/types.ts", "line": 1002, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1002" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1002" } ], "type": { @@ -41318,7 +41318,7 @@ "fileName": "src/lib/types.ts", "line": 1000, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1000" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1000" } ], "type": { @@ -41342,7 +41342,7 @@ "fileName": "src/lib/types.ts", "line": 995, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L995" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L995" } ] } @@ -41359,7 +41359,7 @@ "fileName": "src/lib/types.ts", "line": 1004, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1004" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1004" } ], "type": { @@ -41379,7 +41379,7 @@ "fileName": "src/lib/types.ts", "line": 994, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L994" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L994" } ] } @@ -41404,7 +41404,7 @@ "fileName": "src/lib/types.ts", "line": 1006, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1006" } ], "type": { @@ -41423,7 +41423,7 @@ "fileName": "src/lib/types.ts", "line": 1006, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1006" } ], "type": { @@ -41444,7 +41444,7 @@ "fileName": "src/lib/types.ts", "line": 1006, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1006" } ] } @@ -41463,7 +41463,7 @@ "fileName": "src/lib/types.ts", "line": 967, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L967" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L967" } ], "type": { @@ -41489,7 +41489,7 @@ "fileName": "src/lib/types.ts", "line": 969, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L969" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L969" } ], "type": { @@ -41520,7 +41520,7 @@ "fileName": "src/lib/types.ts", "line": 971, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L971" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L971" } ], "type": { @@ -41540,7 +41540,7 @@ "fileName": "src/lib/types.ts", "line": 969, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L969" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L969" } ] } @@ -41557,7 +41557,7 @@ "fileName": "src/lib/types.ts", "line": 973, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L973" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L973" } ], "type": { @@ -41577,7 +41577,7 @@ "fileName": "src/lib/types.ts", "line": 968, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L968" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L968" } ] } @@ -41602,7 +41602,7 @@ "fileName": "src/lib/types.ts", "line": 975, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L975" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L975" } ], "type": { @@ -41621,7 +41621,7 @@ "fileName": "src/lib/types.ts", "line": 975, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L975" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L975" } ], "type": { @@ -41642,7 +41642,7 @@ "fileName": "src/lib/types.ts", "line": 975, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L975" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L975" } ] } @@ -41661,7 +41661,7 @@ "fileName": "src/lib/types.ts", "line": 940, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L940" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L940" } ], "type": { @@ -41687,7 +41687,7 @@ "fileName": "src/lib/types.ts", "line": 942, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L942" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L942" } ], "type": { @@ -41718,7 +41718,7 @@ "fileName": "src/lib/types.ts", "line": 944, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L944" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L944" } ], "type": { @@ -41745,7 +41745,7 @@ "fileName": "src/lib/types.ts", "line": 950, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L950" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L950" } ], "type": { @@ -41772,7 +41772,7 @@ "fileName": "src/lib/types.ts", "line": 953, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L953" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L953" } ], "type": { @@ -41807,7 +41807,7 @@ "fileName": "src/lib/types.ts", "line": 947, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L947" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L947" } ], "type": { @@ -41834,7 +41834,7 @@ "fileName": "src/lib/types.ts", "line": 956, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L956" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L956" } ], "type": { @@ -41855,7 +41855,7 @@ "fileName": "src/lib/types.ts", "line": 942, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L942" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L942" } ] } @@ -41872,7 +41872,7 @@ "fileName": "src/lib/types.ts", "line": 958, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L958" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L958" } ], "type": { @@ -41892,7 +41892,7 @@ "fileName": "src/lib/types.ts", "line": 941, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L941" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L941" } ] } @@ -41917,7 +41917,7 @@ "fileName": "src/lib/types.ts", "line": 961, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L961" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L961" } ], "type": { @@ -41936,7 +41936,7 @@ "fileName": "src/lib/types.ts", "line": 962, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L962" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L962" } ], "type": { @@ -41957,7 +41957,7 @@ "fileName": "src/lib/types.ts", "line": 960, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L960" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L960" } ] } @@ -41989,7 +41989,7 @@ "fileName": "src/lib/types.ts", "line": 146, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L146" } ], "type": { @@ -42015,7 +42015,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -42040,7 +42040,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -42068,7 +42068,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 26, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -42087,7 +42087,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -42107,7 +42107,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ] } @@ -42124,7 +42124,7 @@ "fileName": "src/lib/types.ts", "line": 149, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L149" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L149" } ], "type": { @@ -42144,7 +42144,7 @@ "fileName": "src/lib/types.ts", "line": 147, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L147" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L147" } ] } @@ -42169,7 +42169,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -42194,7 +42194,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -42222,7 +42222,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 26, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -42241,7 +42241,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -42261,7 +42261,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ] } @@ -42278,7 +42278,7 @@ "fileName": "src/lib/types.ts", "line": 153, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L153" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L153" } ], "type": { @@ -42299,7 +42299,7 @@ "fileName": "src/lib/types.ts", "line": 151, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L151" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L151" } ] } @@ -42318,7 +42318,7 @@ "fileName": "src/lib/types.ts", "line": 108, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L108" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L108" } ], "type": { @@ -42344,7 +42344,7 @@ "fileName": "src/lib/types.ts", "line": 110, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L110" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L110" } ], "type": { @@ -42367,7 +42367,7 @@ "fileName": "src/lib/types.ts", "line": 112, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L112" } ], "type": { @@ -42396,7 +42396,7 @@ "fileName": "src/lib/types.ts", "line": 111, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L111" } ], "type": { @@ -42426,7 +42426,7 @@ "fileName": "src/lib/types.ts", "line": 110, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L110" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L110" } ] } @@ -42443,7 +42443,7 @@ "fileName": "src/lib/types.ts", "line": 114, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L114" } ], "type": { @@ -42463,7 +42463,7 @@ "fileName": "src/lib/types.ts", "line": 109, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L109" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L109" } ] } @@ -42488,7 +42488,7 @@ "fileName": "src/lib/types.ts", "line": 117, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L117" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L117" } ], "type": { @@ -42511,7 +42511,7 @@ "fileName": "src/lib/types.ts", "line": 119, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L119" } ], "type": { @@ -42530,7 +42530,7 @@ "fileName": "src/lib/types.ts", "line": 118, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L118" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L118" } ], "type": { @@ -42550,7 +42550,7 @@ "fileName": "src/lib/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L117" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L117" } ] } @@ -42567,7 +42567,7 @@ "fileName": "src/lib/types.ts", "line": 121, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L121" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L121" } ], "type": { @@ -42588,7 +42588,7 @@ "fileName": "src/lib/types.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L116" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L116" } ] } @@ -42607,7 +42607,7 @@ "fileName": "src/lib/types.ts", "line": 124, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L124" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L124" } ], "type": { @@ -42633,7 +42633,7 @@ "fileName": "src/lib/types.ts", "line": 126, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L126" } ], "type": { @@ -42656,7 +42656,7 @@ "fileName": "src/lib/types.ts", "line": 128, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L128" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L128" } ], "type": { @@ -42685,7 +42685,7 @@ "fileName": "src/lib/types.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L127" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L127" } ], "type": { @@ -42716,7 +42716,7 @@ "fileName": "src/lib/types.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L129" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L129" } ], "type": { @@ -42746,7 +42746,7 @@ "fileName": "src/lib/types.ts", "line": 126, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L126" } ] } @@ -42763,7 +42763,7 @@ "fileName": "src/lib/types.ts", "line": 131, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L131" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L131" } ], "type": { @@ -42783,7 +42783,7 @@ "fileName": "src/lib/types.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L125" } ] } @@ -42808,7 +42808,7 @@ "fileName": "src/lib/types.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L134" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L134" } ], "type": { @@ -42831,7 +42831,7 @@ "fileName": "src/lib/types.ts", "line": 136, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L136" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L136" } ], "type": { @@ -42850,7 +42850,7 @@ "fileName": "src/lib/types.ts", "line": 135, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L135" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L135" } ], "type": { @@ -42870,7 +42870,7 @@ "fileName": "src/lib/types.ts", "line": 134, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L134" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L134" } ] } @@ -42887,7 +42887,7 @@ "fileName": "src/lib/types.ts", "line": 138, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L138" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L138" } ], "type": { @@ -42908,7 +42908,7 @@ "fileName": "src/lib/types.ts", "line": 133, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L133" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L133" } ] } @@ -42927,7 +42927,7 @@ "fileName": "src/lib/types.ts", "line": 156, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L156" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L156" } ], "type": { @@ -42953,7 +42953,7 @@ "fileName": "src/lib/types.ts", "line": 158, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L158" } ], "type": { @@ -42976,7 +42976,7 @@ "fileName": "src/lib/types.ts", "line": 160, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L160" } ], "type": { @@ -42996,7 +42996,7 @@ "fileName": "src/lib/types.ts", "line": 159, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L159" } ], "type": { @@ -43017,7 +43017,7 @@ "fileName": "src/lib/types.ts", "line": 158, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L158" } ] } @@ -43034,7 +43034,7 @@ "fileName": "src/lib/types.ts", "line": 162, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L162" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L162" } ], "type": { @@ -43054,7 +43054,7 @@ "fileName": "src/lib/types.ts", "line": 157, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L157" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L157" } ] } @@ -43079,7 +43079,7 @@ "fileName": "src/lib/types.ts", "line": 165, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L165" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L165" } ], "type": { @@ -43102,7 +43102,7 @@ "fileName": "src/lib/types.ts", "line": 167, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L167" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L167" } ], "type": { @@ -43121,7 +43121,7 @@ "fileName": "src/lib/types.ts", "line": 166, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L166" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L166" } ], "type": { @@ -43141,7 +43141,7 @@ "fileName": "src/lib/types.ts", "line": 165, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L165" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L165" } ] } @@ -43158,7 +43158,7 @@ "fileName": "src/lib/types.ts", "line": 169, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L169" } ], "type": { @@ -43179,7 +43179,7 @@ "fileName": "src/lib/types.ts", "line": 164, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L164" } ] } @@ -43198,7 +43198,7 @@ "fileName": "src/lib/types.ts", "line": 172, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L172" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L172" } ], "type": { @@ -43224,7 +43224,7 @@ "fileName": "src/lib/types.ts", "line": 174, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L174" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L174" } ], "type": { @@ -43247,7 +43247,7 @@ "fileName": "src/lib/types.ts", "line": 176, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L176" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L176" } ], "type": { @@ -43267,7 +43267,7 @@ "fileName": "src/lib/types.ts", "line": 175, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L175" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L175" } ], "type": { @@ -43289,7 +43289,7 @@ "fileName": "src/lib/types.ts", "line": 177, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L177" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L177" } ], "type": { @@ -43310,7 +43310,7 @@ "fileName": "src/lib/types.ts", "line": 174, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L174" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L174" } ] } @@ -43327,7 +43327,7 @@ "fileName": "src/lib/types.ts", "line": 179, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L179" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L179" } ], "type": { @@ -43347,7 +43347,7 @@ "fileName": "src/lib/types.ts", "line": 173, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L173" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L173" } ] } @@ -43372,7 +43372,7 @@ "fileName": "src/lib/types.ts", "line": 182, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L182" } ], "type": { @@ -43395,7 +43395,7 @@ "fileName": "src/lib/types.ts", "line": 184, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L184" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L184" } ], "type": { @@ -43414,7 +43414,7 @@ "fileName": "src/lib/types.ts", "line": 183, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L183" } ], "type": { @@ -43435,7 +43435,7 @@ "fileName": "src/lib/types.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L185" } ], "type": { @@ -43455,7 +43455,7 @@ "fileName": "src/lib/types.ts", "line": 182, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L182" } ] } @@ -43472,7 +43472,7 @@ "fileName": "src/lib/types.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L187" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L187" } ], "type": { @@ -43493,7 +43493,7 @@ "fileName": "src/lib/types.ts", "line": 181, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L181" } ] } @@ -43512,7 +43512,7 @@ "fileName": "src/lib/types.ts", "line": 1008, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1008" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1008" } ], "type": { @@ -43540,7 +43540,7 @@ "fileName": "src/lib/types.ts", "line": 1196, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1196" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1196" } ], "type": { @@ -43566,7 +43566,7 @@ "fileName": "src/lib/types.ts", "line": 1199, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1199" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1199" } ], "type": { @@ -43585,7 +43585,7 @@ "fileName": "src/lib/types.ts", "line": 1198, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1198" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1198" } ], "type": { @@ -43606,7 +43606,7 @@ "fileName": "src/lib/types.ts", "line": 1197, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1197" } ] } @@ -43631,7 +43631,7 @@ "fileName": "src/lib/types.ts", "line": 1203, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1203" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1203" } ], "type": { @@ -43651,7 +43651,7 @@ "fileName": "src/lib/types.ts", "line": 1202, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1202" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1202" } ], "type": { @@ -43671,7 +43671,7 @@ "fileName": "src/lib/types.ts", "line": 1201, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1201" } ] } @@ -43690,7 +43690,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -43734,7 +43734,7 @@ "fileName": "src/lib/types.ts", "line": 678, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L678" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L678" } ], "type": { @@ -43753,7 +43753,7 @@ "fileName": "src/lib/types.ts", "line": 680, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L680" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L680" } ], "type": { @@ -43779,7 +43779,7 @@ "fileName": "src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L682" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L682" } ], "type": { @@ -43800,7 +43800,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ], "type": { @@ -43833,7 +43833,7 @@ "fileName": "src/lib/types.ts", "line": 695, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L695" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L695" } ], "type": { @@ -43854,7 +43854,7 @@ "fileName": "src/lib/types.ts", "line": 697, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L697" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L697" } ], "type": { @@ -43920,7 +43920,7 @@ "fileName": "src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L692" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L692" } ], "type": { @@ -43940,7 +43940,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ] } @@ -43958,7 +43958,7 @@ "summary": [ { "kind": "text", - "text": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" + "text": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" } ] }, @@ -43967,7 +43967,7 @@ "fileName": "src/lib/types.ts", "line": 688, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L688" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L688" } ], "type": { @@ -43991,7 +43991,7 @@ }, { "kind": "code", - "text": "`window.solana`" + "text": "`window.ethereum`" }, { "kind": "text", @@ -44004,7 +44004,7 @@ "fileName": "src/lib/types.ts", "line": 685, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L685" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L685" } ], "type": { @@ -44025,7 +44025,7 @@ "fileName": "src/lib/types.ts", "line": 681, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L681" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L681" } ] } @@ -44050,7 +44050,7 @@ "fileName": "src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L703" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L703" } ], "type": { @@ -44101,7 +44101,7 @@ "fileName": "src/lib/types.ts", "line": 706, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L706" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L706" } ], "type": { @@ -44122,7 +44122,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ], "type": { @@ -44155,7 +44155,7 @@ "fileName": "src/lib/types.ts", "line": 713, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L713" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L713" } ], "type": { @@ -44175,7 +44175,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ] } @@ -44191,7 +44191,7 @@ "summary": [ { "kind": "text", - "text": "Ed25519 signature of the message." + "text": "Ethereum curve (secp256k1) signature of the message." } ] }, @@ -44200,7 +44200,7 @@ "fileName": "src/lib/types.ts", "line": 709, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L709" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L709" } ], "type": { @@ -44220,7 +44220,7 @@ "fileName": "src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L702" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L702" } ] } @@ -44239,7 +44239,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ], "type": { @@ -44270,7 +44270,7 @@ "fileName": "src/lib/types.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L837" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L837" } ], "type": { @@ -44297,7 +44297,7 @@ "fileName": "src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L841" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L841" } ], "type": { @@ -44318,7 +44318,7 @@ "fileName": "src/lib/types.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L842" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L842" } ], "type": { @@ -44350,7 +44350,7 @@ "fileName": "src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L835" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L835" } ], "type": { @@ -44379,7 +44379,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ] } @@ -44396,7 +44396,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ], "type": { @@ -44427,7 +44427,7 @@ "fileName": "src/lib/types.ts", "line": 823, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L823" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L823" } ], "type": { @@ -44448,7 +44448,7 @@ "fileName": "src/lib/types.ts", "line": 824, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L824" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L824" } ], "type": { @@ -44489,7 +44489,7 @@ "fileName": "src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L821" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L821" } ], "type": { @@ -44518,7 +44518,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 46, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ] } @@ -44535,7 +44535,7 @@ "fileName": "src/lib/types.ts", "line": 856, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L856" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L856" } ], "type": { @@ -44552,7 +44552,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ], "type": { @@ -44575,7 +44575,7 @@ "fileName": "src/lib/types.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L815" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L815" } ], "type": { @@ -44596,7 +44596,7 @@ "fileName": "src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L817" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L817" } ], "type": { @@ -44637,7 +44637,7 @@ "fileName": "src/lib/types.ts", "line": 816, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L816" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L816" } ], "type": { @@ -44656,7 +44656,7 @@ "fileName": "src/lib/types.ts", "line": 814, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L814" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L814" } ], "type": { @@ -44676,7 +44676,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 39, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ] } @@ -44693,7 +44693,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ], "type": { @@ -44724,7 +44724,7 @@ "fileName": "src/lib/types.ts", "line": 823, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L823" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L823" } ], "type": { @@ -44745,7 +44745,7 @@ "fileName": "src/lib/types.ts", "line": 824, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L824" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L824" } ], "type": { @@ -44786,7 +44786,7 @@ "fileName": "src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L821" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L821" } ], "type": { @@ -44815,7 +44815,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 46, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ] } @@ -44832,7 +44832,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ], "type": { @@ -44863,7 +44863,7 @@ "fileName": "src/lib/types.ts", "line": 830, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L830" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L830" } ], "type": { @@ -44884,7 +44884,7 @@ "fileName": "src/lib/types.ts", "line": 831, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L831" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L831" } ], "type": { @@ -44916,7 +44916,7 @@ "fileName": "src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L828" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L828" } ], "type": { @@ -44936,7 +44936,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ] } @@ -44953,7 +44953,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ], "type": { @@ -44984,7 +44984,7 @@ "fileName": "src/lib/types.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L837" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L837" } ], "type": { @@ -45011,7 +45011,7 @@ "fileName": "src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L841" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L841" } ], "type": { @@ -45032,7 +45032,7 @@ "fileName": "src/lib/types.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L842" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L842" } ], "type": { @@ -45064,7 +45064,7 @@ "fileName": "src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L835" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L835" } ], "type": { @@ -45093,7 +45093,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ] } @@ -45121,7 +45121,7 @@ "fileName": "src/lib/types.ts", "line": 879, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L879" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L879" } ], "type": { @@ -45152,7 +45152,7 @@ "fileName": "src/lib/types.ts", "line": 884, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L884" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L884" } ], "type": { @@ -45179,7 +45179,7 @@ "fileName": "src/lib/types.ts", "line": 889, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L889" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L889" } ], "type": { @@ -45206,7 +45206,7 @@ "fileName": "src/lib/types.ts", "line": 893, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L893" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L893" } ], "type": { @@ -45233,7 +45233,7 @@ "fileName": "src/lib/types.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L895" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L895" } ], "type": { @@ -45260,7 +45260,7 @@ "fileName": "src/lib/types.ts", "line": 897, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L897" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L897" } ], "type": { @@ -45278,7 +45278,7 @@ "fileName": "src/lib/types.ts", "line": 900, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L900" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L900" } ], "type": { @@ -45325,7 +45325,7 @@ "fileName": "src/lib/types.ts", "line": 879, "character": 37, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L879" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L879" } ] } @@ -45342,7 +45342,7 @@ "fileName": "src/lib/types.ts", "line": 862, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L862" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L862" } ], "type": { @@ -45368,7 +45368,7 @@ "fileName": "src/lib/types.ts", "line": 864, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L864" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L864" } ], "type": { @@ -45391,7 +45391,7 @@ "fileName": "src/lib/types.ts", "line": 865, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L865" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L865" } ], "type": { @@ -45411,7 +45411,7 @@ "fileName": "src/lib/types.ts", "line": 866, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L866" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L866" } ], "type": { @@ -45432,7 +45432,7 @@ "fileName": "src/lib/types.ts", "line": 864, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L864" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L864" } ] } @@ -45449,7 +45449,7 @@ "fileName": "src/lib/types.ts", "line": 868, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L868" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L868" } ], "type": { @@ -45469,7 +45469,7 @@ "fileName": "src/lib/types.ts", "line": 863, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L863" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L863" } ] } @@ -45494,7 +45494,7 @@ "fileName": "src/lib/types.ts", "line": 871, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L871" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L871" } ], "type": { @@ -45517,7 +45517,7 @@ "fileName": "src/lib/types.ts", "line": 872, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L872" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L872" } ], "type": { @@ -45536,7 +45536,7 @@ "fileName": "src/lib/types.ts", "line": 873, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L873" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L873" } ], "type": { @@ -45556,7 +45556,7 @@ "fileName": "src/lib/types.ts", "line": 871, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L871" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L871" } ] } @@ -45573,7 +45573,7 @@ "fileName": "src/lib/types.ts", "line": 875, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L875" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L875" } ], "type": { @@ -45594,7 +45594,7 @@ "fileName": "src/lib/types.ts", "line": 870, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L870" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L870" } ] } @@ -45613,7 +45613,7 @@ "fileName": "src/lib/types.ts", "line": 900, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L900" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L900" } ], "type": { @@ -45657,7 +45657,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ], "type": { @@ -45688,7 +45688,7 @@ "fileName": "src/lib/types.ts", "line": 830, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L830" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L830" } ], "type": { @@ -45709,7 +45709,7 @@ "fileName": "src/lib/types.ts", "line": 831, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L831" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L831" } ], "type": { @@ -45741,7 +45741,7 @@ "fileName": "src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L828" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L828" } ], "type": { @@ -45761,7 +45761,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ] } @@ -45778,7 +45778,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ], "type": { @@ -45801,7 +45801,7 @@ "fileName": "src/lib/types.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L815" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L815" } ], "type": { @@ -45822,7 +45822,7 @@ "fileName": "src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L817" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L817" } ], "type": { @@ -45863,7 +45863,7 @@ "fileName": "src/lib/types.ts", "line": 816, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L816" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L816" } ], "type": { @@ -45882,7 +45882,7 @@ "fileName": "src/lib/types.ts", "line": 814, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L814" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L814" } ], "type": { @@ -45902,7 +45902,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 39, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ] } @@ -45919,7 +45919,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ], "type": { @@ -45944,7 +45944,7 @@ "fileName": "src/lib/types.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L70" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L70" } ], "type": { @@ -45965,7 +45965,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "type": { @@ -45988,7 +45988,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "signatures": [ @@ -46051,7 +46051,7 @@ "fileName": "src/lib/types.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L68" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L68" } ], "type": { @@ -46072,7 +46072,7 @@ "fileName": "src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L84" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L84" } ], "type": { @@ -46093,7 +46093,7 @@ "fileName": "src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L86" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L86" } ], "type": { @@ -46111,7 +46111,7 @@ "fileName": "src/lib/types.ts", "line": 601, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L601" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L601" } ], "type": { @@ -46152,7 +46152,7 @@ "fileName": "src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L99" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L99" } ], "type": { @@ -46173,7 +46173,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "type": { @@ -46189,7 +46189,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "indexSignature": { @@ -46240,7 +46240,7 @@ "fileName": "src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L94" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L94" } ], "type": { @@ -46258,7 +46258,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "type": { @@ -46274,7 +46274,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 23, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -46384,7 +46384,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 69, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -46446,7 +46446,7 @@ "fileName": "src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L72" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L72" } ], "type": { @@ -46467,7 +46467,7 @@ "fileName": "src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L74" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L74" } ], "type": { @@ -46485,7 +46485,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -46566,7 +46566,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -46586,7 +46586,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -46609,7 +46609,7 @@ "fileName": "src/lib/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L66" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L66" } ], "type": { @@ -46630,7 +46630,7 @@ "fileName": "src/lib/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L62" } ], "type": { @@ -46700,7 +46700,7 @@ "fileName": "src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L82" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L82" } ], "type": { @@ -46718,7 +46718,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -46799,7 +46799,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -46819,7 +46819,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -46841,7 +46841,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ] } @@ -46858,7 +46858,7 @@ "fileName": "src/lib/types.ts", "line": 1194, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1194" } ], "type": { @@ -46881,7 +46881,7 @@ "fileName": "src/lib/types.ts", "line": 1194, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1194" } ], "type": { @@ -46911,7 +46911,7 @@ "fileName": "src/lib/types.ts", "line": 1194, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1194" } ] } @@ -46928,7 +46928,7 @@ "fileName": "src/lib/types.ts", "line": 1308, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1308" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1308" } ], "type": { @@ -46951,7 +46951,7 @@ "fileName": "src/lib/types.ts", "line": 1309, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1309" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1309" } ], "type": { @@ -46983,7 +46983,7 @@ "fileName": "src/lib/types.ts", "line": 1310, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1310" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1310" } ], "type": { @@ -47002,7 +47002,7 @@ "fileName": "src/lib/types.ts", "line": 1311, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1311" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1311" } ], "type": { @@ -47022,7 +47022,7 @@ "fileName": "src/lib/types.ts", "line": 1308, "character": 24, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1308" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1308" } ] } @@ -47039,7 +47039,7 @@ "fileName": "src/lib/types.ts", "line": 1325, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1325" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1325" } ], "type": { @@ -47063,7 +47063,7 @@ "fileName": "src/lib/types.ts", "line": 1325, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1325" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1325" } ], "indexSignature": { @@ -47105,7 +47105,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "type": { @@ -47121,7 +47121,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 23, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -47231,7 +47231,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 69, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -47289,7 +47289,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ], "type": { @@ -47320,7 +47320,7 @@ "fileName": "src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L937" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L937" } ], "type": { @@ -47347,7 +47347,7 @@ "fileName": "src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L935" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L935" } ], "type": { @@ -47367,7 +47367,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ] } @@ -47384,7 +47384,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ], "type": { @@ -47417,7 +47417,7 @@ "fileName": "src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L930" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L930" } ], "type": { @@ -47453,7 +47453,7 @@ "fileName": "src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L928" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L928" } ], "type": { @@ -47473,7 +47473,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ] } @@ -47490,7 +47490,7 @@ "fileName": "src/lib/types.ts", "line": 908, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L908" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L908" } ], "type": { @@ -47507,7 +47507,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -47538,7 +47538,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -47567,7 +47567,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -47596,7 +47596,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -47616,7 +47616,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -47633,7 +47633,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -47664,7 +47664,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -47693,7 +47693,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -47720,7 +47720,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -47740,7 +47740,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -47760,7 +47760,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -47791,7 +47791,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -47820,7 +47820,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -47847,7 +47847,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -47867,7 +47867,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -47884,7 +47884,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -47915,7 +47915,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -47944,7 +47944,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -47973,7 +47973,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -47993,7 +47993,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -48010,7 +48010,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ], "type": { @@ -48041,7 +48041,7 @@ "fileName": "src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L912" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L912" } ], "type": { @@ -48061,7 +48061,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 32, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ] } @@ -48078,7 +48078,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ], "type": { @@ -48109,7 +48109,7 @@ "fileName": "src/lib/types.ts", "line": 920, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L920" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L920" } ], "type": { @@ -48136,7 +48136,7 @@ "fileName": "src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L923" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L923" } ], "type": { @@ -48163,7 +48163,7 @@ "fileName": "src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L917" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L917" } ], "type": { @@ -48183,7 +48183,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 30, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ] } @@ -48200,7 +48200,7 @@ "fileName": "src/lib/types.ts", "line": 766, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L766" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L766" } ], "type": { @@ -48228,7 +48228,7 @@ "fileName": "src/lib/types.ts", "line": 190, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L190" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L190" } ], "type": { @@ -48254,7 +48254,7 @@ "fileName": "src/lib/types.ts", "line": 192, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L192" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L192" } ], "type": { @@ -48277,7 +48277,7 @@ "fileName": "src/lib/types.ts", "line": 193, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L193" } ], "type": { @@ -48297,7 +48297,7 @@ "fileName": "src/lib/types.ts", "line": 194, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L194" } ], "type": { @@ -48317,7 +48317,7 @@ "fileName": "src/lib/types.ts", "line": 192, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L192" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L192" } ] } @@ -48334,7 +48334,7 @@ "fileName": "src/lib/types.ts", "line": 196, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L196" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L196" } ], "type": { @@ -48354,7 +48354,7 @@ "fileName": "src/lib/types.ts", "line": 191, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L191" } ] } @@ -48379,7 +48379,7 @@ "fileName": "src/lib/types.ts", "line": 199, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L199" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L199" } ], "type": { @@ -48402,7 +48402,7 @@ "fileName": "src/lib/types.ts", "line": 200, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L200" } ], "type": { @@ -48422,7 +48422,7 @@ "fileName": "src/lib/types.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L201" } ], "type": { @@ -48442,7 +48442,7 @@ "fileName": "src/lib/types.ts", "line": 199, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L199" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L199" } ] } @@ -48459,7 +48459,7 @@ "fileName": "src/lib/types.ts", "line": 203, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L203" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L203" } ], "type": { @@ -48480,7 +48480,7 @@ "fileName": "src/lib/types.ts", "line": 198, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L198" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L198" } ] } @@ -48499,7 +48499,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ], "type": { @@ -48532,7 +48532,7 @@ "fileName": "src/lib/types.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1215" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1215" } ], "type": { @@ -48561,7 +48561,7 @@ "fileName": "src/lib/types.ts", "line": 1217, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1217" } ], "type": { @@ -48581,7 +48581,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ] } @@ -48598,7 +48598,7 @@ "fileName": "src/lib/types.ts", "line": 1206, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1206" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1206" } ], "type": { @@ -48621,7 +48621,7 @@ "fileName": "src/lib/types.ts", "line": 1209, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1209" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1209" } ], "type": { @@ -48640,7 +48640,7 @@ "fileName": "src/lib/types.ts", "line": 1208, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1208" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1208" } ], "type": { @@ -48668,7 +48668,7 @@ "fileName": "src/lib/types.ts", "line": 1210, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1210" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1210" } ], "type": { @@ -48688,7 +48688,7 @@ "fileName": "src/lib/types.ts", "line": 1206, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1206" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1206" } ], "indexSignature": { @@ -48736,7 +48736,7 @@ "fileName": "src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L8" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L8" } ], "type": { @@ -48844,7 +48844,7 @@ "fileName": "src/lib/types.ts", "line": 1314, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1314" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1314" } ], "type": { @@ -48867,7 +48867,7 @@ "fileName": "src/lib/types.ts", "line": 1321, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1321" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1321" } ], "type": { @@ -48885,7 +48885,7 @@ "fileName": "src/lib/types.ts", "line": 1008, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1008" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1008" } ], "type": { @@ -48915,7 +48915,7 @@ "fileName": "src/lib/types.ts", "line": 1317, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1317" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1317" } ], "type": { @@ -48946,7 +48946,7 @@ "fileName": "src/lib/types.ts", "line": 1318, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1318" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1318" } ], "type": { @@ -48965,7 +48965,7 @@ "fileName": "src/lib/types.ts", "line": 1319, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1319" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1319" } ], "type": { @@ -48984,7 +48984,7 @@ "fileName": "src/lib/types.ts", "line": 1315, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1315" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1315" } ], "type": { @@ -49003,7 +49003,7 @@ "fileName": "src/lib/types.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1320" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1320" } ], "type": { @@ -49022,7 +49022,7 @@ "fileName": "src/lib/types.ts", "line": 1322, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1322" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1322" } ], "type": { @@ -49041,7 +49041,7 @@ "fileName": "src/lib/types.ts", "line": 1316, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1316" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1316" } ], "type": { @@ -49061,7 +49061,7 @@ "fileName": "src/lib/types.ts", "line": 1314, "character": 29, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1314" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1314" } ] } @@ -49078,7 +49078,7 @@ "fileName": "src/lib/types.ts", "line": 769, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L769" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L769" } ], "type": { @@ -49104,7 +49104,7 @@ "fileName": "src/lib/types.ts", "line": 772, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L772" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L772" } ], "type": { @@ -49125,7 +49125,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ], "type": { @@ -49158,7 +49158,7 @@ "fileName": "src/lib/types.ts", "line": 777, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L777" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L777" } ], "type": { @@ -49187,7 +49187,7 @@ "fileName": "src/lib/types.ts", "line": 775, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L775" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L775" } ], "type": { @@ -49207,7 +49207,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ] } @@ -49224,7 +49224,7 @@ "fileName": "src/lib/types.ts", "line": 771, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L771" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L771" } ], "type": { @@ -49266,7 +49266,7 @@ "fileName": "src/lib/types.ts", "line": 770, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L770" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L770" } ] } @@ -49293,7 +49293,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ], "type": { @@ -49326,7 +49326,7 @@ "fileName": "src/lib/types.ts", "line": 785, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L785" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L785" } ], "type": { @@ -49346,7 +49346,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ] } @@ -49363,7 +49363,7 @@ "fileName": "src/lib/types.ts", "line": 782, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L782" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L782" } ], "type": { @@ -49382,7 +49382,7 @@ "fileName": "src/lib/types.ts", "line": 781, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L781" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L781" } ], "type": { @@ -49424,7 +49424,7 @@ "fileName": "src/lib/types.ts", "line": 780, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L780" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L780" } ] } @@ -49443,7 +49443,7 @@ "fileName": "src/lib/types.ts", "line": 206, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L206" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L206" } ], "type": { @@ -49469,7 +49469,7 @@ "fileName": "src/lib/types.ts", "line": 208, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L208" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L208" } ], "type": { @@ -49508,7 +49508,7 @@ "fileName": "src/lib/types.ts", "line": 216, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L216" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L216" } ], "type": { @@ -49528,7 +49528,7 @@ "fileName": "src/lib/types.ts", "line": 208, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L208" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L208" } ] } @@ -49545,7 +49545,7 @@ "fileName": "src/lib/types.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L218" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L218" } ], "type": { @@ -49565,7 +49565,7 @@ "fileName": "src/lib/types.ts", "line": 207, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L207" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L207" } ] } @@ -49590,7 +49590,7 @@ "fileName": "src/lib/types.ts", "line": 221, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L221" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L221" } ], "type": { @@ -49609,7 +49609,7 @@ "fileName": "src/lib/types.ts", "line": 222, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L222" } ], "type": { @@ -49630,7 +49630,7 @@ "fileName": "src/lib/types.ts", "line": 220, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L220" } ] } @@ -49649,7 +49649,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ], "type": { @@ -49674,7 +49674,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ], "type": { @@ -49707,7 +49707,7 @@ "fileName": "src/lib/types.ts", "line": 499, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L499" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L499" } ], "type": { @@ -49752,7 +49752,7 @@ "fileName": "src/lib/types.ts", "line": 497, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L497" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L497" } ], "type": { @@ -49772,7 +49772,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ] } @@ -49790,7 +49790,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ] } @@ -49807,7 +49807,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ], "type": { @@ -49848,7 +49848,7 @@ "fileName": "src/lib/types.ts", "line": 623, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L623" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L623" } ], "type": { @@ -49885,7 +49885,7 @@ "fileName": "src/lib/types.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L625" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L625" } ], "type": { @@ -49906,7 +49906,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ], "type": { @@ -49939,7 +49939,7 @@ "fileName": "src/lib/types.ts", "line": 628, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L628" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L628" } ], "type": { @@ -49959,7 +49959,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ] } @@ -50040,7 +50040,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ], "type": { @@ -50086,7 +50086,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 76, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ] } @@ -50147,7 +50147,7 @@ "fileName": "src/lib/types.ts", "line": 621, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L621" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L621" } ], "type": { @@ -50167,7 +50167,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ] } @@ -50184,7 +50184,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ], "type": { @@ -50209,7 +50209,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ], "type": { @@ -50242,7 +50242,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "type": { @@ -50258,7 +50258,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "indexSignature": { @@ -50308,7 +50308,7 @@ "fileName": "src/lib/types.ts", "line": 607, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L607" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L607" } ], "type": { @@ -50337,7 +50337,7 @@ "fileName": "src/lib/types.ts", "line": 609, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L609" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L609" } ], "type": { @@ -50366,7 +50366,7 @@ "fileName": "src/lib/types.ts", "line": 613, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L613" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L613" } ], "type": { @@ -50386,7 +50386,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ] } @@ -50411,7 +50411,7 @@ "fileName": "src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L604" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L604" } ], "type": { @@ -50437,7 +50437,7 @@ "fileName": "src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L8" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L8" } ], "type": { @@ -50548,7 +50548,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ] } @@ -50565,7 +50565,7 @@ "fileName": "src/lib/types.ts", "line": 541, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L541" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L541" } ], "type": { @@ -50599,7 +50599,7 @@ "fileName": "src/lib/types.ts", "line": 544, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L544" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L544" } ], "type": { @@ -50620,7 +50620,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ], "type": { @@ -50653,7 +50653,7 @@ "fileName": "src/lib/types.ts", "line": 549, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L549" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L549" } ], "type": { @@ -50673,7 +50673,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ] } @@ -50698,7 +50698,7 @@ "fileName": "src/lib/types.ts", "line": 546, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L546" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L546" } ], "type": { @@ -50718,7 +50718,7 @@ "fileName": "src/lib/types.ts", "line": 542, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L542" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L542" } ] } @@ -50745,7 +50745,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ], "type": { @@ -50778,7 +50778,7 @@ "fileName": "src/lib/types.ts", "line": 559, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L559" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L559" } ], "type": { @@ -50798,7 +50798,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ] } @@ -50823,7 +50823,7 @@ "fileName": "src/lib/types.ts", "line": 556, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L556" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L556" } ], "type": { @@ -50850,7 +50850,7 @@ "fileName": "src/lib/types.ts", "line": 554, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L554" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L554" } ], "type": { @@ -50870,7 +50870,7 @@ "fileName": "src/lib/types.ts", "line": 552, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L552" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L552" } ] } @@ -50889,7 +50889,7 @@ "fileName": "src/lib/types.ts", "line": 563, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L563" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L563" } ], "type": { @@ -50923,7 +50923,7 @@ "fileName": "src/lib/types.ts", "line": 566, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L566" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L566" } ], "type": { @@ -50944,7 +50944,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ], "type": { @@ -50977,7 +50977,7 @@ "fileName": "src/lib/types.ts", "line": 579, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L579" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L579" } ], "type": { @@ -51022,7 +51022,7 @@ "fileName": "src/lib/types.ts", "line": 577, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L577" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L577" } ], "type": { @@ -51051,7 +51051,7 @@ "fileName": "src/lib/types.ts", "line": 569, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L569" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L569" } ], "type": { @@ -51080,7 +51080,7 @@ "fileName": "src/lib/types.ts", "line": 571, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L571" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L571" } ], "type": { @@ -51100,7 +51100,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ] } @@ -51118,7 +51118,7 @@ "fileName": "src/lib/types.ts", "line": 564, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L564" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L564" } ] } @@ -51145,7 +51145,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ], "type": { @@ -51178,7 +51178,7 @@ "fileName": "src/lib/types.ts", "line": 595, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L595" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L595" } ], "type": { @@ -51207,7 +51207,7 @@ "fileName": "src/lib/types.ts", "line": 597, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L597" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L597" } ], "type": { @@ -51261,7 +51261,7 @@ "fileName": "src/lib/types.ts", "line": 593, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L593" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L593" } ], "type": { @@ -51290,7 +51290,7 @@ "fileName": "src/lib/types.ts", "line": 587, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L587" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L587" } ], "type": { @@ -51310,7 +51310,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ] } @@ -51335,7 +51335,7 @@ "fileName": "src/lib/types.ts", "line": 584, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L584" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L584" } ], "type": { @@ -51355,7 +51355,7 @@ "fileName": "src/lib/types.ts", "line": 582, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L582" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L582" } ] } @@ -51374,7 +51374,7 @@ "fileName": "src/lib/types.ts", "line": 789, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L789" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L789" } ], "type": { @@ -51402,7 +51402,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ], "type": { @@ -51435,7 +51435,7 @@ "fileName": "src/lib/types.ts", "line": 798, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L798" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L798" } ], "type": { @@ -51464,7 +51464,7 @@ "fileName": "src/lib/types.ts", "line": 796, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L796" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L796" } ], "type": { @@ -51484,7 +51484,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ] } @@ -51509,7 +51509,7 @@ "fileName": "src/lib/types.ts", "line": 792, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L792" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L792" } ], "type": { @@ -51529,7 +51529,7 @@ "fileName": "src/lib/types.ts", "line": 790, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L790" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L790" } ] } @@ -51562,7 +51562,7 @@ "fileName": "src/lib/types.ts", "line": 803, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L803" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L803" } ], "type": { @@ -51583,7 +51583,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ], "type": { @@ -51616,7 +51616,7 @@ "fileName": "src/lib/types.ts", "line": 809, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L809" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L809" } ], "type": { @@ -51645,7 +51645,7 @@ "fileName": "src/lib/types.ts", "line": 807, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L807" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L807" } ], "type": { @@ -51665,7 +51665,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ] } @@ -51683,7 +51683,7 @@ "fileName": "src/lib/types.ts", "line": 801, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L801" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L801" } ] } @@ -51702,7 +51702,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ], "type": { @@ -51735,7 +51735,7 @@ "fileName": "src/lib/types.ts", "line": 1231, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1231" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1231" } ], "type": { @@ -51768,7 +51768,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ] } @@ -51785,7 +51785,7 @@ "fileName": "src/lib/types.ts", "line": 1338, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1338" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1338" } ], "type": { @@ -51815,7 +51815,7 @@ "fileName": "src/lib/types.ts", "line": 503, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L503" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L503" } ], "type": { @@ -51849,7 +51849,7 @@ "fileName": "src/lib/types.ts", "line": 506, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L506" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L506" } ], "type": { @@ -51870,7 +51870,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ], "type": { @@ -51903,7 +51903,7 @@ "fileName": "src/lib/types.ts", "line": 519, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L519" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L519" } ], "type": { @@ -51948,7 +51948,7 @@ "fileName": "src/lib/types.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L517" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L517" } ], "type": { @@ -51977,7 +51977,7 @@ "fileName": "src/lib/types.ts", "line": 511, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L511" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L511" } ], "type": { @@ -51997,7 +51997,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ] } @@ -52022,7 +52022,7 @@ "fileName": "src/lib/types.ts", "line": 508, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L508" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L508" } ], "type": { @@ -52042,7 +52042,7 @@ "fileName": "src/lib/types.ts", "line": 504, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L504" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L504" } ] } @@ -52069,7 +52069,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ], "type": { @@ -52102,7 +52102,7 @@ "fileName": "src/lib/types.ts", "line": 535, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L535" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L535" } ], "type": { @@ -52131,7 +52131,7 @@ "fileName": "src/lib/types.ts", "line": 537, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L537" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L537" } ], "type": { @@ -52185,7 +52185,7 @@ "fileName": "src/lib/types.ts", "line": 533, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L533" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L533" } ], "type": { @@ -52205,7 +52205,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ] } @@ -52230,7 +52230,7 @@ "fileName": "src/lib/types.ts", "line": 526, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L526" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L526" } ], "type": { @@ -52257,7 +52257,7 @@ "fileName": "src/lib/types.ts", "line": 524, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L524" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L524" } ], "type": { @@ -52277,7 +52277,7 @@ "fileName": "src/lib/types.ts", "line": 522, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L522" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L522" } ] } @@ -52296,7 +52296,7 @@ "fileName": "src/lib/types.ts", "line": 632, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L632" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L632" } ], "type": { @@ -52321,7 +52321,7 @@ "fileName": "src/lib/types.ts", "line": 634, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L634" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L634" } ], "type": { @@ -52347,7 +52347,7 @@ "fileName": "src/lib/types.ts", "line": 635, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L635" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L635" } ], "type": { @@ -52363,7 +52363,7 @@ "fileName": "src/lib/types.ts", "line": 635, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L635" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L635" } ], "signatures": [ @@ -52394,7 +52394,7 @@ "fileName": "src/lib/types.ts", "line": 634, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L634" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L634" } ] } @@ -52419,7 +52419,7 @@ "fileName": "src/lib/types.ts", "line": 633, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L633" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L633" } ], "type": { @@ -52435,7 +52435,7 @@ "fileName": "src/lib/types.ts", "line": 633, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L633" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L633" } ], "signatures": [ @@ -52505,7 +52505,7 @@ "fileName": "src/lib/types.ts", "line": 638, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L638" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L638" } ], "type": { @@ -52521,7 +52521,7 @@ "fileName": "src/lib/types.ts", "line": 638, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L638" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L638" } ], "signatures": [ @@ -52608,7 +52608,7 @@ "fileName": "src/lib/types.ts", "line": 632, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L632" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L632" } ] } @@ -52625,7 +52625,7 @@ "fileName": "src/lib/types.ts", "line": 641, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L641" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L641" } ], "type": { @@ -52651,7 +52651,7 @@ "fileName": "src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L643" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L643" } ], "type": { @@ -52672,7 +52672,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ], "type": { @@ -52705,7 +52705,7 @@ "fileName": "src/lib/types.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L656" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L656" } ], "type": { @@ -52726,7 +52726,7 @@ "fileName": "src/lib/types.ts", "line": 658, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L658" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L658" } ], "type": { @@ -52796,7 +52796,7 @@ "fileName": "src/lib/types.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L653" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L653" } ], "type": { @@ -52816,7 +52816,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ] } @@ -52843,7 +52843,7 @@ "fileName": "src/lib/types.ts", "line": 649, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L649" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L649" } ], "type": { @@ -52880,7 +52880,7 @@ "fileName": "src/lib/types.ts", "line": 646, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L646" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L646" } ], "type": { @@ -52901,7 +52901,7 @@ "fileName": "src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L642" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L642" } ] } @@ -52926,7 +52926,7 @@ "fileName": "src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L664" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L664" } ], "type": { @@ -52977,7 +52977,7 @@ "fileName": "src/lib/types.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L667" } ], "type": { @@ -52998,7 +52998,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ], "type": { @@ -53031,7 +53031,7 @@ "fileName": "src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L674" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L674" } ], "type": { @@ -53051,7 +53051,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ] } @@ -53076,7 +53076,7 @@ "fileName": "src/lib/types.ts", "line": 670, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L670" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L670" } ], "type": { @@ -53098,7 +53098,7 @@ "fileName": "src/lib/types.ts", "line": 663, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L663" } ] } @@ -53117,7 +53117,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -53198,7 +53198,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -53218,7 +53218,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -53237,7 +53237,7 @@ "fileName": "src/lib/types.ts", "line": 225, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L225" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L225" } ], "type": { @@ -53263,7 +53263,7 @@ "fileName": "src/lib/types.ts", "line": 227, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L227" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L227" } ], "type": { @@ -53286,7 +53286,7 @@ "fileName": "src/lib/types.ts", "line": 228, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L228" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L228" } ], "type": { @@ -53307,7 +53307,7 @@ "fileName": "src/lib/types.ts", "line": 227, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L227" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L227" } ] } @@ -53324,7 +53324,7 @@ "fileName": "src/lib/types.ts", "line": 230, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L230" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L230" } ], "type": { @@ -53344,7 +53344,7 @@ "fileName": "src/lib/types.ts", "line": 226, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L226" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L226" } ] } @@ -53369,7 +53369,7 @@ "fileName": "src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L233" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L233" } ], "type": { @@ -53392,7 +53392,7 @@ "fileName": "src/lib/types.ts", "line": 234, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L234" } ], "type": { @@ -53412,7 +53412,7 @@ "fileName": "src/lib/types.ts", "line": 233, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L233" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L233" } ] } @@ -53429,7 +53429,7 @@ "fileName": "src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L236" } ], "type": { @@ -53450,7 +53450,7 @@ "fileName": "src/lib/types.ts", "line": 232, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L232" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L232" } ] } @@ -53469,7 +53469,7 @@ "fileName": "src/lib/types.ts", "line": 719, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L719" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L719" } ], "type": { @@ -53495,7 +53495,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ], "type": { @@ -53534,7 +53534,7 @@ "fileName": "src/lib/types.ts", "line": 736, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L736" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L736" } ], "type": { @@ -53563,7 +53563,7 @@ "fileName": "src/lib/types.ts", "line": 729, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L729" } ], "type": { @@ -53583,7 +53583,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ] } @@ -53608,7 +53608,7 @@ "fileName": "src/lib/types.ts", "line": 722, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L722" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L722" } ], "type": { @@ -53635,7 +53635,7 @@ "fileName": "src/lib/types.ts", "line": 724, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L724" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L724" } ], "type": { @@ -53662,7 +53662,7 @@ "fileName": "src/lib/types.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L726" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L726" } ], "type": { @@ -53680,7 +53680,7 @@ "fileName": "src/lib/types.ts", "line": 766, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L766" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L766" } ], "type": { @@ -53711,7 +53711,7 @@ "fileName": "src/lib/types.ts", "line": 720, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L720" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L720" } ] }, @@ -53741,7 +53741,7 @@ "fileName": "src/lib/types.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L741" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L741" } ], "type": { @@ -53762,7 +53762,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ], "type": { @@ -53801,7 +53801,7 @@ "fileName": "src/lib/types.ts", "line": 754, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L754" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L754" } ], "type": { @@ -53830,7 +53830,7 @@ "fileName": "src/lib/types.ts", "line": 748, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L748" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L748" } ], "type": { @@ -53850,7 +53850,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ] } @@ -53875,7 +53875,7 @@ "fileName": "src/lib/types.ts", "line": 743, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L743" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L743" } ], "type": { @@ -53902,7 +53902,7 @@ "fileName": "src/lib/types.ts", "line": 745, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L745" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L745" } ], "type": { @@ -53920,7 +53920,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -53967,7 +53967,7 @@ "fileName": "src/lib/types.ts", "line": 739, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L739" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L739" } ] }, @@ -53997,7 +53997,7 @@ "fileName": "src/lib/types.ts", "line": 760, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L760" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L760" } ], "type": { @@ -54024,7 +54024,7 @@ "fileName": "src/lib/types.ts", "line": 763, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L763" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L763" } ], "type": { @@ -54042,7 +54042,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -54089,7 +54089,7 @@ "fileName": "src/lib/types.ts", "line": 758, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L758" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L758" } ] } @@ -54107,7 +54107,7 @@ "fileName": "src/lib/types.ts", "line": 103, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L103" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L103" } ], "type": { @@ -54130,7 +54130,7 @@ "fileName": "src/lib/types.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L105" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L105" } ], "type": { @@ -54149,7 +54149,7 @@ "fileName": "src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L104" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L104" } ], "type": { @@ -54173,7 +54173,7 @@ "fileName": "src/lib/types.ts", "line": 103, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L103" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L103" } ] } @@ -54190,7 +54190,7 @@ "fileName": "src/lib/types.ts", "line": 102, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L102" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L102" } ], "type": { @@ -54228,7 +54228,7 @@ "fileName": "src/lib/types.ts", "line": 102, "character": 80, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L102" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L102" } ] } @@ -54249,7 +54249,7 @@ "fileName": "src/lib/types.ts", "line": 717, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L717" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L717" } ], "type": { @@ -54266,7 +54266,7 @@ "fileName": "src/lib/types.ts", "line": 641, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L641" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L641" } ], "type": { @@ -54292,7 +54292,7 @@ "fileName": "src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L643" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L643" } ], "type": { @@ -54313,7 +54313,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ], "type": { @@ -54346,7 +54346,7 @@ "fileName": "src/lib/types.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L656" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L656" } ], "type": { @@ -54367,7 +54367,7 @@ "fileName": "src/lib/types.ts", "line": 658, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L658" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L658" } ], "type": { @@ -54437,7 +54437,7 @@ "fileName": "src/lib/types.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L653" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L653" } ], "type": { @@ -54457,7 +54457,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ] } @@ -54484,7 +54484,7 @@ "fileName": "src/lib/types.ts", "line": 649, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L649" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L649" } ], "type": { @@ -54521,7 +54521,7 @@ "fileName": "src/lib/types.ts", "line": 646, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L646" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L646" } ], "type": { @@ -54542,7 +54542,7 @@ "fileName": "src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L642" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L642" } ] } @@ -54567,7 +54567,7 @@ "fileName": "src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L664" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L664" } ], "type": { @@ -54618,7 +54618,7 @@ "fileName": "src/lib/types.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L667" } ], "type": { @@ -54639,7 +54639,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ], "type": { @@ -54672,7 +54672,7 @@ "fileName": "src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L674" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L674" } ], "type": { @@ -54692,7 +54692,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ] } @@ -54717,7 +54717,7 @@ "fileName": "src/lib/types.ts", "line": 670, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L670" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L670" } ], "type": { @@ -54739,7 +54739,7 @@ "fileName": "src/lib/types.ts", "line": 663, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L663" } ] } @@ -54758,7 +54758,7 @@ "fileName": "src/lib/types.ts", "line": 680, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L680" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L680" } ], "type": { @@ -54784,7 +54784,7 @@ "fileName": "src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L682" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L682" } ], "type": { @@ -54805,7 +54805,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ], "type": { @@ -54838,7 +54838,7 @@ "fileName": "src/lib/types.ts", "line": 695, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L695" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L695" } ], "type": { @@ -54859,7 +54859,7 @@ "fileName": "src/lib/types.ts", "line": 697, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L697" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L697" } ], "type": { @@ -54925,7 +54925,7 @@ "fileName": "src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L692" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L692" } ], "type": { @@ -54945,7 +54945,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ] } @@ -54963,7 +54963,7 @@ "summary": [ { "kind": "text", - "text": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" + "text": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" } ] }, @@ -54972,7 +54972,7 @@ "fileName": "src/lib/types.ts", "line": 688, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L688" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L688" } ], "type": { @@ -54996,7 +54996,7 @@ }, { "kind": "code", - "text": "`window.solana`" + "text": "`window.ethereum`" }, { "kind": "text", @@ -55009,7 +55009,7 @@ "fileName": "src/lib/types.ts", "line": 685, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L685" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L685" } ], "type": { @@ -55030,7 +55030,7 @@ "fileName": "src/lib/types.ts", "line": 681, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L681" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L681" } ] } @@ -55055,7 +55055,7 @@ "fileName": "src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L703" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L703" } ], "type": { @@ -55106,7 +55106,7 @@ "fileName": "src/lib/types.ts", "line": 706, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L706" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L706" } ], "type": { @@ -55127,7 +55127,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ], "type": { @@ -55160,7 +55160,7 @@ "fileName": "src/lib/types.ts", "line": 713, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L713" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L713" } ], "type": { @@ -55180,7 +55180,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ] } @@ -55196,7 +55196,7 @@ "summary": [ { "kind": "text", - "text": "Ed25519 signature of the message." + "text": "Ethereum curve (secp256k1) signature of the message." } ] }, @@ -55205,7 +55205,7 @@ "fileName": "src/lib/types.ts", "line": 709, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L709" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L709" } ], "type": { @@ -55225,7 +55225,7 @@ "fileName": "src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L702" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L702" } ] } @@ -55249,7 +55249,7 @@ "fileName": "src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/AuthAdminApi.ts#L3" } ], "type": { @@ -55275,7 +55275,7 @@ "fileName": "src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/AuthClient.ts#L3" } ], "type": { @@ -55301,7 +55301,7 @@ "fileName": "src/lib/types.ts", "line": 1337, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1337" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1337" } ], "type": { @@ -55344,7 +55344,7 @@ "fileName": "src/lib/locks.ts", "line": 6, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L6" } ], "type": { @@ -55371,7 +55371,7 @@ "fileName": "src/lib/locks.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L10" } ], "type": { @@ -55392,7 +55392,7 @@ "fileName": "src/lib/locks.ts", "line": 6, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L6" } ] } @@ -55410,7 +55410,7 @@ "fileName": "src/lib/errors.ts", "line": 41, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L41" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L41" } ], "signatures": [ @@ -55457,7 +55457,7 @@ "fileName": "src/lib/errors.ts", "line": 26, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L26" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L26" } ], "signatures": [ @@ -55504,7 +55504,7 @@ "fileName": "src/lib/errors.ts", "line": 105, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L105" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L105" } ], "signatures": [ @@ -55551,7 +55551,7 @@ "fileName": "src/lib/errors.ts", "line": 135, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L135" } ], "signatures": [ @@ -55598,7 +55598,7 @@ "fileName": "src/lib/errors.ts", "line": 72, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L72" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L72" } ], "signatures": [ @@ -55645,7 +55645,7 @@ "fileName": "src/lib/errors.ts", "line": 157, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L157" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L157" } ], "signatures": [ @@ -55692,7 +55692,7 @@ "fileName": "src/lib/locks.ts", "line": 59, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L59" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L59" } ], "signatures": [ @@ -55835,7 +55835,7 @@ "fileName": "src/lib/locks.ts", "line": 62, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L62" } ], "signatures": [ @@ -55891,7 +55891,7 @@ "fileName": "src/lib/locks.ts", "line": 171, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L171" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L171" } ], "signatures": [ @@ -56002,7 +56002,7 @@ "fileName": "src/lib/locks.ts", "line": 174, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L174" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L174" } ], "signatures": [ @@ -56085,7 +56085,7 @@ "fileName": "src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/index.ts#L1" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/index.ts#L1" } ] }, diff --git a/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json b/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json index 1b0b90825659c..ea1f824410480 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json @@ -24,7 +24,7 @@ "fileName": "src/lib/errors.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L33" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L33" } ], "signatures": [ @@ -125,7 +125,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -185,7 +185,7 @@ "fileName": "src/lib/errors.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L31" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L31" } ], "type": { @@ -214,7 +214,7 @@ "fileName": "src/lib/errors.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L30" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L30" } ], "extendedTypes": [ @@ -243,7 +243,7 @@ "fileName": "src/lib/errors.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L18" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L18" } ], "signatures": [ @@ -337,7 +337,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -392,7 +392,7 @@ "fileName": "src/lib/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L14" } ], "type": { @@ -425,7 +425,7 @@ "fileName": "src/lib/errors.ts", "line": 4, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L4" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L4" } ], "extendedTypes": [ @@ -472,7 +472,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ], "signatures": [ @@ -527,7 +527,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 57, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ], "type": { @@ -546,7 +546,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ], "type": { @@ -566,7 +566,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 40, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ] } @@ -623,7 +623,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -675,7 +675,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -705,7 +705,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -724,7 +724,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -744,7 +744,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ] } @@ -764,7 +764,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -796,7 +796,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -820,7 +820,7 @@ "fileName": "src/lib/errors.ts", "line": 95, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L95" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L95" } ], "signatures": [ @@ -850,7 +850,7 @@ "fileName": "src/lib/errors.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L100" } ], "type": { @@ -880,7 +880,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -899,7 +899,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -919,7 +919,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ] } @@ -939,7 +939,7 @@ "fileName": "src/lib/errors.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L98" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L98" } ], "type": { @@ -959,7 +959,7 @@ "fileName": "src/lib/errors.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L97" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L97" } ], "type": { @@ -979,7 +979,7 @@ "fileName": "src/lib/errors.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L99" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L99" } ], "type": { @@ -1000,7 +1000,7 @@ "fileName": "src/lib/errors.ts", "line": 96, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L96" } ] } @@ -1028,7 +1028,7 @@ "fileName": "src/lib/errors.ts", "line": 88, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L88" } ], "extendedTypes": [ @@ -1057,7 +1057,7 @@ "fileName": "src/lib/errors.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L83" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L83" } ], "signatures": [ @@ -1127,7 +1127,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -1179,7 +1179,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -1211,7 +1211,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -1240,7 +1240,7 @@ "fileName": "src/lib/errors.ts", "line": 82, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L82" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L82" } ], "extendedTypes": [ @@ -1269,7 +1269,7 @@ "fileName": "src/lib/errors.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L162" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L162" } ], "signatures": [ @@ -1339,7 +1339,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -1391,7 +1391,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -1423,7 +1423,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -1452,7 +1452,7 @@ "fileName": "src/lib/errors.ts", "line": 161, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L161" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L161" } ], "extendedTypes": [ @@ -1481,7 +1481,7 @@ "fileName": "src/lib/errors.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L77" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L77" } ], "signatures": [ @@ -1538,7 +1538,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -1590,7 +1590,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -1622,7 +1622,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -1651,7 +1651,7 @@ "fileName": "src/lib/errors.ts", "line": 76, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L76" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L76" } ], "extendedTypes": [ @@ -1680,7 +1680,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ], "signatures": [ @@ -1735,7 +1735,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 57, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ], "type": { @@ -1754,7 +1754,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ], "type": { @@ -1774,7 +1774,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 40, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ] } @@ -1831,7 +1831,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -1883,7 +1883,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -1913,7 +1913,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -1932,7 +1932,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -1952,7 +1952,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ] } @@ -1972,7 +1972,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -2004,7 +2004,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -2028,7 +2028,7 @@ "fileName": "src/lib/errors.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L119" } ], "signatures": [ @@ -2058,7 +2058,7 @@ "fileName": "src/lib/errors.ts", "line": 124, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L124" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L124" } ], "type": { @@ -2088,7 +2088,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -2107,7 +2107,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -2127,7 +2127,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ] } @@ -2147,7 +2147,7 @@ "fileName": "src/lib/errors.ts", "line": 122, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L122" } ], "type": { @@ -2167,7 +2167,7 @@ "fileName": "src/lib/errors.ts", "line": 121, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L121" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L121" } ], "type": { @@ -2187,7 +2187,7 @@ "fileName": "src/lib/errors.ts", "line": 123, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L123" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L123" } ], "type": { @@ -2208,7 +2208,7 @@ "fileName": "src/lib/errors.ts", "line": 120, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L120" } ] } @@ -2236,7 +2236,7 @@ "fileName": "src/lib/errors.ts", "line": 111, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L111" } ], "extendedTypes": [ @@ -2265,7 +2265,7 @@ "fileName": "src/lib/errors.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L130" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L130" } ], "signatures": [ @@ -2346,7 +2346,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -2398,7 +2398,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -2430,7 +2430,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -2459,7 +2459,7 @@ "fileName": "src/lib/errors.ts", "line": 129, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L129" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L129" } ], "extendedTypes": [ @@ -2488,7 +2488,7 @@ "fileName": "src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L67" } ], "signatures": [ @@ -2545,7 +2545,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -2597,7 +2597,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -2629,7 +2629,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -2658,7 +2658,7 @@ "fileName": "src/lib/errors.ts", "line": 66, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L66" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L66" } ], "extendedTypes": [ @@ -2687,7 +2687,7 @@ "fileName": "src/lib/errors.ts", "line": 48, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L48" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L48" } ], "signatures": [ @@ -2768,7 +2768,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -2820,7 +2820,7 @@ "fileName": "src/lib/errors.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L46" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L46" } ], "type": { @@ -2847,7 +2847,7 @@ "fileName": "src/lib/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L14" } ], "type": { @@ -2885,7 +2885,7 @@ "fileName": "src/lib/errors.ts", "line": 45, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L45" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L45" } ], "extendedTypes": [ @@ -2922,7 +2922,7 @@ "fileName": "src/lib/errors.ts", "line": 150, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L150" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L150" } ], "signatures": [ @@ -3017,7 +3017,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -3069,7 +3069,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -3101,7 +3101,7 @@ "fileName": "src/lib/errors.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L148" } ], "type": { @@ -3132,7 +3132,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -3161,7 +3161,7 @@ "fileName": "src/lib/errors.ts", "line": 144, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L144" } ], "extendedTypes": [ @@ -3190,7 +3190,7 @@ "fileName": "src/lib/errors.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L59" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L59" } ], "signatures": [ @@ -3302,7 +3302,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -3354,7 +3354,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -3385,7 +3385,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -3414,7 +3414,7 @@ "fileName": "src/lib/errors.ts", "line": 55, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L55" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L55" } ], "extendedTypes": [ @@ -3485,7 +3485,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L37" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L37" } ], "signatures": [ @@ -3524,7 +3524,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -3622,7 +3622,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "type": { @@ -3638,7 +3638,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "indexSignature": { @@ -3678,7 +3678,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 42, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L42" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L42" } ], "type": { @@ -3698,7 +3698,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 41, "character": 5, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L41" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L41" } ] } @@ -3732,7 +3732,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 29, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L29" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L29" } ], "type": { @@ -3752,7 +3752,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 160, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L160" } ], "signatures": [ @@ -3819,7 +3819,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L280" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L280" } ], "signatures": [ @@ -3921,7 +3921,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 126, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L126" } ], "signatures": [ @@ -3980,7 +3980,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 229, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L229" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L229" } ], "signatures": [ @@ -4054,7 +4054,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L93" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L93" } ], "signatures": [ @@ -4144,7 +4144,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L97" } ], "type": { @@ -4173,7 +4173,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L100" } ], "type": { @@ -4193,7 +4193,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 95, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L95" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L95" } ] } @@ -4228,7 +4228,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 182, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L182" } ], "signatures": [ @@ -4320,7 +4320,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -4346,7 +4346,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -4365,7 +4365,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -4389,7 +4389,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -4413,7 +4413,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 59, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -4433,7 +4433,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -4458,7 +4458,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -4481,7 +4481,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -4500,7 +4500,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -4517,7 +4517,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 29, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -4538,7 +4538,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -4564,7 +4564,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 62, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L62" } ], "signatures": [ @@ -4659,7 +4659,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -4678,7 +4678,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -4708,7 +4708,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ] } @@ -4732,7 +4732,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 253, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L253" } ], "signatures": [ @@ -4827,7 +4827,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 27, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L27" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L27" } ] }, @@ -4849,7 +4849,7 @@ "fileName": "src/GoTrueClient.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L240" } ], "signatures": [ @@ -4908,7 +4908,7 @@ "fileName": "src/GoTrueClient.ts", "line": 167, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L167" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L167" } ], "type": { @@ -4936,7 +4936,7 @@ "fileName": "src/GoTrueClient.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L171" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L171" } ], "type": { @@ -4956,7 +4956,7 @@ "fileName": "src/GoTrueClient.ts", "line": 651, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L651" } ], "signatures": [ @@ -5014,7 +5014,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3181, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3181" } ], "signatures": [ @@ -5152,7 +5152,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3190, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3190" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3190" } ], "type": { @@ -5181,7 +5181,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3193, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3193" } ], "type": { @@ -5204,7 +5204,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3193, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3193" } ], "type": { @@ -5228,7 +5228,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3193, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3193" } ] } @@ -5261,7 +5261,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3187, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3187" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3187" } ], "type": { @@ -5285,7 +5285,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3183, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3183" } ] } @@ -5319,7 +5319,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -5342,7 +5342,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -5362,7 +5362,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 36, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -5382,7 +5382,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 55, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -5404,7 +5404,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ] } @@ -5421,7 +5421,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3198, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3198" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3198" } ], "type": { @@ -5441,7 +5441,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3196, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3196" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3196" } ] } @@ -5466,7 +5466,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3200, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3200" } ], "type": { @@ -5485,7 +5485,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3200, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3200" } ], "type": { @@ -5506,7 +5506,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3200, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3200" } ] } @@ -5531,7 +5531,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3201, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3201" } ], "type": { @@ -5550,7 +5550,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3201, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3201" } ], "type": { @@ -5570,7 +5570,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3201, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3201" } ] } @@ -5596,7 +5596,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1355, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1355" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1355" } ], "signatures": [ @@ -5650,7 +5650,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1448, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1448" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1448" } ], "type": { @@ -5673,7 +5673,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1449, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1449" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1449" } ], "type": { @@ -5694,7 +5694,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1448, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1448" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1448" } ] } @@ -5711,7 +5711,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1451, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1451" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1451" } ], "type": { @@ -5731,7 +5731,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1447, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1447" } ] } @@ -5756,7 +5756,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1454, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1454" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1454" } ], "type": { @@ -5779,7 +5779,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1455, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1455" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1455" } ], "type": { @@ -5799,7 +5799,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1454, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1454" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1454" } ] } @@ -5816,7 +5816,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1457, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1457" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1457" } ], "type": { @@ -5837,7 +5837,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1453, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1453" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1453" } ] } @@ -5862,7 +5862,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1460, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1460" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1460" } ], "type": { @@ -5885,7 +5885,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1461, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1461" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1461" } ], "type": { @@ -5905,7 +5905,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1460, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1460" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1460" } ] } @@ -5922,7 +5922,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1463, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1463" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1463" } ], "type": { @@ -5942,7 +5942,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1459, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1459" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1459" } ] } @@ -5968,7 +5968,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1599, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1599" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1599" } ], "signatures": [ @@ -6036,7 +6036,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2157, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2157" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2157" } ], "signatures": [ @@ -6080,7 +6080,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2159, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2159" } ], "type": { @@ -6103,7 +6103,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2160, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2160" } ], "type": { @@ -6127,7 +6127,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2159, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2159" } ] } @@ -6144,7 +6144,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2162, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2162" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2162" } ], "type": { @@ -6164,7 +6164,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2158, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2158" } ] } @@ -6189,7 +6189,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2164, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2164" } ], "type": { @@ -6208,7 +6208,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2164, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2164" } ], "type": { @@ -6229,7 +6229,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2164, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2164" } ] } @@ -6255,7 +6255,7 @@ "fileName": "src/GoTrueClient.ts", "line": 353, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L353" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L353" } ], "signatures": [ @@ -6300,7 +6300,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2181, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2181" } ], "signatures": [ @@ -6359,7 +6359,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2055, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2055" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2055" } ], "signatures": [ @@ -6405,7 +6405,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2056, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2056" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2056" } ], "signatures": [ @@ -6497,7 +6497,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2058, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2058" } ], "type": { @@ -6520,7 +6520,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2058, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2058" } ], "type": { @@ -6541,7 +6541,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2058, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2058" } ] } @@ -6559,7 +6559,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2057, "character": 5, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2057" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2057" } ] } @@ -6578,7 +6578,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1271, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1271" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1271" } ], "signatures": [ @@ -6623,7 +6623,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1804, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1804" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1804" } ], "signatures": [ @@ -6678,7 +6678,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1804, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1804" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1804" } ], "type": { @@ -6698,7 +6698,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1804, "character": 40, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1804" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1804" } ] } @@ -6732,7 +6732,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1306, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1306" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1306" } ], "signatures": [ @@ -6791,7 +6791,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2111, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2111" } ], "signatures": [ @@ -6865,7 +6865,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2115, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2115" } ], "type": { @@ -6894,7 +6894,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2114, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2114" } ], "type": { @@ -6914,7 +6914,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2113, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2113" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2113" } ] } @@ -6948,7 +6948,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2119, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2119" } ], "type": { @@ -6973,7 +6973,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2120, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2120" } ], "type": { @@ -6993,7 +6993,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2118, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2118" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2118" } ] } @@ -7018,7 +7018,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2122, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2122" } ], "type": { @@ -7037,7 +7037,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2122, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2122" } ], "type": { @@ -7058,7 +7058,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2122, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2122" } ] } @@ -7084,7 +7084,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1729, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1729" } ], "signatures": [ @@ -7137,7 +7137,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1730, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1730" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1730" } ], "type": { @@ -7156,7 +7156,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1731, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1731" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1731" } ], "type": { @@ -7176,7 +7176,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1729, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1729" } ] } @@ -7210,7 +7210,7 @@ "fileName": "src/GoTrueClient.ts", "line": 456, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L456" } ], "signatures": [ @@ -7282,7 +7282,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1064, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1064" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1064" } ], "signatures": [ @@ -7341,7 +7341,7 @@ "fileName": "src/GoTrueClient.ts", "line": 639, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L639" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L639" } ], "signatures": [ @@ -7400,7 +7400,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1119, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1119" } ], "signatures": [ @@ -7475,7 +7475,7 @@ "fileName": "src/GoTrueClient.ts", "line": 576, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L576" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L576" } ], "signatures": [ @@ -7534,7 +7534,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1233, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1233" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1233" } ], "signatures": [ @@ -7593,7 +7593,7 @@ "fileName": "src/GoTrueClient.ts", "line": 666, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L666" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L666" } ], "signatures": [ @@ -7662,7 +7662,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ], "type": { @@ -7685,7 +7685,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ], "type": { @@ -7705,7 +7705,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ], "type": { @@ -7726,7 +7726,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ] } @@ -7743,7 +7743,7 @@ "fileName": "src/GoTrueClient.ts", "line": 669, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L669" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L669" } ], "type": { @@ -7763,7 +7763,7 @@ "fileName": "src/GoTrueClient.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L667" } ] } @@ -7788,7 +7788,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -7811,7 +7811,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -7830,7 +7830,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -7850,7 +7850,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ] } @@ -7867,7 +7867,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -7888,7 +7888,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ] } @@ -7914,7 +7914,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2011, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2011" } ], "signatures": [ @@ -8010,7 +8010,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2011, "character": 67, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2011" } ], "type": { @@ -8040,7 +8040,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2011, "character": 65, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2011" } ] } @@ -8064,7 +8064,7 @@ "fileName": "src/GoTrueClient.ts", "line": 499, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L499" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L499" } ], "signatures": [ @@ -8143,7 +8143,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2698, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2698" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2698" } ], "signatures": [ @@ -8201,7 +8201,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2711, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2711" } ], "signatures": [ @@ -8255,7 +8255,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2217, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2217" } ], "signatures": [ @@ -8313,7 +8313,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2219, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2219" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2219" } ], "type": { @@ -8338,7 +8338,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2220, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2220" } ], "type": { @@ -8358,7 +8358,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2218, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2218" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2218" } ] } @@ -8383,7 +8383,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2222, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2222" } ], "type": { @@ -8402,7 +8402,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2222, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2222" } ], "type": { @@ -8423,7 +8423,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2222, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2222" } ] } @@ -8449,7 +8449,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1660, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1660" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1660" } ], "signatures": [ @@ -8508,7 +8508,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1663, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1663" } ], "type": { @@ -8528,7 +8528,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1662, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1662" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1662" } ] } @@ -8563,7 +8563,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1172, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1172" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1172" } ], "signatures": [ @@ -8634,7 +8634,7 @@ "fileName": "src/GoTrueClient.ts", "line": 158, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L158" } ] }, @@ -8656,7 +8656,7 @@ "fileName": "src/lib/locks.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L26" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L26" } ], "signatures": [ @@ -8709,7 +8709,7 @@ "fileName": "src/lib/locks.ts", "line": 24, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L24" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L24" } ], "type": { @@ -8738,7 +8738,7 @@ "fileName": "src/lib/locks.ts", "line": 31, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L31" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L31" } ], "extendedTypes": [ @@ -8799,7 +8799,7 @@ "fileName": "src/lib/types.ts", "line": 283, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L283" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L283" } ], "type": { @@ -8862,7 +8862,7 @@ "fileName": "src/lib/types.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L289" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L289" } ], "type": { @@ -8882,7 +8882,7 @@ "fileName": "src/lib/types.ts", "line": 281, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L281" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L281" } ] }, @@ -8930,7 +8930,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -8959,7 +8959,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -8988,7 +8988,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -9021,7 +9021,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -9066,7 +9066,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -9095,7 +9095,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -9128,7 +9128,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -9169,7 +9169,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -9198,7 +9198,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -9231,7 +9231,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -9292,7 +9292,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -9337,7 +9337,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -9357,7 +9357,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -9454,7 +9454,7 @@ "fileName": "src/lib/types.ts", "line": 327, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L327" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L327" } ], "type": { @@ -9497,7 +9497,7 @@ "fileName": "src/lib/types.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L322" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L322" } ], "type": { @@ -9554,7 +9554,7 @@ "fileName": "src/lib/types.ts", "line": 317, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L317" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L317" } ], "type": { @@ -9581,7 +9581,7 @@ "fileName": "src/lib/types.ts", "line": 314, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L314" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L314" } ], "type": { @@ -9608,7 +9608,7 @@ "fileName": "src/lib/types.ts", "line": 325, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L325" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L325" } ], "type": { @@ -9636,7 +9636,7 @@ "fileName": "src/lib/types.ts", "line": 328, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L328" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L328" } ], "type": { @@ -9656,7 +9656,7 @@ "fileName": "src/lib/types.ts", "line": 312, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L312" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L312" } ] }, @@ -9704,7 +9704,7 @@ "fileName": "src/lib/types.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L851" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L851" } ], "type": { @@ -9733,7 +9733,7 @@ "fileName": "src/lib/types.ts", "line": 853, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L853" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L853" } ], "type": { @@ -9753,7 +9753,7 @@ "fileName": "src/lib/types.ts", "line": 845, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L845" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L845" } ] }, @@ -9789,7 +9789,7 @@ "fileName": "src/lib/types.ts", "line": 1169, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1169" } ], "signatures": [ @@ -9865,7 +9865,7 @@ "fileName": "src/lib/types.ts", "line": 1159, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1159" } ], "signatures": [ @@ -9925,7 +9925,7 @@ "fileName": "src/lib/types.ts", "line": 1154, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1154" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1154" } ] }, @@ -9955,7 +9955,7 @@ "fileName": "src/lib/types.ts", "line": 1058, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1058" } ], "signatures": [ @@ -10014,7 +10014,7 @@ "fileName": "src/lib/types.ts", "line": 1076, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1076" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1076" } ], "signatures": [ @@ -10073,19 +10073,19 @@ "fileName": "src/lib/types.ts", "line": 1050, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1050" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1050" }, { "fileName": "src/lib/types.ts", "line": 1051, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1051" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1051" }, { "fileName": "src/lib/types.ts", "line": 1052, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1052" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1052" } ], "signatures": [ @@ -10228,7 +10228,7 @@ "fileName": "src/lib/types.ts", "line": 1101, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1101" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1101" } ], "signatures": [ @@ -10297,7 +10297,7 @@ "fileName": "src/lib/types.ts", "line": 1086, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1086" } ], "signatures": [ @@ -10391,7 +10391,7 @@ "fileName": "src/lib/types.ts", "line": 1070, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1070" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1070" } ], "signatures": [ @@ -10466,7 +10466,7 @@ "fileName": "src/lib/types.ts", "line": 1064, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1064" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1064" } ], "signatures": [ @@ -10526,7 +10526,7 @@ "fileName": "src/lib/types.ts", "line": 1039, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1039" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1039" } ] }, @@ -10550,7 +10550,7 @@ "fileName": "src/lib/types.ts", "line": 1332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1332" } ], "type": { @@ -10569,7 +10569,7 @@ "fileName": "src/lib/types.ts", "line": 1331, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1331" } ], "type": { @@ -10593,7 +10593,7 @@ "fileName": "src/lib/types.ts", "line": 1333, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1333" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1333" } ], "type": { @@ -10612,7 +10612,7 @@ "fileName": "src/lib/types.ts", "line": 1330, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1330" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1330" } ], "type": { @@ -10645,7 +10645,7 @@ "fileName": "src/lib/types.ts", "line": 1329, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1329" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1329" } ], "indexSignature": { @@ -10698,7 +10698,7 @@ "fileName": "src/lib/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L252" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L252" } ], "type": { @@ -10727,7 +10727,7 @@ "fileName": "src/lib/types.ts", "line": 264, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L264" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L264" } ], "type": { @@ -10754,7 +10754,7 @@ "fileName": "src/lib/types.ts", "line": 260, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L260" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L260" } ], "type": { @@ -10783,7 +10783,7 @@ "fileName": "src/lib/types.ts", "line": 248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L248" } ], "type": { @@ -10821,7 +10821,7 @@ "fileName": "src/lib/types.ts", "line": 243, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L243" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L243" } ], "type": { @@ -10857,7 +10857,7 @@ "fileName": "src/lib/types.ts", "line": 256, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L256" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L256" } ], "type": { @@ -10876,7 +10876,7 @@ "fileName": "src/lib/types.ts", "line": 265, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L265" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L265" } ], "type": { @@ -10903,7 +10903,7 @@ "fileName": "src/lib/types.ts", "line": 270, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L270" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L270" } ], "type": { @@ -10924,7 +10924,7 @@ "fileName": "src/lib/types.ts", "line": 239, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L239" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L239" } ] }, @@ -10946,7 +10946,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "type": { @@ -10962,7 +10962,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "signatures": [ @@ -11043,7 +11043,7 @@ "fileName": "src/lib/types.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L479" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L479" } ], "type": { @@ -11062,7 +11062,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "type": { @@ -11078,7 +11078,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "signatures": [ @@ -11117,7 +11117,7 @@ "fileName": "src/lib/types.ts", "line": 475, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L475" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L475" } ] }, @@ -11141,7 +11141,7 @@ "fileName": "src/lib/types.ts", "line": 351, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L351" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L351" } ], "type": { @@ -11160,7 +11160,7 @@ "fileName": "src/lib/types.ts", "line": 342, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L342" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L342" } ], "type": { @@ -11180,7 +11180,7 @@ "fileName": "src/lib/types.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L344" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L344" } ], "type": { @@ -11201,7 +11201,7 @@ "fileName": "src/lib/types.ts", "line": 345, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L345" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L345" } ], "type": { @@ -11222,7 +11222,7 @@ "fileName": "src/lib/types.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L355" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L355" } ], "type": { @@ -11241,7 +11241,7 @@ "fileName": "src/lib/types.ts", "line": 354, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L354" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L354" } ], "type": { @@ -11262,7 +11262,7 @@ "fileName": "src/lib/types.ts", "line": 365, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L365" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L365" } ], "type": { @@ -11283,7 +11283,7 @@ "fileName": "src/lib/types.ts", "line": 352, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L352" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L352" } ], "type": { @@ -11304,7 +11304,7 @@ "fileName": "src/lib/types.ts", "line": 347, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L347" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L347" } ], "type": { @@ -11325,7 +11325,7 @@ "fileName": "src/lib/types.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L356" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L356" } ], "type": { @@ -11346,7 +11346,7 @@ "fileName": "src/lib/types.ts", "line": 364, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L364" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L364" } ], "type": { @@ -11369,7 +11369,7 @@ "fileName": "src/lib/types.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L341" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L341" } ], "type": { @@ -11390,7 +11390,7 @@ "fileName": "src/lib/types.ts", "line": 361, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L361" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L361" } ], "type": { @@ -11415,7 +11415,7 @@ "fileName": "src/lib/types.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L350" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L350" } ], "type": { @@ -11436,7 +11436,7 @@ "fileName": "src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L362" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L362" } ], "type": { @@ -11457,7 +11457,7 @@ "fileName": "src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L363" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L363" } ], "type": { @@ -11478,7 +11478,7 @@ "fileName": "src/lib/types.ts", "line": 358, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L358" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L358" } ], "type": { @@ -11499,7 +11499,7 @@ "fileName": "src/lib/types.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L348" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L348" } ], "type": { @@ -11520,7 +11520,7 @@ "fileName": "src/lib/types.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L349" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L349" } ], "type": { @@ -11541,7 +11541,7 @@ "fileName": "src/lib/types.ts", "line": 353, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L353" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L353" } ], "type": { @@ -11562,7 +11562,7 @@ "fileName": "src/lib/types.ts", "line": 357, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L357" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L357" } ], "type": { @@ -11583,7 +11583,7 @@ "fileName": "src/lib/types.ts", "line": 346, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L346" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L346" } ], "type": { @@ -11604,7 +11604,7 @@ "fileName": "src/lib/types.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L359" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L359" } ], "type": { @@ -11625,7 +11625,7 @@ "fileName": "src/lib/types.ts", "line": 360, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L360" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L360" } ], "type": { @@ -11644,7 +11644,7 @@ "fileName": "src/lib/types.ts", "line": 343, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L343" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L343" } ], "type": { @@ -11668,7 +11668,7 @@ "fileName": "src/lib/types.ts", "line": 340, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L340" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L340" } ] }, @@ -11692,7 +11692,7 @@ "fileName": "src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L332" } ], "type": { @@ -11712,7 +11712,7 @@ "fileName": "src/lib/types.ts", "line": 331, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L331" } ], "indexSignature": { @@ -11783,7 +11783,7 @@ "fileName": "src/lib/types.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L397" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L397" } ], "type": { @@ -11812,7 +11812,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -11841,7 +11841,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -11870,7 +11870,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -11899,7 +11899,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -11919,7 +11919,7 @@ "fileName": "src/lib/types.ts", "line": 368, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L368" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L368" } ] }, @@ -11943,7 +11943,7 @@ "fileName": "src/lib/types.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L300" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L300" } ], "type": { @@ -11962,7 +11962,7 @@ "fileName": "src/lib/types.ts", "line": 293, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L293" } ], "type": { @@ -11983,7 +11983,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "type": { @@ -11999,7 +11999,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "indexSignature": { @@ -12039,7 +12039,7 @@ "fileName": "src/lib/types.ts", "line": 298, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L298" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L298" } ], "type": { @@ -12060,7 +12060,7 @@ "fileName": "src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L301" } ], "type": { @@ -12079,7 +12079,7 @@ "fileName": "src/lib/types.ts", "line": 299, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L299" } ], "type": { @@ -12100,7 +12100,7 @@ "fileName": "src/lib/types.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L302" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L302" } ], "type": { @@ -12119,7 +12119,7 @@ "fileName": "src/lib/types.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L294" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L294" } ], "type": { @@ -12139,7 +12139,7 @@ "fileName": "src/lib/types.ts", "line": 292, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L292" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L292" } ] }, @@ -12154,7 +12154,7 @@ "fileName": "src/lib/types.ts", "line": 336, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L336" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L336" } ], "indexSignature": { @@ -12207,7 +12207,7 @@ "fileName": "src/lib/types.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L741" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L741" } ], "type": { @@ -12228,7 +12228,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ], "type": { @@ -12267,7 +12267,7 @@ "fileName": "src/lib/types.ts", "line": 754, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L754" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L754" } ], "type": { @@ -12296,7 +12296,7 @@ "fileName": "src/lib/types.ts", "line": 748, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L748" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L748" } ], "type": { @@ -12316,7 +12316,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ] } @@ -12341,7 +12341,7 @@ "fileName": "src/lib/types.ts", "line": 743, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L743" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L743" } ], "type": { @@ -12368,7 +12368,7 @@ "fileName": "src/lib/types.ts", "line": 745, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L745" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L745" } ], "type": { @@ -12389,7 +12389,7 @@ "fileName": "src/lib/types.ts", "line": 739, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L739" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L739" } ] }, @@ -12413,7 +12413,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ], "type": { @@ -12452,7 +12452,7 @@ "fileName": "src/lib/types.ts", "line": 736, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L736" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L736" } ], "type": { @@ -12481,7 +12481,7 @@ "fileName": "src/lib/types.ts", "line": 729, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L729" } ], "type": { @@ -12501,7 +12501,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ] } @@ -12526,7 +12526,7 @@ "fileName": "src/lib/types.ts", "line": 722, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L722" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L722" } ], "type": { @@ -12553,7 +12553,7 @@ "fileName": "src/lib/types.ts", "line": 724, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L724" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L724" } ], "type": { @@ -12580,7 +12580,7 @@ "fileName": "src/lib/types.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L726" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L726" } ], "type": { @@ -12601,7 +12601,7 @@ "fileName": "src/lib/types.ts", "line": 720, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L720" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L720" } ] }, @@ -12631,7 +12631,7 @@ "fileName": "src/lib/types.ts", "line": 760, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L760" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L760" } ], "type": { @@ -12658,7 +12658,7 @@ "fileName": "src/lib/types.ts", "line": 763, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L763" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L763" } ], "type": { @@ -12679,7 +12679,7 @@ "fileName": "src/lib/types.ts", "line": 758, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L758" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L758" } ] }, @@ -12694,7 +12694,7 @@ "fileName": "src/lib/types.ts", "line": 34, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L34" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L34" } ], "type": { @@ -12743,7 +12743,7 @@ "fileName": "src/lib/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L32" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L32" } ], "type": { @@ -12762,7 +12762,7 @@ "fileName": "src/lib/types.ts", "line": 601, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L601" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L601" } ], "type": { @@ -12799,7 +12799,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ], "type": { @@ -12830,7 +12830,7 @@ "fileName": "src/lib/types.ts", "line": 1122, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1122" } ], "type": { @@ -12857,7 +12857,7 @@ "fileName": "src/lib/types.ts", "line": 1125, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1125" } ], "type": { @@ -12877,7 +12877,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ] } @@ -12903,7 +12903,7 @@ "fileName": "src/lib/types.ts", "line": 1107, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1107" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1107" } ], "type": { @@ -12929,7 +12929,7 @@ "fileName": "src/lib/types.ts", "line": 1109, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1109" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1109" } ], "type": { @@ -12960,7 +12960,7 @@ "fileName": "src/lib/types.ts", "line": 1111, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1111" } ], "type": { @@ -12980,7 +12980,7 @@ "fileName": "src/lib/types.ts", "line": 1109, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1109" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1109" } ] } @@ -12997,7 +12997,7 @@ "fileName": "src/lib/types.ts", "line": 1113, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1113" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1113" } ], "type": { @@ -13017,7 +13017,7 @@ "fileName": "src/lib/types.ts", "line": 1108, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1108" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1108" } ] } @@ -13042,7 +13042,7 @@ "fileName": "src/lib/types.ts", "line": 1115, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1115" } ], "type": { @@ -13061,7 +13061,7 @@ "fileName": "src/lib/types.ts", "line": 1115, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1115" } ], "type": { @@ -13082,7 +13082,7 @@ "fileName": "src/lib/types.ts", "line": 1115, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1115" } ] } @@ -13110,7 +13110,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ], "type": { @@ -13141,7 +13141,7 @@ "fileName": "src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1146" } ], "type": { @@ -13161,7 +13161,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ] } @@ -13187,7 +13187,7 @@ "fileName": "src/lib/types.ts", "line": 1131, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1131" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1131" } ], "type": { @@ -13213,7 +13213,7 @@ "fileName": "src/lib/types.ts", "line": 1133, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1133" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1133" } ], "type": { @@ -13244,7 +13244,7 @@ "fileName": "src/lib/types.ts", "line": 1135, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1135" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1135" } ], "type": { @@ -13268,7 +13268,7 @@ "fileName": "src/lib/types.ts", "line": 1133, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1133" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1133" } ] } @@ -13285,7 +13285,7 @@ "fileName": "src/lib/types.ts", "line": 1137, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1137" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1137" } ], "type": { @@ -13305,7 +13305,7 @@ "fileName": "src/lib/types.ts", "line": 1132, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1132" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1132" } ] } @@ -13330,7 +13330,7 @@ "fileName": "src/lib/types.ts", "line": 1139, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1139" } ], "type": { @@ -13349,7 +13349,7 @@ "fileName": "src/lib/types.ts", "line": 1139, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1139" } ], "type": { @@ -13370,7 +13370,7 @@ "fileName": "src/lib/types.ts", "line": 1139, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1139" } ] } @@ -13389,7 +13389,7 @@ "fileName": "src/lib/types.ts", "line": 977, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L977" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L977" } ], "type": { @@ -13415,7 +13415,7 @@ "fileName": "src/lib/types.ts", "line": 979, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L979" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L979" } ], "type": { @@ -13446,7 +13446,7 @@ "fileName": "src/lib/types.ts", "line": 987, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L987" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L987" } ], "type": { @@ -13473,7 +13473,7 @@ "fileName": "src/lib/types.ts", "line": 981, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L981" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L981" } ], "type": { @@ -13500,7 +13500,7 @@ "fileName": "src/lib/types.ts", "line": 984, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L984" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L984" } ], "type": { @@ -13529,7 +13529,7 @@ "fileName": "src/lib/types.ts", "line": 979, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L979" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L979" } ] } @@ -13546,7 +13546,7 @@ "fileName": "src/lib/types.ts", "line": 989, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L989" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L989" } ], "type": { @@ -13566,7 +13566,7 @@ "fileName": "src/lib/types.ts", "line": 978, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L978" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L978" } ] } @@ -13591,7 +13591,7 @@ "fileName": "src/lib/types.ts", "line": 991, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L991" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L991" } ], "type": { @@ -13610,7 +13610,7 @@ "fileName": "src/lib/types.ts", "line": 991, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L991" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L991" } ], "type": { @@ -13631,7 +13631,7 @@ "fileName": "src/lib/types.ts", "line": 991, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L991" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L991" } ] } @@ -13650,7 +13650,7 @@ "fileName": "src/lib/types.ts", "line": 1286, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1286" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1286" } ], "type": { @@ -13676,7 +13676,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ], "type": { @@ -13709,7 +13709,7 @@ "fileName": "src/lib/types.ts", "line": 1296, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1296" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1296" } ], "type": { @@ -13736,7 +13736,7 @@ "fileName": "src/lib/types.ts", "line": 1290, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1290" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1290" } ], "type": { @@ -13763,7 +13763,7 @@ "fileName": "src/lib/types.ts", "line": 1299, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1299" } ], "type": { @@ -13790,7 +13790,7 @@ "fileName": "src/lib/types.ts", "line": 1293, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1293" } ], "type": { @@ -13810,7 +13810,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ] } @@ -13827,7 +13827,7 @@ "fileName": "src/lib/types.ts", "line": 1301, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1301" } ], "type": { @@ -13847,7 +13847,7 @@ "fileName": "src/lib/types.ts", "line": 1287, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1287" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1287" } ] } @@ -13872,7 +13872,7 @@ "fileName": "src/lib/types.ts", "line": 1304, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1304" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1304" } ], "type": { @@ -13891,7 +13891,7 @@ "fileName": "src/lib/types.ts", "line": 1305, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1305" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1305" } ], "type": { @@ -13912,7 +13912,7 @@ "fileName": "src/lib/types.ts", "line": 1303, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1303" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1303" } ] } @@ -13931,7 +13931,7 @@ "fileName": "src/lib/types.ts", "line": 965, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L965" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L965" } ], "type": { @@ -13961,7 +13961,7 @@ "fileName": "src/lib/types.ts", "line": 1251, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1251" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1251" } ], "type": { @@ -13987,7 +13987,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ], "type": { @@ -14020,7 +14020,7 @@ "fileName": "src/lib/types.ts", "line": 1277, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1277" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1277" } ], "type": { @@ -14047,7 +14047,7 @@ "fileName": "src/lib/types.ts", "line": 1255, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1255" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1255" } ], "type": { @@ -14074,7 +14074,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ], "type": { @@ -14113,7 +14113,7 @@ "fileName": "src/lib/types.ts", "line": 1265, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1265" } ], "type": { @@ -14140,7 +14140,7 @@ "fileName": "src/lib/types.ts", "line": 1270, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1270" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1270" } ], "type": { @@ -14167,7 +14167,7 @@ "fileName": "src/lib/types.ts", "line": 1274, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1274" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1274" } ], "type": { @@ -14187,7 +14187,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ] } @@ -14212,7 +14212,7 @@ "fileName": "src/lib/types.ts", "line": 1258, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1258" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1258" } ], "type": { @@ -14232,7 +14232,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ] } @@ -14249,7 +14249,7 @@ "fileName": "src/lib/types.ts", "line": 1279, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1279" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1279" } ], "type": { @@ -14269,7 +14269,7 @@ "fileName": "src/lib/types.ts", "line": 1252, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1252" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1252" } ] } @@ -14294,7 +14294,7 @@ "fileName": "src/lib/types.ts", "line": 1282, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1282" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1282" } ], "type": { @@ -14313,7 +14313,7 @@ "fileName": "src/lib/types.ts", "line": 1283, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1283" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1283" } ], "type": { @@ -14334,7 +14334,7 @@ "fileName": "src/lib/types.ts", "line": 1281, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1281" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1281" } ] } @@ -14353,7 +14353,7 @@ "fileName": "src/lib/types.ts", "line": 1010, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1010" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1010" } ], "type": { @@ -14379,7 +14379,7 @@ "fileName": "src/lib/types.ts", "line": 1012, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1012" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1012" } ], "type": { @@ -14410,7 +14410,7 @@ "fileName": "src/lib/types.ts", "line": 1029, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1029" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1029" } ], "type": { @@ -14441,7 +14441,7 @@ "fileName": "src/lib/types.ts", "line": 1014, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1014" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1014" } ], "type": { @@ -14491,7 +14491,7 @@ "fileName": "src/lib/types.ts", "line": 1022, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1022" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1022" } ], "type": { @@ -14521,7 +14521,7 @@ "fileName": "src/lib/types.ts", "line": 1012, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1012" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1012" } ] } @@ -14538,7 +14538,7 @@ "fileName": "src/lib/types.ts", "line": 1031, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1031" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1031" } ], "type": { @@ -14558,7 +14558,7 @@ "fileName": "src/lib/types.ts", "line": 1011, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1011" } ] } @@ -14583,7 +14583,7 @@ "fileName": "src/lib/types.ts", "line": 1033, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1033" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1033" } ], "type": { @@ -14602,7 +14602,7 @@ "fileName": "src/lib/types.ts", "line": 1033, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1033" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1033" } ], "type": { @@ -14623,7 +14623,7 @@ "fileName": "src/lib/types.ts", "line": 1033, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1033" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1033" } ] } @@ -14642,7 +14642,7 @@ "fileName": "src/lib/types.ts", "line": 993, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L993" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L993" } ], "type": { @@ -14668,7 +14668,7 @@ "fileName": "src/lib/types.ts", "line": 995, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L995" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L995" } ], "type": { @@ -14699,7 +14699,7 @@ "fileName": "src/lib/types.ts", "line": 997, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L997" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L997" } ], "type": { @@ -14738,7 +14738,7 @@ "fileName": "src/lib/types.ts", "line": 1002, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1002" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1002" } ], "type": { @@ -14777,7 +14777,7 @@ "fileName": "src/lib/types.ts", "line": 1000, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1000" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1000" } ], "type": { @@ -14801,7 +14801,7 @@ "fileName": "src/lib/types.ts", "line": 995, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L995" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L995" } ] } @@ -14818,7 +14818,7 @@ "fileName": "src/lib/types.ts", "line": 1004, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1004" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1004" } ], "type": { @@ -14838,7 +14838,7 @@ "fileName": "src/lib/types.ts", "line": 994, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L994" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L994" } ] } @@ -14863,7 +14863,7 @@ "fileName": "src/lib/types.ts", "line": 1006, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1006" } ], "type": { @@ -14882,7 +14882,7 @@ "fileName": "src/lib/types.ts", "line": 1006, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1006" } ], "type": { @@ -14903,7 +14903,7 @@ "fileName": "src/lib/types.ts", "line": 1006, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1006" } ] } @@ -14922,7 +14922,7 @@ "fileName": "src/lib/types.ts", "line": 967, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L967" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L967" } ], "type": { @@ -14948,7 +14948,7 @@ "fileName": "src/lib/types.ts", "line": 969, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L969" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L969" } ], "type": { @@ -14979,7 +14979,7 @@ "fileName": "src/lib/types.ts", "line": 971, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L971" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L971" } ], "type": { @@ -14999,7 +14999,7 @@ "fileName": "src/lib/types.ts", "line": 969, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L969" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L969" } ] } @@ -15016,7 +15016,7 @@ "fileName": "src/lib/types.ts", "line": 973, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L973" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L973" } ], "type": { @@ -15036,7 +15036,7 @@ "fileName": "src/lib/types.ts", "line": 968, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L968" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L968" } ] } @@ -15061,7 +15061,7 @@ "fileName": "src/lib/types.ts", "line": 975, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L975" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L975" } ], "type": { @@ -15080,7 +15080,7 @@ "fileName": "src/lib/types.ts", "line": 975, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L975" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L975" } ], "type": { @@ -15101,7 +15101,7 @@ "fileName": "src/lib/types.ts", "line": 975, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L975" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L975" } ] } @@ -15120,7 +15120,7 @@ "fileName": "src/lib/types.ts", "line": 940, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L940" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L940" } ], "type": { @@ -15146,7 +15146,7 @@ "fileName": "src/lib/types.ts", "line": 942, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L942" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L942" } ], "type": { @@ -15177,7 +15177,7 @@ "fileName": "src/lib/types.ts", "line": 944, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L944" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L944" } ], "type": { @@ -15204,7 +15204,7 @@ "fileName": "src/lib/types.ts", "line": 950, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L950" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L950" } ], "type": { @@ -15231,7 +15231,7 @@ "fileName": "src/lib/types.ts", "line": 953, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L953" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L953" } ], "type": { @@ -15266,7 +15266,7 @@ "fileName": "src/lib/types.ts", "line": 947, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L947" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L947" } ], "type": { @@ -15293,7 +15293,7 @@ "fileName": "src/lib/types.ts", "line": 956, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L956" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L956" } ], "type": { @@ -15314,7 +15314,7 @@ "fileName": "src/lib/types.ts", "line": 942, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L942" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L942" } ] } @@ -15331,7 +15331,7 @@ "fileName": "src/lib/types.ts", "line": 958, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L958" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L958" } ], "type": { @@ -15351,7 +15351,7 @@ "fileName": "src/lib/types.ts", "line": 941, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L941" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L941" } ] } @@ -15376,7 +15376,7 @@ "fileName": "src/lib/types.ts", "line": 961, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L961" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L961" } ], "type": { @@ -15395,7 +15395,7 @@ "fileName": "src/lib/types.ts", "line": 962, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L962" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L962" } ], "type": { @@ -15416,7 +15416,7 @@ "fileName": "src/lib/types.ts", "line": 960, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L960" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L960" } ] } @@ -15448,7 +15448,7 @@ "fileName": "src/lib/types.ts", "line": 146, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L146" } ], "type": { @@ -15474,7 +15474,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -15499,7 +15499,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -15527,7 +15527,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 26, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -15546,7 +15546,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -15566,7 +15566,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ] } @@ -15583,7 +15583,7 @@ "fileName": "src/lib/types.ts", "line": 149, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L149" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L149" } ], "type": { @@ -15603,7 +15603,7 @@ "fileName": "src/lib/types.ts", "line": 147, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L147" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L147" } ] } @@ -15628,7 +15628,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -15653,7 +15653,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -15681,7 +15681,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 26, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -15700,7 +15700,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -15720,7 +15720,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ] } @@ -15737,7 +15737,7 @@ "fileName": "src/lib/types.ts", "line": 153, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L153" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L153" } ], "type": { @@ -15758,7 +15758,7 @@ "fileName": "src/lib/types.ts", "line": 151, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L151" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L151" } ] } @@ -15777,7 +15777,7 @@ "fileName": "src/lib/types.ts", "line": 108, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L108" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L108" } ], "type": { @@ -15803,7 +15803,7 @@ "fileName": "src/lib/types.ts", "line": 110, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L110" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L110" } ], "type": { @@ -15826,7 +15826,7 @@ "fileName": "src/lib/types.ts", "line": 112, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L112" } ], "type": { @@ -15855,7 +15855,7 @@ "fileName": "src/lib/types.ts", "line": 111, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L111" } ], "type": { @@ -15885,7 +15885,7 @@ "fileName": "src/lib/types.ts", "line": 110, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L110" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L110" } ] } @@ -15902,7 +15902,7 @@ "fileName": "src/lib/types.ts", "line": 114, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L114" } ], "type": { @@ -15922,7 +15922,7 @@ "fileName": "src/lib/types.ts", "line": 109, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L109" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L109" } ] } @@ -15947,7 +15947,7 @@ "fileName": "src/lib/types.ts", "line": 117, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L117" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L117" } ], "type": { @@ -15970,7 +15970,7 @@ "fileName": "src/lib/types.ts", "line": 119, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L119" } ], "type": { @@ -15989,7 +15989,7 @@ "fileName": "src/lib/types.ts", "line": 118, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L118" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L118" } ], "type": { @@ -16009,7 +16009,7 @@ "fileName": "src/lib/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L117" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L117" } ] } @@ -16026,7 +16026,7 @@ "fileName": "src/lib/types.ts", "line": 121, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L121" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L121" } ], "type": { @@ -16047,7 +16047,7 @@ "fileName": "src/lib/types.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L116" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L116" } ] } @@ -16066,7 +16066,7 @@ "fileName": "src/lib/types.ts", "line": 124, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L124" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L124" } ], "type": { @@ -16092,7 +16092,7 @@ "fileName": "src/lib/types.ts", "line": 126, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L126" } ], "type": { @@ -16115,7 +16115,7 @@ "fileName": "src/lib/types.ts", "line": 128, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L128" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L128" } ], "type": { @@ -16144,7 +16144,7 @@ "fileName": "src/lib/types.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L127" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L127" } ], "type": { @@ -16175,7 +16175,7 @@ "fileName": "src/lib/types.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L129" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L129" } ], "type": { @@ -16205,7 +16205,7 @@ "fileName": "src/lib/types.ts", "line": 126, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L126" } ] } @@ -16222,7 +16222,7 @@ "fileName": "src/lib/types.ts", "line": 131, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L131" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L131" } ], "type": { @@ -16242,7 +16242,7 @@ "fileName": "src/lib/types.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L125" } ] } @@ -16267,7 +16267,7 @@ "fileName": "src/lib/types.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L134" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L134" } ], "type": { @@ -16290,7 +16290,7 @@ "fileName": "src/lib/types.ts", "line": 136, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L136" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L136" } ], "type": { @@ -16309,7 +16309,7 @@ "fileName": "src/lib/types.ts", "line": 135, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L135" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L135" } ], "type": { @@ -16329,7 +16329,7 @@ "fileName": "src/lib/types.ts", "line": 134, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L134" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L134" } ] } @@ -16346,7 +16346,7 @@ "fileName": "src/lib/types.ts", "line": 138, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L138" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L138" } ], "type": { @@ -16367,7 +16367,7 @@ "fileName": "src/lib/types.ts", "line": 133, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L133" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L133" } ] } @@ -16386,7 +16386,7 @@ "fileName": "src/lib/types.ts", "line": 156, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L156" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L156" } ], "type": { @@ -16412,7 +16412,7 @@ "fileName": "src/lib/types.ts", "line": 158, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L158" } ], "type": { @@ -16435,7 +16435,7 @@ "fileName": "src/lib/types.ts", "line": 160, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L160" } ], "type": { @@ -16455,7 +16455,7 @@ "fileName": "src/lib/types.ts", "line": 159, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L159" } ], "type": { @@ -16476,7 +16476,7 @@ "fileName": "src/lib/types.ts", "line": 158, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L158" } ] } @@ -16493,7 +16493,7 @@ "fileName": "src/lib/types.ts", "line": 162, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L162" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L162" } ], "type": { @@ -16513,7 +16513,7 @@ "fileName": "src/lib/types.ts", "line": 157, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L157" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L157" } ] } @@ -16538,7 +16538,7 @@ "fileName": "src/lib/types.ts", "line": 165, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L165" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L165" } ], "type": { @@ -16561,7 +16561,7 @@ "fileName": "src/lib/types.ts", "line": 167, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L167" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L167" } ], "type": { @@ -16580,7 +16580,7 @@ "fileName": "src/lib/types.ts", "line": 166, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L166" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L166" } ], "type": { @@ -16600,7 +16600,7 @@ "fileName": "src/lib/types.ts", "line": 165, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L165" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L165" } ] } @@ -16617,7 +16617,7 @@ "fileName": "src/lib/types.ts", "line": 169, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L169" } ], "type": { @@ -16638,7 +16638,7 @@ "fileName": "src/lib/types.ts", "line": 164, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L164" } ] } @@ -16657,7 +16657,7 @@ "fileName": "src/lib/types.ts", "line": 172, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L172" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L172" } ], "type": { @@ -16683,7 +16683,7 @@ "fileName": "src/lib/types.ts", "line": 174, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L174" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L174" } ], "type": { @@ -16706,7 +16706,7 @@ "fileName": "src/lib/types.ts", "line": 176, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L176" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L176" } ], "type": { @@ -16726,7 +16726,7 @@ "fileName": "src/lib/types.ts", "line": 175, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L175" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L175" } ], "type": { @@ -16748,7 +16748,7 @@ "fileName": "src/lib/types.ts", "line": 177, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L177" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L177" } ], "type": { @@ -16769,7 +16769,7 @@ "fileName": "src/lib/types.ts", "line": 174, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L174" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L174" } ] } @@ -16786,7 +16786,7 @@ "fileName": "src/lib/types.ts", "line": 179, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L179" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L179" } ], "type": { @@ -16806,7 +16806,7 @@ "fileName": "src/lib/types.ts", "line": 173, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L173" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L173" } ] } @@ -16831,7 +16831,7 @@ "fileName": "src/lib/types.ts", "line": 182, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L182" } ], "type": { @@ -16854,7 +16854,7 @@ "fileName": "src/lib/types.ts", "line": 184, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L184" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L184" } ], "type": { @@ -16873,7 +16873,7 @@ "fileName": "src/lib/types.ts", "line": 183, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L183" } ], "type": { @@ -16894,7 +16894,7 @@ "fileName": "src/lib/types.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L185" } ], "type": { @@ -16914,7 +16914,7 @@ "fileName": "src/lib/types.ts", "line": 182, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L182" } ] } @@ -16931,7 +16931,7 @@ "fileName": "src/lib/types.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L187" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L187" } ], "type": { @@ -16952,7 +16952,7 @@ "fileName": "src/lib/types.ts", "line": 181, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L181" } ] } @@ -16971,7 +16971,7 @@ "fileName": "src/lib/types.ts", "line": 1008, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1008" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1008" } ], "type": { @@ -16999,7 +16999,7 @@ "fileName": "src/lib/types.ts", "line": 1196, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1196" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1196" } ], "type": { @@ -17025,7 +17025,7 @@ "fileName": "src/lib/types.ts", "line": 1199, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1199" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1199" } ], "type": { @@ -17044,7 +17044,7 @@ "fileName": "src/lib/types.ts", "line": 1198, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1198" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1198" } ], "type": { @@ -17065,7 +17065,7 @@ "fileName": "src/lib/types.ts", "line": 1197, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1197" } ] } @@ -17090,7 +17090,7 @@ "fileName": "src/lib/types.ts", "line": 1203, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1203" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1203" } ], "type": { @@ -17110,7 +17110,7 @@ "fileName": "src/lib/types.ts", "line": 1202, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1202" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1202" } ], "type": { @@ -17130,7 +17130,7 @@ "fileName": "src/lib/types.ts", "line": 1201, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1201" } ] } @@ -17149,7 +17149,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -17193,7 +17193,7 @@ "fileName": "src/lib/types.ts", "line": 678, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L678" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L678" } ], "type": { @@ -17212,7 +17212,7 @@ "fileName": "src/lib/types.ts", "line": 680, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L680" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L680" } ], "type": { @@ -17238,7 +17238,7 @@ "fileName": "src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L682" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L682" } ], "type": { @@ -17259,7 +17259,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ], "type": { @@ -17292,7 +17292,7 @@ "fileName": "src/lib/types.ts", "line": 695, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L695" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L695" } ], "type": { @@ -17313,7 +17313,7 @@ "fileName": "src/lib/types.ts", "line": 697, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L697" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L697" } ], "type": { @@ -17379,7 +17379,7 @@ "fileName": "src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L692" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L692" } ], "type": { @@ -17399,7 +17399,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ] } @@ -17417,7 +17417,7 @@ "summary": [ { "kind": "text", - "text": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" + "text": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" } ] }, @@ -17426,7 +17426,7 @@ "fileName": "src/lib/types.ts", "line": 688, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L688" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L688" } ], "type": { @@ -17450,7 +17450,7 @@ }, { "kind": "code", - "text": "`window.solana`" + "text": "`window.ethereum`" }, { "kind": "text", @@ -17463,7 +17463,7 @@ "fileName": "src/lib/types.ts", "line": 685, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L685" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L685" } ], "type": { @@ -17484,7 +17484,7 @@ "fileName": "src/lib/types.ts", "line": 681, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L681" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L681" } ] } @@ -17509,7 +17509,7 @@ "fileName": "src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L703" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L703" } ], "type": { @@ -17560,7 +17560,7 @@ "fileName": "src/lib/types.ts", "line": 706, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L706" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L706" } ], "type": { @@ -17581,7 +17581,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ], "type": { @@ -17614,7 +17614,7 @@ "fileName": "src/lib/types.ts", "line": 713, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L713" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L713" } ], "type": { @@ -17634,7 +17634,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ] } @@ -17650,7 +17650,7 @@ "summary": [ { "kind": "text", - "text": "Ed25519 signature of the message." + "text": "Ethereum curve (secp256k1) signature of the message." } ] }, @@ -17659,7 +17659,7 @@ "fileName": "src/lib/types.ts", "line": 709, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L709" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L709" } ], "type": { @@ -17679,7 +17679,7 @@ "fileName": "src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L702" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L702" } ] } @@ -17698,7 +17698,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ], "type": { @@ -17729,7 +17729,7 @@ "fileName": "src/lib/types.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L837" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L837" } ], "type": { @@ -17756,7 +17756,7 @@ "fileName": "src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L841" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L841" } ], "type": { @@ -17777,7 +17777,7 @@ "fileName": "src/lib/types.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L842" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L842" } ], "type": { @@ -17809,7 +17809,7 @@ "fileName": "src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L835" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L835" } ], "type": { @@ -17838,7 +17838,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ] } @@ -17855,7 +17855,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ], "type": { @@ -17886,7 +17886,7 @@ "fileName": "src/lib/types.ts", "line": 823, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L823" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L823" } ], "type": { @@ -17907,7 +17907,7 @@ "fileName": "src/lib/types.ts", "line": 824, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L824" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L824" } ], "type": { @@ -17948,7 +17948,7 @@ "fileName": "src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L821" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L821" } ], "type": { @@ -17977,7 +17977,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 46, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ] } @@ -17994,7 +17994,7 @@ "fileName": "src/lib/types.ts", "line": 856, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L856" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L856" } ], "type": { @@ -18042,7 +18042,7 @@ "fileName": "src/lib/types.ts", "line": 879, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L879" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L879" } ], "type": { @@ -18073,7 +18073,7 @@ "fileName": "src/lib/types.ts", "line": 884, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L884" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L884" } ], "type": { @@ -18100,7 +18100,7 @@ "fileName": "src/lib/types.ts", "line": 889, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L889" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L889" } ], "type": { @@ -18127,7 +18127,7 @@ "fileName": "src/lib/types.ts", "line": 893, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L893" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L893" } ], "type": { @@ -18154,7 +18154,7 @@ "fileName": "src/lib/types.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L895" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L895" } ], "type": { @@ -18181,7 +18181,7 @@ "fileName": "src/lib/types.ts", "line": 897, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L897" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L897" } ], "type": { @@ -18202,7 +18202,7 @@ "fileName": "src/lib/types.ts", "line": 879, "character": 37, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L879" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L879" } ] } @@ -18219,7 +18219,7 @@ "fileName": "src/lib/types.ts", "line": 862, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L862" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L862" } ], "type": { @@ -18245,7 +18245,7 @@ "fileName": "src/lib/types.ts", "line": 864, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L864" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L864" } ], "type": { @@ -18268,7 +18268,7 @@ "fileName": "src/lib/types.ts", "line": 865, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L865" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L865" } ], "type": { @@ -18288,7 +18288,7 @@ "fileName": "src/lib/types.ts", "line": 866, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L866" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L866" } ], "type": { @@ -18309,7 +18309,7 @@ "fileName": "src/lib/types.ts", "line": 864, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L864" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L864" } ] } @@ -18326,7 +18326,7 @@ "fileName": "src/lib/types.ts", "line": 868, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L868" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L868" } ], "type": { @@ -18346,7 +18346,7 @@ "fileName": "src/lib/types.ts", "line": 863, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L863" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L863" } ] } @@ -18371,7 +18371,7 @@ "fileName": "src/lib/types.ts", "line": 871, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L871" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L871" } ], "type": { @@ -18394,7 +18394,7 @@ "fileName": "src/lib/types.ts", "line": 872, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L872" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L872" } ], "type": { @@ -18413,7 +18413,7 @@ "fileName": "src/lib/types.ts", "line": 873, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L873" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L873" } ], "type": { @@ -18433,7 +18433,7 @@ "fileName": "src/lib/types.ts", "line": 871, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L871" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L871" } ] } @@ -18450,7 +18450,7 @@ "fileName": "src/lib/types.ts", "line": 875, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L875" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L875" } ], "type": { @@ -18471,7 +18471,7 @@ "fileName": "src/lib/types.ts", "line": 870, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L870" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L870" } ] } @@ -18490,7 +18490,7 @@ "fileName": "src/lib/types.ts", "line": 900, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L900" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L900" } ], "type": { @@ -18534,7 +18534,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ], "type": { @@ -18565,7 +18565,7 @@ "fileName": "src/lib/types.ts", "line": 830, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L830" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L830" } ], "type": { @@ -18586,7 +18586,7 @@ "fileName": "src/lib/types.ts", "line": 831, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L831" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L831" } ], "type": { @@ -18618,7 +18618,7 @@ "fileName": "src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L828" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L828" } ], "type": { @@ -18638,7 +18638,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ] } @@ -18655,7 +18655,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ], "type": { @@ -18678,7 +18678,7 @@ "fileName": "src/lib/types.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L815" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L815" } ], "type": { @@ -18699,7 +18699,7 @@ "fileName": "src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L817" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L817" } ], "type": { @@ -18740,7 +18740,7 @@ "fileName": "src/lib/types.ts", "line": 816, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L816" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L816" } ], "type": { @@ -18759,7 +18759,7 @@ "fileName": "src/lib/types.ts", "line": 814, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L814" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L814" } ], "type": { @@ -18779,7 +18779,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 39, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ] } @@ -18796,7 +18796,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ], "type": { @@ -18821,7 +18821,7 @@ "fileName": "src/lib/types.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L70" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L70" } ], "type": { @@ -18842,7 +18842,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "type": { @@ -18865,7 +18865,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "signatures": [ @@ -18928,7 +18928,7 @@ "fileName": "src/lib/types.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L68" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L68" } ], "type": { @@ -18949,7 +18949,7 @@ "fileName": "src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L84" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L84" } ], "type": { @@ -18970,7 +18970,7 @@ "fileName": "src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L86" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L86" } ], "type": { @@ -19001,7 +19001,7 @@ "fileName": "src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L99" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L99" } ], "type": { @@ -19022,7 +19022,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "type": { @@ -19038,7 +19038,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "indexSignature": { @@ -19089,7 +19089,7 @@ "fileName": "src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L94" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L94" } ], "type": { @@ -19111,7 +19111,7 @@ "fileName": "src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L72" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L72" } ], "type": { @@ -19132,7 +19132,7 @@ "fileName": "src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L74" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L74" } ], "type": { @@ -19154,7 +19154,7 @@ "fileName": "src/lib/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L66" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L66" } ], "type": { @@ -19175,7 +19175,7 @@ "fileName": "src/lib/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L62" } ], "type": { @@ -19245,7 +19245,7 @@ "fileName": "src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L82" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L82" } ], "type": { @@ -19266,7 +19266,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ] } @@ -19283,7 +19283,7 @@ "fileName": "src/lib/types.ts", "line": 1194, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1194" } ], "type": { @@ -19306,7 +19306,7 @@ "fileName": "src/lib/types.ts", "line": 1194, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1194" } ], "type": { @@ -19336,7 +19336,7 @@ "fileName": "src/lib/types.ts", "line": 1194, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1194" } ] } @@ -19353,7 +19353,7 @@ "fileName": "src/lib/types.ts", "line": 1308, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1308" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1308" } ], "type": { @@ -19376,7 +19376,7 @@ "fileName": "src/lib/types.ts", "line": 1309, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1309" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1309" } ], "type": { @@ -19408,7 +19408,7 @@ "fileName": "src/lib/types.ts", "line": 1310, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1310" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1310" } ], "type": { @@ -19427,7 +19427,7 @@ "fileName": "src/lib/types.ts", "line": 1311, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1311" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1311" } ], "type": { @@ -19447,7 +19447,7 @@ "fileName": "src/lib/types.ts", "line": 1308, "character": 24, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1308" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1308" } ] } @@ -19464,7 +19464,7 @@ "fileName": "src/lib/types.ts", "line": 1325, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1325" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1325" } ], "type": { @@ -19488,7 +19488,7 @@ "fileName": "src/lib/types.ts", "line": 1325, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1325" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1325" } ], "indexSignature": { @@ -19530,7 +19530,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "type": { @@ -19546,7 +19546,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 23, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -19656,7 +19656,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 69, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -19714,7 +19714,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ], "type": { @@ -19745,7 +19745,7 @@ "fileName": "src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L937" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L937" } ], "type": { @@ -19772,7 +19772,7 @@ "fileName": "src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L935" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L935" } ], "type": { @@ -19792,7 +19792,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ] } @@ -19809,7 +19809,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ], "type": { @@ -19842,7 +19842,7 @@ "fileName": "src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L930" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L930" } ], "type": { @@ -19878,7 +19878,7 @@ "fileName": "src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L928" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L928" } ], "type": { @@ -19898,7 +19898,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ] } @@ -19915,7 +19915,7 @@ "fileName": "src/lib/types.ts", "line": 908, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L908" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L908" } ], "type": { @@ -19945,7 +19945,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -19976,7 +19976,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -20005,7 +20005,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -20032,7 +20032,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -20052,7 +20052,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -20069,7 +20069,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -20100,7 +20100,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -20129,7 +20129,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -20158,7 +20158,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -20178,7 +20178,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -20195,7 +20195,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ], "type": { @@ -20226,7 +20226,7 @@ "fileName": "src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L912" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L912" } ], "type": { @@ -20246,7 +20246,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 32, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ] } @@ -20263,7 +20263,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ], "type": { @@ -20294,7 +20294,7 @@ "fileName": "src/lib/types.ts", "line": 920, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L920" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L920" } ], "type": { @@ -20321,7 +20321,7 @@ "fileName": "src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L923" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L923" } ], "type": { @@ -20348,7 +20348,7 @@ "fileName": "src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L917" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L917" } ], "type": { @@ -20368,7 +20368,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 30, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ] } @@ -20385,7 +20385,7 @@ "fileName": "src/lib/types.ts", "line": 766, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L766" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L766" } ], "type": { @@ -20413,7 +20413,7 @@ "fileName": "src/lib/types.ts", "line": 190, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L190" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L190" } ], "type": { @@ -20439,7 +20439,7 @@ "fileName": "src/lib/types.ts", "line": 192, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L192" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L192" } ], "type": { @@ -20462,7 +20462,7 @@ "fileName": "src/lib/types.ts", "line": 193, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L193" } ], "type": { @@ -20482,7 +20482,7 @@ "fileName": "src/lib/types.ts", "line": 194, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L194" } ], "type": { @@ -20502,7 +20502,7 @@ "fileName": "src/lib/types.ts", "line": 192, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L192" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L192" } ] } @@ -20519,7 +20519,7 @@ "fileName": "src/lib/types.ts", "line": 196, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L196" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L196" } ], "type": { @@ -20539,7 +20539,7 @@ "fileName": "src/lib/types.ts", "line": 191, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L191" } ] } @@ -20564,7 +20564,7 @@ "fileName": "src/lib/types.ts", "line": 199, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L199" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L199" } ], "type": { @@ -20587,7 +20587,7 @@ "fileName": "src/lib/types.ts", "line": 200, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L200" } ], "type": { @@ -20607,7 +20607,7 @@ "fileName": "src/lib/types.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L201" } ], "type": { @@ -20627,7 +20627,7 @@ "fileName": "src/lib/types.ts", "line": 199, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L199" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L199" } ] } @@ -20644,7 +20644,7 @@ "fileName": "src/lib/types.ts", "line": 203, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L203" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L203" } ], "type": { @@ -20665,7 +20665,7 @@ "fileName": "src/lib/types.ts", "line": 198, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L198" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L198" } ] } @@ -20684,7 +20684,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ], "type": { @@ -20717,7 +20717,7 @@ "fileName": "src/lib/types.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1215" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1215" } ], "type": { @@ -20746,7 +20746,7 @@ "fileName": "src/lib/types.ts", "line": 1217, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1217" } ], "type": { @@ -20766,7 +20766,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ] } @@ -20783,7 +20783,7 @@ "fileName": "src/lib/types.ts", "line": 1206, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1206" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1206" } ], "type": { @@ -20806,7 +20806,7 @@ "fileName": "src/lib/types.ts", "line": 1209, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1209" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1209" } ], "type": { @@ -20825,7 +20825,7 @@ "fileName": "src/lib/types.ts", "line": 1208, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1208" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1208" } ], "type": { @@ -20853,7 +20853,7 @@ "fileName": "src/lib/types.ts", "line": 1210, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1210" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1210" } ], "type": { @@ -20873,7 +20873,7 @@ "fileName": "src/lib/types.ts", "line": 1206, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1206" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1206" } ], "indexSignature": { @@ -20921,7 +20921,7 @@ "fileName": "src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L8" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L8" } ], "type": { @@ -21029,7 +21029,7 @@ "fileName": "src/lib/types.ts", "line": 1314, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1314" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1314" } ], "type": { @@ -21052,7 +21052,7 @@ "fileName": "src/lib/types.ts", "line": 1321, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1321" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1321" } ], "type": { @@ -21072,7 +21072,7 @@ "fileName": "src/lib/types.ts", "line": 1317, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1317" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1317" } ], "type": { @@ -21103,7 +21103,7 @@ "fileName": "src/lib/types.ts", "line": 1318, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1318" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1318" } ], "type": { @@ -21122,7 +21122,7 @@ "fileName": "src/lib/types.ts", "line": 1319, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1319" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1319" } ], "type": { @@ -21141,7 +21141,7 @@ "fileName": "src/lib/types.ts", "line": 1315, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1315" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1315" } ], "type": { @@ -21160,7 +21160,7 @@ "fileName": "src/lib/types.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1320" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1320" } ], "type": { @@ -21179,7 +21179,7 @@ "fileName": "src/lib/types.ts", "line": 1322, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1322" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1322" } ], "type": { @@ -21198,7 +21198,7 @@ "fileName": "src/lib/types.ts", "line": 1316, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1316" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1316" } ], "type": { @@ -21218,7 +21218,7 @@ "fileName": "src/lib/types.ts", "line": 1314, "character": 29, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1314" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1314" } ] } @@ -21235,7 +21235,7 @@ "fileName": "src/lib/types.ts", "line": 769, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L769" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L769" } ], "type": { @@ -21261,7 +21261,7 @@ "fileName": "src/lib/types.ts", "line": 772, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L772" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L772" } ], "type": { @@ -21282,7 +21282,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ], "type": { @@ -21315,7 +21315,7 @@ "fileName": "src/lib/types.ts", "line": 777, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L777" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L777" } ], "type": { @@ -21344,7 +21344,7 @@ "fileName": "src/lib/types.ts", "line": 775, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L775" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L775" } ], "type": { @@ -21364,7 +21364,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ] } @@ -21381,7 +21381,7 @@ "fileName": "src/lib/types.ts", "line": 771, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L771" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L771" } ], "type": { @@ -21423,7 +21423,7 @@ "fileName": "src/lib/types.ts", "line": 770, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L770" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L770" } ] } @@ -21450,7 +21450,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ], "type": { @@ -21483,7 +21483,7 @@ "fileName": "src/lib/types.ts", "line": 785, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L785" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L785" } ], "type": { @@ -21503,7 +21503,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ] } @@ -21520,7 +21520,7 @@ "fileName": "src/lib/types.ts", "line": 782, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L782" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L782" } ], "type": { @@ -21539,7 +21539,7 @@ "fileName": "src/lib/types.ts", "line": 781, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L781" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L781" } ], "type": { @@ -21581,7 +21581,7 @@ "fileName": "src/lib/types.ts", "line": 780, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L780" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L780" } ] } @@ -21600,7 +21600,7 @@ "fileName": "src/lib/types.ts", "line": 206, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L206" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L206" } ], "type": { @@ -21626,7 +21626,7 @@ "fileName": "src/lib/types.ts", "line": 208, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L208" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L208" } ], "type": { @@ -21665,7 +21665,7 @@ "fileName": "src/lib/types.ts", "line": 216, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L216" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L216" } ], "type": { @@ -21685,7 +21685,7 @@ "fileName": "src/lib/types.ts", "line": 208, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L208" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L208" } ] } @@ -21702,7 +21702,7 @@ "fileName": "src/lib/types.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L218" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L218" } ], "type": { @@ -21722,7 +21722,7 @@ "fileName": "src/lib/types.ts", "line": 207, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L207" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L207" } ] } @@ -21747,7 +21747,7 @@ "fileName": "src/lib/types.ts", "line": 221, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L221" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L221" } ], "type": { @@ -21766,7 +21766,7 @@ "fileName": "src/lib/types.ts", "line": 222, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L222" } ], "type": { @@ -21787,7 +21787,7 @@ "fileName": "src/lib/types.ts", "line": 220, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L220" } ] } @@ -21806,7 +21806,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ], "type": { @@ -21831,7 +21831,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ], "type": { @@ -21864,7 +21864,7 @@ "fileName": "src/lib/types.ts", "line": 499, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L499" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L499" } ], "type": { @@ -21909,7 +21909,7 @@ "fileName": "src/lib/types.ts", "line": 497, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L497" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L497" } ], "type": { @@ -21929,7 +21929,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ] } @@ -21947,7 +21947,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ] } @@ -21964,7 +21964,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ], "type": { @@ -22005,7 +22005,7 @@ "fileName": "src/lib/types.ts", "line": 623, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L623" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L623" } ], "type": { @@ -22042,7 +22042,7 @@ "fileName": "src/lib/types.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L625" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L625" } ], "type": { @@ -22063,7 +22063,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ], "type": { @@ -22096,7 +22096,7 @@ "fileName": "src/lib/types.ts", "line": 628, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L628" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L628" } ], "type": { @@ -22116,7 +22116,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ] } @@ -22197,7 +22197,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ], "type": { @@ -22243,7 +22243,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 76, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ] } @@ -22304,7 +22304,7 @@ "fileName": "src/lib/types.ts", "line": 621, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L621" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L621" } ], "type": { @@ -22324,7 +22324,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ] } @@ -22341,7 +22341,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ], "type": { @@ -22366,7 +22366,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ], "type": { @@ -22399,7 +22399,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "type": { @@ -22415,7 +22415,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "indexSignature": { @@ -22465,7 +22465,7 @@ "fileName": "src/lib/types.ts", "line": 607, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L607" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L607" } ], "type": { @@ -22494,7 +22494,7 @@ "fileName": "src/lib/types.ts", "line": 609, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L609" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L609" } ], "type": { @@ -22523,7 +22523,7 @@ "fileName": "src/lib/types.ts", "line": 613, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L613" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L613" } ], "type": { @@ -22543,7 +22543,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ] } @@ -22568,7 +22568,7 @@ "fileName": "src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L604" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L604" } ], "type": { @@ -22589,7 +22589,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ] } @@ -22606,7 +22606,7 @@ "fileName": "src/lib/types.ts", "line": 541, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L541" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L541" } ], "type": { @@ -22640,7 +22640,7 @@ "fileName": "src/lib/types.ts", "line": 544, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L544" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L544" } ], "type": { @@ -22661,7 +22661,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ], "type": { @@ -22694,7 +22694,7 @@ "fileName": "src/lib/types.ts", "line": 549, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L549" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L549" } ], "type": { @@ -22714,7 +22714,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ] } @@ -22739,7 +22739,7 @@ "fileName": "src/lib/types.ts", "line": 546, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L546" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L546" } ], "type": { @@ -22759,7 +22759,7 @@ "fileName": "src/lib/types.ts", "line": 542, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L542" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L542" } ] } @@ -22786,7 +22786,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ], "type": { @@ -22819,7 +22819,7 @@ "fileName": "src/lib/types.ts", "line": 559, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L559" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L559" } ], "type": { @@ -22839,7 +22839,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ] } @@ -22864,7 +22864,7 @@ "fileName": "src/lib/types.ts", "line": 556, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L556" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L556" } ], "type": { @@ -22891,7 +22891,7 @@ "fileName": "src/lib/types.ts", "line": 554, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L554" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L554" } ], "type": { @@ -22911,7 +22911,7 @@ "fileName": "src/lib/types.ts", "line": 552, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L552" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L552" } ] } @@ -22930,7 +22930,7 @@ "fileName": "src/lib/types.ts", "line": 563, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L563" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L563" } ], "type": { @@ -22964,7 +22964,7 @@ "fileName": "src/lib/types.ts", "line": 566, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L566" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L566" } ], "type": { @@ -22985,7 +22985,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ], "type": { @@ -23018,7 +23018,7 @@ "fileName": "src/lib/types.ts", "line": 579, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L579" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L579" } ], "type": { @@ -23063,7 +23063,7 @@ "fileName": "src/lib/types.ts", "line": 577, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L577" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L577" } ], "type": { @@ -23092,7 +23092,7 @@ "fileName": "src/lib/types.ts", "line": 569, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L569" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L569" } ], "type": { @@ -23121,7 +23121,7 @@ "fileName": "src/lib/types.ts", "line": 571, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L571" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L571" } ], "type": { @@ -23141,7 +23141,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ] } @@ -23159,7 +23159,7 @@ "fileName": "src/lib/types.ts", "line": 564, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L564" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L564" } ] } @@ -23186,7 +23186,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ], "type": { @@ -23219,7 +23219,7 @@ "fileName": "src/lib/types.ts", "line": 595, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L595" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L595" } ], "type": { @@ -23248,7 +23248,7 @@ "fileName": "src/lib/types.ts", "line": 597, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L597" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L597" } ], "type": { @@ -23302,7 +23302,7 @@ "fileName": "src/lib/types.ts", "line": 593, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L593" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L593" } ], "type": { @@ -23331,7 +23331,7 @@ "fileName": "src/lib/types.ts", "line": 587, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L587" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L587" } ], "type": { @@ -23351,7 +23351,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ] } @@ -23376,7 +23376,7 @@ "fileName": "src/lib/types.ts", "line": 584, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L584" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L584" } ], "type": { @@ -23396,7 +23396,7 @@ "fileName": "src/lib/types.ts", "line": 582, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L582" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L582" } ] } @@ -23415,7 +23415,7 @@ "fileName": "src/lib/types.ts", "line": 789, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L789" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L789" } ], "type": { @@ -23443,7 +23443,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ], "type": { @@ -23476,7 +23476,7 @@ "fileName": "src/lib/types.ts", "line": 798, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L798" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L798" } ], "type": { @@ -23505,7 +23505,7 @@ "fileName": "src/lib/types.ts", "line": 796, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L796" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L796" } ], "type": { @@ -23525,7 +23525,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ] } @@ -23550,7 +23550,7 @@ "fileName": "src/lib/types.ts", "line": 792, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L792" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L792" } ], "type": { @@ -23570,7 +23570,7 @@ "fileName": "src/lib/types.ts", "line": 790, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L790" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L790" } ] } @@ -23603,7 +23603,7 @@ "fileName": "src/lib/types.ts", "line": 803, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L803" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L803" } ], "type": { @@ -23624,7 +23624,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ], "type": { @@ -23657,7 +23657,7 @@ "fileName": "src/lib/types.ts", "line": 809, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L809" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L809" } ], "type": { @@ -23686,7 +23686,7 @@ "fileName": "src/lib/types.ts", "line": 807, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L807" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L807" } ], "type": { @@ -23706,7 +23706,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ] } @@ -23724,7 +23724,7 @@ "fileName": "src/lib/types.ts", "line": 801, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L801" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L801" } ] } @@ -23743,7 +23743,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ], "type": { @@ -23776,7 +23776,7 @@ "fileName": "src/lib/types.ts", "line": 1231, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1231" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1231" } ], "type": { @@ -23809,7 +23809,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ] } @@ -23826,7 +23826,7 @@ "fileName": "src/lib/types.ts", "line": 1338, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1338" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1338" } ], "type": { @@ -23856,7 +23856,7 @@ "fileName": "src/lib/types.ts", "line": 503, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L503" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L503" } ], "type": { @@ -23890,7 +23890,7 @@ "fileName": "src/lib/types.ts", "line": 506, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L506" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L506" } ], "type": { @@ -23911,7 +23911,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ], "type": { @@ -23944,7 +23944,7 @@ "fileName": "src/lib/types.ts", "line": 519, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L519" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L519" } ], "type": { @@ -23989,7 +23989,7 @@ "fileName": "src/lib/types.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L517" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L517" } ], "type": { @@ -24018,7 +24018,7 @@ "fileName": "src/lib/types.ts", "line": 511, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L511" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L511" } ], "type": { @@ -24038,7 +24038,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ] } @@ -24063,7 +24063,7 @@ "fileName": "src/lib/types.ts", "line": 508, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L508" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L508" } ], "type": { @@ -24083,7 +24083,7 @@ "fileName": "src/lib/types.ts", "line": 504, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L504" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L504" } ] } @@ -24110,7 +24110,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ], "type": { @@ -24143,7 +24143,7 @@ "fileName": "src/lib/types.ts", "line": 535, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L535" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L535" } ], "type": { @@ -24172,7 +24172,7 @@ "fileName": "src/lib/types.ts", "line": 537, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L537" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L537" } ], "type": { @@ -24226,7 +24226,7 @@ "fileName": "src/lib/types.ts", "line": 533, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L533" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L533" } ], "type": { @@ -24246,7 +24246,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ] } @@ -24271,7 +24271,7 @@ "fileName": "src/lib/types.ts", "line": 526, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L526" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L526" } ], "type": { @@ -24298,7 +24298,7 @@ "fileName": "src/lib/types.ts", "line": 524, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L524" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L524" } ], "type": { @@ -24318,7 +24318,7 @@ "fileName": "src/lib/types.ts", "line": 522, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L522" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L522" } ] } @@ -24337,7 +24337,7 @@ "fileName": "src/lib/types.ts", "line": 632, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L632" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L632" } ], "type": { @@ -24362,7 +24362,7 @@ "fileName": "src/lib/types.ts", "line": 634, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L634" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L634" } ], "type": { @@ -24388,7 +24388,7 @@ "fileName": "src/lib/types.ts", "line": 635, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L635" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L635" } ], "type": { @@ -24404,7 +24404,7 @@ "fileName": "src/lib/types.ts", "line": 635, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L635" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L635" } ], "signatures": [ @@ -24435,7 +24435,7 @@ "fileName": "src/lib/types.ts", "line": 634, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L634" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L634" } ] } @@ -24460,7 +24460,7 @@ "fileName": "src/lib/types.ts", "line": 633, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L633" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L633" } ], "type": { @@ -24476,7 +24476,7 @@ "fileName": "src/lib/types.ts", "line": 633, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L633" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L633" } ], "signatures": [ @@ -24546,7 +24546,7 @@ "fileName": "src/lib/types.ts", "line": 638, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L638" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L638" } ], "type": { @@ -24562,7 +24562,7 @@ "fileName": "src/lib/types.ts", "line": 638, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L638" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L638" } ], "signatures": [ @@ -24649,7 +24649,7 @@ "fileName": "src/lib/types.ts", "line": 632, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L632" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L632" } ] } @@ -24666,7 +24666,7 @@ "fileName": "src/lib/types.ts", "line": 641, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L641" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L641" } ], "type": { @@ -24692,7 +24692,7 @@ "fileName": "src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L643" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L643" } ], "type": { @@ -24713,7 +24713,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ], "type": { @@ -24746,7 +24746,7 @@ "fileName": "src/lib/types.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L656" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L656" } ], "type": { @@ -24767,7 +24767,7 @@ "fileName": "src/lib/types.ts", "line": 658, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L658" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L658" } ], "type": { @@ -24837,7 +24837,7 @@ "fileName": "src/lib/types.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L653" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L653" } ], "type": { @@ -24857,7 +24857,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ] } @@ -24884,7 +24884,7 @@ "fileName": "src/lib/types.ts", "line": 649, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L649" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L649" } ], "type": { @@ -24921,7 +24921,7 @@ "fileName": "src/lib/types.ts", "line": 646, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L646" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L646" } ], "type": { @@ -24942,7 +24942,7 @@ "fileName": "src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L642" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L642" } ] } @@ -24967,7 +24967,7 @@ "fileName": "src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L664" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L664" } ], "type": { @@ -25018,7 +25018,7 @@ "fileName": "src/lib/types.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L667" } ], "type": { @@ -25039,7 +25039,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ], "type": { @@ -25072,7 +25072,7 @@ "fileName": "src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L674" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L674" } ], "type": { @@ -25092,7 +25092,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ] } @@ -25117,7 +25117,7 @@ "fileName": "src/lib/types.ts", "line": 670, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L670" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L670" } ], "type": { @@ -25139,7 +25139,7 @@ "fileName": "src/lib/types.ts", "line": 663, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L663" } ] } @@ -25158,7 +25158,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -25239,7 +25239,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -25259,7 +25259,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -25278,7 +25278,7 @@ "fileName": "src/lib/types.ts", "line": 225, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L225" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L225" } ], "type": { @@ -25304,7 +25304,7 @@ "fileName": "src/lib/types.ts", "line": 227, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L227" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L227" } ], "type": { @@ -25327,7 +25327,7 @@ "fileName": "src/lib/types.ts", "line": 228, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L228" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L228" } ], "type": { @@ -25348,7 +25348,7 @@ "fileName": "src/lib/types.ts", "line": 227, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L227" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L227" } ] } @@ -25365,7 +25365,7 @@ "fileName": "src/lib/types.ts", "line": 230, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L230" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L230" } ], "type": { @@ -25385,7 +25385,7 @@ "fileName": "src/lib/types.ts", "line": 226, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L226" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L226" } ] } @@ -25410,7 +25410,7 @@ "fileName": "src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L233" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L233" } ], "type": { @@ -25433,7 +25433,7 @@ "fileName": "src/lib/types.ts", "line": 234, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L234" } ], "type": { @@ -25453,7 +25453,7 @@ "fileName": "src/lib/types.ts", "line": 233, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L233" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L233" } ] } @@ -25470,7 +25470,7 @@ "fileName": "src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L236" } ], "type": { @@ -25491,7 +25491,7 @@ "fileName": "src/lib/types.ts", "line": 232, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L232" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L232" } ] } @@ -25510,7 +25510,7 @@ "fileName": "src/lib/types.ts", "line": 719, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L719" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L719" } ], "type": { @@ -25545,7 +25545,7 @@ "fileName": "src/lib/types.ts", "line": 103, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L103" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L103" } ], "type": { @@ -25568,7 +25568,7 @@ "fileName": "src/lib/types.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L105" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L105" } ], "type": { @@ -25587,7 +25587,7 @@ "fileName": "src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L104" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L104" } ], "type": { @@ -25611,7 +25611,7 @@ "fileName": "src/lib/types.ts", "line": 103, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L103" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L103" } ] } @@ -25628,7 +25628,7 @@ "fileName": "src/lib/types.ts", "line": 102, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L102" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L102" } ], "type": { @@ -25666,7 +25666,7 @@ "fileName": "src/lib/types.ts", "line": 102, "character": 80, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L102" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L102" } ] } @@ -25687,7 +25687,7 @@ "fileName": "src/lib/types.ts", "line": 717, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L717" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L717" } ], "type": { @@ -25719,7 +25719,7 @@ "fileName": "src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/AuthAdminApi.ts#L3" } ], "type": { @@ -25745,7 +25745,7 @@ "fileName": "src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/AuthClient.ts#L3" } ], "type": { @@ -25771,7 +25771,7 @@ "fileName": "src/lib/types.ts", "line": 1337, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1337" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1337" } ], "type": { @@ -25814,7 +25814,7 @@ "fileName": "src/lib/locks.ts", "line": 6, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L6" } ], "type": { @@ -25841,7 +25841,7 @@ "fileName": "src/lib/locks.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L10" } ], "type": { @@ -25862,7 +25862,7 @@ "fileName": "src/lib/locks.ts", "line": 6, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L6" } ] } @@ -25880,7 +25880,7 @@ "fileName": "src/lib/errors.ts", "line": 41, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L41" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L41" } ], "signatures": [ @@ -25927,7 +25927,7 @@ "fileName": "src/lib/errors.ts", "line": 26, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L26" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L26" } ], "signatures": [ @@ -25974,7 +25974,7 @@ "fileName": "src/lib/errors.ts", "line": 105, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L105" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L105" } ], "signatures": [ @@ -26021,7 +26021,7 @@ "fileName": "src/lib/errors.ts", "line": 135, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L135" } ], "signatures": [ @@ -26068,7 +26068,7 @@ "fileName": "src/lib/errors.ts", "line": 72, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L72" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L72" } ], "signatures": [ @@ -26115,7 +26115,7 @@ "fileName": "src/lib/errors.ts", "line": 157, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L157" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L157" } ], "signatures": [ @@ -26162,7 +26162,7 @@ "fileName": "src/lib/locks.ts", "line": 59, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L59" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L59" } ], "signatures": [ @@ -26305,7 +26305,7 @@ "fileName": "src/lib/locks.ts", "line": 62, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L62" } ], "signatures": [ @@ -26361,7 +26361,7 @@ "fileName": "src/lib/locks.ts", "line": 171, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L171" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L171" } ], "signatures": [ @@ -26472,7 +26472,7 @@ "fileName": "src/lib/locks.ts", "line": 174, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L174" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L174" } ], "signatures": [ @@ -26555,7 +26555,7 @@ "fileName": "src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/index.ts#L1" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/index.ts#L1" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json index 04c563f583e30..26566fc192c73 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json @@ -24,7 +24,7 @@ "fileName": "src/lib/errors.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L33" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L33" } ], "signatures": [ @@ -125,7 +125,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -185,7 +185,7 @@ "fileName": "src/lib/errors.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L31" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L31" } ], "type": { @@ -214,7 +214,7 @@ "fileName": "src/lib/errors.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L30" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L30" } ], "extendedTypes": [ @@ -243,7 +243,7 @@ "fileName": "src/lib/errors.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L18" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L18" } ], "signatures": [ @@ -337,7 +337,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -392,7 +392,7 @@ "fileName": "src/lib/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L14" } ], "type": { @@ -425,7 +425,7 @@ "fileName": "src/lib/errors.ts", "line": 4, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L4" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L4" } ], "extendedTypes": [ @@ -472,7 +472,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ], "signatures": [ @@ -527,7 +527,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 57, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ], "type": { @@ -546,7 +546,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ], "type": { @@ -566,7 +566,7 @@ "fileName": "src/lib/errors.ts", "line": 90, "character": 40, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L90" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L90" } ] } @@ -623,7 +623,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -675,7 +675,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -705,7 +705,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -724,7 +724,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -744,7 +744,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ] } @@ -764,7 +764,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -796,7 +796,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -820,7 +820,7 @@ "fileName": "src/lib/errors.ts", "line": 95, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L95" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L95" } ], "signatures": [ @@ -850,7 +850,7 @@ "fileName": "src/lib/errors.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L100" } ], "type": { @@ -880,7 +880,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -899,7 +899,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ], "type": { @@ -919,7 +919,7 @@ "fileName": "src/lib/errors.ts", "line": 89, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L89" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L89" } ] } @@ -939,7 +939,7 @@ "fileName": "src/lib/errors.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L98" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L98" } ], "type": { @@ -959,7 +959,7 @@ "fileName": "src/lib/errors.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L97" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L97" } ], "type": { @@ -979,7 +979,7 @@ "fileName": "src/lib/errors.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L99" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L99" } ], "type": { @@ -1000,7 +1000,7 @@ "fileName": "src/lib/errors.ts", "line": 96, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L96" } ] } @@ -1028,7 +1028,7 @@ "fileName": "src/lib/errors.ts", "line": 88, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L88" } ], "extendedTypes": [ @@ -1057,7 +1057,7 @@ "fileName": "src/lib/errors.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L83" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L83" } ], "signatures": [ @@ -1127,7 +1127,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -1179,7 +1179,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -1211,7 +1211,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -1240,7 +1240,7 @@ "fileName": "src/lib/errors.ts", "line": 82, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L82" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L82" } ], "extendedTypes": [ @@ -1269,7 +1269,7 @@ "fileName": "src/lib/errors.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L162" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L162" } ], "signatures": [ @@ -1339,7 +1339,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -1391,7 +1391,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -1423,7 +1423,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -1452,7 +1452,7 @@ "fileName": "src/lib/errors.ts", "line": 161, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L161" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L161" } ], "extendedTypes": [ @@ -1481,7 +1481,7 @@ "fileName": "src/lib/errors.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L77" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L77" } ], "signatures": [ @@ -1538,7 +1538,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -1590,7 +1590,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -1622,7 +1622,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -1651,7 +1651,7 @@ "fileName": "src/lib/errors.ts", "line": 76, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L76" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L76" } ], "extendedTypes": [ @@ -1680,7 +1680,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ], "signatures": [ @@ -1735,7 +1735,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 57, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ], "type": { @@ -1754,7 +1754,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ], "type": { @@ -1774,7 +1774,7 @@ "fileName": "src/lib/errors.ts", "line": 114, "character": 40, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L114" } ] } @@ -1831,7 +1831,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -1883,7 +1883,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -1913,7 +1913,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -1932,7 +1932,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -1952,7 +1952,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ] } @@ -1972,7 +1972,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -2004,7 +2004,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -2028,7 +2028,7 @@ "fileName": "src/lib/errors.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L119" } ], "signatures": [ @@ -2058,7 +2058,7 @@ "fileName": "src/lib/errors.ts", "line": 124, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L124" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L124" } ], "type": { @@ -2088,7 +2088,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 28, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -2107,7 +2107,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ], "type": { @@ -2127,7 +2127,7 @@ "fileName": "src/lib/errors.ts", "line": 112, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L112" } ] } @@ -2147,7 +2147,7 @@ "fileName": "src/lib/errors.ts", "line": 122, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L122" } ], "type": { @@ -2167,7 +2167,7 @@ "fileName": "src/lib/errors.ts", "line": 121, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L121" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L121" } ], "type": { @@ -2187,7 +2187,7 @@ "fileName": "src/lib/errors.ts", "line": 123, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L123" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L123" } ], "type": { @@ -2208,7 +2208,7 @@ "fileName": "src/lib/errors.ts", "line": 120, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L120" } ] } @@ -2236,7 +2236,7 @@ "fileName": "src/lib/errors.ts", "line": 111, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L111" } ], "extendedTypes": [ @@ -2265,7 +2265,7 @@ "fileName": "src/lib/errors.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L130" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L130" } ], "signatures": [ @@ -2346,7 +2346,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -2398,7 +2398,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -2430,7 +2430,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -2459,7 +2459,7 @@ "fileName": "src/lib/errors.ts", "line": 129, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L129" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L129" } ], "extendedTypes": [ @@ -2488,7 +2488,7 @@ "fileName": "src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L67" } ], "signatures": [ @@ -2545,7 +2545,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -2597,7 +2597,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -2629,7 +2629,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -2658,7 +2658,7 @@ "fileName": "src/lib/errors.ts", "line": 66, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L66" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L66" } ], "extendedTypes": [ @@ -2687,7 +2687,7 @@ "fileName": "src/lib/errors.ts", "line": 48, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L48" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L48" } ], "signatures": [ @@ -2768,7 +2768,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -2820,7 +2820,7 @@ "fileName": "src/lib/errors.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L46" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L46" } ], "type": { @@ -2847,7 +2847,7 @@ "fileName": "src/lib/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L14" } ], "type": { @@ -2885,7 +2885,7 @@ "fileName": "src/lib/errors.ts", "line": 45, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L45" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L45" } ], "extendedTypes": [ @@ -2922,7 +2922,7 @@ "fileName": "src/lib/errors.ts", "line": 150, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L150" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L150" } ], "signatures": [ @@ -3017,7 +3017,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -3069,7 +3069,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -3101,7 +3101,7 @@ "fileName": "src/lib/errors.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L148" } ], "type": { @@ -3132,7 +3132,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -3161,7 +3161,7 @@ "fileName": "src/lib/errors.ts", "line": 144, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L144" } ], "extendedTypes": [ @@ -3190,7 +3190,7 @@ "fileName": "src/lib/errors.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L59" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L59" } ], "signatures": [ @@ -3302,7 +3302,7 @@ "fileName": "src/lib/errors.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L11" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L11" } ], "type": { @@ -3354,7 +3354,7 @@ "fileName": "src/lib/errors.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L56" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L56" } ], "type": { @@ -3385,7 +3385,7 @@ "fileName": "src/lib/errors.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L57" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L57" } ], "type": { @@ -3414,7 +3414,7 @@ "fileName": "src/lib/errors.ts", "line": 55, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L55" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L55" } ], "extendedTypes": [ @@ -3485,7 +3485,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L37" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L37" } ], "signatures": [ @@ -3524,7 +3524,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -3622,7 +3622,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "type": { @@ -3638,7 +3638,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "indexSignature": { @@ -3678,7 +3678,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 42, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L42" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L42" } ], "type": { @@ -3698,7 +3698,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 41, "character": 5, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L41" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L41" } ] } @@ -3732,7 +3732,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 29, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L29" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L29" } ], "type": { @@ -3771,7 +3771,7 @@ "fileName": "src/lib/types.ts", "line": 1169, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1169" } ], "signatures": [ @@ -3837,7 +3837,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ], "type": { @@ -3868,7 +3868,7 @@ "fileName": "src/lib/types.ts", "line": 1122, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1122" } ], "type": { @@ -3895,7 +3895,7 @@ "fileName": "src/lib/types.ts", "line": 1125, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1125" } ], "type": { @@ -3915,7 +3915,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ] } @@ -3951,7 +3951,7 @@ "fileName": "src/lib/types.ts", "line": 1159, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1159" } ], "signatures": [ @@ -4000,7 +4000,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ], "type": { @@ -4031,7 +4031,7 @@ "fileName": "src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1146" } ], "type": { @@ -4051,7 +4051,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ] } @@ -4088,7 +4088,7 @@ "fileName": "src/lib/types.ts", "line": 1154, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1154" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1154" } ] } @@ -4105,7 +4105,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 160, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L160" } ], "signatures": [ @@ -4186,7 +4186,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -4215,7 +4215,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -4244,7 +4244,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -4277,7 +4277,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -4322,7 +4322,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -4351,7 +4351,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -4384,7 +4384,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -4425,7 +4425,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -4454,7 +4454,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -4487,7 +4487,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -4548,7 +4548,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -4593,7 +4593,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -4613,7 +4613,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -4666,7 +4666,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L280" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L280" } ], "signatures": [ @@ -4768,7 +4768,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 126, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L126" } ], "signatures": [ @@ -4808,7 +4808,7 @@ "fileName": "src/lib/types.ts", "line": 856, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L856" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L856" } ], "type": { @@ -4825,7 +4825,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ], "type": { @@ -4848,7 +4848,7 @@ "fileName": "src/lib/types.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L815" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L815" } ], "type": { @@ -4869,7 +4869,7 @@ "fileName": "src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L817" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L817" } ], "type": { @@ -4910,7 +4910,7 @@ "fileName": "src/lib/types.ts", "line": 816, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L816" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L816" } ], "type": { @@ -4929,7 +4929,7 @@ "fileName": "src/lib/types.ts", "line": 814, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L814" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L814" } ], "type": { @@ -4949,7 +4949,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 39, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ] } @@ -4966,7 +4966,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ], "type": { @@ -4997,7 +4997,7 @@ "fileName": "src/lib/types.ts", "line": 823, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L823" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L823" } ], "type": { @@ -5018,7 +5018,7 @@ "fileName": "src/lib/types.ts", "line": 824, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L824" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L824" } ], "type": { @@ -5059,7 +5059,7 @@ "fileName": "src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L821" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L821" } ], "type": { @@ -5088,7 +5088,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 46, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ] } @@ -5105,7 +5105,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ], "type": { @@ -5136,7 +5136,7 @@ "fileName": "src/lib/types.ts", "line": 830, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L830" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L830" } ], "type": { @@ -5157,7 +5157,7 @@ "fileName": "src/lib/types.ts", "line": 831, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L831" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L831" } ], "type": { @@ -5189,7 +5189,7 @@ "fileName": "src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L828" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L828" } ], "type": { @@ -5209,7 +5209,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ] } @@ -5226,7 +5226,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ], "type": { @@ -5257,7 +5257,7 @@ "fileName": "src/lib/types.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L837" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L837" } ], "type": { @@ -5284,7 +5284,7 @@ "fileName": "src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L841" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L841" } ], "type": { @@ -5305,7 +5305,7 @@ "fileName": "src/lib/types.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L842" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L842" } ], "type": { @@ -5337,7 +5337,7 @@ "fileName": "src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L835" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L835" } ], "type": { @@ -5366,7 +5366,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ] } @@ -5405,7 +5405,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 229, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L229" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L229" } ], "signatures": [ @@ -5479,7 +5479,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L93" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L93" } ], "signatures": [ @@ -5569,7 +5569,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L97" } ], "type": { @@ -5598,7 +5598,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L100" } ], "type": { @@ -5618,7 +5618,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 95, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L95" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L95" } ] } @@ -5653,7 +5653,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 182, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L182" } ], "signatures": [ @@ -5727,7 +5727,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ], "type": { @@ -5760,7 +5760,7 @@ "fileName": "src/lib/types.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1215" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1215" } ], "type": { @@ -5789,7 +5789,7 @@ "fileName": "src/lib/types.ts", "line": 1217, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1217" } ], "type": { @@ -5809,7 +5809,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ] } @@ -5844,7 +5844,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -5870,7 +5870,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -5889,7 +5889,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -5913,7 +5913,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -5937,7 +5937,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 59, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -5957,7 +5957,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -5982,7 +5982,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -6005,7 +6005,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -6024,7 +6024,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -6041,7 +6041,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 29, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -6062,7 +6062,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -6088,7 +6088,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 62, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L62" } ], "signatures": [ @@ -6183,7 +6183,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -6202,7 +6202,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -6232,7 +6232,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ] } @@ -6256,7 +6256,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 253, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L253" } ], "signatures": [ @@ -6356,7 +6356,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -6385,7 +6385,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -6414,7 +6414,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -6447,7 +6447,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -6492,7 +6492,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -6521,7 +6521,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -6554,7 +6554,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -6595,7 +6595,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -6624,7 +6624,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -6657,7 +6657,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -6718,7 +6718,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -6763,7 +6763,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -6783,7 +6783,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -6845,7 +6845,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 27, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L27" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L27" } ] }, @@ -6867,7 +6867,7 @@ "fileName": "src/GoTrueClient.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L240" } ], "signatures": [ @@ -6907,7 +6907,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ], "type": { @@ -6932,7 +6932,7 @@ "fileName": "src/lib/types.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L70" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L70" } ], "type": { @@ -6953,7 +6953,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "type": { @@ -6976,7 +6976,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "signatures": [ @@ -7039,7 +7039,7 @@ "fileName": "src/lib/types.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L68" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L68" } ], "type": { @@ -7060,7 +7060,7 @@ "fileName": "src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L84" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L84" } ], "type": { @@ -7081,7 +7081,7 @@ "fileName": "src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L86" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L86" } ], "type": { @@ -7099,7 +7099,7 @@ "fileName": "src/lib/types.ts", "line": 601, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L601" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L601" } ], "type": { @@ -7140,7 +7140,7 @@ "fileName": "src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L99" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L99" } ], "type": { @@ -7161,7 +7161,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "type": { @@ -7177,7 +7177,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "indexSignature": { @@ -7228,7 +7228,7 @@ "fileName": "src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L94" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L94" } ], "type": { @@ -7246,7 +7246,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "type": { @@ -7262,7 +7262,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 23, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -7372,7 +7372,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 69, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -7434,7 +7434,7 @@ "fileName": "src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L72" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L72" } ], "type": { @@ -7455,7 +7455,7 @@ "fileName": "src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L74" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L74" } ], "type": { @@ -7473,7 +7473,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -7554,7 +7554,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -7574,7 +7574,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -7597,7 +7597,7 @@ "fileName": "src/lib/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L66" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L66" } ], "type": { @@ -7618,7 +7618,7 @@ "fileName": "src/lib/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L62" } ], "type": { @@ -7688,7 +7688,7 @@ "fileName": "src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L82" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L82" } ], "type": { @@ -7706,7 +7706,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -7787,7 +7787,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -7807,7 +7807,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -7831,7 +7831,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ] } @@ -7867,7 +7867,7 @@ "fileName": "src/GoTrueClient.ts", "line": 167, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L167" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L167" } ], "type": { @@ -7892,7 +7892,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L37" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L37" } ], "signatures": [ @@ -7931,7 +7931,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -8029,7 +8029,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "type": { @@ -8045,7 +8045,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 43, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L43" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L43" } ], "indexSignature": { @@ -8085,7 +8085,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 42, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L42" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L42" } ], "type": { @@ -8105,7 +8105,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 41, "character": 5, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L41" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L41" } ] } @@ -8139,7 +8139,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 29, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L29" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L29" } ], "type": { @@ -8178,7 +8178,7 @@ "fileName": "src/lib/types.ts", "line": 1169, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1169" } ], "signatures": [ @@ -8244,7 +8244,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ], "type": { @@ -8275,7 +8275,7 @@ "fileName": "src/lib/types.ts", "line": 1122, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1122" } ], "type": { @@ -8302,7 +8302,7 @@ "fileName": "src/lib/types.ts", "line": 1125, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1125" } ], "type": { @@ -8322,7 +8322,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ] } @@ -8358,7 +8358,7 @@ "fileName": "src/lib/types.ts", "line": 1159, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1159" } ], "signatures": [ @@ -8407,7 +8407,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ], "type": { @@ -8438,7 +8438,7 @@ "fileName": "src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1146" } ], "type": { @@ -8458,7 +8458,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ] } @@ -8495,7 +8495,7 @@ "fileName": "src/lib/types.ts", "line": 1154, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1154" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1154" } ] } @@ -8512,7 +8512,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 160, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L160" } ], "signatures": [ @@ -8593,7 +8593,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -8622,7 +8622,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -8651,7 +8651,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -8684,7 +8684,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -8729,7 +8729,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -8758,7 +8758,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -8791,7 +8791,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -8832,7 +8832,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -8861,7 +8861,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -8894,7 +8894,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -8955,7 +8955,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -9000,7 +9000,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -9022,7 +9022,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -9075,7 +9075,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L280" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L280" } ], "signatures": [ @@ -9177,7 +9177,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 126, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L126" } ], "signatures": [ @@ -9217,7 +9217,7 @@ "fileName": "src/lib/types.ts", "line": 856, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L856" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L856" } ], "type": { @@ -9234,7 +9234,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ], "type": { @@ -9257,7 +9257,7 @@ "fileName": "src/lib/types.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L815" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L815" } ], "type": { @@ -9278,7 +9278,7 @@ "fileName": "src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L817" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L817" } ], "type": { @@ -9319,7 +9319,7 @@ "fileName": "src/lib/types.ts", "line": 816, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L816" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L816" } ], "type": { @@ -9338,7 +9338,7 @@ "fileName": "src/lib/types.ts", "line": 814, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L814" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L814" } ], "type": { @@ -9358,7 +9358,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 39, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ] } @@ -9375,7 +9375,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ], "type": { @@ -9406,7 +9406,7 @@ "fileName": "src/lib/types.ts", "line": 823, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L823" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L823" } ], "type": { @@ -9427,7 +9427,7 @@ "fileName": "src/lib/types.ts", "line": 824, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L824" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L824" } ], "type": { @@ -9468,7 +9468,7 @@ "fileName": "src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L821" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L821" } ], "type": { @@ -9497,7 +9497,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 46, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ] } @@ -9514,7 +9514,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ], "type": { @@ -9545,7 +9545,7 @@ "fileName": "src/lib/types.ts", "line": 830, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L830" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L830" } ], "type": { @@ -9566,7 +9566,7 @@ "fileName": "src/lib/types.ts", "line": 831, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L831" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L831" } ], "type": { @@ -9598,7 +9598,7 @@ "fileName": "src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L828" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L828" } ], "type": { @@ -9618,7 +9618,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ] } @@ -9635,7 +9635,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ], "type": { @@ -9666,7 +9666,7 @@ "fileName": "src/lib/types.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L837" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L837" } ], "type": { @@ -9693,7 +9693,7 @@ "fileName": "src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L841" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L841" } ], "type": { @@ -9714,7 +9714,7 @@ "fileName": "src/lib/types.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L842" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L842" } ], "type": { @@ -9746,7 +9746,7 @@ "fileName": "src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L835" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L835" } ], "type": { @@ -9775,7 +9775,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ] } @@ -9814,7 +9814,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 229, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L229" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L229" } ], "signatures": [ @@ -9888,7 +9888,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 93, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L93" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L93" } ], "signatures": [ @@ -9978,7 +9978,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L97" } ], "type": { @@ -10007,7 +10007,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L100" } ], "type": { @@ -10027,7 +10027,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 95, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L95" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L95" } ] } @@ -10062,7 +10062,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 182, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L182" } ], "signatures": [ @@ -10136,7 +10136,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ], "type": { @@ -10169,7 +10169,7 @@ "fileName": "src/lib/types.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1215" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1215" } ], "type": { @@ -10198,7 +10198,7 @@ "fileName": "src/lib/types.ts", "line": 1217, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1217" } ], "type": { @@ -10218,7 +10218,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ] } @@ -10253,7 +10253,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -10279,7 +10279,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -10298,7 +10298,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -10322,7 +10322,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -10346,7 +10346,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 59, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ], "type": { @@ -10366,7 +10366,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L185" } ] } @@ -10391,7 +10391,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -10414,7 +10414,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -10433,7 +10433,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -10450,7 +10450,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 29, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ], "type": { @@ -10471,7 +10471,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 186, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L186" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L186" } ] } @@ -10497,7 +10497,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 62, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L62" } ], "signatures": [ @@ -10592,7 +10592,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -10611,7 +10611,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ], "type": { @@ -10641,7 +10641,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 65, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L65" } ] } @@ -10665,7 +10665,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 253, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L253" } ], "signatures": [ @@ -10765,7 +10765,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -10794,7 +10794,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -10823,7 +10823,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -10856,7 +10856,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -10901,7 +10901,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -10930,7 +10930,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -10963,7 +10963,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -11004,7 +11004,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -11033,7 +11033,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -11066,7 +11066,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -11127,7 +11127,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -11172,7 +11172,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -11194,7 +11194,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -11256,7 +11256,7 @@ "fileName": "src/GoTrueAdminApi.ts", "line": 27, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueAdminApi.ts#L27" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueAdminApi.ts#L27" } ] } @@ -11281,7 +11281,7 @@ "fileName": "src/GoTrueClient.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L171" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L171" } ], "type": { @@ -11314,7 +11314,7 @@ "fileName": "src/lib/types.ts", "line": 1058, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1058" } ], "signatures": [ @@ -11354,7 +11354,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ], "type": { @@ -11387,7 +11387,7 @@ "fileName": "src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L930" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L930" } ], "type": { @@ -11423,7 +11423,7 @@ "fileName": "src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L928" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L928" } ], "type": { @@ -11443,7 +11443,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ] } @@ -11479,7 +11479,7 @@ "fileName": "src/lib/types.ts", "line": 1076, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1076" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1076" } ], "signatures": [ @@ -11519,7 +11519,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ], "type": { @@ -11550,7 +11550,7 @@ "fileName": "src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L937" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L937" } ], "type": { @@ -11577,7 +11577,7 @@ "fileName": "src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L935" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L935" } ], "type": { @@ -11597,7 +11597,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ] } @@ -11633,19 +11633,19 @@ "fileName": "src/lib/types.ts", "line": 1050, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1050" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1050" }, { "fileName": "src/lib/types.ts", "line": 1051, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1051" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1051" }, { "fileName": "src/lib/types.ts", "line": 1052, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1052" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1052" } ], "signatures": [ @@ -11701,7 +11701,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -11732,7 +11732,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -11761,7 +11761,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -11790,7 +11790,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -11810,7 +11810,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -11861,7 +11861,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -11892,7 +11892,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -11921,7 +11921,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -11948,7 +11948,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -11968,7 +11968,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -12019,7 +12019,7 @@ "fileName": "src/lib/types.ts", "line": 908, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L908" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L908" } ], "type": { @@ -12036,7 +12036,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -12067,7 +12067,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -12096,7 +12096,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -12125,7 +12125,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -12145,7 +12145,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -12162,7 +12162,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -12193,7 +12193,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -12222,7 +12222,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -12249,7 +12249,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -12269,7 +12269,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -12308,7 +12308,7 @@ "fileName": "src/lib/types.ts", "line": 1101, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1101" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1101" } ], "signatures": [ @@ -12377,7 +12377,7 @@ "fileName": "src/lib/types.ts", "line": 1086, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1086" } ], "signatures": [ @@ -12471,7 +12471,7 @@ "fileName": "src/lib/types.ts", "line": 1070, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1070" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1070" } ], "signatures": [ @@ -12527,7 +12527,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ], "type": { @@ -12558,7 +12558,7 @@ "fileName": "src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L912" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L912" } ], "type": { @@ -12578,7 +12578,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 32, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ] } @@ -12614,7 +12614,7 @@ "fileName": "src/lib/types.ts", "line": 1064, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1064" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1064" } ], "signatures": [ @@ -12654,7 +12654,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ], "type": { @@ -12685,7 +12685,7 @@ "fileName": "src/lib/types.ts", "line": 920, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L920" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L920" } ], "type": { @@ -12712,7 +12712,7 @@ "fileName": "src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L923" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L923" } ], "type": { @@ -12739,7 +12739,7 @@ "fileName": "src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L917" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L917" } ], "type": { @@ -12759,7 +12759,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 30, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ] } @@ -12796,7 +12796,7 @@ "fileName": "src/lib/types.ts", "line": 1039, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1039" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1039" } ] } @@ -12813,7 +12813,7 @@ "fileName": "src/GoTrueClient.ts", "line": 651, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L651" } ], "signatures": [ @@ -12871,7 +12871,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3181, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3181" } ], "signatures": [ @@ -13009,7 +13009,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3190, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3190" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3190" } ], "type": { @@ -13038,7 +13038,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3193, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3193" } ], "type": { @@ -13061,7 +13061,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3193, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3193" } ], "type": { @@ -13085,7 +13085,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3193, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3193" } ] } @@ -13118,7 +13118,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3187, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3187" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3187" } ], "type": { @@ -13142,7 +13142,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3183, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3183" } ] } @@ -13176,7 +13176,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -13199,7 +13199,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -13219,7 +13219,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 36, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -13239,7 +13239,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 55, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ], "type": { @@ -13261,7 +13261,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3197, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3197" } ] } @@ -13278,7 +13278,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3198, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3198" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3198" } ], "type": { @@ -13298,7 +13298,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3196, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3196" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3196" } ] } @@ -13323,7 +13323,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3200, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3200" } ], "type": { @@ -13342,7 +13342,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3200, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3200" } ], "type": { @@ -13363,7 +13363,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3200, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3200" } ] } @@ -13388,7 +13388,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3201, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3201" } ], "type": { @@ -13407,7 +13407,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3201, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3201" } ], "type": { @@ -13427,7 +13427,7 @@ "fileName": "src/GoTrueClient.ts", "line": 3201, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L3201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L3201" } ] } @@ -13453,7 +13453,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1355, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1355" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1355" } ], "signatures": [ @@ -13507,7 +13507,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1448, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1448" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1448" } ], "type": { @@ -13530,7 +13530,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1449, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1449" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1449" } ], "type": { @@ -13551,7 +13551,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1448, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1448" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1448" } ] } @@ -13568,7 +13568,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1451, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1451" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1451" } ], "type": { @@ -13588,7 +13588,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1447, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1447" } ] } @@ -13613,7 +13613,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1454, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1454" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1454" } ], "type": { @@ -13636,7 +13636,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1455, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1455" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1455" } ], "type": { @@ -13656,7 +13656,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1454, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1454" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1454" } ] } @@ -13673,7 +13673,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1457, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1457" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1457" } ], "type": { @@ -13694,7 +13694,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1453, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1453" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1453" } ] } @@ -13719,7 +13719,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1460, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1460" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1460" } ], "type": { @@ -13742,7 +13742,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1461, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1461" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1461" } ], "type": { @@ -13762,7 +13762,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1460, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1460" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1460" } ] } @@ -13779,7 +13779,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1463, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1463" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1463" } ], "type": { @@ -13799,7 +13799,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1459, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1459" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1459" } ] } @@ -13825,7 +13825,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1599, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1599" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1599" } ], "signatures": [ @@ -13893,7 +13893,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2157, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2157" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2157" } ], "signatures": [ @@ -13937,7 +13937,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2159, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2159" } ], "type": { @@ -13960,7 +13960,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2160, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2160" } ], "type": { @@ -13984,7 +13984,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2159, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2159" } ] } @@ -14001,7 +14001,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2162, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2162" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2162" } ], "type": { @@ -14021,7 +14021,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2158, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2158" } ] } @@ -14046,7 +14046,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2164, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2164" } ], "type": { @@ -14065,7 +14065,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2164, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2164" } ], "type": { @@ -14086,7 +14086,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2164, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2164" } ] } @@ -14112,7 +14112,7 @@ "fileName": "src/GoTrueClient.ts", "line": 353, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L353" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L353" } ], "signatures": [ @@ -14157,7 +14157,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2181, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2181" } ], "signatures": [ @@ -14197,7 +14197,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ], "type": { @@ -14222,7 +14222,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ], "type": { @@ -14255,7 +14255,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "type": { @@ -14271,7 +14271,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "indexSignature": { @@ -14321,7 +14321,7 @@ "fileName": "src/lib/types.ts", "line": 607, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L607" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L607" } ], "type": { @@ -14350,7 +14350,7 @@ "fileName": "src/lib/types.ts", "line": 609, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L609" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L609" } ], "type": { @@ -14379,7 +14379,7 @@ "fileName": "src/lib/types.ts", "line": 613, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L613" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L613" } ], "type": { @@ -14399,7 +14399,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ] } @@ -14424,7 +14424,7 @@ "fileName": "src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L604" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L604" } ], "type": { @@ -14450,7 +14450,7 @@ "fileName": "src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L8" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L8" } ], "type": { @@ -14561,7 +14561,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ] } @@ -14597,7 +14597,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2055, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2055" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2055" } ], "signatures": [ @@ -14643,7 +14643,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2056, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2056" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2056" } ], "signatures": [ @@ -14735,7 +14735,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2058, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2058" } ], "type": { @@ -14758,7 +14758,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2058, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2058" } ], "type": { @@ -14783,7 +14783,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "type": { @@ -14799,7 +14799,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "signatures": [ @@ -14880,7 +14880,7 @@ "fileName": "src/lib/types.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L479" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L479" } ], "type": { @@ -14899,7 +14899,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "type": { @@ -14915,7 +14915,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "signatures": [ @@ -14954,7 +14954,7 @@ "fileName": "src/lib/types.ts", "line": 475, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L475" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L475" } ] } @@ -14972,7 +14972,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2058, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2058" } ] } @@ -14990,7 +14990,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2057, "character": 5, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2057" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2057" } ] } @@ -15009,7 +15009,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1271, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1271" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1271" } ], "signatures": [ @@ -15054,7 +15054,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1804, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1804" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1804" } ], "signatures": [ @@ -15109,7 +15109,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1804, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1804" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1804" } ], "type": { @@ -15129,7 +15129,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1804, "character": 40, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1804" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1804" } ] } @@ -15163,7 +15163,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1306, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1306" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1306" } ], "signatures": [ @@ -15203,7 +15203,7 @@ "fileName": "src/lib/types.ts", "line": 769, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L769" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L769" } ], "type": { @@ -15229,7 +15229,7 @@ "fileName": "src/lib/types.ts", "line": 772, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L772" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L772" } ], "type": { @@ -15250,7 +15250,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ], "type": { @@ -15283,7 +15283,7 @@ "fileName": "src/lib/types.ts", "line": 777, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L777" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L777" } ], "type": { @@ -15312,7 +15312,7 @@ "fileName": "src/lib/types.ts", "line": 775, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L775" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L775" } ], "type": { @@ -15332,7 +15332,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ] } @@ -15349,7 +15349,7 @@ "fileName": "src/lib/types.ts", "line": 771, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L771" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L771" } ], "type": { @@ -15391,7 +15391,7 @@ "fileName": "src/lib/types.ts", "line": 770, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L770" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L770" } ] } @@ -15418,7 +15418,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ], "type": { @@ -15451,7 +15451,7 @@ "fileName": "src/lib/types.ts", "line": 785, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L785" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L785" } ], "type": { @@ -15471,7 +15471,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ] } @@ -15488,7 +15488,7 @@ "fileName": "src/lib/types.ts", "line": 782, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L782" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L782" } ], "type": { @@ -15507,7 +15507,7 @@ "fileName": "src/lib/types.ts", "line": 781, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L781" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L781" } ], "type": { @@ -15549,7 +15549,7 @@ "fileName": "src/lib/types.ts", "line": 780, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L780" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L780" } ] } @@ -15587,7 +15587,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2111, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2111" } ], "signatures": [ @@ -15661,7 +15661,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2115, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2115" } ], "type": { @@ -15690,7 +15690,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2114, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2114" } ], "type": { @@ -15710,7 +15710,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2113, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2113" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2113" } ] } @@ -15744,7 +15744,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2119, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2119" } ], "type": { @@ -15769,7 +15769,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2120, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2120" } ], "type": { @@ -15789,7 +15789,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2118, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2118" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2118" } ] } @@ -15814,7 +15814,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2122, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2122" } ], "type": { @@ -15833,7 +15833,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2122, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2122" } ], "type": { @@ -15854,7 +15854,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2122, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2122" } ] } @@ -15880,7 +15880,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1729, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1729" } ], "signatures": [ @@ -15933,7 +15933,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1730, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1730" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1730" } ], "type": { @@ -15952,7 +15952,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1731, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1731" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1731" } ], "type": { @@ -15972,7 +15972,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1729, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1729" } ] } @@ -16006,7 +16006,7 @@ "fileName": "src/GoTrueClient.ts", "line": 456, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L456" } ], "signatures": [ @@ -16059,7 +16059,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ], "type": { @@ -16084,7 +16084,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ], "type": { @@ -16117,7 +16117,7 @@ "fileName": "src/lib/types.ts", "line": 499, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L499" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L499" } ], "type": { @@ -16162,7 +16162,7 @@ "fileName": "src/lib/types.ts", "line": 497, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L497" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L497" } ], "type": { @@ -16182,7 +16182,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ] } @@ -16200,7 +16200,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ] } @@ -16236,7 +16236,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1064, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1064" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1064" } ], "signatures": [ @@ -16276,7 +16276,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ], "type": { @@ -16317,7 +16317,7 @@ "fileName": "src/lib/types.ts", "line": 623, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L623" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L623" } ], "type": { @@ -16354,7 +16354,7 @@ "fileName": "src/lib/types.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L625" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L625" } ], "type": { @@ -16375,7 +16375,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ], "type": { @@ -16408,7 +16408,7 @@ "fileName": "src/lib/types.ts", "line": 628, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L628" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L628" } ], "type": { @@ -16428,7 +16428,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ] } @@ -16509,7 +16509,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ], "type": { @@ -16555,7 +16555,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 76, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ] } @@ -16616,7 +16616,7 @@ "fileName": "src/lib/types.ts", "line": 621, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L621" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L621" } ], "type": { @@ -16636,7 +16636,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ] } @@ -16672,7 +16672,7 @@ "fileName": "src/GoTrueClient.ts", "line": 639, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L639" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L639" } ], "signatures": [ @@ -16712,7 +16712,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ], "type": { @@ -16737,7 +16737,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ], "type": { @@ -16770,7 +16770,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "type": { @@ -16786,7 +16786,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "indexSignature": { @@ -16836,7 +16836,7 @@ "fileName": "src/lib/types.ts", "line": 607, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L607" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L607" } ], "type": { @@ -16865,7 +16865,7 @@ "fileName": "src/lib/types.ts", "line": 609, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L609" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L609" } ], "type": { @@ -16894,7 +16894,7 @@ "fileName": "src/lib/types.ts", "line": 613, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L613" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L613" } ], "type": { @@ -16914,7 +16914,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ] } @@ -16939,7 +16939,7 @@ "fileName": "src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L604" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L604" } ], "type": { @@ -16965,7 +16965,7 @@ "fileName": "src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L8" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L8" } ], "type": { @@ -17076,7 +17076,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ] } @@ -17112,7 +17112,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1119, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1119" } ], "signatures": [ @@ -17168,7 +17168,7 @@ "fileName": "src/lib/types.ts", "line": 563, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L563" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L563" } ], "type": { @@ -17202,7 +17202,7 @@ "fileName": "src/lib/types.ts", "line": 566, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L566" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L566" } ], "type": { @@ -17223,7 +17223,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ], "type": { @@ -17256,7 +17256,7 @@ "fileName": "src/lib/types.ts", "line": 579, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L579" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L579" } ], "type": { @@ -17301,7 +17301,7 @@ "fileName": "src/lib/types.ts", "line": 577, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L577" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L577" } ], "type": { @@ -17330,7 +17330,7 @@ "fileName": "src/lib/types.ts", "line": 569, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L569" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L569" } ], "type": { @@ -17359,7 +17359,7 @@ "fileName": "src/lib/types.ts", "line": 571, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L571" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L571" } ], "type": { @@ -17379,7 +17379,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ] } @@ -17397,7 +17397,7 @@ "fileName": "src/lib/types.ts", "line": 564, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L564" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L564" } ] } @@ -17424,7 +17424,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ], "type": { @@ -17457,7 +17457,7 @@ "fileName": "src/lib/types.ts", "line": 595, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L595" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L595" } ], "type": { @@ -17486,7 +17486,7 @@ "fileName": "src/lib/types.ts", "line": 597, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L597" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L597" } ], "type": { @@ -17540,7 +17540,7 @@ "fileName": "src/lib/types.ts", "line": 593, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L593" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L593" } ], "type": { @@ -17569,7 +17569,7 @@ "fileName": "src/lib/types.ts", "line": 587, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L587" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L587" } ], "type": { @@ -17589,7 +17589,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ] } @@ -17614,7 +17614,7 @@ "fileName": "src/lib/types.ts", "line": 584, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L584" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L584" } ], "type": { @@ -17634,7 +17634,7 @@ "fileName": "src/lib/types.ts", "line": 582, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L582" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L582" } ] } @@ -17672,7 +17672,7 @@ "fileName": "src/GoTrueClient.ts", "line": 576, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L576" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L576" } ], "signatures": [ @@ -17712,7 +17712,7 @@ "fileName": "src/lib/types.ts", "line": 541, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L541" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L541" } ], "type": { @@ -17746,7 +17746,7 @@ "fileName": "src/lib/types.ts", "line": 544, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L544" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L544" } ], "type": { @@ -17767,7 +17767,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ], "type": { @@ -17800,7 +17800,7 @@ "fileName": "src/lib/types.ts", "line": 549, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L549" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L549" } ], "type": { @@ -17820,7 +17820,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ] } @@ -17845,7 +17845,7 @@ "fileName": "src/lib/types.ts", "line": 546, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L546" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L546" } ], "type": { @@ -17865,7 +17865,7 @@ "fileName": "src/lib/types.ts", "line": 542, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L542" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L542" } ] } @@ -17892,7 +17892,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ], "type": { @@ -17925,7 +17925,7 @@ "fileName": "src/lib/types.ts", "line": 559, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L559" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L559" } ], "type": { @@ -17945,7 +17945,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ] } @@ -17970,7 +17970,7 @@ "fileName": "src/lib/types.ts", "line": 556, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L556" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L556" } ], "type": { @@ -17997,7 +17997,7 @@ "fileName": "src/lib/types.ts", "line": 554, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L554" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L554" } ], "type": { @@ -18017,7 +18017,7 @@ "fileName": "src/lib/types.ts", "line": 552, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L552" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L552" } ] } @@ -18055,7 +18055,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1233, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1233" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1233" } ], "signatures": [ @@ -18095,7 +18095,7 @@ "fileName": "src/lib/types.ts", "line": 789, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L789" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L789" } ], "type": { @@ -18123,7 +18123,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ], "type": { @@ -18156,7 +18156,7 @@ "fileName": "src/lib/types.ts", "line": 798, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L798" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L798" } ], "type": { @@ -18185,7 +18185,7 @@ "fileName": "src/lib/types.ts", "line": 796, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L796" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L796" } ], "type": { @@ -18205,7 +18205,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ] } @@ -18230,7 +18230,7 @@ "fileName": "src/lib/types.ts", "line": 792, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L792" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L792" } ], "type": { @@ -18250,7 +18250,7 @@ "fileName": "src/lib/types.ts", "line": 790, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L790" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L790" } ] } @@ -18283,7 +18283,7 @@ "fileName": "src/lib/types.ts", "line": 803, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L803" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L803" } ], "type": { @@ -18304,7 +18304,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ], "type": { @@ -18337,7 +18337,7 @@ "fileName": "src/lib/types.ts", "line": 809, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L809" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L809" } ], "type": { @@ -18366,7 +18366,7 @@ "fileName": "src/lib/types.ts", "line": 807, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L807" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L807" } ], "type": { @@ -18386,7 +18386,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ] } @@ -18404,7 +18404,7 @@ "fileName": "src/lib/types.ts", "line": 801, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L801" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L801" } ] } @@ -18442,7 +18442,7 @@ "fileName": "src/GoTrueClient.ts", "line": 666, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L666" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L666" } ], "signatures": [ @@ -18493,7 +18493,7 @@ "fileName": "src/lib/types.ts", "line": 717, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L717" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L717" } ], "type": { @@ -18510,7 +18510,7 @@ "fileName": "src/lib/types.ts", "line": 641, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L641" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L641" } ], "type": { @@ -18536,7 +18536,7 @@ "fileName": "src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L643" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L643" } ], "type": { @@ -18557,7 +18557,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ], "type": { @@ -18590,7 +18590,7 @@ "fileName": "src/lib/types.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L656" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L656" } ], "type": { @@ -18611,7 +18611,7 @@ "fileName": "src/lib/types.ts", "line": 658, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L658" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L658" } ], "type": { @@ -18681,7 +18681,7 @@ "fileName": "src/lib/types.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L653" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L653" } ], "type": { @@ -18701,7 +18701,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ] } @@ -18728,7 +18728,7 @@ "fileName": "src/lib/types.ts", "line": 649, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L649" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L649" } ], "type": { @@ -18765,7 +18765,7 @@ "fileName": "src/lib/types.ts", "line": 646, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L646" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L646" } ], "type": { @@ -18786,7 +18786,7 @@ "fileName": "src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L642" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L642" } ] } @@ -18811,7 +18811,7 @@ "fileName": "src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L664" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L664" } ], "type": { @@ -18862,7 +18862,7 @@ "fileName": "src/lib/types.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L667" } ], "type": { @@ -18883,7 +18883,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ], "type": { @@ -18916,7 +18916,7 @@ "fileName": "src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L674" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L674" } ], "type": { @@ -18936,7 +18936,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ] } @@ -18961,7 +18961,7 @@ "fileName": "src/lib/types.ts", "line": 670, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L670" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L670" } ], "type": { @@ -18983,7 +18983,7 @@ "fileName": "src/lib/types.ts", "line": 663, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L663" } ] } @@ -19002,7 +19002,7 @@ "fileName": "src/lib/types.ts", "line": 680, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L680" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L680" } ], "type": { @@ -19028,7 +19028,7 @@ "fileName": "src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L682" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L682" } ], "type": { @@ -19049,7 +19049,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ], "type": { @@ -19082,7 +19082,7 @@ "fileName": "src/lib/types.ts", "line": 695, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L695" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L695" } ], "type": { @@ -19103,7 +19103,7 @@ "fileName": "src/lib/types.ts", "line": 697, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L697" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L697" } ], "type": { @@ -19169,7 +19169,7 @@ "fileName": "src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L692" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L692" } ], "type": { @@ -19189,7 +19189,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ] } @@ -19207,7 +19207,7 @@ "summary": [ { "kind": "text", - "text": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" + "text": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" } ] }, @@ -19216,7 +19216,7 @@ "fileName": "src/lib/types.ts", "line": 688, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L688" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L688" } ], "type": { @@ -19240,7 +19240,7 @@ }, { "kind": "code", - "text": "`window.solana`" + "text": "`window.ethereum`" }, { "kind": "text", @@ -19253,7 +19253,7 @@ "fileName": "src/lib/types.ts", "line": 685, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L685" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L685" } ], "type": { @@ -19274,7 +19274,7 @@ "fileName": "src/lib/types.ts", "line": 681, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L681" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L681" } ] } @@ -19299,7 +19299,7 @@ "fileName": "src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L703" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L703" } ], "type": { @@ -19350,7 +19350,7 @@ "fileName": "src/lib/types.ts", "line": 706, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L706" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L706" } ], "type": { @@ -19371,7 +19371,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ], "type": { @@ -19404,7 +19404,7 @@ "fileName": "src/lib/types.ts", "line": 713, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L713" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L713" } ], "type": { @@ -19424,7 +19424,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ] } @@ -19440,7 +19440,7 @@ "summary": [ { "kind": "text", - "text": "Ed25519 signature of the message." + "text": "Ethereum curve (secp256k1) signature of the message." } ] }, @@ -19449,7 +19449,7 @@ "fileName": "src/lib/types.ts", "line": 709, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L709" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L709" } ], "type": { @@ -19469,7 +19469,7 @@ "fileName": "src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L702" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L702" } ] } @@ -19509,7 +19509,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ], "type": { @@ -19532,7 +19532,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ], "type": { @@ -19552,7 +19552,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ], "type": { @@ -19573,7 +19573,7 @@ "fileName": "src/GoTrueClient.ts", "line": 668, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L668" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L668" } ] } @@ -19590,7 +19590,7 @@ "fileName": "src/GoTrueClient.ts", "line": 669, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L669" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L669" } ], "type": { @@ -19610,7 +19610,7 @@ "fileName": "src/GoTrueClient.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L667" } ] } @@ -19635,7 +19635,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -19658,7 +19658,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -19677,7 +19677,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -19697,7 +19697,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ] } @@ -19714,7 +19714,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ], "type": { @@ -19735,7 +19735,7 @@ "fileName": "src/GoTrueClient.ts", "line": 671, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L671" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L671" } ] } @@ -19761,7 +19761,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2011, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2011" } ], "signatures": [ @@ -19841,7 +19841,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ], "type": { @@ -19874,7 +19874,7 @@ "fileName": "src/lib/types.ts", "line": 1231, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1231" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1231" } ], "type": { @@ -19907,7 +19907,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ] } @@ -19940,7 +19940,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2011, "character": 67, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2011" } ], "type": { @@ -19970,7 +19970,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2011, "character": 65, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2011" } ] } @@ -19994,7 +19994,7 @@ "fileName": "src/GoTrueClient.ts", "line": 499, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L499" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L499" } ], "signatures": [ @@ -20054,7 +20054,7 @@ "fileName": "src/lib/types.ts", "line": 503, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L503" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L503" } ], "type": { @@ -20088,7 +20088,7 @@ "fileName": "src/lib/types.ts", "line": 506, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L506" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L506" } ], "type": { @@ -20109,7 +20109,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ], "type": { @@ -20142,7 +20142,7 @@ "fileName": "src/lib/types.ts", "line": 519, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L519" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L519" } ], "type": { @@ -20187,7 +20187,7 @@ "fileName": "src/lib/types.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L517" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L517" } ], "type": { @@ -20216,7 +20216,7 @@ "fileName": "src/lib/types.ts", "line": 511, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L511" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L511" } ], "type": { @@ -20236,7 +20236,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ] } @@ -20261,7 +20261,7 @@ "fileName": "src/lib/types.ts", "line": 508, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L508" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L508" } ], "type": { @@ -20281,7 +20281,7 @@ "fileName": "src/lib/types.ts", "line": 504, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L504" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L504" } ] } @@ -20308,7 +20308,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ], "type": { @@ -20341,7 +20341,7 @@ "fileName": "src/lib/types.ts", "line": 535, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L535" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L535" } ], "type": { @@ -20370,7 +20370,7 @@ "fileName": "src/lib/types.ts", "line": 537, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L537" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L537" } ], "type": { @@ -20424,7 +20424,7 @@ "fileName": "src/lib/types.ts", "line": 533, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L533" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L533" } ], "type": { @@ -20444,7 +20444,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ] } @@ -20469,7 +20469,7 @@ "fileName": "src/lib/types.ts", "line": 526, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L526" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L526" } ], "type": { @@ -20496,7 +20496,7 @@ "fileName": "src/lib/types.ts", "line": 524, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L524" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L524" } ], "type": { @@ -20516,7 +20516,7 @@ "fileName": "src/lib/types.ts", "line": 522, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L522" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L522" } ] } @@ -20554,7 +20554,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2698, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2698" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2698" } ], "signatures": [ @@ -20612,7 +20612,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2711, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2711" } ], "signatures": [ @@ -20666,7 +20666,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2217, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2217" } ], "signatures": [ @@ -20715,7 +20715,7 @@ "fileName": "src/lib/types.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L300" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L300" } ], "type": { @@ -20734,7 +20734,7 @@ "fileName": "src/lib/types.ts", "line": 293, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L293" } ], "type": { @@ -20755,7 +20755,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "type": { @@ -20771,7 +20771,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "indexSignature": { @@ -20811,7 +20811,7 @@ "fileName": "src/lib/types.ts", "line": 298, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L298" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L298" } ], "type": { @@ -20832,7 +20832,7 @@ "fileName": "src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L301" } ], "type": { @@ -20851,7 +20851,7 @@ "fileName": "src/lib/types.ts", "line": 299, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L299" } ], "type": { @@ -20872,7 +20872,7 @@ "fileName": "src/lib/types.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L302" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L302" } ], "type": { @@ -20891,7 +20891,7 @@ "fileName": "src/lib/types.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L294" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L294" } ], "type": { @@ -20911,7 +20911,7 @@ "fileName": "src/lib/types.ts", "line": 292, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L292" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L292" } ] } @@ -20944,7 +20944,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2219, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2219" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2219" } ], "type": { @@ -20969,7 +20969,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2220, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2220" } ], "type": { @@ -20989,7 +20989,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2218, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2218" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2218" } ] } @@ -21014,7 +21014,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2222, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2222" } ], "type": { @@ -21033,7 +21033,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2222, "character": 20, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2222" } ], "type": { @@ -21054,7 +21054,7 @@ "fileName": "src/GoTrueClient.ts", "line": 2222, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L2222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L2222" } ] } @@ -21080,7 +21080,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1660, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1660" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1660" } ], "signatures": [ @@ -21153,7 +21153,7 @@ "fileName": "src/lib/types.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L397" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L397" } ], "type": { @@ -21182,7 +21182,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -21211,7 +21211,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -21240,7 +21240,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -21269,7 +21269,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -21289,7 +21289,7 @@ "fileName": "src/lib/types.ts", "line": 368, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L368" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L368" } ] } @@ -21323,7 +21323,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1663, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1663" } ], "type": { @@ -21343,7 +21343,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1662, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1662" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1662" } ] } @@ -21378,7 +21378,7 @@ "fileName": "src/GoTrueClient.ts", "line": 1172, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L1172" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L1172" } ], "signatures": [ @@ -21418,7 +21418,7 @@ "fileName": "src/lib/types.ts", "line": 719, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L719" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L719" } ], "type": { @@ -21444,7 +21444,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ], "type": { @@ -21483,7 +21483,7 @@ "fileName": "src/lib/types.ts", "line": 736, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L736" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L736" } ], "type": { @@ -21512,7 +21512,7 @@ "fileName": "src/lib/types.ts", "line": 729, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L729" } ], "type": { @@ -21532,7 +21532,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ] } @@ -21557,7 +21557,7 @@ "fileName": "src/lib/types.ts", "line": 722, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L722" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L722" } ], "type": { @@ -21584,7 +21584,7 @@ "fileName": "src/lib/types.ts", "line": 724, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L724" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L724" } ], "type": { @@ -21611,7 +21611,7 @@ "fileName": "src/lib/types.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L726" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L726" } ], "type": { @@ -21629,7 +21629,7 @@ "fileName": "src/lib/types.ts", "line": 766, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L766" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L766" } ], "type": { @@ -21660,7 +21660,7 @@ "fileName": "src/lib/types.ts", "line": 720, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L720" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L720" } ] }, @@ -21690,7 +21690,7 @@ "fileName": "src/lib/types.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L741" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L741" } ], "type": { @@ -21711,7 +21711,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ], "type": { @@ -21750,7 +21750,7 @@ "fileName": "src/lib/types.ts", "line": 754, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L754" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L754" } ], "type": { @@ -21779,7 +21779,7 @@ "fileName": "src/lib/types.ts", "line": 748, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L748" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L748" } ], "type": { @@ -21799,7 +21799,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ] } @@ -21824,7 +21824,7 @@ "fileName": "src/lib/types.ts", "line": 743, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L743" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L743" } ], "type": { @@ -21851,7 +21851,7 @@ "fileName": "src/lib/types.ts", "line": 745, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L745" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L745" } ], "type": { @@ -21869,7 +21869,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -21916,7 +21916,7 @@ "fileName": "src/lib/types.ts", "line": 739, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L739" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L739" } ] }, @@ -21946,7 +21946,7 @@ "fileName": "src/lib/types.ts", "line": 760, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L760" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L760" } ], "type": { @@ -21973,7 +21973,7 @@ "fileName": "src/lib/types.ts", "line": 763, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L763" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L763" } ], "type": { @@ -21991,7 +21991,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -22038,7 +22038,7 @@ "fileName": "src/lib/types.ts", "line": 758, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L758" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L758" } ] } @@ -22087,7 +22087,7 @@ "fileName": "src/GoTrueClient.ts", "line": 158, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/GoTrueClient.ts#L158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/GoTrueClient.ts#L158" } ] }, @@ -22109,7 +22109,7 @@ "fileName": "src/lib/locks.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L26" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L26" } ], "signatures": [ @@ -22162,7 +22162,7 @@ "fileName": "src/lib/locks.ts", "line": 24, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L24" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L24" } ], "type": { @@ -22191,7 +22191,7 @@ "fileName": "src/lib/locks.ts", "line": 31, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L31" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L31" } ], "extendedTypes": [ @@ -22252,7 +22252,7 @@ "fileName": "src/lib/types.ts", "line": 283, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L283" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L283" } ], "type": { @@ -22315,7 +22315,7 @@ "fileName": "src/lib/types.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L289" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L289" } ], "type": { @@ -22335,7 +22335,7 @@ "fileName": "src/lib/types.ts", "line": 281, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L281" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L281" } ] }, @@ -22383,7 +22383,7 @@ "fileName": "src/lib/types.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L421" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L421" } ], "type": { @@ -22412,7 +22412,7 @@ "fileName": "src/lib/types.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L447" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L447" } ], "type": { @@ -22441,7 +22441,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -22474,7 +22474,7 @@ "fileName": "src/lib/types.ts", "line": 428, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L428" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L428" } ], "type": { @@ -22519,7 +22519,7 @@ "fileName": "src/lib/types.ts", "line": 472, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L472" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L472" } ], "type": { @@ -22548,7 +22548,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -22581,7 +22581,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -22622,7 +22622,7 @@ "fileName": "src/lib/types.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L465" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L465" } ], "type": { @@ -22651,7 +22651,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -22684,7 +22684,7 @@ "fileName": "src/lib/types.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L435" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L435" } ], "type": { @@ -22745,7 +22745,7 @@ "fileName": "src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L456" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L456" } ], "type": { @@ -22790,7 +22790,7 @@ "fileName": "src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L411" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L411" } ], "type": { @@ -22810,7 +22810,7 @@ "fileName": "src/lib/types.ts", "line": 400, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L400" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L400" } ], "extendedTypes": [ @@ -22907,7 +22907,7 @@ "fileName": "src/lib/types.ts", "line": 327, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L327" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L327" } ], "type": { @@ -22950,7 +22950,7 @@ "fileName": "src/lib/types.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L322" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L322" } ], "type": { @@ -23007,7 +23007,7 @@ "fileName": "src/lib/types.ts", "line": 317, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L317" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L317" } ], "type": { @@ -23034,7 +23034,7 @@ "fileName": "src/lib/types.ts", "line": 314, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L314" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L314" } ], "type": { @@ -23061,7 +23061,7 @@ "fileName": "src/lib/types.ts", "line": 325, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L325" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L325" } ], "type": { @@ -23089,7 +23089,7 @@ "fileName": "src/lib/types.ts", "line": 328, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L328" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L328" } ], "type": { @@ -23109,7 +23109,7 @@ "fileName": "src/lib/types.ts", "line": 312, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L312" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L312" } ] }, @@ -23157,7 +23157,7 @@ "fileName": "src/lib/types.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L851" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L851" } ], "type": { @@ -23186,7 +23186,7 @@ "fileName": "src/lib/types.ts", "line": 853, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L853" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L853" } ], "type": { @@ -23206,7 +23206,7 @@ "fileName": "src/lib/types.ts", "line": 845, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L845" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L845" } ] }, @@ -23242,7 +23242,7 @@ "fileName": "src/lib/types.ts", "line": 1169, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1169" } ], "signatures": [ @@ -23308,7 +23308,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ], "type": { @@ -23339,7 +23339,7 @@ "fileName": "src/lib/types.ts", "line": 1122, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1122" } ], "type": { @@ -23366,7 +23366,7 @@ "fileName": "src/lib/types.ts", "line": 1125, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1125" } ], "type": { @@ -23386,7 +23386,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ] } @@ -23422,7 +23422,7 @@ "fileName": "src/lib/types.ts", "line": 1159, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1159" } ], "signatures": [ @@ -23471,7 +23471,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ], "type": { @@ -23502,7 +23502,7 @@ "fileName": "src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1146" } ], "type": { @@ -23522,7 +23522,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ] } @@ -23559,7 +23559,7 @@ "fileName": "src/lib/types.ts", "line": 1154, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1154" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1154" } ] }, @@ -23589,7 +23589,7 @@ "fileName": "src/lib/types.ts", "line": 1058, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1058" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1058" } ], "signatures": [ @@ -23629,7 +23629,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ], "type": { @@ -23662,7 +23662,7 @@ "fileName": "src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L930" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L930" } ], "type": { @@ -23698,7 +23698,7 @@ "fileName": "src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L928" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L928" } ], "type": { @@ -23718,7 +23718,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ] } @@ -23754,7 +23754,7 @@ "fileName": "src/lib/types.ts", "line": 1076, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1076" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1076" } ], "signatures": [ @@ -23794,7 +23794,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ], "type": { @@ -23825,7 +23825,7 @@ "fileName": "src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L937" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L937" } ], "type": { @@ -23852,7 +23852,7 @@ "fileName": "src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L935" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L935" } ], "type": { @@ -23872,7 +23872,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ] } @@ -23908,19 +23908,19 @@ "fileName": "src/lib/types.ts", "line": 1050, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1050" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1050" }, { "fileName": "src/lib/types.ts", "line": 1051, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1051" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1051" }, { "fileName": "src/lib/types.ts", "line": 1052, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1052" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1052" } ], "signatures": [ @@ -23976,7 +23976,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -24007,7 +24007,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -24036,7 +24036,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -24065,7 +24065,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -24085,7 +24085,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -24136,7 +24136,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -24167,7 +24167,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -24196,7 +24196,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -24223,7 +24223,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -24243,7 +24243,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -24294,7 +24294,7 @@ "fileName": "src/lib/types.ts", "line": 908, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L908" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L908" } ], "type": { @@ -24311,7 +24311,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -24342,7 +24342,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -24371,7 +24371,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -24400,7 +24400,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -24420,7 +24420,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -24437,7 +24437,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -24468,7 +24468,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -24497,7 +24497,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -24524,7 +24524,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -24544,7 +24544,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -24583,7 +24583,7 @@ "fileName": "src/lib/types.ts", "line": 1101, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1101" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1101" } ], "signatures": [ @@ -24652,7 +24652,7 @@ "fileName": "src/lib/types.ts", "line": 1086, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1086" } ], "signatures": [ @@ -24746,7 +24746,7 @@ "fileName": "src/lib/types.ts", "line": 1070, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1070" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1070" } ], "signatures": [ @@ -24802,7 +24802,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ], "type": { @@ -24833,7 +24833,7 @@ "fileName": "src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L912" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L912" } ], "type": { @@ -24853,7 +24853,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 32, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ] } @@ -24889,7 +24889,7 @@ "fileName": "src/lib/types.ts", "line": 1064, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1064" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1064" } ], "signatures": [ @@ -24929,7 +24929,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ], "type": { @@ -24960,7 +24960,7 @@ "fileName": "src/lib/types.ts", "line": 920, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L920" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L920" } ], "type": { @@ -24987,7 +24987,7 @@ "fileName": "src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L923" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L923" } ], "type": { @@ -25014,7 +25014,7 @@ "fileName": "src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L917" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L917" } ], "type": { @@ -25034,7 +25034,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 30, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ] } @@ -25071,7 +25071,7 @@ "fileName": "src/lib/types.ts", "line": 1039, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1039" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1039" } ] }, @@ -25095,7 +25095,7 @@ "fileName": "src/lib/types.ts", "line": 1332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1332" } ], "type": { @@ -25114,7 +25114,7 @@ "fileName": "src/lib/types.ts", "line": 1331, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1331" } ], "type": { @@ -25138,7 +25138,7 @@ "fileName": "src/lib/types.ts", "line": 1333, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1333" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1333" } ], "type": { @@ -25157,7 +25157,7 @@ "fileName": "src/lib/types.ts", "line": 1330, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1330" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1330" } ], "type": { @@ -25190,7 +25190,7 @@ "fileName": "src/lib/types.ts", "line": 1329, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1329" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1329" } ], "indexSignature": { @@ -25243,7 +25243,7 @@ "fileName": "src/lib/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L252" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L252" } ], "type": { @@ -25272,7 +25272,7 @@ "fileName": "src/lib/types.ts", "line": 264, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L264" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L264" } ], "type": { @@ -25299,7 +25299,7 @@ "fileName": "src/lib/types.ts", "line": 260, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L260" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L260" } ], "type": { @@ -25328,7 +25328,7 @@ "fileName": "src/lib/types.ts", "line": 248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L248" } ], "type": { @@ -25366,7 +25366,7 @@ "fileName": "src/lib/types.ts", "line": 243, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L243" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L243" } ], "type": { @@ -25402,7 +25402,7 @@ "fileName": "src/lib/types.ts", "line": 256, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L256" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L256" } ], "type": { @@ -25421,7 +25421,7 @@ "fileName": "src/lib/types.ts", "line": 265, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L265" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L265" } ], "type": { @@ -25448,7 +25448,7 @@ "fileName": "src/lib/types.ts", "line": 270, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L270" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L270" } ], "type": { @@ -25475,7 +25475,7 @@ "fileName": "src/lib/types.ts", "line": 351, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L351" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L351" } ], "type": { @@ -25494,7 +25494,7 @@ "fileName": "src/lib/types.ts", "line": 342, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L342" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L342" } ], "type": { @@ -25521,7 +25521,7 @@ "fileName": "src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L332" } ], "type": { @@ -25541,7 +25541,7 @@ "fileName": "src/lib/types.ts", "line": 331, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L331" } ], "indexSignature": { @@ -25581,7 +25581,7 @@ "fileName": "src/lib/types.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L344" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L344" } ], "type": { @@ -25602,7 +25602,7 @@ "fileName": "src/lib/types.ts", "line": 345, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L345" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L345" } ], "type": { @@ -25623,7 +25623,7 @@ "fileName": "src/lib/types.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L355" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L355" } ], "type": { @@ -25642,7 +25642,7 @@ "fileName": "src/lib/types.ts", "line": 354, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L354" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L354" } ], "type": { @@ -25663,7 +25663,7 @@ "fileName": "src/lib/types.ts", "line": 365, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L365" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L365" } ], "type": { @@ -25684,7 +25684,7 @@ "fileName": "src/lib/types.ts", "line": 352, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L352" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L352" } ], "type": { @@ -25705,7 +25705,7 @@ "fileName": "src/lib/types.ts", "line": 347, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L347" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L347" } ], "type": { @@ -25726,7 +25726,7 @@ "fileName": "src/lib/types.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L356" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L356" } ], "type": { @@ -25747,7 +25747,7 @@ "fileName": "src/lib/types.ts", "line": 364, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L364" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L364" } ], "type": { @@ -25770,7 +25770,7 @@ "fileName": "src/lib/types.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L341" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L341" } ], "type": { @@ -25791,7 +25791,7 @@ "fileName": "src/lib/types.ts", "line": 361, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L361" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L361" } ], "type": { @@ -25816,7 +25816,7 @@ "fileName": "src/lib/types.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L350" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L350" } ], "type": { @@ -25837,7 +25837,7 @@ "fileName": "src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L362" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L362" } ], "type": { @@ -25858,7 +25858,7 @@ "fileName": "src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L363" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L363" } ], "type": { @@ -25879,7 +25879,7 @@ "fileName": "src/lib/types.ts", "line": 358, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L358" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L358" } ], "type": { @@ -25900,7 +25900,7 @@ "fileName": "src/lib/types.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L348" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L348" } ], "type": { @@ -25921,7 +25921,7 @@ "fileName": "src/lib/types.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L349" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L349" } ], "type": { @@ -25942,7 +25942,7 @@ "fileName": "src/lib/types.ts", "line": 353, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L353" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L353" } ], "type": { @@ -25963,7 +25963,7 @@ "fileName": "src/lib/types.ts", "line": 357, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L357" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L357" } ], "type": { @@ -25984,7 +25984,7 @@ "fileName": "src/lib/types.ts", "line": 346, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L346" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L346" } ], "type": { @@ -26005,7 +26005,7 @@ "fileName": "src/lib/types.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L359" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L359" } ], "type": { @@ -26026,7 +26026,7 @@ "fileName": "src/lib/types.ts", "line": 360, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L360" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L360" } ], "type": { @@ -26045,7 +26045,7 @@ "fileName": "src/lib/types.ts", "line": 343, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L343" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L343" } ], "type": { @@ -26063,7 +26063,7 @@ "fileName": "src/lib/types.ts", "line": 336, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L336" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L336" } ], "indexSignature": { @@ -26107,7 +26107,7 @@ "fileName": "src/lib/types.ts", "line": 340, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L340" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L340" } ] } @@ -26125,7 +26125,7 @@ "fileName": "src/lib/types.ts", "line": 239, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L239" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L239" } ] }, @@ -26147,7 +26147,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "type": { @@ -26163,7 +26163,7 @@ "fileName": "src/lib/types.ts", "line": 483, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L483" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L483" } ], "signatures": [ @@ -26244,7 +26244,7 @@ "fileName": "src/lib/types.ts", "line": 479, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L479" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L479" } ], "type": { @@ -26263,7 +26263,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "type": { @@ -26279,7 +26279,7 @@ "fileName": "src/lib/types.ts", "line": 487, "character": 15, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L487" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L487" } ], "signatures": [ @@ -26318,7 +26318,7 @@ "fileName": "src/lib/types.ts", "line": 475, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L475" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L475" } ] }, @@ -26342,7 +26342,7 @@ "fileName": "src/lib/types.ts", "line": 351, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L351" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L351" } ], "type": { @@ -26361,7 +26361,7 @@ "fileName": "src/lib/types.ts", "line": 342, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L342" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L342" } ], "type": { @@ -26388,7 +26388,7 @@ "fileName": "src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L332" } ], "type": { @@ -26408,7 +26408,7 @@ "fileName": "src/lib/types.ts", "line": 331, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L331" } ], "indexSignature": { @@ -26448,7 +26448,7 @@ "fileName": "src/lib/types.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L344" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L344" } ], "type": { @@ -26469,7 +26469,7 @@ "fileName": "src/lib/types.ts", "line": 345, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L345" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L345" } ], "type": { @@ -26490,7 +26490,7 @@ "fileName": "src/lib/types.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L355" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L355" } ], "type": { @@ -26509,7 +26509,7 @@ "fileName": "src/lib/types.ts", "line": 354, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L354" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L354" } ], "type": { @@ -26530,7 +26530,7 @@ "fileName": "src/lib/types.ts", "line": 365, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L365" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L365" } ], "type": { @@ -26551,7 +26551,7 @@ "fileName": "src/lib/types.ts", "line": 352, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L352" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L352" } ], "type": { @@ -26572,7 +26572,7 @@ "fileName": "src/lib/types.ts", "line": 347, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L347" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L347" } ], "type": { @@ -26593,7 +26593,7 @@ "fileName": "src/lib/types.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L356" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L356" } ], "type": { @@ -26614,7 +26614,7 @@ "fileName": "src/lib/types.ts", "line": 364, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L364" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L364" } ], "type": { @@ -26637,7 +26637,7 @@ "fileName": "src/lib/types.ts", "line": 341, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L341" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L341" } ], "type": { @@ -26658,7 +26658,7 @@ "fileName": "src/lib/types.ts", "line": 361, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L361" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L361" } ], "type": { @@ -26683,7 +26683,7 @@ "fileName": "src/lib/types.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L350" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L350" } ], "type": { @@ -26704,7 +26704,7 @@ "fileName": "src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L362" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L362" } ], "type": { @@ -26725,7 +26725,7 @@ "fileName": "src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L363" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L363" } ], "type": { @@ -26746,7 +26746,7 @@ "fileName": "src/lib/types.ts", "line": 358, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L358" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L358" } ], "type": { @@ -26767,7 +26767,7 @@ "fileName": "src/lib/types.ts", "line": 348, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L348" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L348" } ], "type": { @@ -26788,7 +26788,7 @@ "fileName": "src/lib/types.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L349" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L349" } ], "type": { @@ -26809,7 +26809,7 @@ "fileName": "src/lib/types.ts", "line": 353, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L353" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L353" } ], "type": { @@ -26830,7 +26830,7 @@ "fileName": "src/lib/types.ts", "line": 357, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L357" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L357" } ], "type": { @@ -26851,7 +26851,7 @@ "fileName": "src/lib/types.ts", "line": 346, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L346" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L346" } ], "type": { @@ -26872,7 +26872,7 @@ "fileName": "src/lib/types.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L359" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L359" } ], "type": { @@ -26893,7 +26893,7 @@ "fileName": "src/lib/types.ts", "line": 360, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L360" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L360" } ], "type": { @@ -26912,7 +26912,7 @@ "fileName": "src/lib/types.ts", "line": 343, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L343" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L343" } ], "type": { @@ -26930,7 +26930,7 @@ "fileName": "src/lib/types.ts", "line": 336, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L336" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L336" } ], "indexSignature": { @@ -26974,7 +26974,7 @@ "fileName": "src/lib/types.ts", "line": 340, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L340" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L340" } ] }, @@ -26998,7 +26998,7 @@ "fileName": "src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L332" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L332" } ], "type": { @@ -27018,7 +27018,7 @@ "fileName": "src/lib/types.ts", "line": 331, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L331" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L331" } ], "indexSignature": { @@ -27089,7 +27089,7 @@ "fileName": "src/lib/types.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L397" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L397" } ], "type": { @@ -27118,7 +27118,7 @@ "fileName": "src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L372" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L372" } ], "type": { @@ -27147,7 +27147,7 @@ "fileName": "src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L389" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L389" } ], "type": { @@ -27176,7 +27176,7 @@ "fileName": "src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L382" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L382" } ], "type": { @@ -27205,7 +27205,7 @@ "fileName": "src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L377" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L377" } ], "type": { @@ -27225,7 +27225,7 @@ "fileName": "src/lib/types.ts", "line": 368, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L368" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L368" } ] }, @@ -27249,7 +27249,7 @@ "fileName": "src/lib/types.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L300" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L300" } ], "type": { @@ -27268,7 +27268,7 @@ "fileName": "src/lib/types.ts", "line": 293, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L293" } ], "type": { @@ -27289,7 +27289,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "type": { @@ -27305,7 +27305,7 @@ "fileName": "src/lib/types.ts", "line": 295, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L295" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L295" } ], "indexSignature": { @@ -27345,7 +27345,7 @@ "fileName": "src/lib/types.ts", "line": 298, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L298" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L298" } ], "type": { @@ -27366,7 +27366,7 @@ "fileName": "src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L301" } ], "type": { @@ -27385,7 +27385,7 @@ "fileName": "src/lib/types.ts", "line": 299, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L299" } ], "type": { @@ -27406,7 +27406,7 @@ "fileName": "src/lib/types.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L302" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L302" } ], "type": { @@ -27425,7 +27425,7 @@ "fileName": "src/lib/types.ts", "line": 294, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L294" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L294" } ], "type": { @@ -27445,7 +27445,7 @@ "fileName": "src/lib/types.ts", "line": 292, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L292" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L292" } ] }, @@ -27460,7 +27460,7 @@ "fileName": "src/lib/types.ts", "line": 336, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L336" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L336" } ], "indexSignature": { @@ -27513,7 +27513,7 @@ "fileName": "src/lib/types.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L741" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L741" } ], "type": { @@ -27534,7 +27534,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ], "type": { @@ -27573,7 +27573,7 @@ "fileName": "src/lib/types.ts", "line": 754, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L754" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L754" } ], "type": { @@ -27602,7 +27602,7 @@ "fileName": "src/lib/types.ts", "line": 748, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L748" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L748" } ], "type": { @@ -27622,7 +27622,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ] } @@ -27647,7 +27647,7 @@ "fileName": "src/lib/types.ts", "line": 743, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L743" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L743" } ], "type": { @@ -27674,7 +27674,7 @@ "fileName": "src/lib/types.ts", "line": 745, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L745" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L745" } ], "type": { @@ -27692,7 +27692,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -27739,7 +27739,7 @@ "fileName": "src/lib/types.ts", "line": 739, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L739" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L739" } ] }, @@ -27763,7 +27763,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ], "type": { @@ -27802,7 +27802,7 @@ "fileName": "src/lib/types.ts", "line": 736, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L736" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L736" } ], "type": { @@ -27831,7 +27831,7 @@ "fileName": "src/lib/types.ts", "line": 729, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L729" } ], "type": { @@ -27851,7 +27851,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ] } @@ -27876,7 +27876,7 @@ "fileName": "src/lib/types.ts", "line": 722, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L722" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L722" } ], "type": { @@ -27903,7 +27903,7 @@ "fileName": "src/lib/types.ts", "line": 724, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L724" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L724" } ], "type": { @@ -27930,7 +27930,7 @@ "fileName": "src/lib/types.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L726" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L726" } ], "type": { @@ -27948,7 +27948,7 @@ "fileName": "src/lib/types.ts", "line": 766, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L766" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L766" } ], "type": { @@ -27979,7 +27979,7 @@ "fileName": "src/lib/types.ts", "line": 720, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L720" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L720" } ] }, @@ -28009,7 +28009,7 @@ "fileName": "src/lib/types.ts", "line": 760, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L760" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L760" } ], "type": { @@ -28036,7 +28036,7 @@ "fileName": "src/lib/types.ts", "line": 763, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L763" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L763" } ], "type": { @@ -28054,7 +28054,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -28101,7 +28101,7 @@ "fileName": "src/lib/types.ts", "line": 758, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L758" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L758" } ] }, @@ -28116,7 +28116,7 @@ "fileName": "src/lib/types.ts", "line": 34, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L34" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L34" } ], "type": { @@ -28157,7 +28157,7 @@ "fileName": "src/lib/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L32" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L32" } ], "type": { @@ -28179,7 +28179,7 @@ "fileName": "src/lib/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L32" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L32" } ], "type": { @@ -28198,7 +28198,7 @@ "fileName": "src/lib/types.ts", "line": 601, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L601" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L601" } ], "type": { @@ -28235,7 +28235,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ], "type": { @@ -28266,7 +28266,7 @@ "fileName": "src/lib/types.ts", "line": 1122, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1122" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1122" } ], "type": { @@ -28293,7 +28293,7 @@ "fileName": "src/lib/types.ts", "line": 1125, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1125" } ], "type": { @@ -28313,7 +28313,7 @@ "fileName": "src/lib/types.ts", "line": 1120, "character": 45, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1120" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1120" } ] } @@ -28339,7 +28339,7 @@ "fileName": "src/lib/types.ts", "line": 1107, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1107" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1107" } ], "type": { @@ -28365,7 +28365,7 @@ "fileName": "src/lib/types.ts", "line": 1109, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1109" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1109" } ], "type": { @@ -28396,7 +28396,7 @@ "fileName": "src/lib/types.ts", "line": 1111, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1111" } ], "type": { @@ -28416,7 +28416,7 @@ "fileName": "src/lib/types.ts", "line": 1109, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1109" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1109" } ] } @@ -28433,7 +28433,7 @@ "fileName": "src/lib/types.ts", "line": 1113, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1113" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1113" } ], "type": { @@ -28453,7 +28453,7 @@ "fileName": "src/lib/types.ts", "line": 1108, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1108" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1108" } ] } @@ -28478,7 +28478,7 @@ "fileName": "src/lib/types.ts", "line": 1115, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1115" } ], "type": { @@ -28497,7 +28497,7 @@ "fileName": "src/lib/types.ts", "line": 1115, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1115" } ], "type": { @@ -28518,7 +28518,7 @@ "fileName": "src/lib/types.ts", "line": 1115, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1115" } ] } @@ -28546,7 +28546,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ], "type": { @@ -28577,7 +28577,7 @@ "fileName": "src/lib/types.ts", "line": 1146, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1146" } ], "type": { @@ -28597,7 +28597,7 @@ "fileName": "src/lib/types.ts", "line": 1144, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1144" } ] } @@ -28623,7 +28623,7 @@ "fileName": "src/lib/types.ts", "line": 1131, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1131" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1131" } ], "type": { @@ -28649,7 +28649,7 @@ "fileName": "src/lib/types.ts", "line": 1133, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1133" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1133" } ], "type": { @@ -28680,7 +28680,7 @@ "fileName": "src/lib/types.ts", "line": 1135, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1135" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1135" } ], "type": { @@ -28704,7 +28704,7 @@ "fileName": "src/lib/types.ts", "line": 1133, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1133" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1133" } ] } @@ -28721,7 +28721,7 @@ "fileName": "src/lib/types.ts", "line": 1137, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1137" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1137" } ], "type": { @@ -28741,7 +28741,7 @@ "fileName": "src/lib/types.ts", "line": 1132, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1132" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1132" } ] } @@ -28766,7 +28766,7 @@ "fileName": "src/lib/types.ts", "line": 1139, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1139" } ], "type": { @@ -28785,7 +28785,7 @@ "fileName": "src/lib/types.ts", "line": 1139, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1139" } ], "type": { @@ -28806,7 +28806,7 @@ "fileName": "src/lib/types.ts", "line": 1139, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1139" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1139" } ] } @@ -28825,7 +28825,7 @@ "fileName": "src/lib/types.ts", "line": 977, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L977" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L977" } ], "type": { @@ -28851,7 +28851,7 @@ "fileName": "src/lib/types.ts", "line": 979, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L979" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L979" } ], "type": { @@ -28882,7 +28882,7 @@ "fileName": "src/lib/types.ts", "line": 987, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L987" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L987" } ], "type": { @@ -28909,7 +28909,7 @@ "fileName": "src/lib/types.ts", "line": 981, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L981" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L981" } ], "type": { @@ -28936,7 +28936,7 @@ "fileName": "src/lib/types.ts", "line": 984, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L984" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L984" } ], "type": { @@ -28965,7 +28965,7 @@ "fileName": "src/lib/types.ts", "line": 979, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L979" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L979" } ] } @@ -28982,7 +28982,7 @@ "fileName": "src/lib/types.ts", "line": 989, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L989" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L989" } ], "type": { @@ -29002,7 +29002,7 @@ "fileName": "src/lib/types.ts", "line": 978, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L978" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L978" } ] } @@ -29027,7 +29027,7 @@ "fileName": "src/lib/types.ts", "line": 991, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L991" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L991" } ], "type": { @@ -29046,7 +29046,7 @@ "fileName": "src/lib/types.ts", "line": 991, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L991" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L991" } ], "type": { @@ -29067,7 +29067,7 @@ "fileName": "src/lib/types.ts", "line": 991, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L991" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L991" } ] } @@ -29086,7 +29086,7 @@ "fileName": "src/lib/types.ts", "line": 1286, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1286" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1286" } ], "type": { @@ -29112,7 +29112,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ], "type": { @@ -29145,7 +29145,7 @@ "fileName": "src/lib/types.ts", "line": 1296, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1296" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1296" } ], "type": { @@ -29172,7 +29172,7 @@ "fileName": "src/lib/types.ts", "line": 1290, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1290" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1290" } ], "type": { @@ -29199,7 +29199,7 @@ "fileName": "src/lib/types.ts", "line": 1299, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1299" } ], "type": { @@ -29226,7 +29226,7 @@ "fileName": "src/lib/types.ts", "line": 1293, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1293" } ], "type": { @@ -29246,7 +29246,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ] } @@ -29263,7 +29263,7 @@ "fileName": "src/lib/types.ts", "line": 1301, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1301" } ], "type": { @@ -29283,7 +29283,7 @@ "fileName": "src/lib/types.ts", "line": 1287, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1287" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1287" } ] } @@ -29308,7 +29308,7 @@ "fileName": "src/lib/types.ts", "line": 1304, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1304" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1304" } ], "type": { @@ -29327,7 +29327,7 @@ "fileName": "src/lib/types.ts", "line": 1305, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1305" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1305" } ], "type": { @@ -29348,7 +29348,7 @@ "fileName": "src/lib/types.ts", "line": 1303, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1303" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1303" } ] } @@ -29367,7 +29367,7 @@ "fileName": "src/lib/types.ts", "line": 965, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L965" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L965" } ], "type": { @@ -29384,7 +29384,7 @@ "fileName": "src/lib/types.ts", "line": 1251, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1251" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1251" } ], "type": { @@ -29410,7 +29410,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ], "type": { @@ -29443,7 +29443,7 @@ "fileName": "src/lib/types.ts", "line": 1277, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1277" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1277" } ], "type": { @@ -29470,7 +29470,7 @@ "fileName": "src/lib/types.ts", "line": 1255, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1255" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1255" } ], "type": { @@ -29497,7 +29497,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ], "type": { @@ -29536,7 +29536,7 @@ "fileName": "src/lib/types.ts", "line": 1265, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1265" } ], "type": { @@ -29563,7 +29563,7 @@ "fileName": "src/lib/types.ts", "line": 1270, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1270" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1270" } ], "type": { @@ -29590,7 +29590,7 @@ "fileName": "src/lib/types.ts", "line": 1274, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1274" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1274" } ], "type": { @@ -29610,7 +29610,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ] } @@ -29635,7 +29635,7 @@ "fileName": "src/lib/types.ts", "line": 1258, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1258" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1258" } ], "type": { @@ -29655,7 +29655,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ] } @@ -29672,7 +29672,7 @@ "fileName": "src/lib/types.ts", "line": 1279, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1279" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1279" } ], "type": { @@ -29692,7 +29692,7 @@ "fileName": "src/lib/types.ts", "line": 1252, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1252" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1252" } ] } @@ -29717,7 +29717,7 @@ "fileName": "src/lib/types.ts", "line": 1282, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1282" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1282" } ], "type": { @@ -29736,7 +29736,7 @@ "fileName": "src/lib/types.ts", "line": 1283, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1283" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1283" } ], "type": { @@ -29757,7 +29757,7 @@ "fileName": "src/lib/types.ts", "line": 1281, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1281" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1281" } ] } @@ -29776,7 +29776,7 @@ "fileName": "src/lib/types.ts", "line": 1286, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1286" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1286" } ], "type": { @@ -29802,7 +29802,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ], "type": { @@ -29835,7 +29835,7 @@ "fileName": "src/lib/types.ts", "line": 1296, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1296" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1296" } ], "type": { @@ -29862,7 +29862,7 @@ "fileName": "src/lib/types.ts", "line": 1290, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1290" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1290" } ], "type": { @@ -29889,7 +29889,7 @@ "fileName": "src/lib/types.ts", "line": 1299, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1299" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1299" } ], "type": { @@ -29916,7 +29916,7 @@ "fileName": "src/lib/types.ts", "line": 1293, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1293" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1293" } ], "type": { @@ -29936,7 +29936,7 @@ "fileName": "src/lib/types.ts", "line": 1288, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1288" } ] } @@ -29953,7 +29953,7 @@ "fileName": "src/lib/types.ts", "line": 1301, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1301" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1301" } ], "type": { @@ -29973,7 +29973,7 @@ "fileName": "src/lib/types.ts", "line": 1287, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1287" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1287" } ] } @@ -29998,7 +29998,7 @@ "fileName": "src/lib/types.ts", "line": 1304, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1304" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1304" } ], "type": { @@ -30017,7 +30017,7 @@ "fileName": "src/lib/types.ts", "line": 1305, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1305" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1305" } ], "type": { @@ -30038,7 +30038,7 @@ "fileName": "src/lib/types.ts", "line": 1303, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1303" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1303" } ] } @@ -30060,7 +30060,7 @@ "fileName": "src/lib/types.ts", "line": 1251, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1251" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1251" } ], "type": { @@ -30086,7 +30086,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ], "type": { @@ -30119,7 +30119,7 @@ "fileName": "src/lib/types.ts", "line": 1277, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1277" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1277" } ], "type": { @@ -30146,7 +30146,7 @@ "fileName": "src/lib/types.ts", "line": 1255, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1255" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1255" } ], "type": { @@ -30173,7 +30173,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ], "type": { @@ -30212,7 +30212,7 @@ "fileName": "src/lib/types.ts", "line": 1265, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1265" } ], "type": { @@ -30239,7 +30239,7 @@ "fileName": "src/lib/types.ts", "line": 1270, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1270" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1270" } ], "type": { @@ -30266,7 +30266,7 @@ "fileName": "src/lib/types.ts", "line": 1274, "character": 10, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1274" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1274" } ], "type": { @@ -30286,7 +30286,7 @@ "fileName": "src/lib/types.ts", "line": 1261, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1261" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1261" } ] } @@ -30311,7 +30311,7 @@ "fileName": "src/lib/types.ts", "line": 1258, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1258" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1258" } ], "type": { @@ -30331,7 +30331,7 @@ "fileName": "src/lib/types.ts", "line": 1253, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1253" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1253" } ] } @@ -30348,7 +30348,7 @@ "fileName": "src/lib/types.ts", "line": 1279, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1279" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1279" } ], "type": { @@ -30368,7 +30368,7 @@ "fileName": "src/lib/types.ts", "line": 1252, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1252" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1252" } ] } @@ -30393,7 +30393,7 @@ "fileName": "src/lib/types.ts", "line": 1282, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1282" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1282" } ], "type": { @@ -30412,7 +30412,7 @@ "fileName": "src/lib/types.ts", "line": 1283, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1283" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1283" } ], "type": { @@ -30433,7 +30433,7 @@ "fileName": "src/lib/types.ts", "line": 1281, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1281" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1281" } ] } @@ -30452,7 +30452,7 @@ "fileName": "src/lib/types.ts", "line": 1010, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1010" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1010" } ], "type": { @@ -30478,7 +30478,7 @@ "fileName": "src/lib/types.ts", "line": 1012, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1012" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1012" } ], "type": { @@ -30509,7 +30509,7 @@ "fileName": "src/lib/types.ts", "line": 1029, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1029" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1029" } ], "type": { @@ -30540,7 +30540,7 @@ "fileName": "src/lib/types.ts", "line": 1014, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1014" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1014" } ], "type": { @@ -30590,7 +30590,7 @@ "fileName": "src/lib/types.ts", "line": 1022, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1022" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1022" } ], "type": { @@ -30620,7 +30620,7 @@ "fileName": "src/lib/types.ts", "line": 1012, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1012" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1012" } ] } @@ -30637,7 +30637,7 @@ "fileName": "src/lib/types.ts", "line": 1031, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1031" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1031" } ], "type": { @@ -30657,7 +30657,7 @@ "fileName": "src/lib/types.ts", "line": 1011, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1011" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1011" } ] } @@ -30682,7 +30682,7 @@ "fileName": "src/lib/types.ts", "line": 1033, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1033" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1033" } ], "type": { @@ -30701,7 +30701,7 @@ "fileName": "src/lib/types.ts", "line": 1033, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1033" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1033" } ], "type": { @@ -30722,7 +30722,7 @@ "fileName": "src/lib/types.ts", "line": 1033, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1033" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1033" } ] } @@ -30741,7 +30741,7 @@ "fileName": "src/lib/types.ts", "line": 993, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L993" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L993" } ], "type": { @@ -30767,7 +30767,7 @@ "fileName": "src/lib/types.ts", "line": 995, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L995" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L995" } ], "type": { @@ -30798,7 +30798,7 @@ "fileName": "src/lib/types.ts", "line": 997, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L997" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L997" } ], "type": { @@ -30837,7 +30837,7 @@ "fileName": "src/lib/types.ts", "line": 1002, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1002" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1002" } ], "type": { @@ -30876,7 +30876,7 @@ "fileName": "src/lib/types.ts", "line": 1000, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1000" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1000" } ], "type": { @@ -30900,7 +30900,7 @@ "fileName": "src/lib/types.ts", "line": 995, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L995" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L995" } ] } @@ -30917,7 +30917,7 @@ "fileName": "src/lib/types.ts", "line": 1004, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1004" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1004" } ], "type": { @@ -30937,7 +30937,7 @@ "fileName": "src/lib/types.ts", "line": 994, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L994" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L994" } ] } @@ -30962,7 +30962,7 @@ "fileName": "src/lib/types.ts", "line": 1006, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1006" } ], "type": { @@ -30981,7 +30981,7 @@ "fileName": "src/lib/types.ts", "line": 1006, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1006" } ], "type": { @@ -31002,7 +31002,7 @@ "fileName": "src/lib/types.ts", "line": 1006, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1006" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1006" } ] } @@ -31021,7 +31021,7 @@ "fileName": "src/lib/types.ts", "line": 967, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L967" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L967" } ], "type": { @@ -31047,7 +31047,7 @@ "fileName": "src/lib/types.ts", "line": 969, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L969" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L969" } ], "type": { @@ -31078,7 +31078,7 @@ "fileName": "src/lib/types.ts", "line": 971, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L971" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L971" } ], "type": { @@ -31098,7 +31098,7 @@ "fileName": "src/lib/types.ts", "line": 969, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L969" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L969" } ] } @@ -31115,7 +31115,7 @@ "fileName": "src/lib/types.ts", "line": 973, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L973" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L973" } ], "type": { @@ -31135,7 +31135,7 @@ "fileName": "src/lib/types.ts", "line": 968, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L968" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L968" } ] } @@ -31160,7 +31160,7 @@ "fileName": "src/lib/types.ts", "line": 975, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L975" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L975" } ], "type": { @@ -31179,7 +31179,7 @@ "fileName": "src/lib/types.ts", "line": 975, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L975" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L975" } ], "type": { @@ -31200,7 +31200,7 @@ "fileName": "src/lib/types.ts", "line": 975, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L975" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L975" } ] } @@ -31219,7 +31219,7 @@ "fileName": "src/lib/types.ts", "line": 940, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L940" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L940" } ], "type": { @@ -31245,7 +31245,7 @@ "fileName": "src/lib/types.ts", "line": 942, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L942" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L942" } ], "type": { @@ -31276,7 +31276,7 @@ "fileName": "src/lib/types.ts", "line": 944, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L944" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L944" } ], "type": { @@ -31303,7 +31303,7 @@ "fileName": "src/lib/types.ts", "line": 950, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L950" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L950" } ], "type": { @@ -31330,7 +31330,7 @@ "fileName": "src/lib/types.ts", "line": 953, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L953" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L953" } ], "type": { @@ -31365,7 +31365,7 @@ "fileName": "src/lib/types.ts", "line": 947, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L947" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L947" } ], "type": { @@ -31392,7 +31392,7 @@ "fileName": "src/lib/types.ts", "line": 956, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L956" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L956" } ], "type": { @@ -31413,7 +31413,7 @@ "fileName": "src/lib/types.ts", "line": 942, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L942" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L942" } ] } @@ -31430,7 +31430,7 @@ "fileName": "src/lib/types.ts", "line": 958, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L958" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L958" } ], "type": { @@ -31450,7 +31450,7 @@ "fileName": "src/lib/types.ts", "line": 941, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L941" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L941" } ] } @@ -31475,7 +31475,7 @@ "fileName": "src/lib/types.ts", "line": 961, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L961" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L961" } ], "type": { @@ -31494,7 +31494,7 @@ "fileName": "src/lib/types.ts", "line": 962, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L962" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L962" } ], "type": { @@ -31515,7 +31515,7 @@ "fileName": "src/lib/types.ts", "line": 960, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L960" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L960" } ] } @@ -31547,7 +31547,7 @@ "fileName": "src/lib/types.ts", "line": 146, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L146" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L146" } ], "type": { @@ -31573,7 +31573,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -31598,7 +31598,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -31626,7 +31626,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 26, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -31645,7 +31645,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ], "type": { @@ -31665,7 +31665,7 @@ "fileName": "src/lib/types.ts", "line": 148, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L148" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L148" } ] } @@ -31682,7 +31682,7 @@ "fileName": "src/lib/types.ts", "line": 149, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L149" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L149" } ], "type": { @@ -31702,7 +31702,7 @@ "fileName": "src/lib/types.ts", "line": 147, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L147" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L147" } ] } @@ -31727,7 +31727,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -31752,7 +31752,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -31780,7 +31780,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 26, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -31799,7 +31799,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ], "type": { @@ -31819,7 +31819,7 @@ "fileName": "src/lib/types.ts", "line": 152, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L152" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L152" } ] } @@ -31836,7 +31836,7 @@ "fileName": "src/lib/types.ts", "line": 153, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L153" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L153" } ], "type": { @@ -31857,7 +31857,7 @@ "fileName": "src/lib/types.ts", "line": 151, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L151" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L151" } ] } @@ -31876,7 +31876,7 @@ "fileName": "src/lib/types.ts", "line": 108, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L108" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L108" } ], "type": { @@ -31902,7 +31902,7 @@ "fileName": "src/lib/types.ts", "line": 110, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L110" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L110" } ], "type": { @@ -31925,7 +31925,7 @@ "fileName": "src/lib/types.ts", "line": 112, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L112" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L112" } ], "type": { @@ -31954,7 +31954,7 @@ "fileName": "src/lib/types.ts", "line": 111, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L111" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L111" } ], "type": { @@ -31984,7 +31984,7 @@ "fileName": "src/lib/types.ts", "line": 110, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L110" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L110" } ] } @@ -32001,7 +32001,7 @@ "fileName": "src/lib/types.ts", "line": 114, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L114" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L114" } ], "type": { @@ -32021,7 +32021,7 @@ "fileName": "src/lib/types.ts", "line": 109, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L109" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L109" } ] } @@ -32046,7 +32046,7 @@ "fileName": "src/lib/types.ts", "line": 117, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L117" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L117" } ], "type": { @@ -32069,7 +32069,7 @@ "fileName": "src/lib/types.ts", "line": 119, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L119" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L119" } ], "type": { @@ -32088,7 +32088,7 @@ "fileName": "src/lib/types.ts", "line": 118, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L118" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L118" } ], "type": { @@ -32108,7 +32108,7 @@ "fileName": "src/lib/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L117" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L117" } ] } @@ -32125,7 +32125,7 @@ "fileName": "src/lib/types.ts", "line": 121, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L121" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L121" } ], "type": { @@ -32146,7 +32146,7 @@ "fileName": "src/lib/types.ts", "line": 116, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L116" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L116" } ] } @@ -32165,7 +32165,7 @@ "fileName": "src/lib/types.ts", "line": 124, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L124" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L124" } ], "type": { @@ -32191,7 +32191,7 @@ "fileName": "src/lib/types.ts", "line": 126, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L126" } ], "type": { @@ -32214,7 +32214,7 @@ "fileName": "src/lib/types.ts", "line": 128, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L128" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L128" } ], "type": { @@ -32243,7 +32243,7 @@ "fileName": "src/lib/types.ts", "line": 127, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L127" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L127" } ], "type": { @@ -32274,7 +32274,7 @@ "fileName": "src/lib/types.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L129" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L129" } ], "type": { @@ -32304,7 +32304,7 @@ "fileName": "src/lib/types.ts", "line": 126, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L126" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L126" } ] } @@ -32321,7 +32321,7 @@ "fileName": "src/lib/types.ts", "line": 131, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L131" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L131" } ], "type": { @@ -32341,7 +32341,7 @@ "fileName": "src/lib/types.ts", "line": 125, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L125" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L125" } ] } @@ -32366,7 +32366,7 @@ "fileName": "src/lib/types.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L134" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L134" } ], "type": { @@ -32389,7 +32389,7 @@ "fileName": "src/lib/types.ts", "line": 136, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L136" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L136" } ], "type": { @@ -32408,7 +32408,7 @@ "fileName": "src/lib/types.ts", "line": 135, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L135" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L135" } ], "type": { @@ -32428,7 +32428,7 @@ "fileName": "src/lib/types.ts", "line": 134, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L134" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L134" } ] } @@ -32445,7 +32445,7 @@ "fileName": "src/lib/types.ts", "line": 138, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L138" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L138" } ], "type": { @@ -32466,7 +32466,7 @@ "fileName": "src/lib/types.ts", "line": 133, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L133" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L133" } ] } @@ -32485,7 +32485,7 @@ "fileName": "src/lib/types.ts", "line": 156, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L156" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L156" } ], "type": { @@ -32511,7 +32511,7 @@ "fileName": "src/lib/types.ts", "line": 158, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L158" } ], "type": { @@ -32534,7 +32534,7 @@ "fileName": "src/lib/types.ts", "line": 160, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L160" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L160" } ], "type": { @@ -32554,7 +32554,7 @@ "fileName": "src/lib/types.ts", "line": 159, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L159" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L159" } ], "type": { @@ -32575,7 +32575,7 @@ "fileName": "src/lib/types.ts", "line": 158, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L158" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L158" } ] } @@ -32592,7 +32592,7 @@ "fileName": "src/lib/types.ts", "line": 162, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L162" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L162" } ], "type": { @@ -32612,7 +32612,7 @@ "fileName": "src/lib/types.ts", "line": 157, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L157" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L157" } ] } @@ -32637,7 +32637,7 @@ "fileName": "src/lib/types.ts", "line": 165, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L165" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L165" } ], "type": { @@ -32660,7 +32660,7 @@ "fileName": "src/lib/types.ts", "line": 167, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L167" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L167" } ], "type": { @@ -32679,7 +32679,7 @@ "fileName": "src/lib/types.ts", "line": 166, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L166" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L166" } ], "type": { @@ -32699,7 +32699,7 @@ "fileName": "src/lib/types.ts", "line": 165, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L165" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L165" } ] } @@ -32716,7 +32716,7 @@ "fileName": "src/lib/types.ts", "line": 169, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L169" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L169" } ], "type": { @@ -32737,7 +32737,7 @@ "fileName": "src/lib/types.ts", "line": 164, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L164" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L164" } ] } @@ -32756,7 +32756,7 @@ "fileName": "src/lib/types.ts", "line": 172, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L172" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L172" } ], "type": { @@ -32782,7 +32782,7 @@ "fileName": "src/lib/types.ts", "line": 174, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L174" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L174" } ], "type": { @@ -32805,7 +32805,7 @@ "fileName": "src/lib/types.ts", "line": 176, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L176" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L176" } ], "type": { @@ -32825,7 +32825,7 @@ "fileName": "src/lib/types.ts", "line": 175, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L175" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L175" } ], "type": { @@ -32847,7 +32847,7 @@ "fileName": "src/lib/types.ts", "line": 177, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L177" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L177" } ], "type": { @@ -32868,7 +32868,7 @@ "fileName": "src/lib/types.ts", "line": 174, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L174" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L174" } ] } @@ -32885,7 +32885,7 @@ "fileName": "src/lib/types.ts", "line": 179, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L179" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L179" } ], "type": { @@ -32905,7 +32905,7 @@ "fileName": "src/lib/types.ts", "line": 173, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L173" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L173" } ] } @@ -32930,7 +32930,7 @@ "fileName": "src/lib/types.ts", "line": 182, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L182" } ], "type": { @@ -32953,7 +32953,7 @@ "fileName": "src/lib/types.ts", "line": 184, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L184" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L184" } ], "type": { @@ -32972,7 +32972,7 @@ "fileName": "src/lib/types.ts", "line": 183, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L183" } ], "type": { @@ -32993,7 +32993,7 @@ "fileName": "src/lib/types.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L185" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L185" } ], "type": { @@ -33013,7 +33013,7 @@ "fileName": "src/lib/types.ts", "line": 182, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L182" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L182" } ] } @@ -33030,7 +33030,7 @@ "fileName": "src/lib/types.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L187" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L187" } ], "type": { @@ -33051,7 +33051,7 @@ "fileName": "src/lib/types.ts", "line": 181, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L181" } ] } @@ -33070,7 +33070,7 @@ "fileName": "src/lib/types.ts", "line": 1008, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1008" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1008" } ], "type": { @@ -33098,7 +33098,7 @@ "fileName": "src/lib/types.ts", "line": 1196, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1196" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1196" } ], "type": { @@ -33124,7 +33124,7 @@ "fileName": "src/lib/types.ts", "line": 1199, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1199" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1199" } ], "type": { @@ -33143,7 +33143,7 @@ "fileName": "src/lib/types.ts", "line": 1198, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1198" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1198" } ], "type": { @@ -33164,7 +33164,7 @@ "fileName": "src/lib/types.ts", "line": 1197, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1197" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1197" } ] } @@ -33189,7 +33189,7 @@ "fileName": "src/lib/types.ts", "line": 1203, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1203" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1203" } ], "type": { @@ -33209,7 +33209,7 @@ "fileName": "src/lib/types.ts", "line": 1202, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1202" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1202" } ], "type": { @@ -33229,7 +33229,7 @@ "fileName": "src/lib/types.ts", "line": 1201, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1201" } ] } @@ -33248,7 +33248,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -33292,7 +33292,7 @@ "fileName": "src/lib/types.ts", "line": 678, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L678" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L678" } ], "type": { @@ -33311,7 +33311,7 @@ "fileName": "src/lib/types.ts", "line": 680, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L680" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L680" } ], "type": { @@ -33337,7 +33337,7 @@ "fileName": "src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L682" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L682" } ], "type": { @@ -33358,7 +33358,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ], "type": { @@ -33391,7 +33391,7 @@ "fileName": "src/lib/types.ts", "line": 695, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L695" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L695" } ], "type": { @@ -33412,7 +33412,7 @@ "fileName": "src/lib/types.ts", "line": 697, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L697" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L697" } ], "type": { @@ -33478,7 +33478,7 @@ "fileName": "src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L692" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L692" } ], "type": { @@ -33498,7 +33498,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ] } @@ -33516,7 +33516,7 @@ "summary": [ { "kind": "text", - "text": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" + "text": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" } ] }, @@ -33525,7 +33525,7 @@ "fileName": "src/lib/types.ts", "line": 688, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L688" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L688" } ], "type": { @@ -33549,7 +33549,7 @@ }, { "kind": "code", - "text": "`window.solana`" + "text": "`window.ethereum`" }, { "kind": "text", @@ -33562,7 +33562,7 @@ "fileName": "src/lib/types.ts", "line": 685, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L685" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L685" } ], "type": { @@ -33583,7 +33583,7 @@ "fileName": "src/lib/types.ts", "line": 681, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L681" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L681" } ] } @@ -33608,7 +33608,7 @@ "fileName": "src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L703" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L703" } ], "type": { @@ -33659,7 +33659,7 @@ "fileName": "src/lib/types.ts", "line": 706, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L706" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L706" } ], "type": { @@ -33680,7 +33680,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ], "type": { @@ -33713,7 +33713,7 @@ "fileName": "src/lib/types.ts", "line": 713, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L713" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L713" } ], "type": { @@ -33733,7 +33733,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ] } @@ -33749,7 +33749,7 @@ "summary": [ { "kind": "text", - "text": "Ed25519 signature of the message." + "text": "Ethereum curve (secp256k1) signature of the message." } ] }, @@ -33758,7 +33758,7 @@ "fileName": "src/lib/types.ts", "line": 709, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L709" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L709" } ], "type": { @@ -33778,7 +33778,7 @@ "fileName": "src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L702" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L702" } ] } @@ -33797,7 +33797,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ], "type": { @@ -33828,7 +33828,7 @@ "fileName": "src/lib/types.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L837" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L837" } ], "type": { @@ -33855,7 +33855,7 @@ "fileName": "src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L841" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L841" } ], "type": { @@ -33876,7 +33876,7 @@ "fileName": "src/lib/types.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L842" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L842" } ], "type": { @@ -33908,7 +33908,7 @@ "fileName": "src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L835" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L835" } ], "type": { @@ -33937,7 +33937,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ] } @@ -33954,7 +33954,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ], "type": { @@ -33985,7 +33985,7 @@ "fileName": "src/lib/types.ts", "line": 823, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L823" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L823" } ], "type": { @@ -34006,7 +34006,7 @@ "fileName": "src/lib/types.ts", "line": 824, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L824" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L824" } ], "type": { @@ -34047,7 +34047,7 @@ "fileName": "src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L821" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L821" } ], "type": { @@ -34076,7 +34076,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 46, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ] } @@ -34093,7 +34093,7 @@ "fileName": "src/lib/types.ts", "line": 856, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L856" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L856" } ], "type": { @@ -34110,7 +34110,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ], "type": { @@ -34133,7 +34133,7 @@ "fileName": "src/lib/types.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L815" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L815" } ], "type": { @@ -34154,7 +34154,7 @@ "fileName": "src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L817" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L817" } ], "type": { @@ -34195,7 +34195,7 @@ "fileName": "src/lib/types.ts", "line": 816, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L816" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L816" } ], "type": { @@ -34214,7 +34214,7 @@ "fileName": "src/lib/types.ts", "line": 814, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L814" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L814" } ], "type": { @@ -34234,7 +34234,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 39, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ] } @@ -34251,7 +34251,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ], "type": { @@ -34282,7 +34282,7 @@ "fileName": "src/lib/types.ts", "line": 823, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L823" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L823" } ], "type": { @@ -34303,7 +34303,7 @@ "fileName": "src/lib/types.ts", "line": 824, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L824" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L824" } ], "type": { @@ -34344,7 +34344,7 @@ "fileName": "src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L821" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L821" } ], "type": { @@ -34373,7 +34373,7 @@ "fileName": "src/lib/types.ts", "line": 820, "character": 46, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L820" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L820" } ] } @@ -34390,7 +34390,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ], "type": { @@ -34421,7 +34421,7 @@ "fileName": "src/lib/types.ts", "line": 830, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L830" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L830" } ], "type": { @@ -34442,7 +34442,7 @@ "fileName": "src/lib/types.ts", "line": 831, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L831" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L831" } ], "type": { @@ -34474,7 +34474,7 @@ "fileName": "src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L828" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L828" } ], "type": { @@ -34494,7 +34494,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ] } @@ -34511,7 +34511,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ], "type": { @@ -34542,7 +34542,7 @@ "fileName": "src/lib/types.ts", "line": 837, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L837" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L837" } ], "type": { @@ -34569,7 +34569,7 @@ "fileName": "src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L841" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L841" } ], "type": { @@ -34590,7 +34590,7 @@ "fileName": "src/lib/types.ts", "line": 842, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L842" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L842" } ], "type": { @@ -34622,7 +34622,7 @@ "fileName": "src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L835" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L835" } ], "type": { @@ -34651,7 +34651,7 @@ "fileName": "src/lib/types.ts", "line": 834, "character": 44, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L834" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L834" } ] } @@ -34679,7 +34679,7 @@ "fileName": "src/lib/types.ts", "line": 879, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L879" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L879" } ], "type": { @@ -34710,7 +34710,7 @@ "fileName": "src/lib/types.ts", "line": 884, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L884" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L884" } ], "type": { @@ -34737,7 +34737,7 @@ "fileName": "src/lib/types.ts", "line": 889, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L889" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L889" } ], "type": { @@ -34764,7 +34764,7 @@ "fileName": "src/lib/types.ts", "line": 893, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L893" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L893" } ], "type": { @@ -34791,7 +34791,7 @@ "fileName": "src/lib/types.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L895" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L895" } ], "type": { @@ -34818,7 +34818,7 @@ "fileName": "src/lib/types.ts", "line": 897, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L897" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L897" } ], "type": { @@ -34836,7 +34836,7 @@ "fileName": "src/lib/types.ts", "line": 900, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L900" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L900" } ], "type": { @@ -34883,7 +34883,7 @@ "fileName": "src/lib/types.ts", "line": 879, "character": 37, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L879" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L879" } ] } @@ -34900,7 +34900,7 @@ "fileName": "src/lib/types.ts", "line": 862, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L862" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L862" } ], "type": { @@ -34926,7 +34926,7 @@ "fileName": "src/lib/types.ts", "line": 864, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L864" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L864" } ], "type": { @@ -34949,7 +34949,7 @@ "fileName": "src/lib/types.ts", "line": 865, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L865" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L865" } ], "type": { @@ -34969,7 +34969,7 @@ "fileName": "src/lib/types.ts", "line": 866, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L866" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L866" } ], "type": { @@ -34990,7 +34990,7 @@ "fileName": "src/lib/types.ts", "line": 864, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L864" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L864" } ] } @@ -35007,7 +35007,7 @@ "fileName": "src/lib/types.ts", "line": 868, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L868" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L868" } ], "type": { @@ -35027,7 +35027,7 @@ "fileName": "src/lib/types.ts", "line": 863, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L863" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L863" } ] } @@ -35052,7 +35052,7 @@ "fileName": "src/lib/types.ts", "line": 871, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L871" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L871" } ], "type": { @@ -35075,7 +35075,7 @@ "fileName": "src/lib/types.ts", "line": 872, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L872" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L872" } ], "type": { @@ -35094,7 +35094,7 @@ "fileName": "src/lib/types.ts", "line": 873, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L873" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L873" } ], "type": { @@ -35114,7 +35114,7 @@ "fileName": "src/lib/types.ts", "line": 871, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L871" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L871" } ] } @@ -35131,7 +35131,7 @@ "fileName": "src/lib/types.ts", "line": 875, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L875" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L875" } ], "type": { @@ -35152,7 +35152,7 @@ "fileName": "src/lib/types.ts", "line": 870, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L870" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L870" } ] } @@ -35171,7 +35171,7 @@ "fileName": "src/lib/types.ts", "line": 900, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L900" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L900" } ], "type": { @@ -35215,7 +35215,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ], "type": { @@ -35246,7 +35246,7 @@ "fileName": "src/lib/types.ts", "line": 830, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L830" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L830" } ], "type": { @@ -35267,7 +35267,7 @@ "fileName": "src/lib/types.ts", "line": 831, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L831" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L831" } ], "type": { @@ -35299,7 +35299,7 @@ "fileName": "src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L828" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L828" } ], "type": { @@ -35319,7 +35319,7 @@ "fileName": "src/lib/types.ts", "line": 827, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L827" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L827" } ] } @@ -35336,7 +35336,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ], "type": { @@ -35359,7 +35359,7 @@ "fileName": "src/lib/types.ts", "line": 815, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L815" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L815" } ], "type": { @@ -35380,7 +35380,7 @@ "fileName": "src/lib/types.ts", "line": 817, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L817" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L817" } ], "type": { @@ -35421,7 +35421,7 @@ "fileName": "src/lib/types.ts", "line": 816, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L816" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L816" } ], "type": { @@ -35440,7 +35440,7 @@ "fileName": "src/lib/types.ts", "line": 814, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L814" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L814" } ], "type": { @@ -35460,7 +35460,7 @@ "fileName": "src/lib/types.ts", "line": 813, "character": 39, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L813" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L813" } ] } @@ -35477,7 +35477,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ], "type": { @@ -35502,7 +35502,7 @@ "fileName": "src/lib/types.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L70" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L70" } ], "type": { @@ -35523,7 +35523,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "type": { @@ -35546,7 +35546,7 @@ "fileName": "src/lib/types.ts", "line": 88, "character": 21, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L88" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L88" } ], "signatures": [ @@ -35609,7 +35609,7 @@ "fileName": "src/lib/types.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L68" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L68" } ], "type": { @@ -35630,7 +35630,7 @@ "fileName": "src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L84" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L84" } ], "type": { @@ -35651,7 +35651,7 @@ "fileName": "src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L86" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L86" } ], "type": { @@ -35669,7 +35669,7 @@ "fileName": "src/lib/types.ts", "line": 601, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L601" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L601" } ], "type": { @@ -35710,7 +35710,7 @@ "fileName": "src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L99" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L99" } ], "type": { @@ -35731,7 +35731,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "type": { @@ -35747,7 +35747,7 @@ "fileName": "src/lib/types.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L64" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L64" } ], "indexSignature": { @@ -35798,7 +35798,7 @@ "fileName": "src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L94" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L94" } ], "type": { @@ -35816,7 +35816,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "type": { @@ -35832,7 +35832,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 23, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -35942,7 +35942,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 69, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -36004,7 +36004,7 @@ "fileName": "src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L72" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L72" } ], "type": { @@ -36025,7 +36025,7 @@ "fileName": "src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L74" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L74" } ], "type": { @@ -36043,7 +36043,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -36124,7 +36124,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -36144,7 +36144,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -36167,7 +36167,7 @@ "fileName": "src/lib/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L66" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L66" } ], "type": { @@ -36188,7 +36188,7 @@ "fileName": "src/lib/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L62" } ], "type": { @@ -36258,7 +36258,7 @@ "fileName": "src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L82" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L82" } ], "type": { @@ -36276,7 +36276,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -36357,7 +36357,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -36377,7 +36377,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -36399,7 +36399,7 @@ "fileName": "src/lib/types.ts", "line": 60, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L60" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L60" } ] } @@ -36416,7 +36416,7 @@ "fileName": "src/lib/types.ts", "line": 1194, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1194" } ], "type": { @@ -36439,7 +36439,7 @@ "fileName": "src/lib/types.ts", "line": 1194, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1194" } ], "type": { @@ -36469,7 +36469,7 @@ "fileName": "src/lib/types.ts", "line": 1194, "character": 31, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1194" } ] } @@ -36486,7 +36486,7 @@ "fileName": "src/lib/types.ts", "line": 1308, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1308" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1308" } ], "type": { @@ -36509,7 +36509,7 @@ "fileName": "src/lib/types.ts", "line": 1309, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1309" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1309" } ], "type": { @@ -36541,7 +36541,7 @@ "fileName": "src/lib/types.ts", "line": 1310, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1310" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1310" } ], "type": { @@ -36560,7 +36560,7 @@ "fileName": "src/lib/types.ts", "line": 1311, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1311" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1311" } ], "type": { @@ -36580,7 +36580,7 @@ "fileName": "src/lib/types.ts", "line": 1308, "character": 24, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1308" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1308" } ] } @@ -36597,7 +36597,7 @@ "fileName": "src/lib/types.ts", "line": 1325, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1325" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1325" } ], "type": { @@ -36621,7 +36621,7 @@ "fileName": "src/lib/types.ts", "line": 1325, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1325" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1325" } ], "indexSignature": { @@ -36663,7 +36663,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "type": { @@ -36679,7 +36679,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 23, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -36789,7 +36789,7 @@ "fileName": "src/lib/types.ts", "line": 58, "character": 69, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L58" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L58" } ], "signatures": [ @@ -36847,7 +36847,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ], "type": { @@ -36878,7 +36878,7 @@ "fileName": "src/lib/types.ts", "line": 937, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L937" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L937" } ], "type": { @@ -36905,7 +36905,7 @@ "fileName": "src/lib/types.ts", "line": 935, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L935" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L935" } ], "type": { @@ -36925,7 +36925,7 @@ "fileName": "src/lib/types.ts", "line": 933, "character": 42, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L933" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L933" } ] } @@ -36942,7 +36942,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ], "type": { @@ -36975,7 +36975,7 @@ "fileName": "src/lib/types.ts", "line": 930, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L930" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L930" } ], "type": { @@ -37011,7 +37011,7 @@ "fileName": "src/lib/types.ts", "line": 928, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L928" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L928" } ], "type": { @@ -37031,7 +37031,7 @@ "fileName": "src/lib/types.ts", "line": 926, "character": 33, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L926" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L926" } ] } @@ -37048,7 +37048,7 @@ "fileName": "src/lib/types.ts", "line": 908, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L908" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L908" } ], "type": { @@ -37065,7 +37065,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -37096,7 +37096,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -37125,7 +37125,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -37154,7 +37154,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -37174,7 +37174,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -37191,7 +37191,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -37222,7 +37222,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -37251,7 +37251,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -37278,7 +37278,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -37298,7 +37298,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -37318,7 +37318,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ], "type": { @@ -37349,7 +37349,7 @@ "fileName": "src/lib/types.ts", "line": 1244, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1244" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1244" } ], "type": { @@ -37378,7 +37378,7 @@ "fileName": "src/lib/types.ts", "line": 1246, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1246" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1246" } ], "type": { @@ -37405,7 +37405,7 @@ "fileName": "src/lib/types.ts", "line": 1248, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1248" } ], "type": { @@ -37425,7 +37425,7 @@ "fileName": "src/lib/types.ts", "line": 1242, "character": 35, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1242" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1242" } ] } @@ -37442,7 +37442,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ], "type": { @@ -37473,7 +37473,7 @@ "fileName": "src/lib/types.ts", "line": 1236, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1236" } ], "type": { @@ -37502,7 +37502,7 @@ "fileName": "src/lib/types.ts", "line": 1240, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1240" } ], "type": { @@ -37531,7 +37531,7 @@ "fileName": "src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1238" } ], "type": { @@ -37551,7 +37551,7 @@ "fileName": "src/lib/types.ts", "line": 1234, "character": 34, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1234" } ] } @@ -37568,7 +37568,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ], "type": { @@ -37599,7 +37599,7 @@ "fileName": "src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L912" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L912" } ], "type": { @@ -37619,7 +37619,7 @@ "fileName": "src/lib/types.ts", "line": 910, "character": 32, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L910" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L910" } ] } @@ -37636,7 +37636,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ], "type": { @@ -37667,7 +37667,7 @@ "fileName": "src/lib/types.ts", "line": 920, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L920" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L920" } ], "type": { @@ -37694,7 +37694,7 @@ "fileName": "src/lib/types.ts", "line": 923, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L923" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L923" } ], "type": { @@ -37721,7 +37721,7 @@ "fileName": "src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L917" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L917" } ], "type": { @@ -37741,7 +37741,7 @@ "fileName": "src/lib/types.ts", "line": 915, "character": 30, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L915" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L915" } ] } @@ -37758,7 +37758,7 @@ "fileName": "src/lib/types.ts", "line": 766, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L766" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L766" } ], "type": { @@ -37786,7 +37786,7 @@ "fileName": "src/lib/types.ts", "line": 190, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L190" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L190" } ], "type": { @@ -37812,7 +37812,7 @@ "fileName": "src/lib/types.ts", "line": 192, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L192" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L192" } ], "type": { @@ -37835,7 +37835,7 @@ "fileName": "src/lib/types.ts", "line": 193, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L193" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L193" } ], "type": { @@ -37855,7 +37855,7 @@ "fileName": "src/lib/types.ts", "line": 194, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L194" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L194" } ], "type": { @@ -37875,7 +37875,7 @@ "fileName": "src/lib/types.ts", "line": 192, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L192" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L192" } ] } @@ -37892,7 +37892,7 @@ "fileName": "src/lib/types.ts", "line": 196, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L196" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L196" } ], "type": { @@ -37912,7 +37912,7 @@ "fileName": "src/lib/types.ts", "line": 191, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L191" } ] } @@ -37937,7 +37937,7 @@ "fileName": "src/lib/types.ts", "line": 199, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L199" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L199" } ], "type": { @@ -37960,7 +37960,7 @@ "fileName": "src/lib/types.ts", "line": 200, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L200" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L200" } ], "type": { @@ -37980,7 +37980,7 @@ "fileName": "src/lib/types.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L201" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L201" } ], "type": { @@ -38000,7 +38000,7 @@ "fileName": "src/lib/types.ts", "line": 199, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L199" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L199" } ] } @@ -38017,7 +38017,7 @@ "fileName": "src/lib/types.ts", "line": 203, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L203" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L203" } ], "type": { @@ -38038,7 +38038,7 @@ "fileName": "src/lib/types.ts", "line": 198, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L198" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L198" } ] } @@ -38057,7 +38057,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ], "type": { @@ -38090,7 +38090,7 @@ "fileName": "src/lib/types.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1215" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1215" } ], "type": { @@ -38119,7 +38119,7 @@ "fileName": "src/lib/types.ts", "line": 1217, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1217" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1217" } ], "type": { @@ -38139,7 +38139,7 @@ "fileName": "src/lib/types.ts", "line": 1213, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1213" } ] } @@ -38156,7 +38156,7 @@ "fileName": "src/lib/types.ts", "line": 1206, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1206" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1206" } ], "type": { @@ -38179,7 +38179,7 @@ "fileName": "src/lib/types.ts", "line": 1209, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1209" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1209" } ], "type": { @@ -38198,7 +38198,7 @@ "fileName": "src/lib/types.ts", "line": 1208, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1208" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1208" } ], "type": { @@ -38226,7 +38226,7 @@ "fileName": "src/lib/types.ts", "line": 1210, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1210" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1210" } ], "type": { @@ -38246,7 +38246,7 @@ "fileName": "src/lib/types.ts", "line": 1206, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1206" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1206" } ], "indexSignature": { @@ -38294,7 +38294,7 @@ "fileName": "src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L8" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L8" } ], "type": { @@ -38402,7 +38402,7 @@ "fileName": "src/lib/types.ts", "line": 1314, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1314" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1314" } ], "type": { @@ -38425,7 +38425,7 @@ "fileName": "src/lib/types.ts", "line": 1321, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1321" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1321" } ], "type": { @@ -38443,7 +38443,7 @@ "fileName": "src/lib/types.ts", "line": 1008, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1008" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1008" } ], "type": { @@ -38473,7 +38473,7 @@ "fileName": "src/lib/types.ts", "line": 1317, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1317" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1317" } ], "type": { @@ -38504,7 +38504,7 @@ "fileName": "src/lib/types.ts", "line": 1318, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1318" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1318" } ], "type": { @@ -38523,7 +38523,7 @@ "fileName": "src/lib/types.ts", "line": 1319, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1319" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1319" } ], "type": { @@ -38542,7 +38542,7 @@ "fileName": "src/lib/types.ts", "line": 1315, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1315" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1315" } ], "type": { @@ -38561,7 +38561,7 @@ "fileName": "src/lib/types.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1320" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1320" } ], "type": { @@ -38580,7 +38580,7 @@ "fileName": "src/lib/types.ts", "line": 1322, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1322" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1322" } ], "type": { @@ -38599,7 +38599,7 @@ "fileName": "src/lib/types.ts", "line": 1316, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1316" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1316" } ], "type": { @@ -38619,7 +38619,7 @@ "fileName": "src/lib/types.ts", "line": 1314, "character": 29, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1314" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1314" } ] } @@ -38636,7 +38636,7 @@ "fileName": "src/lib/types.ts", "line": 769, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L769" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L769" } ], "type": { @@ -38662,7 +38662,7 @@ "fileName": "src/lib/types.ts", "line": 772, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L772" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L772" } ], "type": { @@ -38683,7 +38683,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ], "type": { @@ -38716,7 +38716,7 @@ "fileName": "src/lib/types.ts", "line": 777, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L777" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L777" } ], "type": { @@ -38745,7 +38745,7 @@ "fileName": "src/lib/types.ts", "line": 775, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L775" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L775" } ], "type": { @@ -38765,7 +38765,7 @@ "fileName": "src/lib/types.ts", "line": 773, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L773" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L773" } ] } @@ -38782,7 +38782,7 @@ "fileName": "src/lib/types.ts", "line": 771, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L771" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L771" } ], "type": { @@ -38824,7 +38824,7 @@ "fileName": "src/lib/types.ts", "line": 770, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L770" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L770" } ] } @@ -38851,7 +38851,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ], "type": { @@ -38884,7 +38884,7 @@ "fileName": "src/lib/types.ts", "line": 785, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L785" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L785" } ], "type": { @@ -38904,7 +38904,7 @@ "fileName": "src/lib/types.ts", "line": 783, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L783" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L783" } ] } @@ -38921,7 +38921,7 @@ "fileName": "src/lib/types.ts", "line": 782, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L782" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L782" } ], "type": { @@ -38940,7 +38940,7 @@ "fileName": "src/lib/types.ts", "line": 781, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L781" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L781" } ], "type": { @@ -38982,7 +38982,7 @@ "fileName": "src/lib/types.ts", "line": 780, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L780" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L780" } ] } @@ -39001,7 +39001,7 @@ "fileName": "src/lib/types.ts", "line": 206, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L206" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L206" } ], "type": { @@ -39027,7 +39027,7 @@ "fileName": "src/lib/types.ts", "line": 208, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L208" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L208" } ], "type": { @@ -39066,7 +39066,7 @@ "fileName": "src/lib/types.ts", "line": 216, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L216" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L216" } ], "type": { @@ -39086,7 +39086,7 @@ "fileName": "src/lib/types.ts", "line": 208, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L208" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L208" } ] } @@ -39103,7 +39103,7 @@ "fileName": "src/lib/types.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L218" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L218" } ], "type": { @@ -39123,7 +39123,7 @@ "fileName": "src/lib/types.ts", "line": 207, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L207" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L207" } ] } @@ -39148,7 +39148,7 @@ "fileName": "src/lib/types.ts", "line": 221, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L221" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L221" } ], "type": { @@ -39167,7 +39167,7 @@ "fileName": "src/lib/types.ts", "line": 222, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L222" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L222" } ], "type": { @@ -39188,7 +39188,7 @@ "fileName": "src/lib/types.ts", "line": 220, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L220" } ] } @@ -39207,7 +39207,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ], "type": { @@ -39232,7 +39232,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ], "type": { @@ -39265,7 +39265,7 @@ "fileName": "src/lib/types.ts", "line": 499, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L499" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L499" } ], "type": { @@ -39310,7 +39310,7 @@ "fileName": "src/lib/types.ts", "line": 497, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L497" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L497" } ], "type": { @@ -39330,7 +39330,7 @@ "fileName": "src/lib/types.ts", "line": 491, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L491" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L491" } ] } @@ -39348,7 +39348,7 @@ "fileName": "src/lib/types.ts", "line": 490, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L490" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L490" } ] } @@ -39365,7 +39365,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ], "type": { @@ -39406,7 +39406,7 @@ "fileName": "src/lib/types.ts", "line": 623, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L623" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L623" } ], "type": { @@ -39443,7 +39443,7 @@ "fileName": "src/lib/types.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L625" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L625" } ], "type": { @@ -39464,7 +39464,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ], "type": { @@ -39497,7 +39497,7 @@ "fileName": "src/lib/types.ts", "line": 628, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L628" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L628" } ], "type": { @@ -39517,7 +39517,7 @@ "fileName": "src/lib/types.ts", "line": 626, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L626" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L626" } ] } @@ -39598,7 +39598,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ], "type": { @@ -39644,7 +39644,7 @@ "fileName": "src/lib/types.ts", "line": 619, "character": 76, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L619" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L619" } ] } @@ -39705,7 +39705,7 @@ "fileName": "src/lib/types.ts", "line": 621, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L621" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L621" } ], "type": { @@ -39725,7 +39725,7 @@ "fileName": "src/lib/types.ts", "line": 617, "character": 43, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L617" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L617" } ] } @@ -39742,7 +39742,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ], "type": { @@ -39767,7 +39767,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ], "type": { @@ -39800,7 +39800,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "type": { @@ -39816,7 +39816,7 @@ "fileName": "src/lib/types.ts", "line": 611, "character": 18, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L611" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L611" } ], "indexSignature": { @@ -39866,7 +39866,7 @@ "fileName": "src/lib/types.ts", "line": 607, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L607" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L607" } ], "type": { @@ -39895,7 +39895,7 @@ "fileName": "src/lib/types.ts", "line": 609, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L609" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L609" } ], "type": { @@ -39924,7 +39924,7 @@ "fileName": "src/lib/types.ts", "line": 613, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L613" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L613" } ], "type": { @@ -39944,7 +39944,7 @@ "fileName": "src/lib/types.ts", "line": 605, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L605" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L605" } ] } @@ -39969,7 +39969,7 @@ "fileName": "src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L604" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L604" } ], "type": { @@ -39995,7 +39995,7 @@ "fileName": "src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L8" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L8" } ], "type": { @@ -40106,7 +40106,7 @@ "fileName": "src/lib/types.ts", "line": 602, "character": 41, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L602" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L602" } ] } @@ -40123,7 +40123,7 @@ "fileName": "src/lib/types.ts", "line": 541, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L541" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L541" } ], "type": { @@ -40157,7 +40157,7 @@ "fileName": "src/lib/types.ts", "line": 544, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L544" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L544" } ], "type": { @@ -40178,7 +40178,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ], "type": { @@ -40211,7 +40211,7 @@ "fileName": "src/lib/types.ts", "line": 549, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L549" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L549" } ], "type": { @@ -40231,7 +40231,7 @@ "fileName": "src/lib/types.ts", "line": 547, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L547" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L547" } ] } @@ -40256,7 +40256,7 @@ "fileName": "src/lib/types.ts", "line": 546, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L546" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L546" } ], "type": { @@ -40276,7 +40276,7 @@ "fileName": "src/lib/types.ts", "line": 542, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L542" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L542" } ] } @@ -40303,7 +40303,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ], "type": { @@ -40336,7 +40336,7 @@ "fileName": "src/lib/types.ts", "line": 559, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L559" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L559" } ], "type": { @@ -40356,7 +40356,7 @@ "fileName": "src/lib/types.ts", "line": 557, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L557" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L557" } ] } @@ -40381,7 +40381,7 @@ "fileName": "src/lib/types.ts", "line": 556, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L556" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L556" } ], "type": { @@ -40408,7 +40408,7 @@ "fileName": "src/lib/types.ts", "line": 554, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L554" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L554" } ], "type": { @@ -40428,7 +40428,7 @@ "fileName": "src/lib/types.ts", "line": 552, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L552" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L552" } ] } @@ -40447,7 +40447,7 @@ "fileName": "src/lib/types.ts", "line": 563, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L563" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L563" } ], "type": { @@ -40481,7 +40481,7 @@ "fileName": "src/lib/types.ts", "line": 566, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L566" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L566" } ], "type": { @@ -40502,7 +40502,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ], "type": { @@ -40535,7 +40535,7 @@ "fileName": "src/lib/types.ts", "line": 579, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L579" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L579" } ], "type": { @@ -40580,7 +40580,7 @@ "fileName": "src/lib/types.ts", "line": 577, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L577" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L577" } ], "type": { @@ -40609,7 +40609,7 @@ "fileName": "src/lib/types.ts", "line": 569, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L569" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L569" } ], "type": { @@ -40638,7 +40638,7 @@ "fileName": "src/lib/types.ts", "line": 571, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L571" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L571" } ], "type": { @@ -40658,7 +40658,7 @@ "fileName": "src/lib/types.ts", "line": 567, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L567" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L567" } ] } @@ -40676,7 +40676,7 @@ "fileName": "src/lib/types.ts", "line": 564, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L564" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L564" } ] } @@ -40703,7 +40703,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ], "type": { @@ -40736,7 +40736,7 @@ "fileName": "src/lib/types.ts", "line": 595, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L595" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L595" } ], "type": { @@ -40765,7 +40765,7 @@ "fileName": "src/lib/types.ts", "line": 597, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L597" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L597" } ], "type": { @@ -40819,7 +40819,7 @@ "fileName": "src/lib/types.ts", "line": 593, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L593" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L593" } ], "type": { @@ -40848,7 +40848,7 @@ "fileName": "src/lib/types.ts", "line": 587, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L587" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L587" } ], "type": { @@ -40868,7 +40868,7 @@ "fileName": "src/lib/types.ts", "line": 585, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L585" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L585" } ] } @@ -40893,7 +40893,7 @@ "fileName": "src/lib/types.ts", "line": 584, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L584" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L584" } ], "type": { @@ -40913,7 +40913,7 @@ "fileName": "src/lib/types.ts", "line": 582, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L582" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L582" } ] } @@ -40932,7 +40932,7 @@ "fileName": "src/lib/types.ts", "line": 789, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L789" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L789" } ], "type": { @@ -40960,7 +40960,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ], "type": { @@ -40993,7 +40993,7 @@ "fileName": "src/lib/types.ts", "line": 798, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L798" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L798" } ], "type": { @@ -41022,7 +41022,7 @@ "fileName": "src/lib/types.ts", "line": 796, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L796" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L796" } ], "type": { @@ -41042,7 +41042,7 @@ "fileName": "src/lib/types.ts", "line": 794, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L794" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L794" } ] } @@ -41067,7 +41067,7 @@ "fileName": "src/lib/types.ts", "line": 792, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L792" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L792" } ], "type": { @@ -41087,7 +41087,7 @@ "fileName": "src/lib/types.ts", "line": 790, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L790" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L790" } ] } @@ -41120,7 +41120,7 @@ "fileName": "src/lib/types.ts", "line": 803, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L803" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L803" } ], "type": { @@ -41141,7 +41141,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ], "type": { @@ -41174,7 +41174,7 @@ "fileName": "src/lib/types.ts", "line": 809, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L809" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L809" } ], "type": { @@ -41203,7 +41203,7 @@ "fileName": "src/lib/types.ts", "line": 807, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L807" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L807" } ], "type": { @@ -41223,7 +41223,7 @@ "fileName": "src/lib/types.ts", "line": 805, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L805" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L805" } ] } @@ -41241,7 +41241,7 @@ "fileName": "src/lib/types.ts", "line": 801, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L801" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L801" } ] } @@ -41260,7 +41260,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ], "type": { @@ -41293,7 +41293,7 @@ "fileName": "src/lib/types.ts", "line": 1231, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1231" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1231" } ], "type": { @@ -41326,7 +41326,7 @@ "fileName": "src/lib/types.ts", "line": 1220, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1220" } ] } @@ -41343,7 +41343,7 @@ "fileName": "src/lib/types.ts", "line": 1338, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1338" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1338" } ], "type": { @@ -41373,7 +41373,7 @@ "fileName": "src/lib/types.ts", "line": 503, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L503" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L503" } ], "type": { @@ -41407,7 +41407,7 @@ "fileName": "src/lib/types.ts", "line": 506, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L506" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L506" } ], "type": { @@ -41428,7 +41428,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ], "type": { @@ -41461,7 +41461,7 @@ "fileName": "src/lib/types.ts", "line": 519, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L519" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L519" } ], "type": { @@ -41506,7 +41506,7 @@ "fileName": "src/lib/types.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L517" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L517" } ], "type": { @@ -41535,7 +41535,7 @@ "fileName": "src/lib/types.ts", "line": 511, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L511" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L511" } ], "type": { @@ -41555,7 +41555,7 @@ "fileName": "src/lib/types.ts", "line": 509, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L509" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L509" } ] } @@ -41580,7 +41580,7 @@ "fileName": "src/lib/types.ts", "line": 508, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L508" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L508" } ], "type": { @@ -41600,7 +41600,7 @@ "fileName": "src/lib/types.ts", "line": 504, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L504" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L504" } ] } @@ -41627,7 +41627,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ], "type": { @@ -41660,7 +41660,7 @@ "fileName": "src/lib/types.ts", "line": 535, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L535" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L535" } ], "type": { @@ -41689,7 +41689,7 @@ "fileName": "src/lib/types.ts", "line": 537, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L537" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L537" } ], "type": { @@ -41743,7 +41743,7 @@ "fileName": "src/lib/types.ts", "line": 533, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L533" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L533" } ], "type": { @@ -41763,7 +41763,7 @@ "fileName": "src/lib/types.ts", "line": 527, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L527" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L527" } ] } @@ -41788,7 +41788,7 @@ "fileName": "src/lib/types.ts", "line": 526, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L526" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L526" } ], "type": { @@ -41815,7 +41815,7 @@ "fileName": "src/lib/types.ts", "line": 524, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L524" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L524" } ], "type": { @@ -41835,7 +41835,7 @@ "fileName": "src/lib/types.ts", "line": 522, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L522" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L522" } ] } @@ -41854,7 +41854,7 @@ "fileName": "src/lib/types.ts", "line": 632, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L632" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L632" } ], "type": { @@ -41879,7 +41879,7 @@ "fileName": "src/lib/types.ts", "line": 634, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L634" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L634" } ], "type": { @@ -41905,7 +41905,7 @@ "fileName": "src/lib/types.ts", "line": 635, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L635" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L635" } ], "type": { @@ -41921,7 +41921,7 @@ "fileName": "src/lib/types.ts", "line": 635, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L635" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L635" } ], "signatures": [ @@ -41952,7 +41952,7 @@ "fileName": "src/lib/types.ts", "line": 634, "character": 14, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L634" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L634" } ] } @@ -41977,7 +41977,7 @@ "fileName": "src/lib/types.ts", "line": 633, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L633" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L633" } ], "type": { @@ -41993,7 +41993,7 @@ "fileName": "src/lib/types.ts", "line": 633, "character": 11, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L633" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L633" } ], "signatures": [ @@ -42063,7 +42063,7 @@ "fileName": "src/lib/types.ts", "line": 638, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L638" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L638" } ], "type": { @@ -42079,7 +42079,7 @@ "fileName": "src/lib/types.ts", "line": 638, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L638" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L638" } ], "signatures": [ @@ -42166,7 +42166,7 @@ "fileName": "src/lib/types.ts", "line": 632, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L632" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L632" } ] } @@ -42183,7 +42183,7 @@ "fileName": "src/lib/types.ts", "line": 641, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L641" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L641" } ], "type": { @@ -42209,7 +42209,7 @@ "fileName": "src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L643" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L643" } ], "type": { @@ -42230,7 +42230,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ], "type": { @@ -42263,7 +42263,7 @@ "fileName": "src/lib/types.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L656" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L656" } ], "type": { @@ -42284,7 +42284,7 @@ "fileName": "src/lib/types.ts", "line": 658, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L658" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L658" } ], "type": { @@ -42354,7 +42354,7 @@ "fileName": "src/lib/types.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L653" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L653" } ], "type": { @@ -42374,7 +42374,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ] } @@ -42401,7 +42401,7 @@ "fileName": "src/lib/types.ts", "line": 649, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L649" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L649" } ], "type": { @@ -42438,7 +42438,7 @@ "fileName": "src/lib/types.ts", "line": 646, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L646" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L646" } ], "type": { @@ -42459,7 +42459,7 @@ "fileName": "src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L642" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L642" } ] } @@ -42484,7 +42484,7 @@ "fileName": "src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L664" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L664" } ], "type": { @@ -42535,7 +42535,7 @@ "fileName": "src/lib/types.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L667" } ], "type": { @@ -42556,7 +42556,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ], "type": { @@ -42589,7 +42589,7 @@ "fileName": "src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L674" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L674" } ], "type": { @@ -42609,7 +42609,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ] } @@ -42634,7 +42634,7 @@ "fileName": "src/lib/types.ts", "line": 670, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L670" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L670" } ], "type": { @@ -42656,7 +42656,7 @@ "fileName": "src/lib/types.ts", "line": 663, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L663" } ] } @@ -42675,7 +42675,7 @@ "fileName": "src/lib/types.ts", "line": 1181, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1181" } ], "type": { @@ -42756,7 +42756,7 @@ "fileName": "src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1191" } ], "type": { @@ -42776,7 +42776,7 @@ "fileName": "src/lib/types.ts", "line": 1183, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1183" } ] } @@ -42795,7 +42795,7 @@ "fileName": "src/lib/types.ts", "line": 225, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L225" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L225" } ], "type": { @@ -42821,7 +42821,7 @@ "fileName": "src/lib/types.ts", "line": 227, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L227" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L227" } ], "type": { @@ -42844,7 +42844,7 @@ "fileName": "src/lib/types.ts", "line": 228, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L228" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L228" } ], "type": { @@ -42865,7 +42865,7 @@ "fileName": "src/lib/types.ts", "line": 227, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L227" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L227" } ] } @@ -42882,7 +42882,7 @@ "fileName": "src/lib/types.ts", "line": 230, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L230" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L230" } ], "type": { @@ -42902,7 +42902,7 @@ "fileName": "src/lib/types.ts", "line": 226, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L226" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L226" } ] } @@ -42927,7 +42927,7 @@ "fileName": "src/lib/types.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L233" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L233" } ], "type": { @@ -42950,7 +42950,7 @@ "fileName": "src/lib/types.ts", "line": 234, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L234" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L234" } ], "type": { @@ -42970,7 +42970,7 @@ "fileName": "src/lib/types.ts", "line": 233, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L233" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L233" } ] } @@ -42987,7 +42987,7 @@ "fileName": "src/lib/types.ts", "line": 236, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L236" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L236" } ], "type": { @@ -43008,7 +43008,7 @@ "fileName": "src/lib/types.ts", "line": 232, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L232" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L232" } ] } @@ -43027,7 +43027,7 @@ "fileName": "src/lib/types.ts", "line": 719, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L719" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L719" } ], "type": { @@ -43053,7 +43053,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ], "type": { @@ -43092,7 +43092,7 @@ "fileName": "src/lib/types.ts", "line": 736, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L736" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L736" } ], "type": { @@ -43121,7 +43121,7 @@ "fileName": "src/lib/types.ts", "line": 729, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L729" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L729" } ], "type": { @@ -43141,7 +43141,7 @@ "fileName": "src/lib/types.ts", "line": 727, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L727" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L727" } ] } @@ -43166,7 +43166,7 @@ "fileName": "src/lib/types.ts", "line": 722, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L722" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L722" } ], "type": { @@ -43193,7 +43193,7 @@ "fileName": "src/lib/types.ts", "line": 724, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L724" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L724" } ], "type": { @@ -43220,7 +43220,7 @@ "fileName": "src/lib/types.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L726" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L726" } ], "type": { @@ -43238,7 +43238,7 @@ "fileName": "src/lib/types.ts", "line": 766, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L766" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L766" } ], "type": { @@ -43269,7 +43269,7 @@ "fileName": "src/lib/types.ts", "line": 720, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L720" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L720" } ] }, @@ -43299,7 +43299,7 @@ "fileName": "src/lib/types.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L741" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L741" } ], "type": { @@ -43320,7 +43320,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ], "type": { @@ -43359,7 +43359,7 @@ "fileName": "src/lib/types.ts", "line": 754, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L754" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L754" } ], "type": { @@ -43388,7 +43388,7 @@ "fileName": "src/lib/types.ts", "line": 748, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L748" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L748" } ], "type": { @@ -43408,7 +43408,7 @@ "fileName": "src/lib/types.ts", "line": 746, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L746" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L746" } ] } @@ -43433,7 +43433,7 @@ "fileName": "src/lib/types.ts", "line": 743, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L743" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L743" } ], "type": { @@ -43460,7 +43460,7 @@ "fileName": "src/lib/types.ts", "line": 745, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L745" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L745" } ], "type": { @@ -43478,7 +43478,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -43525,7 +43525,7 @@ "fileName": "src/lib/types.ts", "line": 739, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L739" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L739" } ] }, @@ -43555,7 +43555,7 @@ "fileName": "src/lib/types.ts", "line": 760, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L760" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L760" } ], "type": { @@ -43582,7 +43582,7 @@ "fileName": "src/lib/types.ts", "line": 763, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L763" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L763" } ], "type": { @@ -43600,7 +43600,7 @@ "fileName": "src/lib/types.ts", "line": 767, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L767" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L767" } ], "type": { @@ -43647,7 +43647,7 @@ "fileName": "src/lib/types.ts", "line": 758, "character": 17, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L758" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L758" } ] } @@ -43665,7 +43665,7 @@ "fileName": "src/lib/types.ts", "line": 103, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L103" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L103" } ], "type": { @@ -43688,7 +43688,7 @@ "fileName": "src/lib/types.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L105" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L105" } ], "type": { @@ -43707,7 +43707,7 @@ "fileName": "src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L104" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L104" } ], "type": { @@ -43731,7 +43731,7 @@ "fileName": "src/lib/types.ts", "line": 103, "character": 27, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L103" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L103" } ] } @@ -43748,7 +43748,7 @@ "fileName": "src/lib/types.ts", "line": 102, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L102" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L102" } ], "type": { @@ -43786,7 +43786,7 @@ "fileName": "src/lib/types.ts", "line": 102, "character": 80, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L102" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L102" } ] } @@ -43807,7 +43807,7 @@ "fileName": "src/lib/types.ts", "line": 717, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L717" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L717" } ], "type": { @@ -43824,7 +43824,7 @@ "fileName": "src/lib/types.ts", "line": 641, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L641" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L641" } ], "type": { @@ -43850,7 +43850,7 @@ "fileName": "src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L643" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L643" } ], "type": { @@ -43871,7 +43871,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ], "type": { @@ -43904,7 +43904,7 @@ "fileName": "src/lib/types.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L656" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L656" } ], "type": { @@ -43925,7 +43925,7 @@ "fileName": "src/lib/types.ts", "line": 658, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L658" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L658" } ], "type": { @@ -43995,7 +43995,7 @@ "fileName": "src/lib/types.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L653" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L653" } ], "type": { @@ -44015,7 +44015,7 @@ "fileName": "src/lib/types.ts", "line": 651, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L651" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L651" } ] } @@ -44042,7 +44042,7 @@ "fileName": "src/lib/types.ts", "line": 649, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L649" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L649" } ], "type": { @@ -44079,7 +44079,7 @@ "fileName": "src/lib/types.ts", "line": 646, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L646" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L646" } ], "type": { @@ -44100,7 +44100,7 @@ "fileName": "src/lib/types.ts", "line": 642, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L642" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L642" } ] } @@ -44125,7 +44125,7 @@ "fileName": "src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L664" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L664" } ], "type": { @@ -44176,7 +44176,7 @@ "fileName": "src/lib/types.ts", "line": 667, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L667" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L667" } ], "type": { @@ -44197,7 +44197,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ], "type": { @@ -44230,7 +44230,7 @@ "fileName": "src/lib/types.ts", "line": 674, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L674" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L674" } ], "type": { @@ -44250,7 +44250,7 @@ "fileName": "src/lib/types.ts", "line": 672, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L672" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L672" } ] } @@ -44275,7 +44275,7 @@ "fileName": "src/lib/types.ts", "line": 670, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L670" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L670" } ], "type": { @@ -44297,7 +44297,7 @@ "fileName": "src/lib/types.ts", "line": 663, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L663" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L663" } ] } @@ -44316,7 +44316,7 @@ "fileName": "src/lib/types.ts", "line": 680, "character": 12, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L680" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L680" } ], "type": { @@ -44342,7 +44342,7 @@ "fileName": "src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L682" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L682" } ], "type": { @@ -44363,7 +44363,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ], "type": { @@ -44396,7 +44396,7 @@ "fileName": "src/lib/types.ts", "line": 695, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L695" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L695" } ], "type": { @@ -44417,7 +44417,7 @@ "fileName": "src/lib/types.ts", "line": 697, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L697" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L697" } ], "type": { @@ -44483,7 +44483,7 @@ "fileName": "src/lib/types.ts", "line": 692, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L692" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L692" } ], "type": { @@ -44503,7 +44503,7 @@ "fileName": "src/lib/types.ts", "line": 690, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L690" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L690" } ] } @@ -44521,7 +44521,7 @@ "summary": [ { "kind": "text", - "text": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" + "text": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**" } ] }, @@ -44530,7 +44530,7 @@ "fileName": "src/lib/types.ts", "line": 688, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L688" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L688" } ], "type": { @@ -44554,7 +44554,7 @@ }, { "kind": "code", - "text": "`window.solana`" + "text": "`window.ethereum`" }, { "kind": "text", @@ -44567,7 +44567,7 @@ "fileName": "src/lib/types.ts", "line": 685, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L685" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L685" } ], "type": { @@ -44588,7 +44588,7 @@ "fileName": "src/lib/types.ts", "line": 681, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L681" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L681" } ] } @@ -44613,7 +44613,7 @@ "fileName": "src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L703" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L703" } ], "type": { @@ -44664,7 +44664,7 @@ "fileName": "src/lib/types.ts", "line": 706, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L706" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L706" } ], "type": { @@ -44685,7 +44685,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ], "type": { @@ -44718,7 +44718,7 @@ "fileName": "src/lib/types.ts", "line": 713, "character": 8, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L713" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L713" } ], "type": { @@ -44738,7 +44738,7 @@ "fileName": "src/lib/types.ts", "line": 711, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L711" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L711" } ] } @@ -44754,7 +44754,7 @@ "summary": [ { "kind": "text", - "text": "Ed25519 signature of the message." + "text": "Ethereum curve (secp256k1) signature of the message." } ] }, @@ -44763,7 +44763,7 @@ "fileName": "src/lib/types.ts", "line": 709, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L709" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L709" } ], "type": { @@ -44783,7 +44783,7 @@ "fileName": "src/lib/types.ts", "line": 702, "character": 4, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L702" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L702" } ] } @@ -44807,7 +44807,7 @@ "fileName": "src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/AuthAdminApi.ts#L3" } ], "type": { @@ -44833,7 +44833,7 @@ "fileName": "src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/AuthClient.ts#L3" } ], "type": { @@ -44859,7 +44859,7 @@ "fileName": "src/lib/types.ts", "line": 1337, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/types.ts#L1337" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/types.ts#L1337" } ], "type": { @@ -44902,7 +44902,7 @@ "fileName": "src/lib/locks.ts", "line": 6, "character": 13, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L6" } ], "type": { @@ -44929,7 +44929,7 @@ "fileName": "src/lib/locks.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L10" } ], "type": { @@ -44950,7 +44950,7 @@ "fileName": "src/lib/locks.ts", "line": 6, "character": 25, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L6" } ] } @@ -44968,7 +44968,7 @@ "fileName": "src/lib/errors.ts", "line": 41, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L41" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L41" } ], "signatures": [ @@ -45015,7 +45015,7 @@ "fileName": "src/lib/errors.ts", "line": 26, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L26" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L26" } ], "signatures": [ @@ -45062,7 +45062,7 @@ "fileName": "src/lib/errors.ts", "line": 105, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L105" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L105" } ], "signatures": [ @@ -45109,7 +45109,7 @@ "fileName": "src/lib/errors.ts", "line": 135, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L135" } ], "signatures": [ @@ -45156,7 +45156,7 @@ "fileName": "src/lib/errors.ts", "line": 72, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L72" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L72" } ], "signatures": [ @@ -45203,7 +45203,7 @@ "fileName": "src/lib/errors.ts", "line": 157, "character": 16, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/errors.ts#L157" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/errors.ts#L157" } ], "signatures": [ @@ -45250,7 +45250,7 @@ "fileName": "src/lib/locks.ts", "line": 59, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L59" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L59" } ], "signatures": [ @@ -45393,7 +45393,7 @@ "fileName": "src/lib/locks.ts", "line": 62, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L62" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L62" } ], "signatures": [ @@ -45449,7 +45449,7 @@ "fileName": "src/lib/locks.ts", "line": 171, "character": 22, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L171" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L171" } ], "signatures": [ @@ -45560,7 +45560,7 @@ "fileName": "src/lib/locks.ts", "line": 174, "character": 6, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/lib/locks.ts#L174" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/lib/locks.ts#L174" } ], "signatures": [ @@ -45643,7 +45643,7 @@ "fileName": "src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/auth-js/blob/91474d6/src/index.ts#L1" + "url": "https://github.com/supabase/auth-js/blob/aadf02e/src/index.ts#L1" } ] } diff --git a/apps/docs/spec/supabase_js_v2.yml b/apps/docs/spec/supabase_js_v2.yml index 2e6c387f8d8a9..49a7909b4d69c 100644 --- a/apps/docs/spec/supabase_js_v2.yml +++ b/apps/docs/spec/supabase_js_v2.yml @@ -793,7 +793,7 @@ functions: - The magic link's destination URL is determined by the [`SITE_URL`](/docs/guides/auth/redirect-urls#use-wildcards-in-redirect-urls). - See [redirect URLs and wildcards](/docs/guides/auth/redirect-urls#use-wildcards-in-redirect-urls) to add additional redirect URLs to your project. - Magic links and OTPs share the same implementation. To send users a one-time code instead of a magic link, [modify the magic link email template](/dashboard/project/_/auth/templates) to include `{{ .Token }}` instead of `{{ .ConfirmationURL }}`. - - See our [Twilio Phone Auth Guide](/docs/guides/auth/phone-login?showSmsProvider=Twilio) for details about configuring WhatsApp sign in. + - See our [Twilio Phone Auth Guide](/docs/guides/auth/phone-login?showSMSProvider=Twilio) for details about configuring WhatsApp sign in. examples: - id: sign-in-with-email name: Sign in with email @@ -845,8 +845,8 @@ functions: title: 'signInWithOAuth()' $ref: '@supabase/auth-js.GoTrueClient.signInWithOAuth' notes: | - - This method is used for signing in using a third-party provider. - - Supabase supports many different [third-party providers](/docs/guides/auth#configure-third-party-providers). + - This method is used for signing in using [Social Login (OAuth) providers](/docs/guides/auth#configure-third-party-providers). + - It works by redirecting your application to the provider's authorization screen, before bringing back the user to your app. examples: - id: sign-in-using-a-third-party-provider name: Sign in using a third-party provider @@ -871,7 +871,7 @@ functions: name: Sign in using a third-party provider with redirect isSpotlight: false description: | - - When the third-party provider successfully authenticates the user, the provider redirects the user to the URL specified in the `redirectTo` parameter. This parameter defaults to the [`SITE_URL`](/docs/guides/auth/redirect-urls#use-wildcards-in-redirect-urls). It does not redirect the user immediately after invoking this method. + - When the OAuth provider successfully authenticates the user, they are redirected to the URL specified in the `redirectTo` parameter. This parameter defaults to the [`SITE_URL`](/docs/guides/auth/redirect-urls#use-wildcards-in-redirect-urls). It does not redirect the user immediately after invoking this method. - See [redirect URLs and wildcards](/docs/guides/auth/redirect-urls#use-wildcards-in-redirect-urls) to add additional redirect URLs to your project. code: | ```js @@ -924,6 +924,10 @@ functions: - id: sign-in-with-id-token title: 'signInWithIdToken' $ref: '@supabase/auth-js.GoTrueClient.signInWithIdToken' + notes: | + - Use an ID token to sign in. + - Especially useful when implementing sign in using native platform dialogs in mobile or desktop apps using Sign in with Apple or Sign in with Google on iOS and Android. + - You can also use Google's [One Tap](https://developers.google.com/identity/gsi/web/guides/display-google-one-tap) and [Automatic sign-in](https://developers.google.com/identity/gsi/web/guides/automatic-sign-in-sign-out) via this API. examples: - id: sign-in-with-id-token name: 'Sign In using ID Token' @@ -1033,12 +1037,109 @@ functions: window.location.href = data.url } ``` + - id: sign-in-with-web3 + title: 'signInWithWeb3()' + $ref: '@supabase/auth-js.GoTrueClient.signInWithWeb3' + notes: | + - Uses a Web3 (Ethereum, Solana) wallet to sign a user in. + - Read up on the [potential for abuse](/docs/guides/auth/auth-web3#potential-for-abuse) before using it. + examples: + - id: sign-in-with-solana-window + name: Sign in with Solana or Ethereum (Window API) + isSpotlight: true + code: | + ```js + // uses window.ethereum for the wallet + const { data, error } = await supabase.auth.signInWithWeb3({ + chain: 'ethereum', + statement: 'I accept the Terms of Service at https://example.com/tos' + }) + + // uses window.solana for the wallet + const { data, error } = await supabase.auth.signInWithWeb3({ + chain: 'solana', + statement: 'I accept the Terms of Service at https://example.com/tos' + }) + ``` + - id: sign-in-with-ethereum-raw + name: Sign in with Ethereum (Message and Signature) + isSpotlight: true + code: | + ```js + const { data, error } = await supabase.auth.signInWithWeb3({ + chain: 'ethereum', + message: '', + signature: '', + }) + ``` + - id: sign-in-with-solana-brave + name: Sign in with Solana (Brave) + isSpotlight: false + code: | + ```js + const { data, error } = await supabase.auth.signInWithWeb3({ + chain: 'solana', + statement: 'I accept the Terms of Service at https://example.com/tos', + wallet: window.braveSolana + }) + ``` + - id: sign-in-with-solana-wallet-adapter + name: Sign in with Solana (Wallet Adapter) + isSpotlight: false + code: | + ```jsx + function SignInButton() { + const wallet = useWallet() + + return ( + <> + {wallet.connected ? ( + + ) : ( + + )} + + ) + } + + function App() { + const endpoint = clusterApiUrl('devnet') + const wallets = useMemo(() => [], []) + + return ( + + + + + + + + ) + } + ``` - id: get-claims title: 'getClaims()' $ref: '@supabase/auth-js.GoTrueClient.getClaims' + notes: | + - Parses the user's [access token](/docs/guides/auth/sessions#access-token-jwt-claims) as a [JSON Web Token (JWT)](/docs/guides/auth/jwts) and returns its components if valid and not expired. + - If your project is using asymmetric JWT signing keys, then the verification is done locally usually without a network request using the [WebCrypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API). + - A network request is sent to your project's JWT signing key discovery endpoint `https://project-id.supabase.co/auth/v1/.well-known/jwks.json`, which is cached locally. If your environment is ephemeral, such as a Lambda function that is destroyed after every request, a network request will be sent for each new invocation. Supabase provides a network-edge cache providing fast responses for these situations. + - If the user's access token is about to expire when calling this function, the user's session will first be refreshed before validating the JWT. + - If your project is using a symmetric secret to sign the JWT, it always sends a request similar to `getUser()` to validate the JWT at the server before returning the decoded token. This is also used if the WebCrypto API is not available in the environment. Make sure you polyfill it in such situations. + - The returned claims can be customized per project using the [Custom Access Token Hook](/docs/guides/auth/auth-hooks/custom-access-token-hook). examples: - id: get-claims - name: Get user object + name: Get JWT claims, header and signature code: | ```js const { data, error } = await supabase.auth.getClaims() @@ -1059,7 +1160,7 @@ functions: "exp": 1715769600, "iat": 1715766000, "is_anonymous": false, - "iss": "https://api.supabase.com/auth/v1", + "iss": "https://project-id.supabase.co/auth/v1", "phone": "+13334445555", "role": "authenticated", "session_id": "11111111-1111-1111-1111-111111111111", @@ -1069,7 +1170,7 @@ functions: "header": { "alg": "RS256", "typ": "JWT", - "kid": "abcdefgh" + "kid": "11111111-1111-1111-1111-111111111111" }, "signature": [/** Uint8Array */], }, @@ -1081,16 +1182,30 @@ functions: $ref: '@supabase/auth-js.GoTrueClient.signOut' notes: | - In order to use the `signOut()` method, the user needs to be signed in first. - - By default, `signOut()` uses the global scope, which signs out all other sessions that the user is logged into as well. + - By default, `signOut()` uses the global scope, which signs out all other sessions that the user is logged into as well. Customize this behavior by passing a scope parameter. - Since Supabase Auth uses JWTs for authentication, the access token JWT will be valid until it's expired. When the user signs out, Supabase revokes the refresh token and deletes the JWT from the client-side. This does not revoke the JWT and it will still be valid until it expires. examples: - id: sign-out - name: Sign out + name: Sign out (all sessions) isSpotlight: true code: | ```js const { error } = await supabase.auth.signOut() ``` + - id: sign-out-current-session + name: Sign out (current session) + isSpotlight: false + code: | + ```js + const { error } = await supabase.auth.signOut('local') + ``` + - id: sign-out-other-sessions + name: Sign out (other sessions) + isSpotlight: false + code: | + ```js + const { error } = await supabase.auth.signOut('others') + ``` - id: verify-otp title: 'verifyOtp()' $ref: '@supabase/auth-js.GoTrueClient.verifyOtp' @@ -1218,7 +1333,7 @@ functions: } ``` - id: verify-sms-one-time-password(otp) - name: Verify Sms One-Time Password (OTP) + name: Verify SMS One-Time Password (OTP) isSpotlight: true code: | ```js @@ -1235,10 +1350,13 @@ functions: title: 'getSession()' $ref: '@supabase/auth-js.GoTrueClient.getSession' notes: | - - This method retrieves the current local session (i.e local storage). - - The session contains a signed JWT and unencoded session data. - - Since the unencoded session data is retrieved from the local storage medium, **do not** rely on it as a source of trusted data on the server. It could be tampered with by the sender. If you need verified, trustworthy user data, call [`getUser`](/docs/reference/javascript/auth-getuser) instead. - - If the session has an expired access token, this method will use the refresh token to get a new session. + - Since the introduction of [asymmetric JWT signing keys](/docs/guides/auth/signing-keys), this method is considered low-level and we encourage you to use `getClaims()` or `getUser()` instead. + - Retrieves the current [user session](/docs/guides/auth/sessions) from the storage medium (local storage, cookies). + - The session contains an access token (signed JWT), a refresh token and the user object. + - If the session's access token is expired or is about to expire, this method will use the refresh token to refresh the session. + - When using in a browser, or you've called `startAutoRefresh()` in your environment (React Native, etc.) this function always returns a valid access token without refreshing the session itself, as this is done in the background. This function returns very fast. + - **IMPORTANT SECURITY NOTICE:** If using an insecure storage medium, such as cookies or request headers, the user object returned by this function **must not be trusted**. Always verify the JWT using `getClaims()` or your own JWT verification library to securely establish the user's identity and access. You can also use `getUser()` to fetch the user object directly from the Auth server for this purpose. + - When using in a browser, this function is synchronized accross all tabs using the [LockManager](https://developer.mozilla.org/en-US/docs/Web/API/LockManager) API. In other environments make sure you've defined a proper `lock` property, if necessary, to make sure there are no race conditions while the session is being refreshed. examples: - id: get-the-session-data name: Get the session data @@ -3077,6 +3195,16 @@ functions: { phone_confirm: true } ) ``` + - id: ban-a-user + name: Ban a user for 100 years + isSpotlight: false + code: | + ```js + const { data: user, error } = await supabase.auth.admin.updateUserById( + '6aa5d0d4-2a9f-4483-b6c8-0cf4c6c98ac4', + { ban_duration: '100y' } + ) + ``` - id: mfa-list-factors-admin title: 'mfa.listFactors()' $ref: '@supabase/auth-js.GoTrueAdminMFAApi.listFactors' diff --git a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json index ebd5c400200d9..4001882bb25ae 100644 --- a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json +++ b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json @@ -1494,6 +1494,9 @@ } }, "required": ["id", "username"] + }, + "favorite": { + "type": "boolean" } }, "required": [ @@ -1506,7 +1509,8 @@ "description", "project", "owner", - "updated_by" + "updated_by", + "favorite" ] } }, @@ -1614,11 +1618,16 @@ }, "required": ["id", "username"] }, + "favorite": { + "type": "boolean" + }, "content": { "type": "object", "properties": { "favorite": { - "type": "boolean" + "type": "boolean", + "deprecated": true, + "description": "Deprecated: Rely on root-level favorite property instead." }, "schema_version": { "type": "string" @@ -1627,7 +1636,7 @@ "type": "string" } }, - "required": ["favorite", "schema_version", "sql"] + "required": ["schema_version", "sql"] } }, "required": [ @@ -1641,6 +1650,7 @@ "project", "owner", "updated_by", + "favorite", "content" ] } @@ -16006,6 +16016,9 @@ } }, "required": ["id", "username"] + }, + "favorite": { + "type": "boolean" } }, "required": [ @@ -16018,7 +16031,8 @@ "description", "project", "owner", - "updated_by" + "updated_by", + "favorite" ] } }, @@ -16091,11 +16105,16 @@ }, "required": ["id", "username"] }, + "favorite": { + "type": "boolean" + }, "content": { "type": "object", "properties": { "favorite": { - "type": "boolean" + "type": "boolean", + "deprecated": true, + "description": "Deprecated: Rely on root-level favorite property instead." }, "schema_version": { "type": "string" @@ -16104,7 +16123,7 @@ "type": "string" } }, - "required": ["favorite", "schema_version", "sql"] + "required": ["schema_version", "sql"] } }, "required": [ @@ -16118,6 +16137,7 @@ "project", "owner", "updated_by", + "favorite", "content" ] }, diff --git a/supa-mdx-lint/Rule003Spelling.toml b/supa-mdx-lint/Rule003Spelling.toml index 925d4abe8dc36..359c57988320d 100644 --- a/supa-mdx-lint/Rule003Spelling.toml +++ b/supa-mdx-lint/Rule003Spelling.toml @@ -69,6 +69,7 @@ allow_list = [ "[Ll]iveness", "[Mm]atryoshka", "[Mm]essageBird", + "MetaMask", "[Mm]icroservices?", "[Mm]iddlewares?", "[Mm]onorepos?", From 22e09b81d0c5d9f0d718e06f0e1db1ca6b02a3ee Mon Sep 17 00:00:00 2001 From: hallidayo <22655069+Hallidayo@users.noreply.github.com> Date: Mon, 15 Sep 2025 14:31:28 +0100 Subject: [PATCH 11/17] feat: studio connect framework state (#38637) * connect using framework state * initial opening remove params --- .../components/interfaces/Connect/Connect.tsx | 93 +++++++++++++++++-- 1 file changed, 84 insertions(+), 9 deletions(-) diff --git a/apps/studio/components/interfaces/Connect/Connect.tsx b/apps/studio/components/interfaces/Connect/Connect.tsx index 7118434b3d71e..93083518fb51f 100644 --- a/apps/studio/components/interfaces/Connect/Connect.tsx +++ b/apps/studio/components/interfaces/Connect/Connect.tsx @@ -2,7 +2,7 @@ import { PermissionAction } from '@supabase/shared-types/out/constants' import { useParams } from 'common' import { ExternalLink, Plug } from 'lucide-react' import { parseAsBoolean, parseAsString, useQueryState } from 'nuqs' -import { useMemo, useState } from 'react' +import { useEffect, useMemo, useState } from 'react' import { DatabaseConnectionString } from 'components/interfaces/Connect/DatabaseConnectionString' import { ButtonTooltip } from 'components/ui/ButtonTooltip' @@ -69,7 +69,24 @@ export const Connect = () => { parseAsBoolean.withDefault(false) ) + // helper to get tthe connection type object + function getConnectionObjectForTab(tab: string | null, frameworks: ConnectionType[]) { + switch (tab) { + case 'frameworks': + return frameworks + case 'mobiles': + return MOBILES + case 'orms': + return ORMS + default: + return FRAMEWORKS + } + } + const [tab, setTab] = useQueryState('tab', parseAsString.withDefault('direct')) + const [queryFramework, setQueryFramework] = useQueryState('framework', parseAsString) + const [queryUsing, setQueryUsing] = useQueryState('using', parseAsString) + const [queryWith, setQueryWith] = useQueryState('with', parseAsString) const [connectionObject, setConnectionObject] = useState(FRAMEWORKS) const [selectedParent, setSelectedParent] = useState(connectionObject[0].key) // aka nextjs @@ -92,31 +109,55 @@ export const Connect = () => { const handleParentChange = (value: string) => { setSelectedParent(value) + setQueryFramework(value) - // check if parent has children - setSelectedChild(connectionObject.find((item) => item.key === value)?.children[0]?.key ?? '') + const parent = connectionObject.find((item) => item.key === value) + const firstChild = parent?.children?.[0] - // check if child has grandchildren - setSelectedGrandchild( - connectionObject.find((item) => item.key === value)?.children[0]?.children[0]?.key ?? '' - ) + if (firstChild) { + setSelectedChild(firstChild.key) + setQueryUsing(firstChild.key) + + const firstGrandchild = firstChild.children?.[0] + if (firstGrandchild) { + setSelectedGrandchild(firstGrandchild.key) + setQueryWith(firstGrandchild.key) + } else { + setSelectedGrandchild('') + setQueryWith(null) + } + } else { + setSelectedChild('') + setQueryUsing(null) + setSelectedGrandchild('') + setQueryWith(null) + } } const handleChildChange = (value: string) => { setSelectedChild(value) + setQueryUsing(value) const parent = connectionObject.find((item) => item.key === selectedParent) const child = parent?.children.find((child) => child.key === value) + const firstGrandchild = child?.children?.[0] - if (child && child.children.length > 0) { - setSelectedGrandchild(child.children[0].key) + if (firstGrandchild) { + setSelectedGrandchild(firstGrandchild.key) + setQueryWith(firstGrandchild.key) } else { setSelectedGrandchild('') + setQueryWith(null) } } const handleGrandchildChange = (value: string) => { setSelectedGrandchild(value) + if (value) { + setQueryWith(value) + } else { + setQueryWith(null) + } } // reset the parent/child/grandchild when the connection type (tab) changes @@ -207,11 +248,45 @@ export const Connect = () => { if (!open) { setShowConnect(null) setTab(null) + setQueryFramework(null) + setQueryUsing(null) + setQueryWith(null) } else { setShowConnect(open) } } + useEffect(() => { + if (!showConnect) return + + const newConnectionObject = getConnectionObjectForTab(tab, frameworks) + setConnectionObject(newConnectionObject) + + const parent = + newConnectionObject.find((item) => item.key === queryFramework) ?? newConnectionObject[0] + setSelectedParent(parent?.key ?? '') + + if (queryFramework) { + if (parent?.key !== queryFramework) setQueryFramework(parent?.key ?? null) + } + + const child = + parent?.children.find((child) => child.key === queryUsing) ?? parent?.children?.[0] + setSelectedChild(child?.key ?? '') + + if (queryUsing) { + if (child?.key !== queryUsing) setQueryUsing(child?.key ?? null) + } + + const grandchild = + child?.children.find((child) => child.key === queryWith) ?? child?.children?.[0] + setSelectedGrandchild(grandchild?.key ?? '') + + if (queryWith) { + if (grandchild?.key !== queryWith) setQueryWith(grandchild?.key ?? null) + } + }, [showConnect, tab, frameworks, queryFramework, queryUsing, queryWith]) + if (!isActiveHealthy) { return ( Date: Mon, 15 Sep 2025 14:59:03 +0100 Subject: [PATCH 12/17] Changed Mendable to Firecrawl (#38413) * Changed Mendable to Firecrawl * firecrawl logo * bigger logo --------- Co-authored-by: Francesco Sansalvadore --- apps/docs/content/guides/ai.mdx | 6 +- ...-05-09-supabase-beta-update-april-2023.mdx | 8 +- apps/www/_customers/firecrawl.mdx | 78 ++++++++++++++++++ apps/www/_customers/mendableai.mdx | 78 ------------------ .../components/Sections/CommunitySlider.tsx | 10 +-- apps/www/data/CustomerStories.ts | 16 ++-- apps/www/data/ga.tsx | 2 +- apps/www/data/products/modules/vector.tsx | 10 +-- apps/www/lib/redirects.js | 5 ++ apps/www/public/customers-rss.xml | 8 +- ...ble.png => customer-stories-firecrawl.png} | Bin .../mendable.png => firecrawl/firecrawl.png} | Bin .../images/customers/logos/firecrawl.png | Bin 0 -> 4544 bytes .../customers/logos/light/firecrawl.png | Bin 0 -> 4907 bytes .../customers/logos/light/mendableai.png | Bin 8974 -> 0 bytes .../customers/logos/light/mendeable.png | Bin 6295 -> 0 bytes .../images/customers/logos/mendableai.png | Bin 7466 -> 0 bytes .../images/customers/logos/mendeable.png | Bin 6376 -> 0 bytes .../vector/community/supabase+firecrawl.svg | 14 ++++ .../vector/community/supabase+mendable.svg | 1 - apps/www/public/sitemap_www.xml | 2 +- 21 files changed, 128 insertions(+), 110 deletions(-) create mode 100644 apps/www/_customers/firecrawl.mdx delete mode 100644 apps/www/_customers/mendableai.mdx rename apps/www/public/images/blog/2023-05-09-beta-update-april/{customer-stories-mendable.png => customer-stories-firecrawl.png} (100%) rename apps/www/public/images/customers/{mendable/mendable.png => firecrawl/firecrawl.png} (100%) create mode 100644 apps/www/public/images/customers/logos/firecrawl.png create mode 100644 apps/www/public/images/customers/logos/light/firecrawl.png delete mode 100644 apps/www/public/images/customers/logos/light/mendableai.png delete mode 100644 apps/www/public/images/customers/logos/light/mendeable.png delete mode 100644 apps/www/public/images/customers/logos/mendableai.png delete mode 100644 apps/www/public/images/customers/logos/mendeable.png create mode 100644 apps/www/public/images/product/vector/community/supabase+firecrawl.svg delete mode 100644 apps/www/public/images/product/vector/community/supabase+mendable.svg diff --git a/apps/docs/content/guides/ai.mdx b/apps/docs/content/guides/ai.mdx index 6d512aa57a32c..c2cfe4743d73f 100644 --- a/apps/docs/content/guides/ai.mdx +++ b/apps/docs/content/guides/ai.mdx @@ -139,10 +139,10 @@ export const integrations = [ href: 'https://supabase.com/customers/berriai', }, { - name: 'Mendable switches from Pinecone to Supabase for PostgreSQL vector embeddings', + name: 'Firecrawl switches from Pinecone to Supabase for PostgreSQL vector embeddings', description: - 'How Mendable boosts efficiency and accuracy of chat powered search for documentation using Supabase with pgvector', - href: 'https://supabase.com/customers/mendableai', + 'How Firecrawl boosts efficiency and accuracy of chat powered search for documentation using Supabase with pgvector', + href: 'https://supabase.com/customers/firecrawl', }, { name: 'Markprompt: GDPR-Compliant AI Chatbots for Docs and Websites', diff --git a/apps/www/_blog/2023-05-09-supabase-beta-update-april-2023.mdx b/apps/www/_blog/2023-05-09-supabase-beta-update-april-2023.mdx index c4012ff3626c5..b2dc0b42e0d2f 100644 --- a/apps/www/_blog/2023-05-09-supabase-beta-update-april-2023.mdx +++ b/apps/www/_blog/2023-05-09-supabase-beta-update-april-2023.mdx @@ -95,13 +95,13 @@ The community is loving `pgvector` to build AI apps so we decided to make it par [See all the submissions](https://www.madewithsupabase.com/launch-week-7) -## Mendable.ai switches from Pinecone to Supabase for PostgreSQL vector embeddings. +## Firecrawl switches from Pinecone to Supabase for PostgreSQL vector embeddings. -![Mendable logo](/images/blog/2023-05-09-beta-update-april/customer-stories-mendable.png) +![Firecrawl logo](/images/blog/2023-05-09-beta-update-april/customer-stories-firecrawl.png) -With Supabase's pg_vector, Mendable.ai could build a more cost-effective solution that is just as performant - if not more performant - than other vector databases. +With Supabase's pg_vector, Firecrawl could build a more cost-effective solution that is just as performant - if not more performant - than other vector databases. -[Read the full story](https://supabase.com/customers/mendableai) +[Read the full story](https://supabase.com/customers/firecrawl) ## From the community diff --git a/apps/www/_customers/firecrawl.mdx b/apps/www/_customers/firecrawl.mdx new file mode 100644 index 0000000000000..06e37b803c50d --- /dev/null +++ b/apps/www/_customers/firecrawl.mdx @@ -0,0 +1,78 @@ +--- +name: Firecrawl +title: Firecrawl switches from Pinecone to Supabase Vector for PostgreSQL vector embeddings. +# Use meta_title to add a custom meta title. Otherwise it defaults to '{name} | Supabase Customer Stories': +meta_title: Firecrawl switches from Pinecone to Supabase Vector for PostgreSQL vector embeddings. +description: How Firecrawl boosts efficiency and accuracy of chat powered search for documentation using Supabase Vector. +# Use meta_description to add a custom meta description. Otherwise it defaults to {description}: +meta_description: How Firecrawl boosts efficiency and accuracy of chat powered search for documentation using Supabase Vector. +author: paul_copplestone +author_title: Supabase +author_url: https://github.com/kiwicopple +author_image_url: https://avatars2.githubusercontent.com/u/10214025?s=400&u=c6775be2ae667e2acae3ccd347fed62bb3f5b3e7&v=4 +logo: /images/customers/logos/firecrawl.png +logo_inverse: /images/customers/logos/light/firecrawl.png +og_image: /images/customers/og/firecrawl.jpg +tags: + - supabase +date: '2023-05-05' +company_url: 'https://firecrawl.dev/' +stats: + [ + { stat: '00,000', label: Example stat }, + { stat: '00,000', label: Example stat }, + { stat: '00,000', label: Example stat }, + ] +misc: [{ label: 'Backed by', text: 'Y Combinator' }] +about: Firecrawl is Chat Powered Search for Documentation. +# "healthcare" | "fintech" | "ecommerce" | "education" | "gaming" | "media" | "real-estate" | "saas" | "social" | "analytics" | "ai" | "developer-tools" +industry: ['ai', 'saas', 'developer-tools'] +# "startup" | "enterprise" | "indie_dev" +company_size: 'startup' +# "Asia" | "Europe" | "North America" | "South America" | "Africa" | "Oceania" +region: 'North America' +# "database" | "auth" | "storage" | "realtime" | "functions" | "vector" +supabase_products: ['database', 'vector'] +--- + +[Firecrawl](http://firecrawl.dev/) provides a chat-powered search engine for technical documentation. Their AI-powered search tool makes it easier for developers and other technical users to find relevant information in complex documentation. Users can simply ask questions in natural language, and the tool returns the most relevant answers. Firecrawl's search engine also provides detailed analytics, which helps teams identify knowledge gaps and areas for improvement in their documentation. Firecrawl has integrated with some of the largest open source projects in the space such as LangChain and LlamaIndex. + +## The Challenge + +Firecrawl was experiencing tremendous success, growing Weekly Active Users by nearly 300% since March. They needed a tool to store and search through large amounts of vector data to improve the efficiency and accuracy of their similarity search operations. They tried Faiss, Weaviate, and Pinecone, but found them to be expensive and not very intuitive, especially when it came to storing metadata along with the vectors. + +## Why they chose Supabase + +Firecrawl lear that Supabase supports [pgvector](https://supabase.com/docs/guides/database/extensions/pgvector) and found it to be a simple and cost-effective solution. They were impressed with the open source nature of Supabase, as well as its ability to store metadata alongside the vectors. They also appreciated the intuitive interface and ease of use. + + + We tried other vector databases - we tried Faiss, we tried Weaviate, we tried Pinecone. We found + them to be incredibly expensive and not very intuitive. If you're just doing vector search they're + great, but if you need to store a bunch of metadata that becomes a huge pain. + + +## What They Built + +Using [Supabase Vector](https://supabase.com/vector), Firecrawl was able to build a more efficient and accurate search function for their AI chatbot. By storing vector data alongside metadata in Supabase, Firecrawl was able to quickly and easily search through their customers documentation to find the most relevant responses to queries. They found that Supabase's solution was just as performant as dedicated vector databases, but without the high cost. + +![Firecrawl - build AI chat search applications](/images/customers/firecrawl/firecrawl.png) + +## The Results + +Thanks to Supabase Vector, Firecrawl was able to significantly improve the efficiency and accuracy of their Chat Powered Search for Documentation. They were able to build faster and more cost-effectively using Supabase's open source stack. + + + We looked at the alternatives and chose Supabase because it's open source, it's simpler, and, for + all the ways we need to use it, Supabase has been just as performant - if not more performant - + than the other vector databases. + + +To learn more about how Supabase Vector can help you store vector embeddings at scale and build AI apps with ease, [reach out to us](https://forms.supabase.com/enterprise). + +## Tech stack + +- React +- Vercel +- Next.js +- Express +- Supabase diff --git a/apps/www/_customers/mendableai.mdx b/apps/www/_customers/mendableai.mdx deleted file mode 100644 index eaa1d4bf91d51..0000000000000 --- a/apps/www/_customers/mendableai.mdx +++ /dev/null @@ -1,78 +0,0 @@ ---- -name: Mendable -title: Mendable switches from Pinecone to Supabase Vector for PostgreSQL vector embeddings. -# Use meta_title to add a custom meta title. Otherwise it defaults to '{name} | Supabase Customer Stories': -meta_title: Mendable switches from Pinecone to Supabase Vector for PostgreSQL vector embeddings. -description: How Mendable boosts efficiency and accuracy of chat powered search for documentation using Supabase Vector. -# Use meta_description to add a custom meta description. Otherwise it defaults to {description}: -meta_description: How Mendable boosts efficiency and accuracy of chat powered search for documentation using Supabase Vector. -author: paul_copplestone -author_title: Supabase -author_url: https://github.com/kiwicopple -author_image_url: https://avatars2.githubusercontent.com/u/10214025?s=400&u=c6775be2ae667e2acae3ccd347fed62bb3f5b3e7&v=4 -logo: /images/customers/logos/mendableai.png -logo_inverse: /images/customers/logos/light/mendableai.png -og_image: /images/customers/og/mendable.jpg -tags: - - supabase -date: '2023-05-05' -company_url: 'https://mendable.ai/' -stats: - [ - { stat: '00,000', label: Example stat }, - { stat: '00,000', label: Example stat }, - { stat: '00,000', label: Example stat }, - ] -misc: [{ label: 'Backed by', text: 'Y Combinator' }] -about: Mendable is Chat Powered Search for Documentation. -# "healthcare" | "fintech" | "ecommerce" | "education" | "gaming" | "media" | "real-estate" | "saas" | "social" | "analytics" | "ai" | "developer-tools" -industry: ['ai', 'saas', 'developer-tools'] -# "startup" | "enterprise" | "indie_dev" -company_size: 'startup' -# "Asia" | "Europe" | "North America" | "South America" | "Africa" | "Oceania" -region: 'North America' -# "database" | "auth" | "storage" | "realtime" | "functions" | "vector" -supabase_products: ['database', 'vector'] ---- - -[Mendable](http://mendable.ai/) provides a chat-powered search engine for technical documentation. Their AI-powered search tool makes it easier for developers and other technical users to find relevant information in complex documentation. Users can simply ask questions in natural language, and the tool returns the most relevant answers. Mendable's search engine also provides detailed analytics, which helps teams identify knowledge gaps and areas for improvement in their documentation. Mendable has integrated with some of the largest open source projects in the space such as LangChain and LlamaIndex. - -## The Challenge - -Mendable was experiencing tremendous success, growing Weekly Active Users by nearly 300% since March. They needed a tool to store and search through large amounts of vector data to improve the efficiency and accuracy of their similarity search operations. They tried Faiss, Weaviate, and Pinecone, but found them to be expensive and not very intuitive, especially when it came to storing metadata along with the vectors. - -## Why they chose Supabase - -Mendable lear that Supabase supports [pgvector](https://supabase.com/docs/guides/database/extensions/pgvector) and found it to be a simple and cost-effective solution. They were impressed with the open source nature of Supabase, as well as its ability to store metadata alongside the vectors. They also appreciated the intuitive interface and ease of use. - - - We tried other vector databases - we tried Faiss, we tried Weaviate, we tried Pinecone. We found - them to be incredibly expensive and not very intuitive. If you're just doing vector search they're - great, but if you need to store a bunch of metadata that becomes a huge pain. - - -## What They Built - -Using [Supabase Vector](https://supabase.com/vector), Mendable was able to build a more efficient and accurate search function for their AI chatbot. By storing vector data alongside metadata in Supabase, Mendable was able to quickly and easily search through their customers documentation to find the most relevant responses to queries. They found that Supabase's solution was just as performant as dedicated vector databases, but without the high cost. - -![Mendable - build AI chat search applications](/images/customers/mendable/mendable.png) - -## The Results - -Thanks to Supabase Vector, Mendable was able to significantly improve the efficiency and accuracy of their Chat Powered Search for Documentation. They were able to build faster and more cost-effectively using Supabase's open source stack. - - - We looked at the alternatives and chose Supabase because it's open source, it's simpler, and, for - all the ways we need to use it, Supabase has been just as performant - if not more performant - - than the other vector databases. - - -To learn more about how Supabase Vector can help you store vector embeddings at scale and build AI apps with ease, [reach out to us](https://forms.supabase.com/enterprise). - -## Tech stack - -- React -- Vercel -- Next.js -- Express -- Supabase diff --git a/apps/www/components/Sections/CommunitySlider.tsx b/apps/www/components/Sections/CommunitySlider.tsx index afdd7bb49c0ab..94bf42357bc6c 100644 --- a/apps/www/components/Sections/CommunitySlider.tsx +++ b/apps/www/components/Sections/CommunitySlider.tsx @@ -46,21 +46,21 @@ const cards: CardInterface[] = [ role: 'Co-Founder, Markprompt', quote: 'We decided to use Supabase over other specialized vector databases because it enabled us to be GDPR compliant from day one with little effort.', - image: vectorImagesDir + 'supabase+mendable.svg', + image: vectorImagesDir + 'supabase+firecrawl.svg', abstract: 'Markprompt and Supabase - GDPR-Compliant AI Chatbots for Docs and Websites.', url: '/customers/markprompt', }, { type: 'customer-story', avatar: '', - customer: 'Mendable', + customer: 'Firecrawl', author: 'Caleb Peffer', - role: 'CEO, Mendable', + role: 'CEO, Firecrawl', quote: 'We tried other vector databases - we tried Faiss, we tried Weaviate, we tried Pinecone. We found them to be incredibly expensive and not very intuitive. If you’re just doing vector search they’re great, but if you need to store a bunch of metadata that becomes a huge pain.', image: vectorImagesDir + 'supabase+markprompt.svg', - abstract: 'Mendable switches from Pinecone to Supabase for PostgreSQL vector embeddings.', - url: '/customers/mendable', + abstract: 'Firecrawl switches from Pinecone to Supabase for PostgreSQL vector embeddings.', + url: '/customers/firecrawl', }, { type: 'twitter', diff --git a/apps/www/data/CustomerStories.ts b/apps/www/data/CustomerStories.ts index cd6808f8cc099..b12e56ac87810 100644 --- a/apps/www/data/CustomerStories.ts +++ b/apps/www/data/CustomerStories.ts @@ -305,15 +305,15 @@ export const data: CustomerStoryType[] = [ }, { type: 'Customer Story', - title: 'Mendable.ai switches from Pinecone to Supabase for PostgreSQL vector embeddings', + title: 'Firecrawl switches from Pinecone to Supabase for PostgreSQL vector embeddings', description: - 'How Mendable.ai boosts efficiency and accuracy of chat powered search for documentation using Supabase with pg_vector', - imgUrl: 'images/customers/logos/mendableai.png', - logo: '/images/customers/logos/mendableai.png', - logo_inverse: '/images/customers/logos/light/mendableai.png', - organization: 'Mendable.ai', - url: '/customers/mendableai', - path: '/customers/mendableai', + 'How Firecrawl boosts efficiency and accuracy of chat powered search for documentation using Supabase with pg_vector', + imgUrl: 'images/customers/logos/firecrawl.png', + logo: '/images/customers/logos/firecrawl.png', + logo_inverse: '/images/customers/logos/light/firecrawl.png', + organization: 'Firecrawl.dev', + url: '/customers/firecrawl', + path: '/customers/firecrawl', postMeta: { name: 'Paul Copplestone', avatarUrl: 'https://avatars0.githubusercontent.com/u/10214025?v=4', diff --git a/apps/www/data/ga.tsx b/apps/www/data/ga.tsx index 95fbbaf7c4368..981bb567bb544 100644 --- a/apps/www/data/ga.tsx +++ b/apps/www/data/ga.tsx @@ -176,7 +176,7 @@ In the past year, we've had 12 companies start on Supabase and grow from zero to ![top user growth over time by days after launch](/images/ga/project-user-growth--dark.svg?v=3) -Most of these were AI companies, like Udio, Krea, Humata, Chatbase, Pika, Quivr, Mendable, Markprompt and [MDN search](https://developer.mozilla.org/en-US/blog/introducing-ai-help/) by Mozilla. +Most of these were AI companies, like Udio, Krea, Humata, Chatbase, Pika, Quivr, Firecrawl, Markprompt and [MDN search](https://developer.mozilla.org/en-US/blog/introducing-ai-help/) by Mozilla. Postgres has been instrumental in our scalability and adoption. It's versatility is best demonstrated by pgvector: we were the first cloud provider to offer it, and today 15% of all new Supabase projects use pgvector for AI and ML workloads. Look out for a few related announcements this week. `, diff --git a/apps/www/data/products/modules/vector.tsx b/apps/www/data/products/modules/vector.tsx index 708c49b50449c..47a3e5896fe4a 100644 --- a/apps/www/data/products/modules/vector.tsx +++ b/apps/www/data/products/modules/vector.tsx @@ -319,14 +319,14 @@ docs.query( { type: 'customer-story', avatar: '', - customer: 'mendableai', + customer: 'firecrawl', author: 'Caleb Peffer', - role: 'CEO at Mendable', + role: 'CEO at Firecrawl', quote: 'We tried other vector databases - we tried Faiss, we tried Weaviate, we tried Pinecone. If you’re just doing vector search they’re great, but if you need to store a bunch of metadata that becomes a huge pain.', - image: '/images/customers/logos/mendableai.png', - abstract: 'Mendable switches from Pinecone to Supabase for PostgreSQL vector embeddings.', - url: '/customers/mendableai', + image: '/images/customers/logos/firecrawl.png', + abstract: 'Firecrawl switches from Pinecone to Supabase for PostgreSQL vector embeddings.', + url: '/customers/firecrawl', }, ], }, diff --git a/apps/www/lib/redirects.js b/apps/www/lib/redirects.js index a75ed33b34ff8..8950029f0432a 100644 --- a/apps/www/lib/redirects.js +++ b/apps/www/lib/redirects.js @@ -2125,6 +2125,11 @@ module.exports = [ source: '/blog/case-study-happyteams', destination: '/customers/happyteams', }, + { + permanent: true, + source: '/customers/mendableai', + destination: '/customers/firecrawl', + }, { permanent: true, source: '/docs/guides/auth/auth-helpers/nextjs-server-components', diff --git a/apps/www/public/customers-rss.xml b/apps/www/public/customers-rss.xml index dc9f05f5e7f5e..2c776ae03103e 100644 --- a/apps/www/public/customers-rss.xml +++ b/apps/www/public/customers-rss.xml @@ -162,10 +162,10 @@ Wed, 17 May 2023 00:00:00 -0700 - https://supabase.com/customers/mendableai - Mendable switches from Pinecone to Supabase Vector for PostgreSQL vector embeddings. - https://supabase.com/customers/mendableai - How Mendable boosts efficiency and accuracy of chat powered search for documentation using Supabase Vector. + https://supabase.com/customers/firecrawl + Firecrawl switches from Pinecone to Supabase Vector for PostgreSQL vector embeddings. + https://supabase.com/customers/firecrawl + How Firecrawl boosts efficiency and accuracy of chat powered search for documentation using Supabase Vector. Fri, 05 May 2023 00:00:00 -0700 diff --git a/apps/www/public/images/blog/2023-05-09-beta-update-april/customer-stories-mendable.png b/apps/www/public/images/blog/2023-05-09-beta-update-april/customer-stories-firecrawl.png similarity index 100% rename from apps/www/public/images/blog/2023-05-09-beta-update-april/customer-stories-mendable.png rename to apps/www/public/images/blog/2023-05-09-beta-update-april/customer-stories-firecrawl.png diff --git a/apps/www/public/images/customers/mendable/mendable.png b/apps/www/public/images/customers/firecrawl/firecrawl.png similarity index 100% rename from apps/www/public/images/customers/mendable/mendable.png rename to apps/www/public/images/customers/firecrawl/firecrawl.png diff --git a/apps/www/public/images/customers/logos/firecrawl.png b/apps/www/public/images/customers/logos/firecrawl.png new file mode 100644 index 0000000000000000000000000000000000000000..76fe6c6b08ae0019904bc0ed163fb15772f98ccd GIT binary patch literal 4544 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 WIZY6DM(i8G3ZSj7_qbBkI{5zx+cZT0 literal 0 HcmV?d00001 diff --git a/apps/www/public/images/customers/logos/light/mendableai.png b/apps/www/public/images/customers/logos/light/mendableai.png deleted file mode 100644 index 382d48b3d47eedcb72f68e10ba2c2eb7131b627d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8974 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 diff --git a/apps/www/public/images/customers/logos/mendeable.png b/apps/www/public/images/customers/logos/mendeable.png deleted file mode 100644 index f58e086630d06130fa4e31d21b7b8be25a8cb802..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6376 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 diff --git a/apps/www/public/images/product/vector/community/supabase+firecrawl.svg b/apps/www/public/images/product/vector/community/supabase+firecrawl.svg new file mode 100644 index 0000000000000..bb8caa1821be2 --- /dev/null +++ b/apps/www/public/images/product/vector/community/supabase+firecrawl.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/www/public/images/product/vector/community/supabase+mendable.svg b/apps/www/public/images/product/vector/community/supabase+mendable.svg deleted file mode 100644 index f611cc3ddec14..0000000000000 --- a/apps/www/public/images/product/vector/community/supabase+mendable.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/www/public/sitemap_www.xml b/apps/www/public/sitemap_www.xml index 6f39590a7cc42..0d54ecc08960a 100644 --- a/apps/www/public/sitemap_www.xml +++ b/apps/www/public/sitemap_www.xml @@ -2229,7 +2229,7 @@ - https://supabase.com/customers/mendableai + https://supabase.com/customers/firecrawl weekly 0.5 From e4e65b9979ae95e982903279cba8a6789ca7d8ec Mon Sep 17 00:00:00 2001 From: Terry Sutton Date: Mon, 15 Sep 2025 11:46:02 -0230 Subject: [PATCH 13/17] Fix frameworks error (#38710) --- apps/studio/components/interfaces/Connect/Connect.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/studio/components/interfaces/Connect/Connect.tsx b/apps/studio/components/interfaces/Connect/Connect.tsx index 93083518fb51f..6ebdba355efc4 100644 --- a/apps/studio/components/interfaces/Connect/Connect.tsx +++ b/apps/studio/components/interfaces/Connect/Connect.tsx @@ -69,7 +69,7 @@ export const Connect = () => { parseAsBoolean.withDefault(false) ) - // helper to get tthe connection type object + // helper to get the connection type object function getConnectionObjectForTab(tab: string | null, frameworks: ConnectionType[]) { switch (tab) { case 'frameworks': @@ -259,7 +259,7 @@ export const Connect = () => { useEffect(() => { if (!showConnect) return - const newConnectionObject = getConnectionObjectForTab(tab, frameworks) + const newConnectionObject = getConnectionObjectForTab(tab, FRAMEWORKS) setConnectionObject(newConnectionObject) const parent = @@ -285,7 +285,7 @@ export const Connect = () => { if (queryWith) { if (grandchild?.key !== queryWith) setQueryWith(grandchild?.key ?? null) } - }, [showConnect, tab, frameworks, queryFramework, queryUsing, queryWith]) + }, [showConnect, tab, FRAMEWORKS, queryFramework, queryUsing, queryWith]) if (!isActiveHealthy) { return ( @@ -429,7 +429,7 @@ export const Connect = () => { className="border border-t-0 rounded-lg rounded-t-none" title="New API keys coming 2025" description={` -\`anon\` and \`service_role\` API keys will be changing to \`publishable\` and \`secret\` API keys. +\`anon\` and \`service_role\` API keys will be changing to \`publishable\` and \`secret\` API keys. `} href="https://github.com/orgs/supabase/discussions/29260" buttonText="Read the announcement" From ec66608c25d6287a2bb6c342fda15c3b73c203da Mon Sep 17 00:00:00 2001 From: Etienne Stalmans Date: Mon, 15 Sep 2025 16:26:05 +0200 Subject: [PATCH 14/17] chore: stricter action config for labeler (#38708) * chore: stricter action config for labeler * chore: checkout not needed --- .github/workflows/label_prs.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/label_prs.yml b/.github/workflows/label_prs.yml index 13c4f868a8e97..36f4ec2dc9064 100644 --- a/.github/workflows/label_prs.yml +++ b/.github/workflows/label_prs.yml @@ -1,6 +1,10 @@ name: 'Pull Request Labeler' + +# only docs uses the labeler at the moment on: - - pull_request_target + pull_request_target: + paths: + - 'apps/docs/**/*' jobs: labeler: @@ -9,5 +13,4 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - uses: actions/labeler@v6 From e96c06fe2da74d9351a383c554e79f0f6d6216e5 Mon Sep 17 00:00:00 2001 From: Prashant Sridharan <914007+CoolAssPuppy@users.noreply.github.com> Date: Mon, 15 Sep 2025 15:26:45 +0100 Subject: [PATCH 15/17] Added a new case study and blog post. (#38645) * Added a new case study and blog post. * ci: Autofix updates from GitHub workflow * fix yaml * fix logos * fix images temporarily --------- Co-authored-by: Danny White <3104761+dnywh@users.noreply.github.com> --- ...cessing-large-jobs-with-edge-functions.mdx | 402 ++++++++++++++++++ apps/www/_customers/juniver.mdx | 110 +++++ apps/www/data/CustomerStories.ts | 12 + apps/www/public/customers-rss.xml | 7 + .../og-temp.png | Bin 0 -> 959 bytes .../three-layer-pattern-temp-diagram.png | Bin 0 -> 41797 bytes .../blog/avatars/nick-farrant-juniver.jpg | Bin 0 -> 89143 bytes .../public/images/customers/logos/juniver.png | Bin 0 -> 9481 bytes .../images/customers/logos/light/juniver.png | Bin 0 -> 7042 bytes apps/www/public/sitemap_www.xml | 6 + 10 files changed, 537 insertions(+) create mode 100644 apps/www/_blog/2025-09-12-processing-large-jobs-with-edge-functions.mdx create mode 100644 apps/www/_customers/juniver.mdx create mode 100644 apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/og-temp.png create mode 100644 apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/three-layer-pattern-temp-diagram.png create mode 100644 apps/www/public/images/blog/avatars/nick-farrant-juniver.jpg create mode 100644 apps/www/public/images/customers/logos/juniver.png create mode 100644 apps/www/public/images/customers/logos/light/juniver.png diff --git a/apps/www/_blog/2025-09-12-processing-large-jobs-with-edge-functions.mdx b/apps/www/_blog/2025-09-12-processing-large-jobs-with-edge-functions.mdx new file mode 100644 index 0000000000000..0c4253c0a519d --- /dev/null +++ b/apps/www/_blog/2025-09-12-processing-large-jobs-with-edge-functions.mdx @@ -0,0 +1,402 @@ +--- +title: Processing large jobs with Edge Functions, Cron, and Queues +description: Learn how to build scalable data processing pipelines using Supabase Edge Functions, cron jobs, and database queues and handle large workloads without timeouts or crashes. +author: prashant +image: 2025-09-processing-large-jobs-with-edge-functions/og-temp.png +thumb: 2025-09-processing-large-jobs-with-edge-functions/og-temp.png +categories: + - postgres + - edge functions + - cron + - queues +date: 2025-09-12:08:00 +toc_depth: 2 +--- + +When you're building applications that process large amounts of data, you quickly run into a fundamental problem: trying to do everything at once leads to timeouts, crashes, and frustrated users. The solution isn't to buy bigger servers. It's to break big jobs into small, manageable pieces. + +Supabase gives you three tools that work beautifully together for this: [Edge Functions](/edge-functions) for serverless compute, [Cron](/modules/cron) for scheduling, and database [queues](/modules/queues) for reliable job processing. + +Here's how to use them to build a system that can handle serious scale. + +## The three-layer pattern + +The architecture is simple but powerful. Think of it like an assembly line: + +**Collection**: Cron jobs run Edge Functions that discover work and add tasks to queues + +**Distribution**: Other cron jobs route tasks from main queues to specialized processing queues + +**Processing**: Specialized workers handle specific types of tasks from their assigned queues + +A diagram of the three-layer pattern described above + +This breaks apart the complexity. Instead of one giant function that scrapes websites, processes content with AI, and stores everything, you have focused functions that each do one thing well. + +## Real example: Building an NFL news aggregator + +Let's say you want to build a dashboard that tracks NFL (American football) news from multiple sources including NFL-related websites and NFL-related videos on YouTube, automatically tags articles by topic, and lets users search by player or team. When they see an article they’re interested in, they can click on it and visit the website that hosts the article. It’s like a dedicated Twitter feed for the NFL without any of the toxicity. + +This sounds straightforward, but at scale this becomes complex fast. You need to monitor dozens of news sites, process hundreds of articles daily, make API calls to OpenAI for content analysis, generate vector embeddings for search, and store everything efficiently. Do this wrong and a single broken webpage crashes your entire pipeline. + +We need to build a more resilient approach. With Supabase Edge Functions, Cron, and Queues, we have the building blocks for a robust content extraction and categorization pipeline. + +## Setting up the foundation + +Everything starts with the [database](/database), and Supabase is Postgres at its core. We know what we’re getting: scalable, dependable, and standard. + +The database design for the application follows a clean pattern. You have content tables for storing articles and videos, queue tables for managing work, entity tables for NFL players and teams, and relationship tables linking everything together. For example: + +```sql +create table articles ( + url text unique not null, + headline text, + content text, + embedding vector(1536) +); +``` + +## Collection: Finding new content + +The collection layer seeks out new NFL-related content and runs on a schedule to discover new articles and videos. We create a collector for every site we want to search. A cron job triggers every 30 minutes to begin collection: + +```sql +SELECT cron.schedule( + 'nfl-collector', + '*/30 * * * *', + $$SELECT net.http_post(url := '[https://your-project.supabase.co/functions/v1/collect-content')$$](https://your-project.supabase.co/functions/v1/collect-content')$$) +); +``` + +The Edge Function does the actual scraping. The trick is being selective about what you collect: + +```tsx +function isRelevantArticle(url: string): boolean { + return url.includes('/news/') && !url.includes('/video/') +} +``` + +This simple filter prevents collecting promotional content or videos. You only want actual news articles. + +When parsing HTML, you need to handle relative URLs properly: + +```tsx +if (href.startsWith('/')) { + href = BASE_URL + href +} +``` + +And always deduplicate within a single scraping session: + +```tsx +const seen = new Set() +if (!seen.has(href)) { + seen.add(href) + articles.push({ url: href, site: 'nfl' }) +} +``` + +For database insertion, let the database handle duplicates rather than checking in your application: + +```tsx +const { error } = await supabase.from('articles').insert({ url, site }) +if (error && !error.message.includes('duplicate')) { + console.error(`Error inserting: ${url}`, error) +} +``` + +This approach is more reliable than complex application-level deduplication logic. + +## Distribution: Smart routing + +The distribution layer identifies articles that need processing and routes them to appropriate queues. The key insight is using separate queue tables for different content sources. [NFL.com](http://NFL.com) articles need different parsing than ESPN articles, so they get routed to specialized processors. It runs more frequently than collection: every 5 minutes: + +```sql +SELECT cron.schedule( + 'distributor', + '*/5 * * * *', + $$SELECT net.http_post(url := '[https://your-project.supabase.co/functions/v1/distribute-work')$$](https://your-project.supabase.co/functions/v1/distribute-work')$$) +); +``` + +The Edge Function finds unprocessed articles using a simple SQL query: + +```tsx +const { data } = await supabase + .from('articles') + .select('url, site') + .is('headline', null) // Missing headline means unprocessed + .limit(50) +``` + +Then it routes based on the source site: + +```tsx +if ([article.site](http://article.site) === "nfl") { + await supabase.from("nfl_queue").insert({ url: article.url }); +} else if ([article.site](http://article.site) === "espn") { + await supabase.from("espn_queue").insert({ url: article.url }); +} +``` + +This separation is crucial because each site has different HTML structures and parsing requirements. + +## Processing: The heavy lifting + +Each content source gets its own processor that runs on its own schedule. [NFL.com](http://NFL.com) gets processed every 15 seconds because it's high-priority: + +```sql +SELECT cron.schedule( + 'nfl-processor', + '*/15 * * * *', + $$SELECT net.http_post(url := '[https://your-project.supabase.co/functions/v1/process-nfl')$$](https://your-project.supabase.co/functions/v1/process-nfl')$$) +); +``` + +The processor handles one article at a time to stay within Edge Function timeout limits: + +```tsx +const { data } = await supabase + .from('nfl_queue') + .select('id, url') + .eq('processed', false) + .order('created_at') + .limit(1) +``` + +Content extraction requires site-specific CSS selectors: + +```tsx +const headline = $('h1').first().text().trim() +const content = $('.article-body').text().trim() || $('article').text().trim() +``` + +Date parsing often needs custom logic for each site's format: + +```tsx +const dateText = $('.publish-date').text() +const match = dateText.match(/(\w+ \d+, \d{4})/) +if (match) { + publication_date = new Date(match[1]) +} +``` + +After scraping, the article gets analyzed with AI to extract entities: + +```tsx +const result = await classifyArticle(headline, content) +const playerIds = await upsertPlayers(supabase, result.players) +const teamIds = await upsertTeams(supabase, result.teams) +``` + +Finally, create the relationships and generate embeddings: + +```tsx +await supabase.from("article_players").insert( + [playerIds.map](http://playerIds.map)(id => ({ article_url: url, player_id: id })) +); + +const embedding = await generateEmbedding(`${headline}\n${content}`); +await supabase.from("articles").update({ embedding }).eq("url", url); +``` + +The critical pattern is the finally block. We use it to always mark queue items as processed, preventing infinite loops when articles fail to process: + +```tsx +try { + // Process article +} finally { + await supabase.from("nfl_queue") + .update({ processed: true }) + .eq("id", [item.id](http://item.id)); +} +``` + +### Monitoring with Sentry + +While the finally block prevents infinite loops, you still need visibility into what's actually failing. Sentry integration gives you detailed error tracking for your Edge Functions. + +First, set up Sentry in your Edge Function: + +```jsx +import { captureException, init } from 'https://deno.land/x/sentry/index.js' + +init({ + dsn: Deno.env.get('SENTRY_DSN'), + environment: Deno.env.get('ENVIRONMENT') || 'production', +}) +``` + +Then wrap your processing logic with proper error capture: + +```jsx +try { + const content = await scrapeArticle(url); + const analysis = await classifyArticle(headline, content); + await storeArticle(article, analysis); +} catch (error) { + *// Capture the full context for debugging* + captureException(error, { + tags: { + function: "nfl-processor", + site: article.site + }, + extra: { + url: article.url, + queueId: queueItem.id + } + }); + console.error(`Failed to process ${url}:`, error); +} finally { + await supabase.from("nfl_queue") + .update({ processed: true }) + .eq("id", queueItem.id); +} +``` + +This gives you real-time alerts when processors fail and detailed context for debugging production issues. + +## Processing user interactions through the pipeline + +The same pipeline pattern works for user-generated events. When someone clicks, shares, or saves an article, you don't want to block their response while updating trending scores for every player and team mentioned in that article. + +Instead, treat interactions like any other job to be processed: + +```tsx +// Just record the interaction quickly +await supabase.from('interaction_queue').insert({ + article_url: url, + user_id: userId, + interaction_type: 'share', +}) +``` + +Then let a separate cron job process the trending updates in batches: + +```sql +SELECT cron.schedule( + 'process-interactions', + '*/2 * * * *', -- Every 2 minutes + $$SELECT net.http_post(url := '[https://your-project.supabase.co/functions/v1/process-interactions')$$](https://your-project.supabase.co/functions/v1/process-interactions')$$) +); +``` + +The processor can handle multiple interactions efficiently: + +```tsx +const { data: interactions } = await supabase + .from('interaction_queue') + .select('*') + .eq('processed', false) + .limit(100) +``` + +This keeps your user interface snappy while ensuring trending scores get updated reliably. If the trending processor goes down, interactions are safely queued and will be processed when it recovers. + +## AI-powered content scoring + +To surface the most important content automatically, use AI to analyze article context and assign importance scores. + +Define scores for different news types: + +```tsx +const CONTEXT_SCORES = { + championship: 9, + trade: 6, + injury: 4, + practice: 1, +} +``` + +Prompt OpenAI with structured output: + +```tsx +const prompt = `Analyze this headline: "${headline}" +Return JSON: {"context": "trade|injury|etc", "score": 1-9}`; + +const result = await [openai.chat](http://openai.chat).completions.create({ + model: "gpt-3.5-turbo", + response_format: { type: "json_object" } +}); +``` + +Process articles in batches to manage API costs: + +```tsx +const unprocessed = articles.filter((a) => !processedUrls.has(a.url)).slice(0, 10) + +for (const article of unprocessed) { + const analysis = await analyzeArticle(article) + await storeAnalysis(article.url, analysis) +} +``` + +## Background tasks for expensive operations + +Some operations are too expensive to run synchronously, even in your cron-triggered processors. Vector embedding generation and bulk AI analysis benefit from background task patterns. + +Edge Functions support background tasks that continue processing after the main response completes: + +typescript + +```jsx +*// In your article processor* +const article = await scrapeAndStore(url); + +*// Start expensive operations in background* +const backgroundTasks = [ + generateEmbedding(article), + analyzeWithAI(article), + updateRelatedContent(article) +]; + +*// Run background tasks without blocking the main flow* +Promise.all(backgroundTasks).catch(error => { + captureException(error, { + tags: { operation: "background-tasks" }, + extra: { articleUrl: url } + }); +}); + +*// Main processing continues immediately* +await markAsProcessed(queueItem.id); +``` + +For operations that might take longer than Edge Function limits, break them into smaller background chunks: + +typescript + +```jsx +async function generateEmbeddingInBackground(article: Article) { + *// Process content in chunks* + const chunks = splitIntoChunks(article.content, 1000); + + for (const chunk of chunks) { + await new Promise(resolve => { + *// Use background task for each chunk* + setTimeout(async () => { + const embedding = await generateEmbedding(chunk); + await storeEmbedding(article.id, embedding); + resolve(void 0); + }, 0); + }); + } +} +``` + +This pattern keeps your main processing pipeline fast while ensuring expensive operations complete reliably. + +## Why this works + +This pattern succeeds because it embraces the constraints of serverless computing rather than fighting them. Edge Functions have time limits, so you process one item at a time. External APIs have rate limits, so you control timing with cron schedules. Failures happen, so you isolate them to individual tasks. + +The result is a system that scales horizontally by adding more cron jobs and queues. Each component can fail independently without bringing down the whole pipeline. Users get fresh content as it becomes available rather than waiting for batch jobs to complete. + +Most importantly, it's built entirely with Supabase primitives - no external queue systems or job schedulers required. You get enterprise-grade reliability with startup simplicity. diff --git a/apps/www/_customers/juniver.mdx b/apps/www/_customers/juniver.mdx new file mode 100644 index 0000000000000..aa19fbf1f9854 --- /dev/null +++ b/apps/www/_customers/juniver.mdx @@ -0,0 +1,110 @@ +--- +name: Juniver +title: 'Juniver built a self-serve B2B platform with Supabase to scale eating disorder recovery' +# Use meta_title to add a custom meta title. Otherwise it defaults to '{name} | Supabase Customer Stories': +# meta_title: +description: Juniver switched from Firebase to Supabase and saw immediate improvements in developer experience and performance. +# Use meta_description to add a custom meta description. Otherwise it defaults to {description}: +meta_description: Juniver switched from Firebase to Supabase and saw immediate improvements in developer experience and performance. +author: prashant +author_title: Prashant Sridharan +author_url: https://github.com/CoolAssPuppy +author_image_url: https://avatars.githubusercontent.com/u/914007?v=4 +logo: /images/customers/logos/juniver.png +logo_inverse: /images/customers/logos/light/juniver.png +og_image: /images/customers/og/juniver.jpg +tags: + - supabase +date: '2025-01-15' +company_url: https://www.joinjuniver.com +misc: [{ label: 'Founded', text: 'United Kingdom' }] +about: Science-based recovery program for disordered eating +# "healthcare" | "fintech" | "ecommerce" | "education" | "gaming" | "media" | "real-estate" | "saas" | "social" | "analytics" | "ai" | "developer-tools" +industry: ['healthcare', 'ai', 'saas'] +# "startup" | "enterprise" | "indie_dev" +company_size: 'startup' +# "Asia" | "Europe" | "North America" | "South America" | "Africa" | "Oceania" +region: 'Europe' +# "database" | "auth" | "storage" | "realtime" | "functions" | "vector" +supabase_products: ['database', 'auth', 'functions'] +--- + + + For me, the biggest benefit of Supabase is developer experience. My expertise doesn't lie in + databases and infrastructure. It really didn't take much time at all to spin up this product with + Supabase. + + +[Juniver](https://www.joinjuniver.com/) is an iOS app that guides people through recovery from eating disorders and disordered eating. The product combines an AI recovery coach, a thoroughly researched curriculum, and self-serve tools designed for moments of need. Juniver is expanding from B2C into B2B2C, licensing its platform to clinics and clinicians who then offer it to patients. + +## The challenge + +Juniver needed to evolve its backend to support a new B2B2C product, without risking the stability of its consumer app. + +- Launch a self-serve, automated, scalable platform for clinics and clinicians +- Enforce strict privacy and access controls across clinics, clinicians, patients, and licenses +- Integrate tightly with Stripe and webhooks to automate onboarding and license provisioning +- Move quickly with a lean team, choosing tools that won't have to be replaced in a few years + +They also faced significant friction with their previous Firebase setup: + +- Document-based storage made data relationships difficult to manage +- Manual relationship handling slowed development +- Limited scalability for complex B2B requirements +- Developer productivity was constrained by Firebase's limitations + + + Time is such a big currency in startup world. With Firebase, we were really struggling with + relationships within our data. It was all done very manually, as you can expect with + document-based storage. Supabase is a relational database and it's much easier and we can move + faster. + + +## Choosing Supabase + +Juniver had long run on Google Cloud with Firebase for the mobile app. The new B2B product created a clean slate to evaluate alternatives and set a foundation for future scale. Supabase offered a relational core (Postgres) and an integrated developer experience that aligned with Juniver's needs now and later. + +**Why Supabase** + +- A relational database (Postgres) to model clean, maintainable relationships +- Integrated developer experience: visual Table Editor with inline SQL, clear logs, SDKs +- Strong security posture with Row Level Security, plus an easy way to "view as user" to validate policies +- Built-in primitives (Auth, Functions) to save time and build with best-of-breed products + + + The Supabase developer experience is so clear. I've got everything at my fingertips. I'm in the + Table Editor. The SQL editor is literally right below the table editor. The feature you have to + see the table from a different user's perspective to test your Row Level Security is a wonderful + little feature that I use all the time. + + +## The approach + +Juniver used the B2B product as a greenfield build on Supabase, avoiding risky dependencies on the legacy Firebase data while preparing for an eventual B2C migration. + +- **Getting started** + - Spun up a new Supabase project and schema for clinics, clinicians, patients, and licenses + - Leaned on documentation and the iOS SDK to accelerate the build +- **Implementation highlights** + - **Database (Postgres):** Relational schema with strict Row Level Security; frequent use of "view as user" to validate policies + - **Auth & OAuth:** Managing identities for clinics and patients with fine-grained access + - **Webhooks + Edge Functions:** Stripe purchase triggers an automated sequence to authenticate partners, provision license codes, and send emails + - **Operational visibility:** Edge Function logs and an integrated console for fast debugging and iteration + + + You have to expect, plan, and build for scale. We can scale exponentially with Supabase. + + +## The results + +Juniver's B2B platform is out in the wild and early in adoption, but the team is already seeing meaningful wins in developer experience and delivery speed. + +- Rapidly build-out of a self-serve, automated B2B platform using out-of-the-box Supabase features +- Faster iteration through an integrated UI, inline SQL, clear logs, and RLS policy testing +- A relational foundation that supports today's B2B needs and tomorrow's B2C migration +- Streamlined development process with Supabase's integrated tooling + + + My advice to developers thinking of moving to Supabase: Try it, it's free. Replicate your project. + You'll see how much easier it is to think about your data from a relational point of view. + diff --git a/apps/www/data/CustomerStories.ts b/apps/www/data/CustomerStories.ts index b12e56ac87810..063854d9d2a70 100644 --- a/apps/www/data/CustomerStories.ts +++ b/apps/www/data/CustomerStories.ts @@ -18,6 +18,18 @@ export type CustomerStoryType = { } export const data: CustomerStoryType[] = [ + { + type: 'Customer Story', + title: + 'Juniver built automated B2B workflows with Supabase Edge Functions and Row Level Security', + description: + 'Juniver switched from Firebase to Supabase and saw immediate improvements in developer experience and performance.', + organization: 'Juniver', + imgUrl: 'images/customers/logos/juniver.png', + logo: '/images/customers/logos/juniver.png', + logo_inverse: '/images/customers/logos/light/juniver.png', + url: '/customers/juniver', + }, { type: 'Customer Story', title: 'Kayhan Space saw 8x improvement in developer speed when moving to Supabase', diff --git a/apps/www/public/customers-rss.xml b/apps/www/public/customers-rss.xml index 2c776ae03103e..57ff2acef841c 100644 --- a/apps/www/public/customers-rss.xml +++ b/apps/www/public/customers-rss.xml @@ -70,6 +70,13 @@ Scaling seamlessly to 5,000+ paying customers & millions of emails sent daily with Supabase Fri, 21 Feb 2025 00:00:00 -0700 + + https://supabase.com/customers/juniver + Juniver built a self-serve B2B platform with Supabase to scale eating disorder recovery + https://supabase.com/customers/juniver + Juniver switched from Firebase to Supabase and saw immediate improvements in developer experience and performance. + Wed, 15 Jan 2025 00:00:00 -0700 + https://supabase.com/customers/e2b E2B: Accelerating AI-Driven Development with Supabase diff --git a/apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/og-temp.png b/apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/og-temp.png new file mode 100644 index 0000000000000000000000000000000000000000..1d7504001aa33b14d5d0d47334d01d8c1f75c379 GIT binary patch literal 959 zcmeAS@N?(olHy`uVBq!ia0y~yU|Gh%z^uT;3=~PRYqA4UJOMr-u0Z9Uf!!MadJ~ST-=$L4oo?osxoS$f zsM6&iGcA|AC0@C)4Ifu|i_S7#8R8KhyXuV7D#6w7#7vAdgL)%MS1O%WyP7U}DRjEl zr72o`i6Dm2^sFE6>i1t4qDk+;VPJySi57;wt|oTspV1 z{Z|!SHP2nuDZI}c)t4n>+%a$E9V%_ ziT?WSG}q_tE9bO-o3(!*!Xc{x}AiB2#6TK7Kv?kav; z-SVKTeBI~c8r$q)V|1J4`Tx}h3*WDI zSGlV#tyb0>UEP4zcJ8$QZlg9ev_E)l zs)x_oUo%3qmaJS;mG*K&g$vNtANAiKTOy>mmqAwS`1S>1wjn^>f2Ywr?E)=m;C~~( X=D5h^>bP0l+XkKnm2&a literal 0 HcmV?d00001 diff --git a/apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/three-layer-pattern-temp-diagram.png b/apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/three-layer-pattern-temp-diagram.png new file mode 100644 index 0000000000000000000000000000000000000000..361c09a8ba7388d726fb067caaed707ab1d7b071 GIT binary patch literal 41797 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 literal 0 HcmV?d00001 diff --git a/apps/www/public/images/blog/avatars/nick-farrant-juniver.jpg b/apps/www/public/images/blog/avatars/nick-farrant-juniver.jpg new file mode 100644 index 0000000000000000000000000000000000000000..49c7335de71c8e7d23669f5d141d8cfd8f837dd5 GIT binary patch literal 89143 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 W1EAgIV2B2WRd0)>+)8M`HaE`Tjkq66 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�k$s+=A@hmTq6im2Si_HhH-3CK~WNX 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 bjw$~i#^pROEaa0800000NkvXXu0mjfDj20V literal 0 HcmV?d00001 diff --git a/apps/www/public/images/customers/logos/light/juniver.png b/apps/www/public/images/customers/logos/light/juniver.png new file mode 100644 index 0000000000000000000000000000000000000000..90f22bdd80dccdb9c678a323489652c66da4a887 GIT binary patch literal 7042 zcmcJT2QXZ3+y8aJ5-lNi5hY59UUzlTd+#lxcUC7@y~K(VT~?GON{9$n7bW^eiB3dY zWR>V7yq@=&`OW|Td*0`n|GYE*d*FY*@nKjVMp|C{~4_`evP^EQ&(N8$#muWf+yn;`zr6(0UIE)_P7=+X$Z zE@F^Fk+hgi=yg8!?LvGIMSQ1wjU;aye)eOBwCKTi22DnCfxG*MOV!lrG%MwgPk%B^ zYsd9a9<%W*45+tH?266+zCMC%&L;}Sb`DA8rat$3Ex!lWYI#y%U!{8To_-{&7<&Jn zC8t?3`%wU9`PZtA9qVlK2ilI5j2Gso zx`>DYIR(PA>ji$dg^{IKaA@FqYhd91-t^T;it>)~vm@EQsA-$3J{&dfI4O z6sObTt@k6ApVCOc`s5j*k+C=)F$t0{ZEe+oc&h^PK!HGQ&u-eOl8lmnt#LkXGuX={A zYdz0w2lyjJMNP^y0jE7VtOCF$cTYU~x_mJL_H#wQ{N~Olf;n)t^fH3$n%pQpxq|3V zq^OtEisrOoOwZ~(gl)F*E(4}MLVPuOJv190oYL*U1D=X`lv z)Rkd2tiCcOPp5l=r@HWO!Pu?L=i@4*IoS# z4wsDMcIafqWLDDVo<(lX56HY+fAix&#$X@fafBa74h%5D>fQX_xy<4R+ib2zxv+=H zxP7UnQobuPULSR`_$N7hS=zM(!`Ok-q2tTmrg$E?I~sDoFS`dIK}R{t6i!w*(6wYaMiwBu?eE#{ zIi$b&W~r`W!KvJ7!ziRMWb-_sj;uL+mot;^wCIL;jc$V6@Mw8<*wPSCZokK#z-ZID zp|<^i@wgyF$uJcAb5zt$emY4y7-g@J@LS_Dk6%LCda(z9w=|)zN%AQfrF&{f4SW`q zG+g#N)U8TQOH=Ml6uW^OG~{K33<@bx7utXE>Dp2`=hh%SaotOKnT>}}WUpsLPq6=z zi<`*r=(LLf{iI{5-z;MAsb=yXIHQXr@p%&4z^l*Y-y-kKpK-g}In8pOcQm!@=YSa{ z)ykc8PzLEqK8t>edVx(ad085W6Nd-&`vlTU$($jP{S>EA#Q6AW-pC&Nz57t+1-+!f z%!0?zeEaMO6ZzOdlGtxng0F(jNpDDnKFwcI#m1VFwt^U30C>h(JnjAI&1^>C3R~Uj zoykng_~4)b+YeM1$JjWWmsc`xdV;xsNOL7d_{8etu6eC;Eo`P~3A7Ns%{OC_Td8i& z>S+Ho(R3=e@_2!#JG}eX@ob0H*Kg$?nFnonu{h=BrD&9;#dgj5Bz=J=?^OM(*WhUL z8tH-74_NN#^LnpV&^-=5|Cx>bRAL*q3Da#LqnbrskO)zL_A^tHuLsegG%%*m-4qyD zPjxO!pUN}((3xWcT^qD~SKnh-(3LEZWmCO4dQp#-ig)}|Io@f;yQVJI8TzeRN9JKT zE;$qk-y_4LZ=2N70thB@9&E=sC5doj;#D6AaA>pTG_Vm-WPj)65BZwahA_aSP1$L< zjp;sJB@Z7;DZsEOuL&GF0>*t&#QAIe5po5agoXCLSt$=rcd9uYKz=Gcfym> zm`|8;8vK3Y@nYyc^Dnsa#9c=3nNl)%J~zgcjoHc?N8w{ZGG=v5zWn!J{;i%f@SR=A6bYD!5Bd)QjAW{K~a_1x6tHO zqfsho80cNmvCP9?UP5b#mVu>HxRpwy=TgX@Qo<@!K0qCjeAPp$-BdooE;Lx*Z0jUKWCU*GV~(pq}0GP%;h(3eqqmB zA?uB6K@M#_zKVB^mD+~zaF@o-ljGiIYVd#76Trx=Qr?pW!ev-{<+v=x^~H&p4yt1g zvxD-Kb&lpL~z!&{g9hgJQe)mNu|4RH~EKM#}H!1)8O8A)Nr{e^sM zS+po@O=VCj@!j}MB5*f&#!Q2Hc4L=;vcrcU7vFzCKtvNPD)96u>V>rvW5+r2UdlltCd+l+a zzYLF2IvV6@+{V3Xvu11*bu4S%I(k3n=J#^xbXQdILK2pf-f^6mWEU{<$ zyk-3b_%y@jr23KN5q7RE+c6!3fZT8d{T>3vH&jH1`WvhjP^xA!U{ZfH)UUibQYtQ} z;NjhIe%rzB=RJmxirkw<6}XbY_-qj!oKkB=l-!Hb3MvEr+D6wMMp=Ql8jfxwJj7i% zXb%vW%J(ObWY{-WG?mR*z5#zJ{MpG;tPx){d59=Wx^x{{3V|P;e_U3SV}j#PqyYe& z9$hYUAM|s=$uoSP(5Ijj+#Y;pz9-v3f@-kf|CN;(39&YKp>Z$))8SV_O9o(R`rkNr zZ|6OC4;v*L*dnx&`%M~N`Nq__a?1F50lLXCsTXKg9oYH~ zVGJYC9aW1L>!42cLry}7D!Tf;YoEF2A!rJyX%%U_-DIc3&umqR)JdVRY&j{zc-mTx zY`hb5PbN~Rt#?|7l1}9pVR~E-mEAl$arl{ae{O`g>ewTrE|13_K%toqSX~-u>bqj6 zq*Zw@k={@B(ju~Gk2VFrk}anbcPs3*7ySuer*)h8nk1l2<4df7UUnniJ#(^SH z2%?$w?@&qH6StEG>8TDR7*DP|Vb)kN?w_^3ItMyt5E0^IsY78>NXgo~*30G7<4}hC zj&9~?l0Euj8(fHME4Vy^l{AX)ducJMe=J5Vd|lA=%|ov;aT6j7*K*vVP#uw1cO=ZV z=lYpEgp<^X3+)G_{L=}b`w5AII_)2Xuzap@2xefEM{W}m*EfHmnG)kTlCq{fLkNgh zV8(KdC7L|W?p}Vp>+5GHLfW@VU4}n)cnBTmz)XP2WNhwK{Dk)Zc#O1DY*^2ug#sY~ za5R6kAQ+<(N5I&{faE`M!1a6Cb96aok!{oyidg~44bLkV3)L%Zbyvk@l3h9xn!xIk zTJX@N2pVy_$Gmz$W?2;7CQDY00vN!a{*kRj!0CHF)m6nmfn?Iin#ep!REUj)Q@*pv zmao#7s<&_iT5>*jDlp<%-?FotKH9$7iq>9LPG|ZxtMx7=PhpSBB{&=%A=P6#w&JAq zGvwq!p8+7gY``P9o3FZPLVzGO!g&36LN_t07*nHkma{aA@EU>EL=|-%m28SZikFgZ0`gKAvoKZy zdP^#a0pLO{h zoP>18T>zcDun~C=Z&Oy=4+|Gj@g%0NAOtZ5T>eU>K)n=Zt7Cc8Cf5kV7k1K4t&mN^ zVI(jrWK;Fl8gsGsTcnaQ8iqEjh>|98KENI|EC=IUU91cJt_~R6FjhEtOX)$_E9!L5 z7dlRMKV@3(jU~Ha%h9H0>9$e$SaxvOjUp3REz*1$TIc_w7e{w51B zCKeUdygxys{9;4c(-7XxbJ-><-E(a3T_TpHjt{jx=#VMjy0=X_YePJ(+9>e*OsrNb z-ZHrygr1Z5CZuJv8C*3k#QV$&R!OmS|&F z?H1~bkrbEaSFBe8hUR@~&LDJr6_PYH5l_ZaJf_%;Q*d#H?AgzES43MeXXN^`X07v9 zk8j`NWGA^&qZ;Z$d~!aPTiiCWwNu%bn79y)C9=J_2s&c0s6Gx^oG?KFVk^+MZDsg@ zbCp@u>i+eho-=oE89taEEJcI#O9ke=9x1O2?)|Q1&)HVmP1idO=IDb_z=uk1E8hUuCp^Bl!FX4+!DVeqcnkJtMLI=5g6B<71 z1H>rqoa6zBmQqT~_3^AQ{-hI3^rXx@!F{UUcROKLcsnO&q4TqyChI1orhp;WSDeda zs!^!`aJ1~M_za0P8tfgB@jg%7i*PTu(wgnzb%NdO8&xv8is!l+Ek4#TM08tfdChi7 zByMcB2r}kR(fip^D@G5`H(rAwzQrnC1ig3N*}UAf$D6N{t+x#u1PUQ~4P8S|Jn=v3 z*Ab7PIOb@XoD#%y!ly}I%eJn(i`ny%togXx@`wNxnHP|k+Yv%-TBiyRTBK(87aLXG zY&(jQkJDbTj)-L;VOuKivN zD5TpoC$cDBOL>phY;}%|ybtDS-3;9+`d;8xrpBj1K3uIy(j588Z795!dPqMxDd_cs z@ILQj){6Hv-1*v`fO|Is|8O= zK)&v4pQ|i!8i%fX^eV@;T04FvwmmJD{PS9z8lznsX%;rbk?_2$3&>|K z_$o$c8v?9S+19Z?U^W2GiWONvhL>hzPrt=3Faw*-jn)0+nTWk!KgQTjad%O1?r;|2 z892J9h84PaAN0>;gLWW!%dHXquB}uqAX@eBGGiG@#EkS(X(dhV3z6%^X;mip@-b~TAJNHiSTvrWF6!P)u@v}aRWz;MRRHx3JF%e z3}>W??+BHRe;8dyV_z9qgWdXIt2J=0-G!$8G(|7$(OA7Ws7|GkH@ClC|ND++@U(mr zl^mVO3xB?y56_`O+#2MZ>4gR|{@9>$srL%B#tbLSr77v!*!O(d(idS?R!c_lVe_7! z8eSsxa}j%}E8Iu@ori^DbpL2pgDdxZ;c4vNg ze$(IXrA-lEgn0#LYG{D!7O|6r5O1-|rKiPnY{ye{sJjSTJjz zrhwDNH;p4-90aYDHGQwM;lh3=kZ-)T>s|{VY z)0OWf*%zFtvT)=j|Q)Rc!nn)N?OOG z$n|BHAMGT}yN>d-!?%Mr);`FuJ`Q)Oe(IbZ%GP!kceg07ML@1N{a3CD_G*=?=c4`w zWTIqbZ2S#9(hAVY@)bH={_#blmO-jK8u+Xu5Ct5j+3Dvhrxbw3T2V-k}U>85xTFfS$6W#44H@h&-FZU%x{*H zj&=h~=dW{K=nu6WeJO^!-}D>rTQ^rA4MGHpbf%Qweekly 0.5 + + + https://supabase.com/customers/juniver + weekly + 0.5 + https://supabase.com/customers/kayhanspace From 84e3f5041e605ff8ed15bef8284609bdf24cbedc Mon Sep 17 00:00:00 2001 From: Joshen Lim Date: Mon, 15 Sep 2025 23:14:11 +0800 Subject: [PATCH 16/17] Fix missing app frameworks in connect modal (#38712) * Fix missing app frameworks in connect modal * Clean up * More clena up * Deprecate ConnectTabCustomContent --- .../components/interfaces/Connect/Connect.tsx | 26 +++------ .../Connect/ConnectTabContentCustom.tsx | 56 ------------------- 2 files changed, 8 insertions(+), 74 deletions(-) delete mode 100644 apps/studio/components/interfaces/Connect/ConnectTabContentCustom.tsx diff --git a/apps/studio/components/interfaces/Connect/Connect.tsx b/apps/studio/components/interfaces/Connect/Connect.tsx index 6ebdba355efc4..7a816671e1193 100644 --- a/apps/studio/components/interfaces/Connect/Connect.tsx +++ b/apps/studio/components/interfaces/Connect/Connect.tsx @@ -34,7 +34,6 @@ import { CONNECTION_TYPES, ConnectionType, FRAMEWORKS, MOBILES, ORMS } from './C import { getContentFilePath } from './Connect.utils' import { ConnectDropdown } from './ConnectDropdown' import { ConnectTabContent } from './ConnectTabContent' -import { ConnectTabContentCustom } from './ConnectTabContentCustom' export const Connect = () => { const { ref: projectRef } = useParams() @@ -70,10 +69,10 @@ export const Connect = () => { ) // helper to get the connection type object - function getConnectionObjectForTab(tab: string | null, frameworks: ConnectionType[]) { + function getConnectionObjectForTab(tab: string | null) { switch (tab) { case 'frameworks': - return frameworks + return FRAMEWORKS case 'mobiles': return MOBILES case 'orms': @@ -99,8 +98,6 @@ export const Connect = () => { ?.children.find((child) => child.key === selectedChild)?.children[0]?.key || '' ) - const isFrameworkSelected = FRAMEWORKS.some((x) => x.key === selectedParent) - const { data: settings } = useProjectSettingsV2Query({ projectRef }, { enabled: showConnect }) const { can: canReadAPIKeys } = useAsyncCheckProjectPermissions( PermissionAction.READ, @@ -259,7 +256,7 @@ export const Connect = () => { useEffect(() => { if (!showConnect) return - const newConnectionObject = getConnectionObjectForTab(tab, FRAMEWORKS) + const newConnectionObject = getConnectionObjectForTab(tab) setConnectionObject(newConnectionObject) const parent = @@ -413,18 +410,11 @@ export const Connect = () => {

Add the following files below to your application

- {isFrameworkSelected ? ( - x.key === selectedParent)} - /> - ) : ( - - )} + { - const { files = [] } = framework ?? {} - - const [selectedTab, setSelectedTab] = useState() - - useEffect(() => { - if (framework?.files) setSelectedTab(framework.files[0].name) - }, [framework]) - - return ( -
- - - {files.map((x) => ( - - ))} - - - {files.map((x) => { - const format = x.name.split('.')[1] ?? 'bash' - const content = x.content - .replaceAll('{{apiUrl}}', projectKeys.apiUrl ?? '') - .replaceAll('{{anonKey}}', projectKeys.anonKey ?? '') - .replaceAll('{{publishableKey}}', projectKeys.publishableKey ?? '') - return ( - - - {content} - - - ) - })} - -
- ) -} From 58e7747264f8d58cf6a39ceb6ff31123329a0308 Mon Sep 17 00:00:00 2001 From: Alan Daniel Date: Mon, 15 Sep 2025 12:08:17 -0400 Subject: [PATCH 17/17] Revert "Added a new case study and blog post. (#38645)" (#38713) This reverts commit e96c06fe2da74d9351a383c554e79f0f6d6216e5. --- ...cessing-large-jobs-with-edge-functions.mdx | 402 ------------------ apps/www/_customers/juniver.mdx | 110 ----- apps/www/data/CustomerStories.ts | 12 - apps/www/public/customers-rss.xml | 7 - .../og-temp.png | Bin 959 -> 0 bytes .../three-layer-pattern-temp-diagram.png | Bin 41797 -> 0 bytes .../blog/avatars/nick-farrant-juniver.jpg | Bin 89143 -> 0 bytes .../public/images/customers/logos/juniver.png | Bin 9481 -> 0 bytes .../images/customers/logos/light/juniver.png | Bin 7042 -> 0 bytes apps/www/public/sitemap_www.xml | 6 - 10 files changed, 537 deletions(-) delete mode 100644 apps/www/_blog/2025-09-12-processing-large-jobs-with-edge-functions.mdx delete mode 100644 apps/www/_customers/juniver.mdx delete mode 100644 apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/og-temp.png delete mode 100644 apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/three-layer-pattern-temp-diagram.png delete mode 100644 apps/www/public/images/blog/avatars/nick-farrant-juniver.jpg delete mode 100644 apps/www/public/images/customers/logos/juniver.png delete mode 100644 apps/www/public/images/customers/logos/light/juniver.png diff --git a/apps/www/_blog/2025-09-12-processing-large-jobs-with-edge-functions.mdx b/apps/www/_blog/2025-09-12-processing-large-jobs-with-edge-functions.mdx deleted file mode 100644 index 0c4253c0a519d..0000000000000 --- a/apps/www/_blog/2025-09-12-processing-large-jobs-with-edge-functions.mdx +++ /dev/null @@ -1,402 +0,0 @@ ---- -title: Processing large jobs with Edge Functions, Cron, and Queues -description: Learn how to build scalable data processing pipelines using Supabase Edge Functions, cron jobs, and database queues and handle large workloads without timeouts or crashes. -author: prashant -image: 2025-09-processing-large-jobs-with-edge-functions/og-temp.png -thumb: 2025-09-processing-large-jobs-with-edge-functions/og-temp.png -categories: - - postgres - - edge functions - - cron - - queues -date: 2025-09-12:08:00 -toc_depth: 2 ---- - -When you're building applications that process large amounts of data, you quickly run into a fundamental problem: trying to do everything at once leads to timeouts, crashes, and frustrated users. The solution isn't to buy bigger servers. It's to break big jobs into small, manageable pieces. - -Supabase gives you three tools that work beautifully together for this: [Edge Functions](/edge-functions) for serverless compute, [Cron](/modules/cron) for scheduling, and database [queues](/modules/queues) for reliable job processing. - -Here's how to use them to build a system that can handle serious scale. - -## The three-layer pattern - -The architecture is simple but powerful. Think of it like an assembly line: - -**Collection**: Cron jobs run Edge Functions that discover work and add tasks to queues - -**Distribution**: Other cron jobs route tasks from main queues to specialized processing queues - -**Processing**: Specialized workers handle specific types of tasks from their assigned queues - -A diagram of the three-layer pattern described above - -This breaks apart the complexity. Instead of one giant function that scrapes websites, processes content with AI, and stores everything, you have focused functions that each do one thing well. - -## Real example: Building an NFL news aggregator - -Let's say you want to build a dashboard that tracks NFL (American football) news from multiple sources including NFL-related websites and NFL-related videos on YouTube, automatically tags articles by topic, and lets users search by player or team. When they see an article they’re interested in, they can click on it and visit the website that hosts the article. It’s like a dedicated Twitter feed for the NFL without any of the toxicity. - -This sounds straightforward, but at scale this becomes complex fast. You need to monitor dozens of news sites, process hundreds of articles daily, make API calls to OpenAI for content analysis, generate vector embeddings for search, and store everything efficiently. Do this wrong and a single broken webpage crashes your entire pipeline. - -We need to build a more resilient approach. With Supabase Edge Functions, Cron, and Queues, we have the building blocks for a robust content extraction and categorization pipeline. - -## Setting up the foundation - -Everything starts with the [database](/database), and Supabase is Postgres at its core. We know what we’re getting: scalable, dependable, and standard. - -The database design for the application follows a clean pattern. You have content tables for storing articles and videos, queue tables for managing work, entity tables for NFL players and teams, and relationship tables linking everything together. For example: - -```sql -create table articles ( - url text unique not null, - headline text, - content text, - embedding vector(1536) -); -``` - -## Collection: Finding new content - -The collection layer seeks out new NFL-related content and runs on a schedule to discover new articles and videos. We create a collector for every site we want to search. A cron job triggers every 30 minutes to begin collection: - -```sql -SELECT cron.schedule( - 'nfl-collector', - '*/30 * * * *', - $$SELECT net.http_post(url := '[https://your-project.supabase.co/functions/v1/collect-content')$$](https://your-project.supabase.co/functions/v1/collect-content')$$) -); -``` - -The Edge Function does the actual scraping. The trick is being selective about what you collect: - -```tsx -function isRelevantArticle(url: string): boolean { - return url.includes('/news/') && !url.includes('/video/') -} -``` - -This simple filter prevents collecting promotional content or videos. You only want actual news articles. - -When parsing HTML, you need to handle relative URLs properly: - -```tsx -if (href.startsWith('/')) { - href = BASE_URL + href -} -``` - -And always deduplicate within a single scraping session: - -```tsx -const seen = new Set() -if (!seen.has(href)) { - seen.add(href) - articles.push({ url: href, site: 'nfl' }) -} -``` - -For database insertion, let the database handle duplicates rather than checking in your application: - -```tsx -const { error } = await supabase.from('articles').insert({ url, site }) -if (error && !error.message.includes('duplicate')) { - console.error(`Error inserting: ${url}`, error) -} -``` - -This approach is more reliable than complex application-level deduplication logic. - -## Distribution: Smart routing - -The distribution layer identifies articles that need processing and routes them to appropriate queues. The key insight is using separate queue tables for different content sources. [NFL.com](http://NFL.com) articles need different parsing than ESPN articles, so they get routed to specialized processors. It runs more frequently than collection: every 5 minutes: - -```sql -SELECT cron.schedule( - 'distributor', - '*/5 * * * *', - $$SELECT net.http_post(url := '[https://your-project.supabase.co/functions/v1/distribute-work')$$](https://your-project.supabase.co/functions/v1/distribute-work')$$) -); -``` - -The Edge Function finds unprocessed articles using a simple SQL query: - -```tsx -const { data } = await supabase - .from('articles') - .select('url, site') - .is('headline', null) // Missing headline means unprocessed - .limit(50) -``` - -Then it routes based on the source site: - -```tsx -if ([article.site](http://article.site) === "nfl") { - await supabase.from("nfl_queue").insert({ url: article.url }); -} else if ([article.site](http://article.site) === "espn") { - await supabase.from("espn_queue").insert({ url: article.url }); -} -``` - -This separation is crucial because each site has different HTML structures and parsing requirements. - -## Processing: The heavy lifting - -Each content source gets its own processor that runs on its own schedule. [NFL.com](http://NFL.com) gets processed every 15 seconds because it's high-priority: - -```sql -SELECT cron.schedule( - 'nfl-processor', - '*/15 * * * *', - $$SELECT net.http_post(url := '[https://your-project.supabase.co/functions/v1/process-nfl')$$](https://your-project.supabase.co/functions/v1/process-nfl')$$) -); -``` - -The processor handles one article at a time to stay within Edge Function timeout limits: - -```tsx -const { data } = await supabase - .from('nfl_queue') - .select('id, url') - .eq('processed', false) - .order('created_at') - .limit(1) -``` - -Content extraction requires site-specific CSS selectors: - -```tsx -const headline = $('h1').first().text().trim() -const content = $('.article-body').text().trim() || $('article').text().trim() -``` - -Date parsing often needs custom logic for each site's format: - -```tsx -const dateText = $('.publish-date').text() -const match = dateText.match(/(\w+ \d+, \d{4})/) -if (match) { - publication_date = new Date(match[1]) -} -``` - -After scraping, the article gets analyzed with AI to extract entities: - -```tsx -const result = await classifyArticle(headline, content) -const playerIds = await upsertPlayers(supabase, result.players) -const teamIds = await upsertTeams(supabase, result.teams) -``` - -Finally, create the relationships and generate embeddings: - -```tsx -await supabase.from("article_players").insert( - [playerIds.map](http://playerIds.map)(id => ({ article_url: url, player_id: id })) -); - -const embedding = await generateEmbedding(`${headline}\n${content}`); -await supabase.from("articles").update({ embedding }).eq("url", url); -``` - -The critical pattern is the finally block. We use it to always mark queue items as processed, preventing infinite loops when articles fail to process: - -```tsx -try { - // Process article -} finally { - await supabase.from("nfl_queue") - .update({ processed: true }) - .eq("id", [item.id](http://item.id)); -} -``` - -### Monitoring with Sentry - -While the finally block prevents infinite loops, you still need visibility into what's actually failing. Sentry integration gives you detailed error tracking for your Edge Functions. - -First, set up Sentry in your Edge Function: - -```jsx -import { captureException, init } from 'https://deno.land/x/sentry/index.js' - -init({ - dsn: Deno.env.get('SENTRY_DSN'), - environment: Deno.env.get('ENVIRONMENT') || 'production', -}) -``` - -Then wrap your processing logic with proper error capture: - -```jsx -try { - const content = await scrapeArticle(url); - const analysis = await classifyArticle(headline, content); - await storeArticle(article, analysis); -} catch (error) { - *// Capture the full context for debugging* - captureException(error, { - tags: { - function: "nfl-processor", - site: article.site - }, - extra: { - url: article.url, - queueId: queueItem.id - } - }); - console.error(`Failed to process ${url}:`, error); -} finally { - await supabase.from("nfl_queue") - .update({ processed: true }) - .eq("id", queueItem.id); -} -``` - -This gives you real-time alerts when processors fail and detailed context for debugging production issues. - -## Processing user interactions through the pipeline - -The same pipeline pattern works for user-generated events. When someone clicks, shares, or saves an article, you don't want to block their response while updating trending scores for every player and team mentioned in that article. - -Instead, treat interactions like any other job to be processed: - -```tsx -// Just record the interaction quickly -await supabase.from('interaction_queue').insert({ - article_url: url, - user_id: userId, - interaction_type: 'share', -}) -``` - -Then let a separate cron job process the trending updates in batches: - -```sql -SELECT cron.schedule( - 'process-interactions', - '*/2 * * * *', -- Every 2 minutes - $$SELECT net.http_post(url := '[https://your-project.supabase.co/functions/v1/process-interactions')$$](https://your-project.supabase.co/functions/v1/process-interactions')$$) -); -``` - -The processor can handle multiple interactions efficiently: - -```tsx -const { data: interactions } = await supabase - .from('interaction_queue') - .select('*') - .eq('processed', false) - .limit(100) -``` - -This keeps your user interface snappy while ensuring trending scores get updated reliably. If the trending processor goes down, interactions are safely queued and will be processed when it recovers. - -## AI-powered content scoring - -To surface the most important content automatically, use AI to analyze article context and assign importance scores. - -Define scores for different news types: - -```tsx -const CONTEXT_SCORES = { - championship: 9, - trade: 6, - injury: 4, - practice: 1, -} -``` - -Prompt OpenAI with structured output: - -```tsx -const prompt = `Analyze this headline: "${headline}" -Return JSON: {"context": "trade|injury|etc", "score": 1-9}`; - -const result = await [openai.chat](http://openai.chat).completions.create({ - model: "gpt-3.5-turbo", - response_format: { type: "json_object" } -}); -``` - -Process articles in batches to manage API costs: - -```tsx -const unprocessed = articles.filter((a) => !processedUrls.has(a.url)).slice(0, 10) - -for (const article of unprocessed) { - const analysis = await analyzeArticle(article) - await storeAnalysis(article.url, analysis) -} -``` - -## Background tasks for expensive operations - -Some operations are too expensive to run synchronously, even in your cron-triggered processors. Vector embedding generation and bulk AI analysis benefit from background task patterns. - -Edge Functions support background tasks that continue processing after the main response completes: - -typescript - -```jsx -*// In your article processor* -const article = await scrapeAndStore(url); - -*// Start expensive operations in background* -const backgroundTasks = [ - generateEmbedding(article), - analyzeWithAI(article), - updateRelatedContent(article) -]; - -*// Run background tasks without blocking the main flow* -Promise.all(backgroundTasks).catch(error => { - captureException(error, { - tags: { operation: "background-tasks" }, - extra: { articleUrl: url } - }); -}); - -*// Main processing continues immediately* -await markAsProcessed(queueItem.id); -``` - -For operations that might take longer than Edge Function limits, break them into smaller background chunks: - -typescript - -```jsx -async function generateEmbeddingInBackground(article: Article) { - *// Process content in chunks* - const chunks = splitIntoChunks(article.content, 1000); - - for (const chunk of chunks) { - await new Promise(resolve => { - *// Use background task for each chunk* - setTimeout(async () => { - const embedding = await generateEmbedding(chunk); - await storeEmbedding(article.id, embedding); - resolve(void 0); - }, 0); - }); - } -} -``` - -This pattern keeps your main processing pipeline fast while ensuring expensive operations complete reliably. - -## Why this works - -This pattern succeeds because it embraces the constraints of serverless computing rather than fighting them. Edge Functions have time limits, so you process one item at a time. External APIs have rate limits, so you control timing with cron schedules. Failures happen, so you isolate them to individual tasks. - -The result is a system that scales horizontally by adding more cron jobs and queues. Each component can fail independently without bringing down the whole pipeline. Users get fresh content as it becomes available rather than waiting for batch jobs to complete. - -Most importantly, it's built entirely with Supabase primitives - no external queue systems or job schedulers required. You get enterprise-grade reliability with startup simplicity. diff --git a/apps/www/_customers/juniver.mdx b/apps/www/_customers/juniver.mdx deleted file mode 100644 index aa19fbf1f9854..0000000000000 --- a/apps/www/_customers/juniver.mdx +++ /dev/null @@ -1,110 +0,0 @@ ---- -name: Juniver -title: 'Juniver built a self-serve B2B platform with Supabase to scale eating disorder recovery' -# Use meta_title to add a custom meta title. Otherwise it defaults to '{name} | Supabase Customer Stories': -# meta_title: -description: Juniver switched from Firebase to Supabase and saw immediate improvements in developer experience and performance. -# Use meta_description to add a custom meta description. Otherwise it defaults to {description}: -meta_description: Juniver switched from Firebase to Supabase and saw immediate improvements in developer experience and performance. -author: prashant -author_title: Prashant Sridharan -author_url: https://github.com/CoolAssPuppy -author_image_url: https://avatars.githubusercontent.com/u/914007?v=4 -logo: /images/customers/logos/juniver.png -logo_inverse: /images/customers/logos/light/juniver.png -og_image: /images/customers/og/juniver.jpg -tags: - - supabase -date: '2025-01-15' -company_url: https://www.joinjuniver.com -misc: [{ label: 'Founded', text: 'United Kingdom' }] -about: Science-based recovery program for disordered eating -# "healthcare" | "fintech" | "ecommerce" | "education" | "gaming" | "media" | "real-estate" | "saas" | "social" | "analytics" | "ai" | "developer-tools" -industry: ['healthcare', 'ai', 'saas'] -# "startup" | "enterprise" | "indie_dev" -company_size: 'startup' -# "Asia" | "Europe" | "North America" | "South America" | "Africa" | "Oceania" -region: 'Europe' -# "database" | "auth" | "storage" | "realtime" | "functions" | "vector" -supabase_products: ['database', 'auth', 'functions'] ---- - - - For me, the biggest benefit of Supabase is developer experience. My expertise doesn't lie in - databases and infrastructure. It really didn't take much time at all to spin up this product with - Supabase. - - -[Juniver](https://www.joinjuniver.com/) is an iOS app that guides people through recovery from eating disorders and disordered eating. The product combines an AI recovery coach, a thoroughly researched curriculum, and self-serve tools designed for moments of need. Juniver is expanding from B2C into B2B2C, licensing its platform to clinics and clinicians who then offer it to patients. - -## The challenge - -Juniver needed to evolve its backend to support a new B2B2C product, without risking the stability of its consumer app. - -- Launch a self-serve, automated, scalable platform for clinics and clinicians -- Enforce strict privacy and access controls across clinics, clinicians, patients, and licenses -- Integrate tightly with Stripe and webhooks to automate onboarding and license provisioning -- Move quickly with a lean team, choosing tools that won't have to be replaced in a few years - -They also faced significant friction with their previous Firebase setup: - -- Document-based storage made data relationships difficult to manage -- Manual relationship handling slowed development -- Limited scalability for complex B2B requirements -- Developer productivity was constrained by Firebase's limitations - - - Time is such a big currency in startup world. With Firebase, we were really struggling with - relationships within our data. It was all done very manually, as you can expect with - document-based storage. Supabase is a relational database and it's much easier and we can move - faster. - - -## Choosing Supabase - -Juniver had long run on Google Cloud with Firebase for the mobile app. The new B2B product created a clean slate to evaluate alternatives and set a foundation for future scale. Supabase offered a relational core (Postgres) and an integrated developer experience that aligned with Juniver's needs now and later. - -**Why Supabase** - -- A relational database (Postgres) to model clean, maintainable relationships -- Integrated developer experience: visual Table Editor with inline SQL, clear logs, SDKs -- Strong security posture with Row Level Security, plus an easy way to "view as user" to validate policies -- Built-in primitives (Auth, Functions) to save time and build with best-of-breed products - - - The Supabase developer experience is so clear. I've got everything at my fingertips. I'm in the - Table Editor. The SQL editor is literally right below the table editor. The feature you have to - see the table from a different user's perspective to test your Row Level Security is a wonderful - little feature that I use all the time. - - -## The approach - -Juniver used the B2B product as a greenfield build on Supabase, avoiding risky dependencies on the legacy Firebase data while preparing for an eventual B2C migration. - -- **Getting started** - - Spun up a new Supabase project and schema for clinics, clinicians, patients, and licenses - - Leaned on documentation and the iOS SDK to accelerate the build -- **Implementation highlights** - - **Database (Postgres):** Relational schema with strict Row Level Security; frequent use of "view as user" to validate policies - - **Auth & OAuth:** Managing identities for clinics and patients with fine-grained access - - **Webhooks + Edge Functions:** Stripe purchase triggers an automated sequence to authenticate partners, provision license codes, and send emails - - **Operational visibility:** Edge Function logs and an integrated console for fast debugging and iteration - - - You have to expect, plan, and build for scale. We can scale exponentially with Supabase. - - -## The results - -Juniver's B2B platform is out in the wild and early in adoption, but the team is already seeing meaningful wins in developer experience and delivery speed. - -- Rapidly build-out of a self-serve, automated B2B platform using out-of-the-box Supabase features -- Faster iteration through an integrated UI, inline SQL, clear logs, and RLS policy testing -- A relational foundation that supports today's B2B needs and tomorrow's B2C migration -- Streamlined development process with Supabase's integrated tooling - - - My advice to developers thinking of moving to Supabase: Try it, it's free. Replicate your project. - You'll see how much easier it is to think about your data from a relational point of view. - diff --git a/apps/www/data/CustomerStories.ts b/apps/www/data/CustomerStories.ts index 063854d9d2a70..b12e56ac87810 100644 --- a/apps/www/data/CustomerStories.ts +++ b/apps/www/data/CustomerStories.ts @@ -18,18 +18,6 @@ export type CustomerStoryType = { } export const data: CustomerStoryType[] = [ - { - type: 'Customer Story', - title: - 'Juniver built automated B2B workflows with Supabase Edge Functions and Row Level Security', - description: - 'Juniver switched from Firebase to Supabase and saw immediate improvements in developer experience and performance.', - organization: 'Juniver', - imgUrl: 'images/customers/logos/juniver.png', - logo: '/images/customers/logos/juniver.png', - logo_inverse: '/images/customers/logos/light/juniver.png', - url: '/customers/juniver', - }, { type: 'Customer Story', title: 'Kayhan Space saw 8x improvement in developer speed when moving to Supabase', diff --git a/apps/www/public/customers-rss.xml b/apps/www/public/customers-rss.xml index 57ff2acef841c..2c776ae03103e 100644 --- a/apps/www/public/customers-rss.xml +++ b/apps/www/public/customers-rss.xml @@ -70,13 +70,6 @@ Scaling seamlessly to 5,000+ paying customers & millions of emails sent daily with Supabase Fri, 21 Feb 2025 00:00:00 -0700
- - https://supabase.com/customers/juniver - Juniver built a self-serve B2B platform with Supabase to scale eating disorder recovery - https://supabase.com/customers/juniver - Juniver switched from Firebase to Supabase and saw immediate improvements in developer experience and performance. - Wed, 15 Jan 2025 00:00:00 -0700 - https://supabase.com/customers/e2b E2B: Accelerating AI-Driven Development with Supabase diff --git a/apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/og-temp.png b/apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/og-temp.png deleted file mode 100644 index 1d7504001aa33b14d5d0d47334d01d8c1f75c379..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 959 zcmeAS@N?(olHy`uVBq!ia0y~yU|Gh%z^uT;3=~PRYqA4UJOMr-u0Z9Uf!!MadJ~ST-=$L4oo?osxoS$f zsM6&iGcA|AC0@C)4Ifu|i_S7#8R8KhyXuV7D#6w7#7vAdgL)%MS1O%WyP7U}DRjEl zr72o`i6Dm2^sFE6>i1t4qDk+;VPJySi57;wt|oTspV1 z{Z|!SHP2nuDZI}c)t4n>+%a$E9V%_ ziT?WSG}q_tE9bO-o3(!*!Xc{x}AiB2#6TK7Kv?kav; z-SVKTeBI~c8r$q)V|1J4`Tx}h3*WDI zSGlV#tyb0>UEP4zcJ8$QZlg9ev_E)l zs)x_oUo%3qmaJS;mG*K&g$vNtANAiKTOy>mmqAwS`1S>1wjn^>f2Ywr?E)=m;C~~( X=D5h^>bP0l+XkKnm2&a diff --git a/apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/three-layer-pattern-temp-diagram.png b/apps/www/public/images/blog/2025-09-processing-large-jobs-with-edge-functions/three-layer-pattern-temp-diagram.png deleted file mode 100644 index 361c09a8ba7388d726fb067caaed707ab1d7b071..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 41797 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 diff --git a/apps/www/public/images/blog/avatars/nick-farrant-juniver.jpg b/apps/www/public/images/blog/avatars/nick-farrant-juniver.jpg deleted file mode 100644 index 49c7335de71c8e7d23669f5d141d8cfd8f837dd5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 89143 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 W1EAgIV2B2WRd0)>+)8M`HaE`Tjkq66 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�k$s+=A@hmTq6im2Si_HhH-3CK~WNX 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 bjw$~i#^pROEaa0800000NkvXXu0mjfDj20V diff --git a/apps/www/public/images/customers/logos/light/juniver.png b/apps/www/public/images/customers/logos/light/juniver.png deleted file mode 100644 index 90f22bdd80dccdb9c678a323489652c66da4a887..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7042 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 0.5 - - - https://supabase.com/customers/juniver - weekly - 0.5 - https://supabase.com/customers/kayhanspace